Felix92's picture
Add doctr-dummy-torch-tablecenternet model
9576326 verified
|
Raw
History Blame Contribute Delete
1.09 kB
metadata
language: en
tags:
  - ocr
  - pytorch
  - doctr
  - table_structure

Optical Character Recognition made seamless & accessible to anyone, powered by PyTorch

Task: table_structure

https://github.com/mindee/doctr

Example usage:

>>> 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_mobilenet_v3_large',
>>>                           reco_arch=model,
>>>                           pretrained=True)

>>> # If your model is a detection model:
>>> predictor = ocr_predictor(det_arch=model,
>>>                           reco_arch='crnn_mobilenet_v3_small',
>>>                           pretrained=True)

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