From 054967b0d9e99e273aaf06456560adc959229c9b Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Wed, 7 Jun 2023 11:21:45 -0500 Subject: [PATCH] snapshot... --- modules/deeplearning/srcnn_l1b_l2.py | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/deeplearning/srcnn_l1b_l2.py b/modules/deeplearning/srcnn_l1b_l2.py index 430c6c71..75c7629f 100644 --- a/modules/deeplearning/srcnn_l1b_l2.py +++ b/modules/deeplearning/srcnn_l1b_l2.py @@ -793,6 +793,7 @@ def analyze(file='/Users/tomrink/cld_opd_out.npy'): pred = pred.flatten() pred = np.where(pred < 0.0, 0.0, pred) + pred = np.where(pred > 160.0, 160.0, pred) lbls = lbls.flatten() diff = pred - lbls -- GitLab