-
Notifications
You must be signed in to change notification settings - Fork 7
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
Support htm.core repo for visualization #16
Comments
You can see the data I exposed through these keys: class SpSnapshots(Snapshots):
INPUT = "input"
POT_POOLS = "potentialPools"
CON_SYN = "connectedSynapses"
PERMS = "permanences"
ACT_COL = "activeColumns"
OVERLAPS = "overlaps"
ACT_DC = "activeDutyCycles"
OVP_DC = "overlapDutyCycles"
INH_MASKS = "inhibitionMasks"
BST_FCTRS = "boostFactors"
class TmSnapshots(Snapshots):
ACT_CELLS = "activeCells"
PRD_CELLS = "predictiveCells"
ACT_SEGS = "activeSegments"
MCH_SEGS = "matchingSegments" Each key exposes a simple data structure. |
To support another HTM implementation, one would need to create new facade classes for them like |
Thanks Matt!
|
I am on the border with decision to throw away the interface that i made for pandaVis and use this or at least similar attitude... run simulation and fill data into database, then vis can replay it and do whatever with it. |
Only you'd be missing the "interactively click/activate a cell and see what happens" feature. I don't know how cool,needed that is? Otherwise, the replay from a database would be by far the easiest way, imho |
@breznak you misunderstand that feature or i explained that not clearly... But with the database... that could be another level. |
oh, I see. so the 'click' is just narrowing-down the visualization. I guess I recalled from Matt's videos where you clicked to activate cells. |
Hi Matt,
I wonder what would it take to support htm.core with your famous visualizations?
Currently we got HTMpandaViz tool from @Zbysekz , currenty we sometimes do plots by storing a snapshot of Connections (a common synaptic data-structure for both SP, TM, CP...).
It would be nice if we could form some semi-stable common format
The text was updated successfully, but these errors were encountered: