This library is a simple implementation of artificial neural network. It is designed as a light library in order to make the integration of it easier. It is based on Eigen library. The components of the neural network accompained with comments and explanation to mitigate the learning curve. Expanding this library should be also simple.
- Eigen library located in default location (or use symbolic link to real location).
In ubuntu:
sudo apt install libeigen3-dev
- Boost library:
sudo apt-get install libboost-all-dev
- g++ and gcc:
sudo apt install g++-9 libstdc++-9-dev g++-multilib g++-9-multilib gcc-9-doc libstdc++-9-doc
- scons build tool:
sudo apt-get install -y scons
- Build by running:
scons
in main directory. - Build as a shared library by running:
scons shared=1
. - Run tests by calling
build/cppSANN_exec
. - Clean the project:
scons -c
in main directory.
Examples of using cppSANN are located under src/tests directory.
cppSANN is given for free. (You should inspect Eigen library license also), Please cite cppSANN if you use it in your research or application. We don't take any responsibility for using this library.
You are welcome to submit issues.