├── .gitmodules └── README.MD /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "appengine-frontend"] 2 | path = appengine-frontend 3 | url = https://github.com/ColeMurray/appengine-frontend 4 | [submodule "keras-inceptionv3-flask-api"] 5 | path = keras-inceptionv3-flask-api 6 | url = https://github.com/ColeMurray/keras-inceptionv3-flask-api 7 | -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- 1 | Tutorial on using Google's Inception V3 model with Keras. 2 | 3 | ### Overview 4 | * Keras Inception V3 Prediction 5 | * Deploy on Compute Engine w/ Docker & Google Container Registry 6 | * Flask Front-end Webserver 7 | 8 | https://blog.murraycole.com/2017/01/22/keras-inception-v3-on-google-compute-engine/ 9 | 10 | 11 | ## Clone 12 | 13 | ```git clone --recursive https://github.com/ColeMurray/keras-inception-v3-tutorial.git``` 14 | --------------------------------------------------------------------------------