Skip to content

InnoFang/what-digit-you-write

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

What digit you write?

Handwritten digit recognition application implemented by TensorFlow2 + Keras and Flask.

How to run?

$ git clone --depth 1 https://github.com/InnoFang/what-digit-you-write.git
$ cd what-digit-you-write
$ conda create --name <env> --file requirements.txt
$ conda activate <env>
$ python app.py

If the clone is too slow, you can use the following method

$ # git clone --depth 1 https://github.com.cnpmjs.org/InnoFang/what-digit-you-write.git 

docker env

see Dockerfile for how the environment is built

$ git clone --depth 1 https://github.com/InnoFang/what-digit-you-write.git
$ cd what-digit-you-write
$ docker build -t ml-digit .
$ docker run -it -p 5000:5000 ml-digit