Detection model mAP=0.9840
Browse files- README.md +21 -3
- dataset.yaml +6 -0
- shobdo_det.onnx +3 -0
- shobdo_det.pt +3 -0
README.md
CHANGED
|
@@ -1,3 +1,21 @@
|
|
| 1 |
-
---
|
| 2 |
-
|
| 3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language: bn
|
| 3 |
+
license: mit
|
| 4 |
+
tags:
|
| 5 |
+
- object-detection
|
| 6 |
+
- ocr
|
| 7 |
+
- bengali
|
| 8 |
+
- yolov8
|
| 9 |
+
---
|
| 10 |
+
|
| 11 |
+
# ShobdoOCR — Word-Level Detection
|
| 12 |
+
|
| 13 |
+
**Load:**
|
| 14 |
+
```python
|
| 15 |
+
from ultralytics import YOLO
|
| 16 |
+
from huggingface_hub import hf_hub_download
|
| 17 |
+
model = YOLO(hf_hub_download("Sarjinkhan2003/shobdo-ocr-detection", "shobdo_det.pt"))
|
| 18 |
+
results = model.predict("doc.jpg", conf=0.25)
|
| 19 |
+
```
|
| 20 |
+
|
| 21 |
+
**mAP@0.5:** 0.9840
|
dataset.yaml
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
names:
|
| 2 |
+
- word
|
| 3 |
+
nc: 1
|
| 4 |
+
path: /content/det_data
|
| 5 |
+
train: images/train
|
| 6 |
+
val: images/val
|
shobdo_det.onnx
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c8ff9765f0fece93f4ca187e6ddd7d930809db68fa9165fd5abdafd10b7f345a
|
| 3 |
+
size 12503841
|
shobdo_det.pt
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9b141e70b3b6468cde4004c1ffe80acb29920a016105b9e494d4076fa32456ff
|
| 3 |
+
size 6220330
|