/deep-learning-from-scratch-2-cpp

C++ version of https://github.com/oreilly-japan/deep-learning-from-scratch-2

Primary LanguageC++MIT LicenseMIT

deep-learning-from-scratch-2 ~ C++ ver ~

I make C++ version of deep-learning-from-scratch-2 in this repository.

I learn C++ and NLP DeepLearning in this repository.

File structure

same originator

Usage

setup

git clone --recursive https://github.com/s14t284/deep-learning-from-scratch-2-cpp.git
cd deep-learning-from-scratch-2-cpp/
docker build -t dlscratch:latest .

compile all files

make

compile a file

# ex.) ch0/src/main.cpp -> BIN=ch0/src/main
make BIN=/path/to/file compile

exec a file

make BIN=/path/to/file test

clean all object file(.o)

make clean_all

clean a object file

make BIN=/path/to/file clean

LICENSE

MIT

References