--- license: apache-2.0 tags: - ocr - easyocr - computer-vision --- # EasyOCR Models This repository contains EasyOCR model files for optical character recognition. ## Models Included - `arabic.pth` - `craft_mlt_25k.pth` ## Usage Download these models and use them with EasyOCR: ```python import easyocr # Initialize reader with custom model path reader = easyocr.Reader(['ar', 'en'], model_storage_directory='path/to/models') ``` ## License These models are provided under Apache 2.0 license. Please check the original EasyOCR repository for specific model licenses.