forked from numenta/nupic.core-legacy
-
Notifications
You must be signed in to change notification settings - Fork 82
TM Connections integration #537
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Changes from 1 commit
Commits
Show all changes
44 commits
Select commit
Hold shift + click to select a range
103e8fc
destroySynapse: const arg
breznak b6a103a
TM: fix when custom minPermanence
breznak cc476a9
COnnections: adaptSegment: deduplicate code for timeseries
breznak 21c315c
Connections: adaptSegment fix hardcoded minPermanence
breznak cdcf5df
TM:adaptSegment make similar to connections'
breznak dd45567
TM:adaptSegment uses connections', WIP
breznak 34401b4
Connections:adaptSegment allow to prune zero synapses
breznak 8607710
TM: adaptSegment use SDR for prevActiveCells to match Connections
breznak f6f029e
Connections:adaptSegment remove empty segments
breznak 14871c9
SegmentData has simple default constructor
breznak a25040c
Connections:createSegment can check for maxSegmentsPerCell
breznak 9648ae0
TM: move lastUsedIterationForSegment to SegmentData.lastUsed
breznak e20c267
TM uses Connections' createSegment
breznak 24b2c36
Connections: add const + fix tests
breznak abb8f96
comment
breznak cbf0d38
Hotgym: print connections stats for SP, TM
breznak dac487a
Connections: print stats on usage of pruned Segs, Syns
breznak 47eb418
Hotgym: add Metrics for SDRs from SP, TM, Input
breznak cccc3e5
Connection:createSegment fix check for maxSegmentsPerCell
breznak 8a1e871
COnnections:createSegment make sort deterministic
breznak e8fb520
Connections: make sort statements deterministic
breznak 37e7a13
COnnections: make createSegment maxSegments default to disabled
breznak 023ed97
Merge branch 'master_community' into tm_conn
breznak 629db2f
Merge branch 'master_community' into tm_conn
breznak d7ba1a9
Merge branch 'master_community' into tm_conn
breznak 60a384e
TM: optimize growSynapses
breznak 0188242
Merge branch 'master_community' into tm_conn
breznak c95c177
Connections: guard adaptSegment remove segment with pruneZeroSynapses
breznak 4672daf
Connections: move iteration from TM
breznak 95b8b6d
Conn: segment ordinals are never same for a != b
breznak b5498f3
COnnections: prune segment if it never can connect again
breznak 6e07f06
TM code comments
breznak 184ad2c
TM:getLeastUsedCells improve doc
breznak 36ed0ca
TM: add explanation for synapses only on new, unsynapsed segments
breznak be38786
Merge branch 'master_community' into tm_conn
breznak d20c9e8
Merge branch 'master' into tm_conn
breznak 2f16fb3
Merge branch 'master_community' into tm_conn
breznak 5fe3697
Connections: some more const
breznak 425f12c
Merge branch 'tm_conn' of https://github.com/htm-community/nupic.core…
breznak d3186ed
update determ output results
breznak fc38d89
Conn: synapseOrdinals_ moved to SynapseData
breznak 5b368d8
Conn: move segment ordinals (id) to SegmentData
breznak 065b467
Merge branch 'master_community' into tm_conn
breznak 24983cf
fixup Connections:destroySegment use find
breznak File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
the error was dumb, comparing const iterator above with
.segments.end()here.Replaced with a simpler
findthat does not require extra sorting.