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

snapshot...

parent 5459e898
No related branches found
No related tags found
No related merge requests found
...@@ -19,7 +19,7 @@ DISK_CACHE = True ...@@ -19,7 +19,7 @@ DISK_CACHE = True
PROC_BATCH_SIZE = 40 PROC_BATCH_SIZE = 40
NumLabels = 1 NumLabels = 1
BATCH_SIZE = 384 BATCH_SIZE = 384
NUM_EPOCHS = 120 NUM_EPOCHS = 200
TRACK_MOVING_AVERAGE = False TRACK_MOVING_AVERAGE = False
...@@ -241,7 +241,8 @@ class CloudHeightNN: ...@@ -241,7 +241,8 @@ class CloudHeightNN:
self.inputs.append(self.X_prof) self.inputs.append(self.X_prof)
self.inputs.append(self.X_sfc) 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') f = open(datapath, 'rb')
self.in_mem_data_cache = pickle.load(f) self.in_mem_data_cache = pickle.load(f)
f.close() f.close()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment