Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
magicwindyyd
mindspore
提交
430dbf91
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看板
提交
430dbf91
编写于
5月 06, 2020
作者:
M
mindspore-ci-bot
提交者:
Gitee
5月 06, 2020
浏览文件
操作
浏览文件
下载
差异文件
!914 remove rescale op in dataset and add fp16 flag in eval
Merge pull request !914 from wandongdong/master
上级
788f2571
921e9670
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
5 addition
and
3 deletion
+5
-3
example/mobilenetv2_imagenet2012/dataset.py
example/mobilenetv2_imagenet2012/dataset.py
+1
-1
example/mobilenetv2_imagenet2012/eval.py
example/mobilenetv2_imagenet2012/eval.py
+3
-1
example/mobilenetv2_imagenet2012/train.py
example/mobilenetv2_imagenet2012/train.py
+1
-1
未找到文件。
example/mobilenetv2_imagenet2012/dataset.py
浏览文件 @
430dbf91
...
...
@@ -63,7 +63,7 @@ def create_dataset(dataset_path, do_train, repeat_num=1, batch_size=32):
if
do_train
:
trans
=
[
resize_crop_op
,
horizontal_flip_op
,
rescale_op
,
normalize_op
,
change_swap_op
]
else
:
trans
=
[
decode_op
,
resize_op
,
center_crop
,
rescale_op
,
normalize_op
,
change_swap_op
]
trans
=
[
decode_op
,
resize_op
,
center_crop
,
normalize_op
,
change_swap_op
]
type_cast_op
=
C2
.
TypeCast
(
mstype
.
int32
)
...
...
example/mobilenetv2_imagenet2012/eval.py
浏览文件 @
430dbf91
...
...
@@ -24,6 +24,7 @@ from mindspore.model_zoo.mobilenet import mobilenet_v2
from
mindspore.train.model
import
Model
from
mindspore.train.serialization
import
load_checkpoint
,
load_param_into_net
from
mindspore.nn.loss
import
SoftmaxCrossEntropyWithLogits
from
mindspore.common
import
dtype
as
mstype
parser
=
argparse
.
ArgumentParser
(
description
=
'Image classification'
)
parser
.
add_argument
(
'--checkpoint_path'
,
type
=
str
,
default
=
None
,
help
=
'Checkpoint file path'
)
...
...
@@ -39,7 +40,8 @@ context.set_context(enable_mem_reuse=True)
if
__name__
==
'__main__'
:
loss
=
SoftmaxCrossEntropyWithLogits
(
is_grad
=
False
,
sparse
=
True
,
reduction
=
'mean'
)
net
=
mobilenet_v2
()
net
=
mobilenet_v2
(
num_classes
=
config
.
num_classes
)
net
.
to_float
(
mstype
.
float16
)
dataset
=
create_dataset
(
dataset_path
=
args_opt
.
dataset_path
,
do_train
=
False
,
batch_size
=
config
.
batch_size
)
step_size
=
dataset
.
get_dataset_size
()
...
...
example/mobilenetv2_imagenet2012/train.py
浏览文件 @
430dbf91
...
...
@@ -151,7 +151,7 @@ if __name__ == '__main__':
epoch_size
=
config
.
epoch_size
net
=
mobilenet_v2
(
num_classes
=
config
.
num_classes
)
net
.
add_flags_recursive
(
fp16
=
True
)
net
.
to_float
(
mstype
.
float16
)
for
_
,
cell
in
net
.
cells_and_names
():
if
isinstance
(
cell
,
nn
.
Dense
):
cell
.
add_flags_recursive
(
fp32
=
True
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录