Closed fcr closed 5 months ago
projects/location_layer/single_layer_2d_experiment/logging.py Line 223:
activeColumn = cell / self.inputLayer.cellsPerColumn
should read:
activeColumn = cell // self.inputLayer.cellsPerColumn
Nice catch! There were a bunch of these in the Python 2 -> 3 transition, looks like I still missed a few.
projects/location_layer/single_layer_2d_experiment/logging.py Line 223:
activeColumn = cell / self.inputLayer.cellsPerColumn
should read:
activeColumn = cell // self.inputLayer.cellsPerColumn