As of September 2023 this repository contains code from legacy Hierarchical Temporal Memory (HTM) Numenta projects that have been in maintenance mode for several years.
This repository contains the C++ source code for the Numenta Platform for Intelligent Computing (NuPIC). It will eventually contain all algorithms for NuPIC, but is currently in a transition period. For details on building NuPIC within the python environment, please see numenta/nupic.
You can install the nupic.bindings
Python package from PyPI:
pip install nupic.bindings
Optionally include --user
or other flags to determine where the package is installed.
Note: On Linux this will do a source installation and will require that the prerequisites specified below are installed.
Important notes:
$NUPIC_CORE
is the current location of the repository that you downloaded from GitHub.external/
subdirectoriesNote: On Windows, Python package dependencies require the following compiler package to be installed: Microsoft Visual C++ Compiler for Python 2.7
The Python dependencies (NumPy and pycapnp) can be installed with pip
:
pip install -r bindings/py/requirements.txt
The easiest way to build from source is as follows. This does not support incremental builds.
python setup.py install
Optionally include --user
or other flags to determine where the package is installed.
Regardless of how you install nupic.bindings
, the nupic-bindings-check
command-line script should be installed. Make sure that you include the Python bin
installation location in your PATH
environment variable and then execute the script:
nupic-bindings-check
This option is for developers that would like the ability to do incremental builds of the C++ or for those that are using the C++ libraries directly.
Note: The following sub-sections are related to Linux and OSX only. For Windows refer to the
external\windows64-gcc\README.md
file.
mkdir -p $NUPIC_CORE/build/scripts
cd $NUPIC_CORE/build/scripts
cmake $NUPIC_CORE -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=../release -DPY_EXTENSIONS_DIR=$NUPIC_CORE/bindings/py/src/nupic/bindings
Notes:
-DCMAKE_BUILD_TYPE
to Debug
.-DNUPIC_BUILD_PYEXT_MODULES=ON
; it is the default at this time.-DNUPIC_BUILD_PYEXT_MODULES=OFF
.-DCMAKE_PREFIX_PATH
(for bin/lib) and -DCMAKE_INCLUDE_PATH
(for header files).-DCMAKE_INSTALL_PREFIX=../release
option shown above is optional, and specifies the location where nupic.core
should be installed. If omitted, nupic.core
will be installed in a system location. Using this option is useful when testing versions of nupic.core
language bindings in bindings
.-DPY_EXTENSIONS_DIR
copies the Python exension files to the specified directory. If the extensions aren't present when the Python build/installation is invoked then the setup.py file will run the cmake/make process to generate them. Make sure to include this flag if you want to do incremental builds of the Python extensions.-DPYTHON_LIBRARY=/path/to/lib/libpython2.7.dylib
and -DPYTHON_INCLUDE_DIR=/path/to/include/python2.7
options to override with desired Python install path.-DNUPIC-IWYU=ON
. This requires that IWYU is installed and findable by CMake, with a minimum CMake version of 3.3. IWYU can be installed from https://include-what-you-use.org/ for Windows and Linux, and on OS X using jasonmp85/homebrew-iwyu.-NUPIC_TOGGLE_INSTALL=ON
.# While still in $NUPIC_CORE/build/scripts
make -j3
Note: The
-j3
option specifies '3' as the maximum number of parallel jobs/threads that Make will use during the build in order to gain speed. However, you can increase this number depending your CPU.
# While still in $NUPIC_CORE/build/scripts
make install
cd $NUPIC_CORE/build/release/bin
./cpp_region_test
./unit_tests
...
cd $NUPIC_CORE
python setup.py develop
Note: If the extensions haven't been built already then this will call the cmake/make process to generate them.
If you get a gcc exit code 1, you may consider running this instead:
python setup.py develop --user
If you are installing on Mac OS X, you must add the instruction ARCHFLAGS="-arch x86_64"
before the python call:
ARCHFLAGS="-arch x86_64" python setup.py develop
Alternatively, you can use the install
command (as opposed to develop
) to copy the installation files rather than link to the source location.
python setup.py install
Note: If you get a "permission denied" error when using the setup commands above, you may add the
--user
flag to install to a location in your home directory, which should resolve any permissions issues. Doing this, you may need to add this location to your PATH and PYTHONPATH.
Once it is installed, you can import NuPIC bindings library to your python script using:
import nupic.bindings
You can run the nupic.bindings tests via setup.py
:
python setup.py test
$NUPIC_CORE/src
).$NUPIC_CORE/build/scripts
), i.e. where IDE solution will be created.Generate
.nupic_core.*proj
solution file generated on $NUPIC_CORE/build/scripts
.ALL_BUILD
project from your IDE.tests_*
project from your IDE (check output
panel to see the results).Run doxygen, optionally specifying the version as an environment variable:
PROJECT_VERSION=`cat VERSION` doxygen
The results will be written out to the html
directory.