Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
models
提交
60d045d3
M
models
项目概览
PaddlePaddle
/
models
大约 1 年 前同步成功
通知
222
Star
6828
Fork
2962
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
602
列表
看板
标记
里程碑
合并请求
255
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
M
models
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
602
Issue
602
列表
看板
标记
里程碑
合并请求
255
合并请求
255
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
60d045d3
编写于
10月 22, 2020
作者:
L
Leo Chen
提交者:
GitHub
10月 22, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
support enable_addto (#4909)
上级
23928943
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
17 addition
and
0 deletion
+17
-0
PaddleCV/image_classification/scripts/train/ResNet50_fp16.sh
PaddleCV/image_classification/scripts/train/ResNet50_fp16.sh
+7
-0
PaddleCV/image_classification/utils/utility.py
PaddleCV/image_classification/utils/utility.py
+10
-0
未找到文件。
PaddleCV/image_classification/scripts/train/ResNet50_fp16.sh
浏览文件 @
60d045d3
...
...
@@ -4,11 +4,17 @@ export FLAGS_conv_workspace_size_limit=4000 #MB
export
FLAGS_cudnn_exhaustive_search
=
1
export
FLAGS_cudnn_batchnorm_spatial_persistent
=
1
DATA_DIR
=
"Your image dataset path, e.g. /work/datasets/ILSVRC2012/"
DATA_FORMAT
=
"NHWC"
USE_FP16
=
true
#whether to use float16
USE_DALI
=
true
USE_ADDTO
=
true
if
${
USE_ADDTO
}
;
then
export
FLAGS_max_inplace_grad_add
=
8
fi
if
${
USE_DALI
}
;
then
export
FLAGS_fraction_of_gpu_memory_to_use
=
0.8
...
...
@@ -31,6 +37,7 @@ python train.py \
--fuse_elewise_add_act_ops
=
true
\
--fuse_bn_act_ops
=
true
\
--fuse_bn_add_act_ops
=
true
\
--enable_addto
=
${
USE_ADDTO
}
\
--validate
=
true
\
--is_profiler
=
false
\
--profiler_path
=
profile/
\
...
...
PaddleCV/image_classification/utils/utility.py
浏览文件 @
60d045d3
...
...
@@ -146,6 +146,7 @@ def parse_args():
add_arg
(
'fuse_elewise_add_act_ops'
,
bool
,
False
,
"Whether to use elementwise_act fusion."
)
add_arg
(
'fuse_bn_act_ops'
,
bool
,
False
,
"Whether to use batch_norm and act fusion."
)
add_arg
(
'fuse_bn_add_act_ops'
,
bool
,
False
,
"Whether to use batch_norm, elementwise_add and act fusion. This is only used for AMP training."
)
add_arg
(
'enable_addto'
,
bool
,
False
,
"Whether to enable the addto strategy for gradient accumulation or not. This is only used for AMP training."
)
add_arg
(
'use_label_smoothing'
,
bool
,
False
,
"Whether to use label_smoothing"
)
add_arg
(
'label_smoothing_epsilon'
,
float
,
0.1
,
"The value of label_smoothing_epsilon parameter"
)
...
...
@@ -537,6 +538,15 @@ def best_strategy_compiled(args,
"required when you want to fuse batch_norm and activation_op."
)
build_strategy
.
fuse_elewise_add_act_ops
=
args
.
fuse_elewise_add_act_ops
try
:
build_strategy
.
enable_addto
=
args
.
enable_addto
except
Exception
as
e
:
logger
.
info
(
"PaddlePaddle 2.0-rc or higher is "
"required when you want to enable addto strategy."
)
build_strategy
.
enable_addto
=
args
.
enable_addto
exec_strategy
=
fluid
.
ExecutionStrategy
()
if
args
.
use_gpu
:
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录