Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
magicwindyyd
mindspore
提交
efe41902
M
mindspore
项目概览
magicwindyyd
/
mindspore
与 Fork 源项目一致
Fork自
MindSpore / mindspore
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
M
mindspore
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
efe41902
编写于
4月 29, 2020
作者:
M
meixiaowei
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
modify config param
上级
4fff5f44
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
7 addition
and
7 deletion
+7
-7
example/resnet101_imagenet2012/README.md
example/resnet101_imagenet2012/README.md
+2
-2
example/resnet101_imagenet2012/config.py
example/resnet101_imagenet2012/config.py
+2
-2
example/resnet101_imagenet2012/eval.py
example/resnet101_imagenet2012/eval.py
+1
-1
example/resnet101_imagenet2012/train.py
example/resnet101_imagenet2012/train.py
+2
-2
未找到文件。
example/resnet101_imagenet2012/README.md
浏览文件 @
efe41902
...
...
@@ -51,8 +51,8 @@ Parameters for both training and evaluating can be set in config.py.
"image_height": 224, # image height
"image_width": 224, # image width
"save_checkpoint": True, # whether save checkpoint or not
"save_checkpoint_
steps": 500, # the step interval between two checkpoints. By default, the last checkpoint will be saved after the last step
"keep_checkpoint_max":
4
0, # only keep the last keep_checkpoint_max checkpoint
"save_checkpoint_
epochs": 1, # the epoch interval between two checkpoints. By default, the last checkpoint will be saved after the last epoch
"keep_checkpoint_max":
1
0, # only keep the last keep_checkpoint_max checkpoint
"save_checkpoint_path": "./", # path to save checkpoint relative to the executed path
"warmup_epochs": 0, # number of warmup epoch
"lr_decay_mode": "cosine" # decay mode for generating learning rate
...
...
example/resnet101_imagenet2012/config.py
浏览文件 @
efe41902
...
...
@@ -28,8 +28,8 @@ config = ed({
"image_height"
:
224
,
"image_width"
:
224
,
"save_checkpoint"
:
True
,
"save_checkpoint_
steps"
:
500
,
"keep_checkpoint_max"
:
4
0
,
"save_checkpoint_
epochs"
:
1
,
"keep_checkpoint_max"
:
1
0
,
"save_checkpoint_path"
:
"./"
,
"warmup_epochs"
:
0
,
"lr_decay_mode"
:
"cosine"
,
...
...
example/resnet101_imagenet2012/eval.py
浏览文件 @
efe41902
...
...
@@ -54,7 +54,7 @@ if __name__ == '__main__':
if
not
args_opt
.
do_eval
and
args_opt
.
run_distribute
:
context
.
set_auto_parallel_context
(
device_num
=
args_opt
.
device_num
,
parallel_mode
=
ParallelMode
.
DATA_PARALLEL
,
mirror_mean
=
True
,
parameter_broadcast
=
True
)
auto_parallel_context
().
set_all_reduce_fusion_split_indices
([
1
40
])
auto_parallel_context
().
set_all_reduce_fusion_split_indices
([
1
80
,
313
])
init
()
epoch_size
=
config
.
epoch_size
...
...
example/resnet101_imagenet2012/train.py
浏览文件 @
efe41902
...
...
@@ -59,7 +59,7 @@ if __name__ == '__main__':
if
not
args_opt
.
do_eval
and
args_opt
.
run_distribute
:
context
.
set_auto_parallel_context
(
device_num
=
args_opt
.
device_num
,
parallel_mode
=
ParallelMode
.
DATA_PARALLEL
,
mirror_mean
=
True
,
parameter_broadcast
=
True
)
auto_parallel_context
().
set_all_reduce_fusion_split_indices
([
1
40
])
auto_parallel_context
().
set_all_reduce_fusion_split_indices
([
1
80
,
313
])
init
()
epoch_size
=
config
.
epoch_size
...
...
@@ -91,7 +91,7 @@ if __name__ == '__main__':
loss_cb
=
LossMonitor
()
cb
=
[
time_cb
,
loss_cb
]
if
config
.
save_checkpoint
:
config_ck
=
CheckpointConfig
(
save_checkpoint_steps
=
config
.
save_checkpoint_
steps
,
config_ck
=
CheckpointConfig
(
save_checkpoint_steps
=
config
.
save_checkpoint_
epochs
*
step_size
,
keep_checkpoint_max
=
config
.
keep_checkpoint_max
)
ckpt_cb
=
ModelCheckpoint
(
prefix
=
"resnet"
,
directory
=
config
.
save_checkpoint_path
,
config
=
config_ck
)
cb
+=
[
ckpt_cb
]
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录