https://github.com/lsevero/tiny-handwritten-ocr
A tiny app that recognizes handwritten digits using IBM watson
https://github.com/lsevero/tiny-handwritten-ocr
Last synced: 2 months ago
JSON representation
A tiny app that recognizes handwritten digits using IBM watson
- Host: GitHub
- URL: https://github.com/lsevero/tiny-handwritten-ocr
- Owner: lsevero
- Created: 2017-05-16T15:52:50.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-05-16T22:06:05.000Z (about 8 years ago)
- Last Synced: 2025-01-20T18:44:55.379Z (4 months ago)
- Language: JavaScript
- Size: 1.93 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Tiny Handwritten OCR (using IBM Watson)
=======================================
This is a tiny example of how to recognize handwritten digits using IBM Watson Visual Recognition, this app runs solely on the client's browser, and sends and receives data to Watson through ajax calls.
The training set is at the folder digits/ , with the code to train Watson to recognize the digits ('training.sh').
You could open the 'index.html' with the browser or serve it with python or any static file server:
```python
#python 3
python -m http.server 8080
```Or
```python
#python 2
python -m SimpleHTTPServer 8080
```Then access it with 'localhost:8080' in a web browser.
The server/ folder holds the server code deployed to IBM Bluemix.