Views
No views yet
latin_PP-OCRv3_mobile_rec on Moroccan Bulletin Officiel line crops (dataset). Better suited for French/Latin BO text.| Metric | Value |
|---|---|
| Best val accuracy | 0.9605 |
| Peak eval val acc (log) | 0.9605 |
| Early stopped | True |
| Best eval index | 68 |
| Base model | latin_PP-OCRv3_mobile_rec |
| Profile | latin |
1from paddleocr import TextRecognition
2
3rec = TextRecognition(
4 model_dir="path/to/inference",
5 model_name="latin_PP-OCRv3_mobile_rec",
6)
7result = rec.predict("line_crop.png")
8print(result)inference/ # Exported Paddle inference model
checkpoints/ # best_accuracy training checkpoint
metrics/ # training + eval JSON metrics
plots/ # training and evaluation plots
config.yml # PaddleOCR training config snapshotmetrics/ and plots/ for full learning curves, early-stop state, and test-set OCR metrics.