├── .gitignore ├── CMakeLists.txt ├── Makefile ├── README.md ├── app.cc └── class_name.h /.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | include 3 | data 4 | lib 5 | app 6 | -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhjin/tensorflow-cpp/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhjin/tensorflow-cpp/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhjin/tensorflow-cpp/HEAD/README.md -------------------------------------------------------------------------------- /app.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhjin/tensorflow-cpp/HEAD/app.cc -------------------------------------------------------------------------------- /class_name.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jhjin/tensorflow-cpp/HEAD/class_name.h --------------------------------------------------------------------------------