From 2e292935f15df13346269d598a9c2dfcdd211857 Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Mon, 4 Oct 2021 13:01:15 -0500 Subject: [PATCH] minor --- modules/deeplearning/icing_cnn.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/deeplearning/icing_cnn.py b/modules/deeplearning/icing_cnn.py index db717c41..1b5c34b8 100644 --- a/modules/deeplearning/icing_cnn.py +++ b/modules/deeplearning/icing_cnn.py @@ -39,12 +39,12 @@ NOISE_STDDEV = 0.01 img_width = 16 mean_std_dct = {} -mean_std_file = homedir+'data/icing/mean_std_lo_hi_l2.pkl' +mean_std_file = homedir+'mean_std_lo_hi_l2.pkl' f = open(mean_std_file, 'rb') mean_std_dct_l2 = pickle.load(f) f.close() -mean_std_file = homedir+'data/icing/mean_std_lo_hi_l1b.pkl' +mean_std_file = homedir+'mean_std_lo_hi_l1b.pkl' f = open(mean_std_file, 'rb') mean_std_dct_l1b = pickle.load(f) f.close() -- GitLab