Official community-supported Java implementation of Hierarchal Temporal Memory (HTM), ported from the Numenta Platform for Intelligent Computing python project.
NOTE: Minimum JavaSE version is 1.8
- HTM.java is now OFFICIAL! See the announcement (02/25/2015)
- HTM.java Now Has Anomaly Detection & Anomaly Likelihood Prediction! (02/22/2015)
- HTM.java Recieves New Benchmarking Tools (02/2015)
- HTM.java Reaches Functional Completion (12/2014)
For a more detailed discussion of htm.java see:
See the Test Coverage Reports - For more information on where you can contribute! Extend the tests and get your name in bright lights!
For answers to more detailed questions, email the nupic-discuss mailing list, or chat with us on Gitter.
Call to Arms: HTM.java needs you!
The primary goal of this library development is to provide a Java version of NuPIC that has a 1-to-1 correspondence to all systems, functionality and tests provided by Numenta's open source implementation; while observing the tenets, standards and conventions of Java language best practices and development.
By working closely with Numenta and receiving their enthusiastic support and guidance, it is intended that this library be maintained as a viable Java language alternative to Numenta's C++ and Python offerings. However it must be understood that "official" support is (for the time being) currently limited to community resources such as the maintainers of this library and Numenta Forums / Message Lists and IRC:
Installation - NEW! Eclipse Environment Setup Wiki
An Eclipse IDE .project and .classpath file are provided so that the cloned project can be easily set up inside of Eclipse. For the time being, the Eclipse IDE is the only "pre-made" project configuration.
In addition, there are "launch configurations" for all of the tests and any runnable entities off of the "htm.java" main directory. These may be run directly in Eclipse by right-clicking them and choosing "run".
Execute a quick sanity check by running all the tests from within the <path to git repo>/htm.java
gradle check # Executes the tests and runs the benchmarks
--or--
gradle -Pskipbench check # Executes the tests w/o running the benchmarks
Note: Info on installing gradle can be found on the wiki (look at #3.) here