Downloads · 30 days
51
16% of all-time downloads
Felix92/doctr-dummy-tf-parseq
doctr-dummy-tf-parseq is a machine learning model from Felix92. Use it for the machine learning task on the model card, and read the license before you ship it in a product. It is set up for transformers.
<p align="center" <img src="https://doctr-static.mindee.com/models?id=v0.3.1/Logodoctr.gif&src=0" width="60%" </p
Downloads · 30 days
51
16% of all-time downloads
All-time downloads
326
Public
Repo size
254 KB
Likes
0
Public
Click a slice to open those files.
.data-00000-of-00001254 KB · 99%
From the Hugging Face model README
Optical Character Recognition made seamless & accessible to anyone, powered by TensorFlow 2 & PyTorch
https://github.com/mindee/doctr
>>> 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)