This commit is contained in:
littletomatodonkey 2020-08-19 08:25:23 +00:00
parent d7cd666a3a
commit 3da97909bb
2 changed files with 8 additions and 3 deletions

View File

@ -49,3 +49,5 @@ PaddleOCR已完成Windows和Mac系统适配运行时注意两点1、在[
11. **自定义字典训练的模型,识别结果出现字典里没出现的字**
预测时没有设置采用的自定义字典路径。设置方法是在预测时通过增加输入参数rec_char_dict_path来设置。
12. **cpp infer与python inference的结果不一致相差较大**
导出的inference model版本与预测库版本需要保持一致比如在Windows下Paddle官网提供的预测库版本是1.8而PaddleOCR提供的inference model 版本是1.7因此最终预测结果会有差别。可以在Paddle1.8环境下导出模型,再基于该模型进行预测。

View File

@ -49,5 +49,8 @@ Error message: Input(X) dims[3] and Input(Grid) dims[2] should be equal, but rec
SolutionTPS does not support variable shape. Please set --rec_image_shape='3,32,100' and --rec_char_type='en'
11. **Custom dictionary used during training, the recognition results show that words do not appear in the dictionary**
The used custom dictionary path is not set when making prediction. The solution is setting parameter `rec_char_dict_path` to the corresponding dictionary file.
12. **Results of cpp_infer and python_inference are very different**
Versions of exprted inference model and inference libraray should be same. For example, on Windows platform, version of the inference libraray that PaddlePaddle provides is 1.8, but version of the inference model that PaddleOCR provides is 1.7, you should export model yourself(`tools/export_model.py`) on PaddlePaddle1.8 and then use the exported model for inference.