thisbug 发表于 2024-7-3 15:49

autoxjs使用Paddle OCR自定义模型

autoxjs文档:http://doc.autoxjs.com/#/AI?id=paddle-ocr

百度飞桨的 OCR训练完了应该是两个模型文件夹,一个det,一个rec啊。
但是autoxjs里只给了一个模型地址的参数
这应该怎么用autoxjs加载呢
python训练完测试命令:python tools/infer/predict_system.py --image_dir="C:\Users\Administrator\Desktop\AD_20240630135151.jpg" --det_model_dir="./inference_model/det/" --rec_model_dir="./inference_model/rec"
python用自训练模型代码

[*]from paddleocr import PaddleOCR, draw_ocr
[*]
[*]ocr = PaddleOCR(use_angle_cls=True, rec_model_dir='./inference_model/rec',
[*]                  det_model_dir='./inference_model/det')
页: [1]
查看完整版本: autoxjs使用Paddle OCR自定义模型