Create README.md
Browse files
README.md
ADDED
@@ -0,0 +1,17 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
language:
|
3 |
+
- fa
|
4 |
+
pipeline_tag: image-to-text
|
5 |
+
---
|
6 |
+
|
7 |
+
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).
|
8 |
+
More info about data and training will be provided soon.
|
9 |
+
|
10 |
+
#### Usage
|
11 |
+
```python
|
12 |
+
from hezar import Model
|
13 |
+
|
14 |
+
crnn = Model.load("hezarai/crnn-base-fa-64x256")
|
15 |
+
texts = crnn.predict(["sample_image.jpg"])
|
16 |
+
print(texts)
|
17 |
+
```
|