Hey guys just one quick question.
Are the following always equivalent, by that I mean the active columns would be the same?
sp = SpatialPooler(…)
At the ith step…
sp.compute(input, False, active_columns1)
sp.compute(input, True, active_columns2)
active_columns1 == active_columns2
?
I’m looking for ways for doing a “dry run” for the compute function.
Cheers