arxyzan commited on
Commit
820b26f
1 Parent(s): e614896

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +8 -1
README.md CHANGED
@@ -7,4 +7,11 @@ tags:
7
  - hezar
8
  - image-to-text
9
  pipeline_tag: image-to-text
10
- ---
 
 
 
 
 
 
 
 
7
  - hezar
8
  - image-to-text
9
  pipeline_tag: image-to-text
10
+ ---
11
+ A CRNN model for Persian OCR. This model is based on a simple CNN + LSTM architecture inspired by [this paper](https://arxiv.org/abs/1507.05717). This is a successor model to
12
+ our previous model [hezarai/crnn-base-fa-64x256](https://huggingface.co/hezarai/crnn-base-fa-64x256). The dataset for training this model was almost 5 times larger and the
13
+ maximum output length supported by this model has been increased from 32 to 48 characters. (The model can actually output 96 characters including blank but to tackle CTC decoding challenges no samples
14
+ longer than 48 characters have been fed to the model).
15
+
16
+ Note that this model is only optimized for printed/scanned documents and supports up to 50-ish characters. (For an end-to-end OCR pipeline, use a text detector model first to
17
+ 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.