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

snapshot...

parent 4c959a1d
No related branches found
No related tags found
No related merge requests found
...@@ -182,9 +182,9 @@ class IcingIntensityNN: ...@@ -182,9 +182,9 @@ class IcingIntensityNN:
key = frozenset(idxs) key = frozenset(idxs)
if CACHE_DATA_IN_MEM: if CACHE_DATA_IN_MEM:
data, label = self.in_mem_data_cache.get(key) tup = self.in_mem_data_cache.get(key)
if data is not None: if tup is not None:
return data, label return tup[0], tup[1]
# sort these to use as numpy indexing arrays # sort these to use as numpy indexing arrays
nd_idxs = np.array(idxs) nd_idxs = np.array(idxs)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment