├── README.md ├── __pycache__ └── model.cpython-36.pyc ├── app.py ├── model.py ├── static └── model.pb └── templates └── index.html /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeraldy/flask-tensorflow/HEAD/README.md -------------------------------------------------------------------------------- /__pycache__/model.cpython-36.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeraldy/flask-tensorflow/HEAD/__pycache__/model.cpython-36.pyc -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeraldy/flask-tensorflow/HEAD/app.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeraldy/flask-tensorflow/HEAD/model.py -------------------------------------------------------------------------------- /static/model.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeraldy/flask-tensorflow/HEAD/static/model.pb -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jeraldy/flask-tensorflow/HEAD/templates/index.html --------------------------------------------------------------------------------