From 7e585b01e8f3189ed1d9c8d0ecaf912688c6716a Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Wed, 30 Nov 2022 10:57:02 -0600 Subject: [PATCH] snapshot... --- modules/icing/pirep_goes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/icing/pirep_goes.py b/modules/icing/pirep_goes.py index 6b3d13e9..74437999 100644 --- a/modules/icing/pirep_goes.py +++ b/modules/icing/pirep_goes.py @@ -2407,8 +2407,8 @@ def analyze(preds_file, labels, prob_avg, test_file): iint = np.where(iint == -1, 0, iint) iint = np.where(iint != 0, 1, iint) - nda[np.logical_and(nda >= 0, nda < 2500)] = 0 - nda[np.logical_and(nda >= 2500, nda < 15000)] = 1 + nda[np.logical_and(nda >= 0, nda < 3400)] = 0 + nda[np.logical_and(nda >= 3400, nda < 15000)] = 1 # nda[np.logical_and(nda >= 8000, nda < 15000)] = 2 #print(np.sum(nda == 0), np.sum(nda == 1), np.sum(nda == 2)) -- GitLab