Computer Vision
Collection
Computer vision models, datasets, etc. • 9 items • Updated
How to use hezarai/crnn-base-fa-v1 with Hezar:
# No code snippets available yet for this library. # To use this model, check the repository files and the library's documentation. # Want to help? PRs adding snippets are welcome at: # https://github.com/huggingface/huggingface.js
A CRNN model for Persian OCR. This model is based on a simple CNN + LSTM architecture inspired by this paper. More info about data and training will be provided soon.
Note that this model is only optimized for scanned documents and supports input characters of up to 32 (For an end-to-end OCR pipeline, use a text detector model first to extract text boxes preferrably in word-level and then use this model), but it can be used to be fine-tuned on other domains like license plate or handwritten texts.
This model is best suited for Persian alphabet and lacks the ability to recognize numbers and digits properly. We'll soon retrain this model to fit all scenarios.
pip install hezar
from hezar.models import Model
crnn = Model.load("hezarai/crnn-base-fa-v1")
texts = crnn.predict(["sample_image.jpg"])
print(texts)