You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This issue happens in the LocalInhibition algorithm in the following method:
publicvirtualvoidBoostColsWithLowOverlap(Connectionsc){// Get columns with too low overlap.varweakColumns=c.Memory.Get1DIndexes().Where(i =>c.HtmConfig.OverlapDutyCycles[i]<c.HtmConfig.MinOverlapDutyCycles[i]).ToArray();for(inti=0;i<weakColumns.Length;i++){Columncol=c.GetColumn(weakColumns[i]);Poolpool=col.ProximalDendrite.RFPool;double[]perm=pool.GetSparsePermanences();ArrayUtils.RaiseValuesBy(c.HtmConfig.SynPermBelowStimulusInc,perm);int[]indexes=pool.GetSparsePotential();col.UpdatePermanencesForColumnSparse(c.HtmConfig,perm,indexes,true);//UpdatePermanencesForColumnSparse(c, perm, col, indexes, true);}}
The text was updated successfully, but these errors were encountered:
Cycle 0
Mini-Columns > 50 are not activated:
Cycle 32
Still not activated:
Cycle 39
Still not activated, but i=50 activates a new mini-column 888.
Cycle 40
Activation of mini-columns start for columns > 50
Cyle 43
Activating
This issue happens in the LocalInhibition algorithm in the following method:
The text was updated successfully, but these errors were encountered: