Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/kunald08/optical-character-recognition-using-deep-learning

Designed a model for detecting text handwriting from images of texts. Worked in keras using Convolutional Neural Networks(CNN) and Long Short Term Memory(LSTM) cells.
https://github.com/kunald08/optical-character-recognition-using-deep-learning

Last synced: 8 days ago
JSON representation

Designed a model for detecting text handwriting from images of texts. Worked in keras using Convolutional Neural Networks(CNN) and Long Short Term Memory(LSTM) cells.

Awesome Lists containing this project

README

        

# Optical-Character-Recognition-using-Deep-Learning
## Character Level
First download EMNIST dataset [here](http://www.nist.gov/itl/iad/image-group/emnist-dataset)

Run **Char_rec.py**. Use the downloaded csv files for training and testing.

Edit the code as per your framework to open the csv files. I used google colab so its written accordingly.

## Word Level
1. Download IAM dataset(word images and xml file) from [here](http://www.fki.inf.unibe.ch/databases/iam-handwriting-database)
2. Run **Images.py** to convert the images into a csv file.

3. Run **Labels.py** to extract the labels from xml file and store it in a csv file.

4. Run **Word_rec.py** to train the model using the csv files extracted above.

Edit the code as per your framework to open the csv files. I used google colab so its written accordingly.