Skip to content

baimamboukar/neural-networks-in-cpp

Repository files navigation

Project Status: Active – The project has reached a stable, usable state and is being actively developed. Build Status Build status Coverage Status codecov license Lines of Code Average time to resolve an issue Percentage of issues still open

Neural Networks Implementation In C++

Structure

.
├── CMakeLists.txt
├── app
│   └── main.cpp
├── include
│   ├── example.h
│   └── exampleConfig.h.in
├── src
│   └── example.cpp
└── tests
    ├── dummy.cpp
    └── main.cpp

Building

Build by making a build directory (i.e. build/), run cmake in that dir, and then use make to build the desired target.

Example:

mkdir build && cd build
cmake .. -DCMAKE_BUILD_TYPE=[Debug | Coverage | Release]
make
./main
make test      # Makes and runs the tests.
make coverage  # Generate a coverage report.
make doc       # Generate html documentation.

About

From scratch implementation of Neural Networks (MLPs) In C++

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published