Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/innofang/what-digit-you-write
🎰Handwritten digit recognition application implemented by TensorFlow2 + Keras and Flask.
https://github.com/innofang/what-digit-you-write
flask flask-application handwritten-digit-recognition keras-tensorflow mnist mnist-handwriting-recognition tensorflow2 wtfpl-license
Last synced: 2 days ago
JSON representation
🎰Handwritten digit recognition application implemented by TensorFlow2 + Keras and Flask.
- Host: GitHub
- URL: https://github.com/innofang/what-digit-you-write
- Owner: InnoFang
- License: wtfpl
- Created: 2018-10-07T07:05:07.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-10-11T11:37:51.000Z (about 2 years ago)
- Last Synced: 2023-03-09T01:21:07.077Z (over 1 year ago)
- Topics: flask, flask-application, handwritten-digit-recognition, keras-tensorflow, mnist, mnist-handwriting-recognition, tensorflow2, wtfpl-license
- Language: Python
- Homepage: https://what-digit-you-write.herokuapp.com/
- Size: 195 MB
- Stars: 40
- Watchers: 1
- Forks: 12
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# What digit you write?
![](https://img.shields.io/badge/TensorFlow-2.1-orange) ![](https://img.shields.io/badge/Python-3.7-blue)
Handwritten digit recognition application implemented by TensorFlow2 + Keras and Flask.
![](https://cdn.jsdelivr.net/gh/innofang/jotter/source/waht-digit-you-write/screencast.gif)
## How to run?
```shell script
$ git clone --depth 1 https://github.com/InnoFang/what-digit-you-write.git
$ cd what-digit-you-write
$ conda create --name --file requirements.txt
$ conda activate
$ python app.py
```If the clone is too slow, you can use the following method
```shell script
$ # 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
````