Add doctr-tf-db-resnet50 model
Browse files- .gitattributes +1 -0
- README.md +39 -0
- config.json +20 -0
- tf_model/checkpoint +2 -0
- tf_model/weights.data-00000-of-00001 +3 -0
- tf_model/weights.index +0 -0
.gitattributes
CHANGED
|
@@ -26,3 +26,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 26 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 27 |
*.zstandard filter=lfs diff=lfs merge=lfs -text
|
| 28 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 26 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 27 |
*.zstandard filter=lfs diff=lfs merge=lfs -text
|
| 28 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 29 |
+
tf_model/weights.data-00000-of-00001 filter=lfs diff=lfs merge=lfs -text
|
README.md
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
---
|
| 3 |
+
language: en
|
| 4 |
+
---
|
| 5 |
+
|
| 6 |
+
<p align="center">
|
| 7 |
+
<img src="https://github.com/mindee/doctr/releases/download/v0.3.1/Logo_doctr.gif" width="60%">
|
| 8 |
+
</p>
|
| 9 |
+
|
| 10 |
+
**Optical Character Recognition made seamless & accessible to anyone, powered by TensorFlow 2 & PyTorch**
|
| 11 |
+
|
| 12 |
+
## Task: detection
|
| 13 |
+
|
| 14 |
+
https://github.com/mindee/doctr
|
| 15 |
+
|
| 16 |
+
### Example usage:
|
| 17 |
+
|
| 18 |
+
```python
|
| 19 |
+
>>> from doctr.io import DocumentFile
|
| 20 |
+
>>> from doctr.models import ocr_predictor, from_hub
|
| 21 |
+
|
| 22 |
+
>>> img = DocumentFile.from_images(['<image_path>'])
|
| 23 |
+
>>> # Load your model from the hub
|
| 24 |
+
>>> model = from_hub('mindee/my-model')
|
| 25 |
+
|
| 26 |
+
>>> # Pass it to the predictor
|
| 27 |
+
>>> # If your model is a recognition model:
|
| 28 |
+
>>> predictor = ocr_predictor(det_arch='db_mobilenet_v3_large',
|
| 29 |
+
>>> reco_arch=model,
|
| 30 |
+
>>> pretrained=True)
|
| 31 |
+
|
| 32 |
+
>>> # If your model is a detection model:
|
| 33 |
+
>>> predictor = ocr_predictor(det_arch=model,
|
| 34 |
+
>>> reco_arch='crnn_mobilenet_v3_small',
|
| 35 |
+
>>> pretrained=True)
|
| 36 |
+
|
| 37 |
+
>>> # Get your predictions
|
| 38 |
+
>>> res = predictor(img)
|
| 39 |
+
```
|
config.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"mean": [
|
| 3 |
+
0.798,
|
| 4 |
+
0.785,
|
| 5 |
+
0.772
|
| 6 |
+
],
|
| 7 |
+
"std": [
|
| 8 |
+
0.264,
|
| 9 |
+
0.2749,
|
| 10 |
+
0.287
|
| 11 |
+
],
|
| 12 |
+
"input_shape": [
|
| 13 |
+
1024,
|
| 14 |
+
1024,
|
| 15 |
+
3
|
| 16 |
+
],
|
| 17 |
+
"url": "https://github.com/mindee/doctr/releases/download/v0.2.0/db_resnet50-adcafc63.zip",
|
| 18 |
+
"arch": "db_resnet50",
|
| 19 |
+
"task": "detection"
|
| 20 |
+
}
|
tf_model/checkpoint
ADDED
|
@@ -0,0 +1,2 @@
|
|
|
|
|
|
|
|
|
|
| 1 |
+
model_checkpoint_path: "weights"
|
| 2 |
+
all_model_checkpoint_paths: "weights"
|
tf_model/weights.data-00000-of-00001
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:89ad0ff91974d777ff1c3fbc3177e81e97f824b503a67473e3da54ae867b3cb8
|
| 3 |
+
size 101241287
|
tf_model/weights.index
ADDED
|
Binary file (23.9 kB). View file
|
|
|