# Load model directly
from transformers import AutoModel
model = AutoModel.from_pretrained("Felix92/doctr-torch-crnn-mobilenet-v3-large-french", dtype="auto")Quick Links
Optical Character Recognition made seamless & accessible to anyone, powered by TensorFlow 2 & PyTorch
Task: recognition
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)
- Downloads last month
- 6
# Use a pipeline as a high-level helper # Warning: Pipeline type "image-to-text" is no longer supported in transformers v5. # You must load the model directly (see below) or downgrade to v4.x with: # 'pip install "transformers<5.0.0' from transformers import pipeline pipe = pipeline("image-to-text", model="Felix92/doctr-torch-crnn-mobilenet-v3-large-french")