tiny_dnn
1.0.0
A header only, dependency-free deep learning framework in C++11
|
Because tiny-dnn is header-only, integrating it with your application is extremely easy. We explain how to do it step-by-step.
Just add the following line:
tiny-dnn uses C++11's core features and libraries. You must use the c++11 compliant compiler and compile with c++11-mode.
C++11 features are enabled by default, you have nothing to do about it.
Use -std=c++11
option to enable c++11-mode.
From gcc 6.0, the default compile mode for c++ is -std=gnu++14, so you don't need to add this option.
Tell your build system where tiny-dnn exists. In gcc:
Another solution: place tiny-dnn's header files under your project root