From ca3427736166a2b6fa0f955ff6f7d59d4bee525d Mon Sep 17 00:00:00 2001 From: WenmuZhou Date: Fri, 27 Nov 2020 10:50:58 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=AD=A3=E5=B0=8F=E8=AF=AD=E7=A7=8D?= =?UTF-8?q?=E5=AD=97=E5=85=B8=E8=B7=AF=E5=BE=84=E9=94=99=E8=AF=AF=E7=9A=84?= =?UTF-8?q?=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- paddleocr.py | 8 ++++---- setup.py | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/paddleocr.py b/paddleocr.py index ff579679..3958f7ad 100644 --- a/paddleocr.py +++ b/paddleocr.py @@ -50,22 +50,22 @@ model_urls = { 'french': { 'url': 'https://paddleocr.bj.bcebos.com/20-09-22/mobile/fr/french_ppocr_mobile_v1.1_rec_infer.tar', - 'dict_path': './ppocr/utils/french_dict.txt' + 'dict_path': './ppocr/utils/dict/french_dict.txt' }, 'german': { 'url': 'https://paddleocr.bj.bcebos.com/20-09-22/mobile/ge/german_ppocr_mobile_v1.1_rec_infer.tar', - 'dict_path': './ppocr/utils/german_dict.txt' + 'dict_path': './ppocr/utils/dict/german_dict.txt' }, 'korean': { 'url': 'https://paddleocr.bj.bcebos.com/20-09-22/mobile/kr/korean_ppocr_mobile_v1.1_rec_infer.tar', - 'dict_path': './ppocr/utils/korean_dict.txt' + 'dict_path': './ppocr/utils/dict/korean_dict.txt' }, 'japan': { 'url': 'https://paddleocr.bj.bcebos.com/20-09-22/mobile/jp/japan_ppocr_mobile_v1.1_rec_infer.tar', - 'dict_path': './ppocr/utils/japan_dict.txt' + 'dict_path': './ppocr/utils/dict/japan_dict.txt' } }, 'cls': diff --git a/setup.py b/setup.py index 33ed3ecd..d831a3a3 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ setup( package_dir={'paddleocr': ''}, include_package_data=True, entry_points={"console_scripts": ["paddleocr= paddleocr.paddleocr:main"]}, - version='1.0.1', + version='1.1.1', install_requires=requirements, license='Apache License 2.0', description='Awesome OCR toolkits based on PaddlePaddle (8.6M ultra-lightweight pre-trained model, support training and deployment among server, mobile, embeded and IoT devices', -- GitLab