Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
weixin_41840029
PaddleOCR
提交
3cdc9e53
P
PaddleOCR
项目概览
weixin_41840029
/
PaddleOCR
与 Fork 源项目一致
Fork自
PaddlePaddle / PaddleOCR
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleOCR
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
3cdc9e53
编写于
6月 09, 2021
作者:
L
LDOUBLEV
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add pretrain to Global
上级
4b56069d
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
9 addition
and
3 deletion
+9
-3
test/test.sh
test/test.sh
+9
-3
未找到文件。
test/test.sh
浏览文件 @
3cdc9e53
...
...
@@ -8,6 +8,8 @@ FILENAME=$1
MODE
=
$2
# prepare pretrained weights and dataset
wget
-nc
-P
./pretrain_models/ https://paddle-imagenet-models-name.bj.bcebos.com/dygraph/MobileNetV3_large_x0_5_pretrained.pdparams
wget
-nc
-P
./pretrain_models/ https://paddleocr.bj.bcebos.com/dygraph_v2.0/en/det_mv3_db_v2.0_train.tar
cd
pretrain_models
&&
tar
xf det_mv3_db_v2.0_train.tar
&&
cd
../
if
[
${
MODE
}
=
"lite_train_infer"
]
;
then
# pretrain lite train data
...
...
@@ -107,28 +109,32 @@ for train_model in ${train_model_list[*]}; do
env
=
"CUDA_VISIBLE_DEVICES=
${
array
[0]
}
"
IFS
=
"|"
fi
IFS
=
"|"
for
auto_cast
in
${
auto_cast_list
[*]
}
;
do
for
slim_trainer
in
${
slim_trainer_list
[*]
}
;
do
if
[
${
slim_trainer
}
=
"norm"
]
;
then
trainer
=
"tools/train.py"
export_model
=
"tools/export_model.py"
pretrain
=
"./pretrain_models/MobileNetV3_large_x0_5_pretrained"
elif
[
${
slim_trainer
}
=
"quant"
]
;
then
trainer
=
"deploy/slim/quantization/quant.py"
export_model
=
"deploy/slim/quantization/export_model.py"
pretrain
=
"./pretrain_models/det_mv3_db_v2.0_train/best_accuracy"
elif
[
${
slim_trainer
}
=
"prune"
]
;
then
trainer
=
"deploy/slim/prune/sensitivity_anal.py"
export_model
=
"deploy/slim/prune/export_prune_model.py"
pretrain
=
"./pretrain_models/det_mv3_db_v2.0_train/best_accuracy"
elif
[
${
slim_trainer
}
=
"distill"
]
;
then
trainer
=
"deploy/slim/distill/train_dml.py"
export_model
=
"deploy/slim/distill/export_distill_model.py"
pretrain
=
""
else
trainer
=
"tools/train.py"
export_model
=
"tools/export_model.py"
pretrain
=
"./pretrain_models/MobileNetV3_large_x0_5_pretrained"
fi
save_log
=
"
${
log_path
}
/
${
model_name
}
_
${
slim_trainer
}
_autocast_
${
auto_cast
}
_gpuid_
${
gpu
}
"
command
=
"
${
env
}
${
python
}
${
launch
}
${
trainer
}
-c
${
yml_file
}
-o Global.epoch_num=
${
epoch
}
Global.eval_batch_step=
${
eval_batch_step
}
Global.auto_cast=
${
auto_cast
}
Global.save_model_dir=
${
save_log
}
Global.use_gpu=
${
use_gpu
}
Train.loader.batch_size_per_card=2"
${
env
}
${
python
}
${
launch
}
${
trainer
}
-c
${
yml_file
}
-o
Global.epoch_num
=
${
epoch
}
Global.eval_batch_step
=
${
eval_batch_step
}
Global.auto_cast
=
${
auto_cast
}
Global.save_model_dir
=
${
save_log
}
Global.use_gpu
=
${
use_gpu
}
Train.loader.batch_size_per_card
=
2
command
=
"
${
env
}
${
python
}
${
launch
}
${
trainer
}
-c
${
yml_file
}
-o Global.epoch_num=
${
epoch
}
Global.eval_batch_step=
${
eval_batch_step
}
Global.auto_cast=
${
auto_cast
}
Global.pretrained_model=
${
pretrain
}
Global.save_model_dir=
${
save_log
}
Global.use_gpu=
${
use_gpu
}
Train.loader.batch_size_per_card=2"
${
env
}
${
python
}
${
launch
}
${
trainer
}
-c
${
yml_file
}
-o
Global.epoch_num
=
${
epoch
}
Global.eval_batch_step
=
${
eval_batch_step
}
Global.auto_cast
=
${
auto_cast
}
Global.pretrained_model
=
${
pretrain
}
Global.save_model_dir
=
${
save_log
}
Global.use_gpu
=
${
use_gpu
}
Train.loader.batch_size_per_card
=
2
status_check
$?
"
${
trainer
}
"
"
${
command
}
"
"
${
save_log
}
/train.log"
command
=
"
${
env
}
${
python
}
${
export_model
}
-c
${
yml_file
}
-o Global.pretrained_model=
${
save_log
}
/latest Global.save_inference_dir=
${
save_log
}
/export_inference/ Global.save_model_dir=
${
save_log
}
"
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录