├── .gitignore ├── Makefile ├── README.md ├── dog.png ├── labels.txt ├── main.c └── mobilenet_v1_1.0_224_frozen.pb /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/tensorflow-inference-in-c/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/tensorflow-inference-in-c/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/tensorflow-inference-in-c/HEAD/README.md -------------------------------------------------------------------------------- /dog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/tensorflow-inference-in-c/HEAD/dog.png -------------------------------------------------------------------------------- /labels.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/tensorflow-inference-in-c/HEAD/labels.txt -------------------------------------------------------------------------------- /main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/tensorflow-inference-in-c/HEAD/main.c -------------------------------------------------------------------------------- /mobilenet_v1_1.0_224_frozen.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattn/tensorflow-inference-in-c/HEAD/mobilenet_v1_1.0_224_frozen.pb --------------------------------------------------------------------------------