m4x1r

Results 1 comments of m4x1r

我也是用的mobile模型,添加了 ```python text_detection_model_name="PP-OCRv5_mobile_det", text_recognition_model_name="PP-OCRv5_mobile_rec", ``` 就能正常使用。 完整的参数: ```python PaddleOCR( use_doc_orientation_classify=False, use_doc_unwarping=False, use_textline_orientation=False, device='gpu' if use_gpu else 'cpu', text_detection_model_dir=det_model_path, text_recognition_model_dir=rec_model_path, text_detection_model_name="PP-OCRv5_mobile_det", text_recognition_model_name="PP-OCRv5_mobile_rec" ) ```