ttian

Results 1 issues of ttian

**Pytorch** python3 ./tools/infer/predict_system.py --image_dir ./test.jpeg --det_model_path ch_ptocr_v2_det_infer.pth --rec_model_path ch_ptocr_v2_rec_infer.pth --use_angle_cls true --cls_model_path ch_ptocr_mobile_v2.0_cls_infer.pth ![image](https://user-images.githubusercontent.com/25107379/173515198-314f6b77-c57d-441e-979b-ad6eaf7e64b2.png) **Paddle** python3 tools/infer/predict_system.py --image_dir="./test.jpeg" --det_model_dir="./model/ch_PP-OCRv2_det_infer" --cls_model_dir="./model/ch_ppocr_mobile_v2.0_cls_infer" --rec_model_dir="./model/ch_PP-OCRv2_rec_infer" --use_angle_cls=true ![image](https://user-images.githubusercontent.com/25107379/173515237-a9da01cf-5192-41c6-aea9-40420b12346e.png) 除了输入和参数路径,其他均是默认。对比过代码默认配置两边基本是相同的。从结果看Pytorch要好一些,感觉很奇怪,麻烦懂的大大解答一下