fix readme

This commit is contained in:
littletomatodonkey 2020-07-14 06:45:52 +00:00
parent 77d9683c28
commit 963dde7af0
1 changed files with 5 additions and 0 deletions

View File

@ -195,3 +195,8 @@ sh tools/run.sh
<div align="center">
<img src="../imgs/cpp_infer_pred_12.png" width="600">
</div>
### 2.3 注意
* C++预测默认未开启MKLDNN(`tools/config.txt`中的`use_mkldnn`设置为0)如果需要使用MKLDNN进行预测加速则需要将`use_mkldnn`修改为1同时使用最新版本的Paddle源码编译预测库。在使用MKLDNN进行CPU预测时如果同时预测多张图像则会出现内存泄露的问题不打开MKLDNN则没有该问题目前该问题正在修复中临时解决方案为预测多张图片时每隔30张图片左右对识别(`CRNNRecognizer`)和检测类(`DBDetector`)重新初始化一次。