Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
MindSpore
docs
提交
f4eac873
D
docs
项目概览
MindSpore
/
docs
通知
4
Star
2
Fork
2
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
D
docs
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
f4eac873
编写于
4月 28, 2020
作者:
W
wukesong
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
modify lenet
上级
474016c6
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
6 addition
and
9 deletion
+6
-9
tutorials/source_en/quick_start/quick_start.md
tutorials/source_en/quick_start/quick_start.md
+2
-3
tutorials/source_zh_cn/quick_start/quick_start.md
tutorials/source_zh_cn/quick_start/quick_start.md
+2
-3
tutorials/tutorial_code/lenet.py
tutorials/tutorial_code/lenet.py
+2
-3
未找到文件。
tutorials/source_en/quick_start/quick_start.md
浏览文件 @
f4eac873
...
...
@@ -96,8 +96,8 @@ from mindspore import context
if
__name__
==
"__main__"
:
parser
=
argparse
.
ArgumentParser
(
description
=
'MindSpore LeNet Example'
)
parser
.
add_argument
(
'--device_target'
,
type
=
str
,
default
=
"
Ascend
"
,
choices
=
[
'Ascend'
,
'GPU'
,
'CPU'
],
help
=
'device where the code will be implemented (default:
Ascend
)'
)
parser
.
add_argument
(
'--device_target'
,
type
=
str
,
default
=
"
CPU
"
,
choices
=
[
'Ascend'
,
'GPU'
,
'CPU'
],
help
=
'device where the code will be implemented (default:
CPU
)'
)
args
=
parser
.
parse_args
()
context
.
set_context
(
mode
=
context
.
GRAPH_MODE
,
device_target
=
args
.
device_target
,
enable_mem_reuse
=
False
)
...
...
@@ -235,7 +235,6 @@ class LeNet5(nn.Cell):
#define the operator required
def
__init__
(
self
):
super
(
LeNet5
,
self
).
__init__
()
self
.
batch_size
=
32
self
.
conv1
=
conv
(
1
,
6
,
5
)
self
.
conv2
=
conv
(
6
,
16
,
5
)
self
.
fc1
=
fc_with_initialize
(
16
*
5
*
5
,
120
)
...
...
tutorials/source_zh_cn/quick_start/quick_start.md
浏览文件 @
f4eac873
...
...
@@ -98,8 +98,8 @@ from mindspore import context
if
__name__
==
"__main__"
:
parser
=
argparse
.
ArgumentParser
(
description
=
'MindSpore LeNet Example'
)
parser
.
add_argument
(
'--device_target'
,
type
=
str
,
default
=
"
Ascend
"
,
choices
=
[
'Ascend'
,
'GPU'
,
'CPU'
],
help
=
'device where the code will be implemented (default:
Ascend
)'
)
parser
.
add_argument
(
'--device_target'
,
type
=
str
,
default
=
"
CPU
"
,
choices
=
[
'Ascend'
,
'GPU'
,
'CPU'
],
help
=
'device where the code will be implemented (default:
CPU
)'
)
args
=
parser
.
parse_args
()
context
.
set_context
(
mode
=
context
.
GRAPH_MODE
,
device_target
=
args
.
device_target
,
enable_mem_reuse
=
False
)
...
...
@@ -237,7 +237,6 @@ class LeNet5(nn.Cell):
#define the operator required
def
__init__
(
self
):
super
(
LeNet5
,
self
).
__init__
()
self
.
batch_size
=
32
self
.
conv1
=
conv
(
1
,
6
,
5
)
self
.
conv2
=
conv
(
6
,
16
,
5
)
self
.
fc1
=
fc_with_initialize
(
16
*
5
*
5
,
120
)
...
...
tutorials/tutorial_code/lenet.py
浏览文件 @
f4eac873
...
...
@@ -142,7 +142,6 @@ class LeNet5(nn.Cell):
# define the operator required
def
__init__
(
self
):
super
(
LeNet5
,
self
).
__init__
()
self
.
batch_size
=
32
self
.
conv1
=
conv
(
1
,
6
,
5
)
self
.
conv2
=
conv
(
6
,
16
,
5
)
self
.
fc1
=
fc_with_initialize
(
16
*
5
*
5
,
120
)
...
...
@@ -192,8 +191,8 @@ def test_net(args, network, model, mnist_path):
if
__name__
==
"__main__"
:
parser
=
argparse
.
ArgumentParser
(
description
=
'MindSpore LeNet Example'
)
parser
.
add_argument
(
'--device_target'
,
type
=
str
,
default
=
"
Ascend
"
,
choices
=
[
'Ascend'
,
'GPU'
,
'CPU'
],
help
=
'device where the code will be implemented (default:
Ascend
)'
)
parser
.
add_argument
(
'--device_target'
,
type
=
str
,
default
=
"
CPU
"
,
choices
=
[
'Ascend'
,
'GPU'
,
'CPU'
],
help
=
'device where the code will be implemented (default:
CPU
)'
)
args
=
parser
.
parse_args
()
context
.
set_context
(
mode
=
context
.
GRAPH_MODE
,
device_target
=
args
.
device_target
,
enable_mem_reuse
=
False
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录