diff --git a/modules/deeplearning/cloud_fraction_fcn_abi.py b/modules/deeplearning/cloud_fraction_fcn_abi.py
index 73593d9be3e2a5de043b2dcc5049d410783855fc..63a0524234da3b692accd351c5a6038538e47e5d 100644
--- a/modules/deeplearning/cloud_fraction_fcn_abi.py
+++ b/modules/deeplearning/cloud_fraction_fcn_abi.py
@@ -783,6 +783,8 @@ def run_evaluate_static(in_file, out_file, ckpt_dir):
     y_len, x_len = bt.shape[0], bt.shape[1]
     lons = get_grid_values_all(h5f, 'longitude')
     lats = get_grid_values_all(h5f, 'latitude')
+    lons = lons[0:2500, :]
+    lats = lats[0:2500, :]
     bt = np.where(np.isnan(bt), 0, bt)
     bt = normalize(bt, 'temp_11_0um_nom', mean_std_dct)
     refl = np.where(np.isnan(refl), 0, refl)