An open API service indexing awesome lists of open source software.

https://github.com/awadalaa/mnist_demo

learning how to apply inference in a webapp
https://github.com/awadalaa/mnist_demo

flask mnist tensorflow

Last synced: 5 months ago
JSON representation

learning how to apply inference in a webapp

Awesome Lists containing this project

README

          

# MNIST digit recognition demo

## Introduction
1. How to export a model and have a simple self-sufficient file for it
2. How to build a simple python server (using flask) to serve a TensorFlow model

## Installation
Clone the respository:
`git clone https://github.com//mnist_demo.git`

## Install Dependencies such as virtualenv, flask, and tensorflow
`pip install -r requirements.txt`

`virtualenv env`

`source env/bin/activate`

## Start the server
`gunicorn app:app --log-file=-`