YAML Metadata Warning:empty or missing yaml metadata in repo card

Check out the documentation for more information.

EasyOCR Fine-tuned โ€” Juridique Tunisien

Modele EasyOCR fine-tune sur des documents juridiques tunisiens.

Langues supportees

  • Francais
  • Anglais

Utilisation

import easyocr
import torch
from huggingface_hub import hf_hub_download

# Telecharger le modele
model_path = hf_hub_download(
    repo_id='maloukafer/easyocr-juridique-tunisien',
    filename='best_model.pth'
)

# Charger EasyOCR avec le modele fine-tune
reader = easyocr.Reader(['fr', 'en'], gpu=True)
reader.recognizer.load_state_dict(torch.load(model_path))

# Inference
result = reader.readtext('image.jpg', detail=0)
print(result)
Downloads last month
15
Inference Providers NEW
This model isn't deployed by any Inference Provider. ๐Ÿ™‹ Ask for provider support