diff --git a/modules/icing/util.py b/modules/icing/util.py index fecba587b5be96af01ddcfa7a42ea52618f51433..8b928aa3376af1cad283a2a9e836f8b57e699681 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,