https://github.com/harshoza36/digitrecognizerwithapi
This project is Flask App for digit recognizer using MNIST set and with a API to use.
https://github.com/harshoza36/digitrecognizerwithapi
Last synced: 8 months ago
JSON representation
This project is Flask App for digit recognizer using MNIST set and with a API to use.
- Host: GitHub
- URL: https://github.com/harshoza36/digitrecognizerwithapi
- Owner: HarshOza36
- Created: 2020-05-05T09:35:22.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-10-03T04:39:01.000Z (about 2 years ago)
- Last Synced: 2025-01-10T23:43:43.738Z (9 months ago)
- Language: Jupyter Notebook
- Size: 6.16 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# DigitRecognizerWithAPI
This project is Flask App for digit recognizer using MNIST set and with a API to use.## It is not real time detection, it will statically recognize the digits
## For Real time recognition go to [This Github repository](https://github.com/HarshOza36/RealTime_DigitRecognizer)This project will allow user to upload images those will be used to feed it to the model and also be saved in the library of the admin.
Some test images are in ```static\img\uploads``` folder.```fulldrmodel.h5,fulldrmodel.json,kfulldrmodeldigit.h5 and kfulldrmodeldigit folder``` are all saved models in different formats. Refer
[fulldigitrecog.ipynb](https://github.com/HarshOza36/DigitRecognizerWithAPI/blob/master/fulldigitrecog.ipynb) for it.[test.py](https://github.com/HarshOza36/DigitRecognizerWithAPI/blob/master/test.py "Api test") is used to test the API created in flask for that flask should be running first.
## How to use?
Download the Repository.Open command line.
Open your folder where you have the extracted Downloaded Files.
**Step 1**
```
pip install virtualenv
```
**Step 2**
```
virtualenv env
```
here env is your environent name
```
source env/Scripts/activate ->to activate our environment for UNIX
``````
.\env\Scripts\activate ->to activate our environment for Windows
```to activate our environment
**Step 3**
```
pip install -r requirements.txt
```
To install dependencies**Step 4**
```
python app.py
```