Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleSlim
提交
92b3e1c2
P
PaddleSlim
项目概览
PaddlePaddle
/
PaddleSlim
1 年多 前同步成功
通知
51
Star
1434
Fork
344
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
53
列表
看板
标记
里程碑
合并请求
16
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleSlim
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
53
Issue
53
列表
看板
标记
里程碑
合并请求
16
合并请求
16
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
92b3e1c2
编写于
7月 22, 2020
作者:
B
Bai Yifan
提交者:
GitHub
7月 22, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix quick start (#390)
上级
115bbda5
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
8 addition
and
5 deletion
+8
-5
docs/en/quick_start/distillation_tutorial_en.md
docs/en/quick_start/distillation_tutorial_en.md
+2
-2
docs/zh_cn/quick_start/distillation_tutorial.md
docs/zh_cn/quick_start/distillation_tutorial.md
+2
-2
paddleslim/models/__init__.py
paddleslim/models/__init__.py
+4
-1
未找到文件。
docs/en/quick_start/distillation_tutorial_en.md
浏览文件 @
92b3e1c2
...
...
@@ -25,7 +25,7 @@ This tutorial trains and verifies distillation model on the MNIST dataset. The i
Select
`ResNet50`
as the teacher to perform distillation training on the students of the
` MobileNet`
architecture.
```
python
model
=
models
.
__dict__
[
'MobileNet'
]
()
model
=
slim
.
models
.
MobileNet
()
student_program
=
fluid
.
Program
()
student_startup
=
fluid
.
Program
()
with
fluid
.
program_guard
(
student_program
,
student_startup
):
...
...
@@ -42,7 +42,7 @@ with fluid.program_guard(student_program, student_startup):
```
python
teacher_model
=
models
.
__dict__
[
'ResNet50'
]
()
model
=
slim
.
models
.
ResNet50
()
teacher_program
=
fluid
.
Program
()
teacher_startup
=
fluid
.
Program
()
with
fluid
.
program_guard
(
teacher_program
,
teacher_startup
):
...
...
docs/zh_cn/quick_start/distillation_tutorial.md
浏览文件 @
92b3e1c2
...
...
@@ -27,7 +27,7 @@ import paddleslim as slim
选择
`ResNet50`
作为teacher对
`MobileNet`
结构的student进行蒸馏训练。
```
python
model
=
models
.
__dict__
[
'MobileNet'
]
()
model
=
slim
.
models
.
MobileNet
()
student_program
=
fluid
.
Program
()
student_startup
=
fluid
.
Program
()
with
fluid
.
program_guard
(
student_program
,
student_startup
):
...
...
@@ -44,7 +44,7 @@ with fluid.program_guard(student_program, student_startup):
```
python
teacher_model
=
models
.
__dict__
[
'ResNet50'
]
()
model
=
slim
.
models
.
ResNet50
()
teacher_program
=
fluid
.
Program
()
teacher_startup
=
fluid
.
Program
()
with
fluid
.
program_guard
(
teacher_program
,
teacher_startup
):
...
...
paddleslim/models/__init__.py
浏览文件 @
92b3e1c2
...
...
@@ -16,4 +16,7 @@ from __future__ import absolute_import
from
.util
import
image_classification
from
.slimfacenet
import
SlimFaceNet_A_x0_60
,
SlimFaceNet_B_x0_75
,
SlimFaceNet_C_x0_75
from
.slim_mobilenet
import
SlimMobileNet_v1
,
SlimMobileNet_v2
,
SlimMobileNet_v3
,
SlimMobileNet_v4
,
SlimMobileNet_v5
__all__
=
[
"image_classification"
]
from
.mobilenet
import
MobileNet
from
.resnet
import
ResNet50
__all__
=
[
"image_classification"
,
"MobileNet"
,
"ResNet50"
]
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录