forked from numenta/NAB
-
Notifications
You must be signed in to change notification settings - Fork 3
HTM community detector (py3) #5
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
Merged
Changes from 12 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
12d98e5
HTM.core new detector installed
breznak 2d692db
Merge branch 'py2_compatibility' into htm_community_detector
breznak e4e12c2
Merge branch 'py2_compatibility' into htm_community_detector
breznak b08c92e
Merge branch 'master' into htm_community_detector
breznak 8de00c6
new HtmcoreDetector POC
breznak 8e62c87
Htmcore: updated Readme for this detector
breznak 1649ec4
Htm.core detector: cleanup handleRecord()
breznak ae84be0
Htm.core detector: params and Enc, SP, TM initialized
breznak 7b49b09
Htm.core runable detector!
breznak 02bbf1f
Htm.core detector remove relic from numenta's Model API
breznak 3c11d61
Updated README
breznak a1c262f
README: add htmcore detector's results
breznak c893cb2
Htmcore detector: add model params from numenta_detector
breznak 4f2e8a5
Htmcore: add params comparable with numenta detector
breznak 01f4c41
remove wrong comment
breznak 3097a72
Improved parameters for htm.core detector.
ctrl-z-9000-times 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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,32 @@ | ||
| # HtmcoreDetector HTM implementation from [htm.core](https://github.com/htm-community/htm.core/) | ||
|
|
||
| This detector provides HTM implementation from [htm.core](https://github.com/htm-community/htm.core/), | ||
| which is an actively developed, community version of Numenta's [nupic.core](https://github.com/numenta/nupic.core). | ||
|
|
||
| This is a python 3 detector, called `htmcore`, as Numenta is switching NAB to python 3, this is the closes detector you can get to | ||
| `numenta`, `numentaTM` detectors. | ||
|
|
||
| `Htm.core` offers API and features similar and compatible with the official HTM implementations `nupic`, `nupic.core`. Although there | ||
| are significant speed and features improvements available! For more details please see [the htm.core project's README](https://github.com/htm-community/htm.core/blob/master/README.md) | ||
| Bugs and questions should also be reported there. | ||
|
|
||
| ## Installation | ||
|
|
||
| `htmcore` detector is automatically installed with your `NAB` installation (`python setup.py install`), | ||
| so you don't have to do anything to have it available. | ||
|
|
||
| ### Requirements to install | ||
|
|
||
| - [Python 3](https://www.python.org/download/) | ||
| - [Git](https://git-scm.com/downloads) | ||
|
|
||
|
|
||
| ## Usage | ||
|
|
||
| Is the same as the default detectors, see [NAB README section Usage](https://github.com/htm-community/NAB/blob/master/README.md#usage) | ||
|
|
||
| ### Example | ||
| Follow the instructions in the main README to run optimization, scoring, and normalization, e.g.: | ||
|
|
||
| `python run.py -d htmcore --optimize --score --normalize` | ||
|
|
Empty file.
Oops, something went wrong.
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.
first shot results are not really good, we have to pump it up guys! 📌
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.
I've pushed commit that uses
numenta_detector's params, currently running benchmarks