Commit 3aab2c31 authored by Benjamin Thomas Graham's avatar Benjamin Thomas Graham
Browse files

fix precompute function

parent 954223a2
...@@ -75,9 +75,9 @@ class InputBatch(SparseConvNetTensor): ...@@ -75,9 +75,9 @@ class InputBatch(SparseConvNetTensor):
Use size == 3 if downsizing with size-3 stride-2 operations Use size == 3 if downsizing with size-3 stride-2 operations
""" """
if size == 2: if size == 2:
self.metadata.generateRuleBooks2s2(self.metadata) self.metadata.generateRuleBooks2s2()
if size == 3 : if size == 3 :
self.metadata.generateRuleBooks3s2(self.metadata) self.metadata.generateRuleBooks3s2()
"Deprecated method names." "Deprecated method names."
def addSample(self): def addSample(self):
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment