Replies: 1 comment 1 reply
-
To address your questions thoroughly and based on the provided documentation and discussions: 1. Is the 'ch' model generally better even for recognizing plain English text?The
For your case (plain English text), stick with the 2. Where do I find the corresponding trained model file for
|
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
From the documentation, it mentions
However, in the latest paddleocr.py there is ch_PP-OCRv4_rec_infer.tar and en_PP-OCRv4_rec_infer.tar available. v4 rec models are not mentioned in the Model List as well. It looks like the Model List hasn't been updated in some time.
For my use case, the detection and recognition works well enough with 'en' :
ocr = PaddleOCR(use_angle_cls=True, lang='en')
I need to finetune the model as some characters in my font does not look like traditional characters and are misclassified by the model.
Questions:
Beta Was this translation helpful? Give feedback.
All reactions