-
Notifications
You must be signed in to change notification settings - Fork 477
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Other] Add detection, segmentation and OCR examples for Ascend deploy. #983
Conversation
@@ -55,6 +55,10 @@ void InitAndInfer(const std::string& det_model_dir, const std::string& cls_model | |||
auto cls_model = fastdeploy::vision::ocr::Classifier(cls_model_file, cls_params_file, cls_option); | |||
auto rec_model = fastdeploy::vision::ocr::Recognizer(rec_model_file, rec_params_file, rec_label_file, rec_option); | |||
|
|||
// Users could enable static shape infer for rec model when deploy PP-OCR on hardware | |||
// which can not support dynamic shape infer well, like Huawei Ascend series. | |||
// rec_model.GetPreprocessor().SetStaticShapeInfer(true); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
这里在跑Ascend时,需要打开这个注释是吗?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
是的,目前就昇腾需要
// of the cls and rec models will be the same as the number of boxes detected by the det model. | ||
// When users enable static shape infer for rec model, the batch size of cls and rec model needs to be set to 1. | ||
// ppocr_v2.SetClsBatchSize(1); | ||
// ppocr_v2.SetRecBatchSize(1); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
同时还要打开这里的注释?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
是的,就这两个地方
1.添加能够在昇腾上完成正确推理的 检测和分割模型examples
2.修改PPOCR代码,成员变量通过Set/Get读写.
3.提供PP-OCR的昇腾部署demo
4.完善PaddleLite编译