From 190eb5e98f22db021f572e04ae4fb76549efbd5c Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Tue, 26 Jul 2022 13:43:39 -0500 Subject: [PATCH] fix bug --- modules/icing/util.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/modules/icing/util.py b/modules/icing/util.py index e5f05873..85d8956f 100644 --- a/modules/icing/util.py +++ b/modules/icing/util.py @@ -213,7 +213,7 @@ def run_icing_predict(clvrx_dir='/Users/tomrink/data/clavrx/RadC/', output_dir=h elif day_night == 'NIGHT': model_path = night_model_path - all_idxs = np.arange(num_lines * num_elems).tolist() + all_idxs = np.arange(num_lines * num_elems) mode = 'NIGHT' if use_dnb and lunar_illuminated: @@ -229,12 +229,11 @@ def run_icing_predict(clvrx_dir='/Users/tomrink/data/clavrx/RadC/', output_dir=h for ds_name in nght_train_params: nght_grd_dct[ds_name] = np.stack(nght_data_dct[ds_name]) - preds_nght_dct, probs_nght_dct = model_module.run_evaluate_static(nght_grd_dct, num_nght_tiles, model_path, + preds_nght_dct, probs_nght_dct = model_module.run_evaluate_static(nght_grd_dct, num_tiles, model_path, day_night=mode, l1b_or_l2=l1b_andor_l2, prob_thresh=prob_thresh, use_flight_altitude=use_flight_altitude, flight_levels=flight_levels) - all_idxs = np.asarray(all_idxs) for flvl in flight_levels: nght_preds = preds_nght_dct[flvl] nght_probs = probs_nght_dct[flvl] -- GitLab