Skip to content
Snippets Groups Projects
Commit cd55c906 authored by tomrink's avatar tomrink
Browse files

fix some cf issues

parent 0eab5bb3
No related branches found
No related tags found
No related merge requests found
...@@ -191,6 +191,7 @@ def run_icing_predict(clvrx_dir='/Users/tomrink/data/clavrx/RadC/', output_dir=h ...@@ -191,6 +191,7 @@ def run_icing_predict(clvrx_dir='/Users/tomrink/data/clavrx/RadC/', output_dir=h
model_path = night_model_path model_path = night_model_path
if lunar: if lunar:
model_path = day_model_path model_path = day_model_path
day = 'DAY'
nght_data_dct = {name: [] for name in nght_train_params} nght_data_dct = {name: [] for name in nght_train_params}
for name in nght_train_params: for name in nght_train_params:
...@@ -201,7 +202,7 @@ def run_icing_predict(clvrx_dir='/Users/tomrink/data/clavrx/RadC/', output_dir=h ...@@ -201,7 +202,7 @@ def run_icing_predict(clvrx_dir='/Users/tomrink/data/clavrx/RadC/', output_dir=h
nght_grd_dct[ds_name] = np.stack(nght_data_dct[ds_name]) 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_nght_tiles, model_path,
day_night='NIGHT', l1b_or_l2=l1b_andor_l2, day_night=day, l1b_or_l2=l1b_andor_l2,
prob_thresh=prob_thresh, prob_thresh=prob_thresh,
use_flight_altitude=use_flight_altitude, use_flight_altitude=use_flight_altitude,
flight_levels=flight_levels) flight_levels=flight_levels)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment