File size: 1,122 Bytes
0c951ae
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
0772bd3
 
0c951ae
 
 
 
 
 
 
f3e036c
0c951ae
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46

---
language: cz
---
**Optical Character Recognition made seamless & accessible to anyone, powered by PyTorch**

## Task: recognition
### Example usage:

```python
>>> from doctr.io import DocumentFile
>>> from doctr.models import ocr_predictor, from_hub

>>> img = DocumentFile.from_images(['<image_path>'])
>>> # Load your model from the hub
>>> model = from_hub('mindee/my-model')

>>> # Pass it to the predictor
>>> # If your model is a recognition model:
>>> predictor = ocr_predictor(det_arch='db_resnet50',
>>>                           reco_arch=model,
>>>                           pretrained=True)

>>> # Get your predictions
>>> res = predictor(img)
```

Training configuration and logs: https://wandb.ai/xbankov/text-recognition
### Run Configuration

{
  "hf_dataset_name": "fimu-docproc-research/born_digital",
  "name": "master_20221106-223158",
  "epochs": 50,
  "lr": 0.001,
  "weight_decay": 0,
  "batch_size": 512,
  "input_size": 32,
  "sched": "cosine",
  "sample": null,
  "workers": 16,
  "wb": true,
  "push_to_hub": "fimu-docproc-research/master_0.0.1",
  "test_only": false,
  "arch": "master"
}