TextRecognition / README.md
charantejapolavarapu's picture
Update README.md
614629c verified

A newer version of the Gradio SDK is available: 6.12.0

Upgrade
metadata
title: Handwritten Text Recognition
emoji: πŸ“š
colorFrom: blue
colorTo: purple
sdk: gradio
sdk_version: 6.5.1
python_version: '3.13'
app_file: app.py
pinned: false

✍️ Handwritten Line Text Recognition (HTR)

This project implements a Handwritten Line Text Recognition (HTR) system using Deep Learning with TensorFlow.

The model is based on a CRNN (CNN + BiLSTM + CTC) architecture and can recognize handwritten English text lines from images.

Deployed on Hugging Face Spaces using Gradio.


πŸš€ How It Works

Image β†’ CNN β†’ BiLSTM β†’ Dense β†’ CTC Decode β†’ Text Output

The model:

  • Extracts visual features using Convolutional layers
  • Models sequence dependencies with Bidirectional LSTM
  • Uses CTC decoding to predict variable-length text

πŸ“‚ Project Files