I wrote this deep learning framework to better understand how back propagation algorithms work.
cmake version 3.7 or later
cd into the project directory,then using these commands to compile and build
mkdir build
cd build
cmake ..
make -j4
In this framework,I save the structure of modules as json file.Thanks to nlohmann
[https://github.com/nlohmann/json]:
who provides the json.hpp to process json file.