diff --git a/modules/deeplearning/icing_cnn.py b/modules/deeplearning/icing_cnn.py index 5c2cc19f8790e7533aaabecaf0b7c5514f93578a..85f933fe383e66683289a6aee6f0a09175b8f445 100644 --- a/modules/deeplearning/icing_cnn.py +++ b/modules/deeplearning/icing_cnn.py @@ -1009,6 +1009,8 @@ def run_evaluate_static(h5f, ckpt_dir_s_path, prob_thresh=0.5, satellite='GOES16 ll, cc = np.meshgrid(ll, cc, indexing='ij') #cc = np.array(cc) #ll = np.array(ll) + cc = cc.flatten() + ll = ll.flatten() ice_mask = preds == 1 print(cc.shape, ll.shape, ice_mask.shape) ice_cc = cc[ice_mask]