Holotype Robotics
Holotype Robotics
In the file htm.core/docs/NetworkAPI_Engine.md it says that setParameter is available to use in python, but it is not. Expected behavior:` region.setParameter("name", value)` Actual behavior: `RuntimeError: Attribute setParameter not found`.
I have been looking for a proper way to reset temporal memory for learning a short sequence. The Region docs it is says that "resetIn" is is supposed to be...
Code in question: ``` for cell in cells: segments = tm.connections.segmentsForCell(cell) for segment in segments: synapses = tm.connections.synapsesForSegment(segment) for synapse in synapses: current_permanence = tm.connections.permanenceForSynapse(synapse) print(f"Synapse {synapse}: {current_permanence}") tm.connections.updateSynapsePermanence(synapse, 1)...