
1>>> from doctr.io import DocumentFile
2>>> from doctr.models import ocr_predictor, from_hub
3
4>>> img = DocumentFile.from_images(['<image_path>'])
5>>> # Load your model from the hub
6>>> model = from_hub('mindee/my-model')
7
8
9>>> # If your model is a detection model:
10>>> predictor = ocr_predictor(det_arch=model,
11>>> reco_arch='parseq',
12>>> pretrained=True)
13
14>>> # Get your predictions
15>>> res = predictor(img)