From 830f9e74c34378d57608d94c1e400e6322e4eb14 Mon Sep 17 00:00:00 2001 From: zhoujun Date: Wed, 17 Nov 2021 17:59:37 +0800 Subject: [PATCH] add ResNet50_vd_ssld_pretrained (#4668) * add ResNet50_vd_ssld_pretrained * updata paddleocr version --- benchmark/run_det.sh | 1 + paddleocr.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/benchmark/run_det.sh b/benchmark/run_det.sh index 1bbe7f5b..85833cb9 100644 --- a/benchmark/run_det.sh +++ b/benchmark/run_det.sh @@ -6,6 +6,7 @@ python3.7 -m pip install -r requirements.txt wget -P ./train_data/ https://paddleocr.bj.bcebos.com/dygraph_v2.0/test/icdar2015.tar && cd train_data && tar xf icdar2015.tar && cd ../ wget -P ./pretrain_models/ https://paddle-imagenet-models-name.bj.bcebos.com/dygraph/ResNet50_vd_pretrained.pdparams wget -P ./pretrain_models/ https://paddle-imagenet-models-name.bj.bcebos.com/dygraph/ResNet18_vd_pretrained.pdparams +wget -P ./pretrain_models/ https://paddle-imagenet-models-name.bj.bcebos.com/dygraph/ResNet50_vd_ssld_pretrained.pdparams # 3 批量运行(如不方便批量,1,2需放到单个模型中) model_mode_list=(det_res18_db_v2.0 det_r50_vd_east det_r50_vd_pse) diff --git a/paddleocr.py b/paddleocr.py index 028cfcc1..733c83d1 100644 --- a/paddleocr.py +++ b/paddleocr.py @@ -42,7 +42,7 @@ __all__ = [ ] SUPPORT_DET_MODEL = ['DB'] -VERSION = '2.3.0.1' +VERSION = '2.3.0.2' SUPPORT_REC_MODEL = ['CRNN'] BASE_DIR = os.path.expanduser("~/.paddleocr/") -- GitLab