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

snapshot...

parent b5b2d983
No related branches found
No related tags found
No related merge requests found
......@@ -1578,12 +1578,14 @@ def run_icing_predict_image_1x1(clvrx_dir='/Users/tomrink/data/clavrx/RadC/', ou
if (day_night == 'AUTO' or day_night == 'DAY') and num_day_tiles > 0:
varX_std = stdSclr_day.transform(varX_day)
varX_std = np.where(np.isnan(varX_std), 0, varX_std)
probs = day_model.predict_proba(varX_std)
fd_probs[:] = probs[day_idxs]
if (day_night == 'AUTO' or day_night == 'NIGHT') and num_nght_tiles > 0:
varX_std = stdSclr_nght.transform(varX_ngth)
varX_std = np.where(np.isnan(varX_std), 0, varX_std)
probs = nght_model.predict_proba(varX_std)
fd_probs[:] = probs[nght_idxs]
......
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