From 529b7e1cfb01d9c8e9863bd4a7f120fd324e1562 Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Tue, 31 Oct 2023 10:33:13 -0500 Subject: [PATCH] snapshot... --- modules/icing/util.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/modules/icing/util.py b/modules/icing/util.py index fecba587..8b928aa3 100644 --- a/modules/icing/util.py +++ b/modules/icing/util.py @@ -653,11 +653,6 @@ def run_icing_predict_image_fcn(clvrx_dir='/Users/tomrink/data/clavrx/RadC/', ou probs_2d_dct[flvl] = fd_probs if (day_night == 'AUTO' or day_night == 'DAY') and num_day_tiles > 0: - # preds_day_dct, probs_day_dct = icing_fcn.run_evaluate_static(data_dct, 1, day_model_path, - # day_night='DAY', l1b_or_l2=l1b_andor_l2, - # prob_thresh=prob_thresh, - # use_flight_altitude=use_flight_altitude, - # flight_levels=flight_levels) preds_day_dct, probs_day_dct = icing_fcn.run_evaluate_static_2(day_model, data_dct, 1, prob_thresh=prob_thresh, use_flight_altitude=use_flight_altitude, @@ -671,11 +666,6 @@ def run_icing_predict_image_fcn(clvrx_dir='/Users/tomrink/data/clavrx/RadC/', ou fd_probs[day_idxs] = probs[day_idxs] if (day_night == 'AUTO' or day_night == 'NIGHT') and num_nght_tiles > 0: - # preds_nght_dct, probs_nght_dct = icing_fcn.run_evaluate_static(data_dct, 1, night_model_path, - # day_night='NIGHT', l1b_or_l2=l1b_andor_l2, - # prob_thresh=prob_thresh, - # use_flight_altitude=use_flight_altitude, - # flight_levels=flight_levels) preds_nght_dct, probs_nght_dct = icing_fcn.run_evaluate_static_2(night_model, data_dct, 1, prob_thresh=prob_thresh, use_flight_altitude=use_flight_altitude, -- GitLab