Branch | Build Status | Code Coverage |
---|---|---|
Master | ||
Develop |
- gcc or clang
- make
- cmake
- graphviz
- criterion (test only)
- doxygen and perl (for documentation generation)
A static library containing multiple neural network models written in C
See some examples here
View the documentation of all functions here
- with yay
yay -S adaptativeneuralnetwork
- with pacman
git clone https://aur.archlinux.org/adaptativeneuralnetwork.git
cd adaptativeneuralnetwork
makepkg -sci
- Clone this repo
- Then run the following command
mkdir -p build && cd build
cmake -DCMAKE_BUILD_TYPE=RELEASE \
-DCMAKE_INSTALL_LIBDIR=lib \
-DCMAKE_INSTALL_PREFIX=/usr \
..
sudo make install
A python API for ANN
- build from source the c library
- run the following command
sudo make pyann_install
-
clone this repo
-
checkout on develop branch
-
Build
mkdir -p build && cd build && cmake .. && make
- Run test
make check
- Coverage report
make coverage
- Generate documentation
make doc
- Fork this project
- Create a new branch
- Make your changes
- Merge your branch to develop
- Create a pull request and explain your changes
See the LICENSE file for licensing information.