From dd45704c42df323ef8a84b1ffbe7a37c0268945b Mon Sep 17 00:00:00 2001 From: tomrink <rink@ssec.wisc.edu> Date: Tue, 19 Jan 2021 13:03:26 -0600 Subject: [PATCH] snapshot... --- modules/deeplearning/cloudheight.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/modules/deeplearning/cloudheight.py b/modules/deeplearning/cloudheight.py index c7462664..f57c5599 100644 --- a/modules/deeplearning/cloudheight.py +++ b/modules/deeplearning/cloudheight.py @@ -19,7 +19,7 @@ DISK_CACHE = True PROC_BATCH_SIZE = 40 NumLabels = 1 BATCH_SIZE = 384 -NUM_EPOCHS = 120 +NUM_EPOCHS = 200 TRACK_MOVING_AVERAGE = False @@ -241,7 +241,8 @@ class CloudHeightNN: self.inputs.append(self.X_prof) self.inputs.append(self.X_sfc) - if (not DISK_CACHE) and (datapath is not None): + if datapath is not None: + self.DISK_CACHE = False f = open(datapath, 'rb') self.in_mem_data_cache = pickle.load(f) f.close() -- GitLab