Hi , in BaMI Temporal Memory section , it says "When a dendrite segment becomes active, modify the permanence values of all the synapses
associated with the segment. For every potential synapse on the active dendrite segment, increase the
permanence of those synapses that are connected to active cells and decrement the permanence of
those synapses connected to inactive cells. These changes to synapse permanence are marked as
temporary "
As for “temporary permanences of synapses”, what i understand is that for every active dendrite segment of a cell , we increase the permanence of a temporary variable ; lets say “temporaryWeightVariable”, instead of WeightVariable which is permanent and its value propagates forward in next timesteps. And WeightVariable change its value only in case of right/false prediction for a specific cell. Is that true?
@rogert is correct, that section is no longer in BaMI.
Our Temporal Memory implementation doesn’t have a notion of a “temporary” change. When the Temporal Memory receives a new input, it evaluates the input against its predictions. On segments that correctly predicted the input, it rewards active synapses (PERMANENCE_INCREMENT) and punishes inactive synapses (PERMANENCE_DECREMENT). On segments that incorrectly predicted another input, it punishes active synapses (PREDICTED_DECREMENT).