All Projects → TeluguOCR → Banti_telugu_ocr

TeluguOCR / Banti_telugu_ocr

Licence: apache-2.0
End to end OCR system for Telugu. Based on Convolutional Neural Networks.

Projects that are alternatives of or similar to Banti telugu ocr

Machine Learning From Scratch
Succinct Machine Learning algorithm implementations from scratch in Python, solving real-world problems (Notebooks and Book). Examples of Logistic Regression, Linear Regression, Decision Trees, K-means clustering, Sentiment Analysis, Recommender Systems, Neural Networks and Reinforcement Learning.
Stars: ✭ 42 (+0%)
Mutual labels:  jupyter-notebook
Pyhowfun
🌻 提供一系列的 Python 教學,讓初學者或是有程式基礎的人,快速融入 Python 的世界
Stars: ✭ 42 (+0%)
Mutual labels:  jupyter-notebook
Ml Tutorial Notebooks
This depot contain tutorials for real beginners who want to understand machine learning by reading some code.
Stars: ✭ 42 (+0%)
Mutual labels:  jupyter-notebook
Keras Pytorch Avp Transfer Learning
We pit Keras and PyTorch against each other, showing their strengths and weaknesses in action. We present a real problem, a matter of life-and-death: distinguishing Aliens from Predators!
Stars: ✭ 42 (+0%)
Mutual labels:  jupyter-notebook
Ntm Tensorflow
"Neural Turing Machine" in Tensorflow
Stars: ✭ 1,013 (+2311.9%)
Mutual labels:  jupyter-notebook
Dl Twitch Series
Notebook from the Deep Learning Twitch Series on AWS (https://twitch.tv/aws)
Stars: ✭ 42 (+0%)
Mutual labels:  jupyter-notebook
Mp
公众号《林骥》的文章和代码
Stars: ✭ 41 (-2.38%)
Mutual labels:  jupyter-notebook
Plotly Plots
IPython notebooks for Plotly plots
Stars: ✭ 42 (+0%)
Mutual labels:  jupyter-notebook
Computervision Recipes
Best Practices, code samples, and documentation for Computer Vision.
Stars: ✭ 8,214 (+19457.14%)
Mutual labels:  jupyter-notebook
Pstocky
股票小数据
Stars: ✭ 42 (+0%)
Mutual labels:  jupyter-notebook
Bayesgan
Tensorflow code for the Bayesian GAN (https://arxiv.org/abs/1705.09558) (NIPS 2017)
Stars: ✭ 1,011 (+2307.14%)
Mutual labels:  jupyter-notebook
Tensorflow Programs And Tutorials
Implementations of CNNs, RNNs, GANs, etc
Stars: ✭ 1,012 (+2309.52%)
Mutual labels:  jupyter-notebook
Adaptive Multispeaker Separation
Adaptive and Focusing Neural Layers for Multi-Speaker Separation Problem
Stars: ✭ 42 (+0%)
Mutual labels:  jupyter-notebook
Deeptrading
Deep Neural Network Trading collection of Tensorflow Jupyter notebooks
Stars: ✭ 41 (-2.38%)
Mutual labels:  jupyter-notebook
Spark Sklearn Airbnb Predict
Code example to predict prices of Airbnb vacation rentals, using scikit-learn on Spark with spark-sklearn, on MapR.
Stars: ✭ 42 (+0%)
Mutual labels:  jupyter-notebook
Infectious disease modelling
Stars: ✭ 42 (+0%)
Mutual labels:  jupyter-notebook
Notebooks
Sample Notebooks for PipelineAI
Stars: ✭ 42 (+0%)
Mutual labels:  jupyter-notebook
Twitter Post
This code shows how to get Twitter users interests combining Twitter API and MonkeyLearn.
Stars: ✭ 42 (+0%)
Mutual labels:  jupyter-notebook
Quick Neural Art Transfer
Theano/Lasagne based Neural artistic style transfer with Kivy GUI
Stars: ✭ 42 (+0%)
Mutual labels:  jupyter-notebook
2016 Pydata Carolinas Pandas
Material for Pandas Tutorial at Pydata Carolinas 2016
Stars: ✭ 42 (+0%)
Mutual labels:  jupyter-notebook

Comprehensive OCR System for Telugu Language

The Banti Framework

This framework relies on the ability of a segmentation algorithm to break the text in to glyphs. Hence it can be extended to other scripts with well seperated images like Malayalam, Oriya, Tamil, Kannada, Thai etc.

Features

  • Opens box files generated by antanci_segmenter
  • Passes them to a neural network trained by theanet
  • n-gram modelling of the language
  • Ability to stich broken glyphs (using the language model).

Dependencies

  1. Python3
  2. Numpy, Scipy, Nose etc.
  3. Theano
  4. Pillow
  5. Theanet

Installation Instructions

Using Docker Image

Easiest method is to pull the pre-built image from Docker hub and run in a container. You can do this with the following commands.

  1. docker pull chprasad/banti_telugu_ocr:20160310
  2. docker run -it chprasad/banti_telugu_ocr:20160310 /bin/bash

If you do not have Docker on your machine, you can set that up first with instrictions available from Docker documentation.

Manual Installation

  1. These instructions are tailored to Ubuntu. You should make changes based on your OS.

  2. Use python3. You should already have it. Just type which python3 and check. You will also be using pip3. Python3.4 comes with pip3. Python3.3 and older need additional installation of pip3. We recommend you upgrade to Python3.4.

Dependencies

  1. Install system dependencies.
sudo apt-get install python3-dev python3-pip g++ libopenblas-dev git
  1. Install requirements.

    If you are using python 3 virtual environment, run

pip install -r requirements.txt

If you want to install them system wide, run

sudo pip3 install -r requirements.txt

Usage

  1. Clone this repo. (banti_telugu_ocr)
git clone [email protected]:TeluguOCR/banti_telugu_ocr.git
cd banti_telugu_ocr
  1. Set the following theano flag(s). (I just put the following in my .bashrc file.)
export THEANO_FLAGS='floatX=float32'
  1. Run the ocr program as
python3 recognize.py sample_images/praasa.tif

You will find the output in sample_images/praasa.ml.txt, praasa.nogram.txt, praasa.gram.txt. Pick the one that works best for you.

You can also use other image formats as

python3 recognize.py <path_to_your_image>.[jpg|png|...]

To see full options and get help run

python3 recognize.py -h

This program can also perform OCR on a box file generated by antanci_ocr system.

python3 recognize.py sample_images/praasa.box
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].