DeepLearningFramework icon indicating copy to clipboard operation
DeepLearningFramework copied to clipboard

Deep Learning in pure C++

DeepLearningFramework

Deep Learning in pure C++ 11 (work in progress)


  • auto differentiate
  • static computational graph
  • basic nerual network building blocks
  • NO parallel (future work)

Test on MNIST Dataset

  1. clone this repo
  2. mkdir dataset and download MNIST dataset into this folder.
  3. mkdir build & cd build
  4. cmake ..
  5. make
  6. run ./ts

Tutorial

Please see the elaborate code in src/test.cpp.