Are there any open source Hierarchical Temporal Memory libraries?

Viewed 6495

I'm potentially interested in using hierarchical temporal memory model to solve a research problem I am working on.

Are there any open source libraries for this? I'm fairly open to languages, although C++, Java or Haskell is preferred. If yes, has anyone had any experience with them?

8 Answers

There's NuPIC (Numenta Platform for Intelligent Computing), which is now completely open-source. You also have NuPIC.Core (which contains the core NuPIC algorithms written in C++), but, at the moment, it is still under construction.

There's also one active implementation I could find on the Wikipedia page for the Memory-prediction framework (which is the J. Hawkins' theoretical framework for the HTM theory): Project Neocortex, which seems completely open source (researcher's page).

Related