Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
weixin_41840029
PaddleOCR
提交
892c0e67
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看板
提交
892c0e67
编写于
1月 25, 2022
作者:
L
LDOUBLEV
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add benchmark params to train_benchmark.txt
上级
a530b698
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
93 addition
and
0 deletion
+93
-0
test_tipc/benchmark_train.sh
test_tipc/benchmark_train.sh
+83
-0
test_tipc/configs/det_mv3_db_v2.0/train_benchmark.txt
test_tipc/configs/det_mv3_db_v2.0/train_benchmark.txt
+10
-0
未找到文件。
test_tipc/benchmark_train.sh
0 → 100644
浏览文件 @
892c0e67
#!/bin/bash
source
test_tipc/common_func.sh
# run benchmark sh
# params: batch
# Usage:
# bash run_benchmark_train.sh config.txt benchmark_train batch_size=2 precision=3 profile_option=4
function
func_parser_params
(){
strs
=
$1
IFS
=
"="
array
=(
${
strs
}
)
tmp
=
${
array
[1]
}
echo
${
tmp
}
}
function
func_sed_params
(){
filename
=
$1
line
=
$2
param_value
=
$3
# cmd="sed -n '${line}p' $filename"
# params=`eval $cmd`
params
=
`
sed
-n
"
${
line
}
p"
$filename
`
# params=`cmd`
#params=$($cmd)
IFS
=
":"
array
=(
${
params
}
)
key
=
${
array
[0]
}
value
=
${
array
[1]
}
if
[[
$value
=
~
'benchmark_train'
]]
;
then
IFS
=
'='
_val
=(
${
value
}
)
param_value
=
"
${
_val
[0]
}
=
${
param_value
}
"
fi
new_params
=
"
${
key
}
:
${
param_value
}
"
IFS
=
";"
cmd
=
"sed -i '
${
line
}
s/.*/
${
new_params
}
/' '
${
filename
}
'"
# echo $cmd
eval
$cmd
}
function
set_gpu_id
(){
string
=
$1
_str
=
${
string
:1:6
}
arr
=(
${
_str
}
)
P
=
${
arr
[1]
}
gpu_num
=
`
expr
$P
- 1
`
seq
=
`
seq
-s
","
0
$gpu_num
`
echo
$seq
}
FILENAME
=
$1
# MODE be one of ['benchmark_train']
MODE
=
$2
#
# line_bs=9
# line_presion=6
# line_profile=13
# if [ $# -eq 4 ] ; then
# echo "Usage: bash run_benchmark_train.sh config.txt benchmark_train batch_size=2 precision=fp16"
# elif [ $# -eq 5 ] ; then
# echo "Usage: bash run_benchmark_train.sh config.txt benchmark_train batch_size=2 precision=fp16 profile_option=None"
# profile_options=$(func_parser_params "$5")
# else
# echo "None"
# fi
# l=`grep -n "benchmark_params" ${FILENAME} | cut -d ":" -f 1`
# echo $l
# sed -i '[第n行]s/[正则通配符]/[替换内容]/' [指定文件]
test_tipc/configs/det_mv3_db_v2.0/train_benchmark.txt
浏览文件 @
892c0e67
...
@@ -28,3 +28,13 @@ null:null
...
@@ -28,3 +28,13 @@ null:null
Global.save_inference_dir:./output/
Global.save_inference_dir:./output/
Global.checkpoints:
Global.checkpoints:
norm_export:null
norm_export:null
===========================benchmark_params==========================
device_num:N1C1|N1C8|N4C32
run_process_type:MultiP
run_mode:DP|DP1-MP1-PP1|DP2-MP2-PP2
ips_unit:"images/s"
skip_steps:10
keyword:"ips:"
convergence_key:"loss:"
flags:FLAGS_eager_delete_tensor_gb=0.0;FLAGS_fraction_of_gpu_memory_to_use=0.98;FLAGS_conv_workspace_size_limit=4096
null:null
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录