Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 807 Bytes

File metadata and controls

25 lines (20 loc) · 807 Bytes

About

This is a C++ implementation of an fully connected neural network. It was inspired by an example in this book.

Neural Networks and Deep Learning.

It is a work in progress and is not yet complete nor accurate enough for use.

Building

Just run the following commands in the root directory of the project:

mkdir build
cd build
cmake ..
make
./build/mlcpp

or put it in any directory you wish, but make sure CMake is accessible from that directory.

Requirements

  • CMake 3.10 or higher
  • C++ compiler with C++17 support
  • OpenCV for C++
  • matplotlibcpp for plotting