Model

PP-OCRv4_mobile_det was fine-tuned on the maianh511/PortVehicleOCR dataset — a collection of port vehicle images (license plates/containers) — to improve text detection performance on real-world images from this domain.

Objective

Improve text detection accuracy on domain-specific port/logistics images, which differ from the base model's general-purpose training data in lighting conditions, camera angles, and image quality.

Usage

from paddleocr import TextDetection

model = TextDetection(model_name="PP_OCRv4_mobile_det_finetune_PortVehicleOCR")
output = model.predict(input="your_image.jpg", batch_size=1)

for res in output:
    res.print()
    res.save_to_img(save_path="./output/")

Evaluation results (precision/recall/hmean) will be added once benchmarking on the test set is complete.

Downloads last month

-

Downloads are not tracked for this model. How to track
Inference Providers NEW
This model isn't deployed by any Inference Provider. 🙋 Ask for provider support

Model tree for maianh511/PP_OCRv4_mobile_det_finetune_PortVehicleOCR

Finetuned
(1)
this model

Dataset used to train maianh511/PP_OCRv4_mobile_det_finetune_PortVehicleOCR