├── CMakeLists.txt ├── LICENSE.txt ├── README.md ├── include └── tensorflow │ └── c │ ├── LICENSE │ ├── c_api.h │ ├── c_api_experimental.h │ └── eager │ └── c_api.h ├── model_run.cpp ├── requirements.txt └── train_and_export.py /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljabr0/from-keras-to-c/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljabr0/from-keras-to-c/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljabr0/from-keras-to-c/HEAD/README.md -------------------------------------------------------------------------------- /include/tensorflow/c/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljabr0/from-keras-to-c/HEAD/include/tensorflow/c/LICENSE -------------------------------------------------------------------------------- /include/tensorflow/c/c_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljabr0/from-keras-to-c/HEAD/include/tensorflow/c/c_api.h -------------------------------------------------------------------------------- /include/tensorflow/c/c_api_experimental.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljabr0/from-keras-to-c/HEAD/include/tensorflow/c/c_api_experimental.h -------------------------------------------------------------------------------- /include/tensorflow/c/eager/c_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljabr0/from-keras-to-c/HEAD/include/tensorflow/c/eager/c_api.h -------------------------------------------------------------------------------- /model_run.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljabr0/from-keras-to-c/HEAD/model_run.cpp -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | tensorflow 2 | -------------------------------------------------------------------------------- /train_and_export.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aljabr0/from-keras-to-c/HEAD/train_and_export.py --------------------------------------------------------------------------------