Skip to content

Latest commit

 

History

History
34 lines (17 loc) · 534 Bytes

File metadata and controls

34 lines (17 loc) · 534 Bytes

Deep learning Framework

Description

I wrote this deep learning framework to better understand how back propagation algorithms work.

Requirements

cmake version 3.7 or later

Compile and build

cd into the project directory,then using these commands to compile and build

mkdir build
cd build
cmake ..
make -j4

Special thanks

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.