Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleSlim
提交
9e4324ef
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看板
提交
9e4324ef
编写于
11月 03, 2019
作者:
C
ceci3
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update space
上级
7d3cdda1
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
102 addition
and
83 deletion
+102
-83
paddleslim/nas/MobileNetV2Space.py
paddleslim/nas/MobileNetV2Space.py
+48
-73
paddleslim/nas/SearchSpaceFactory.py
paddleslim/nas/SearchSpaceFactory.py
+12
-10
paddleslim/nas/base_layer.py
paddleslim/nas/base_layer.py
+42
-0
未找到文件。
paddleslim/nas/MobileNetV2Space.py
浏览文件 @
9e4324ef
...
...
@@ -16,15 +16,15 @@ from __future__ import absolute_import
from
__future__
import
division
from
__future__
import
print_function
from
SearchSpace
import
SearchSpace
from
paddle.fluid.param_attr
import
ParamAttr
import
paddle.fluid
as
fluid
import
numpy
as
np
import
paddle.fluid
as
fluid
from
paddle.fluid.param_attr
import
ParamAttr
from
SearchSpace
import
SearchSpace
from
base_layer
import
conv_bn_layer
class
MobileNetV2Space
(
SearchSpace
):
def
__init__
(
self
,
input_size
,
output_size
,
block_num
,
scale
=
1.0
,
class_dim
=
1000
):
def
__init__
(
self
,
input_size
,
output_size
,
block_num
,
scale
=
1.0
):
super
(
MobileNetV2Space
,
self
).
__init__
(
input_size
,
output_size
,
block_num
)
self
.
scale
=
scale
self
.
head_num
=
np
.
array
([
3
,
4
,
8
,
12
,
16
,
24
,
32
])
#7
self
.
filter_num1
=
np
.
array
([
3
,
4
,
8
,
12
,
16
,
24
,
32
,
48
])
#8
self
.
filter_num2
=
np
.
array
([
8
,
12
,
16
,
24
,
32
,
48
,
64
,
80
])
#8
...
...
@@ -35,11 +35,13 @@ class MobileNetV2Space(SearchSpace):
self
.
k_size
=
np
.
array
([
3
,
5
])
#2
self
.
multiply
=
np
.
array
([
1
,
2
,
3
,
4
,
6
])
#5
self
.
repeat
=
np
.
array
([
1
,
2
,
3
,
4
,
5
,
6
])
#6
self
.
class_dim
=
class_dim
self
.
scale
=
scale
def
init_tokens
(
self
):
"""
initial tokens
initial tokens. The fist tokens to controller.
The first one is the index of the first layers' channel in self.head_num,
each line in the following represent the index of the [expansion_factor, filter_num, repeat_num, kernel_size]
"""
# original MobileNetV2
return
[
4
,
# 1, 16, 1
...
...
@@ -67,7 +69,7 @@ class MobileNetV2Space(SearchSpace):
def
token2arch
(
self
,
tokens
=
None
):
"""
return net
A
rch function
return net
_a
rch function
"""
if
tokens
is
None
:
tokens
=
self
.
init_tokens
()
...
...
@@ -82,17 +84,18 @@ class MobileNetV2Space(SearchSpace):
(
self
.
multiply
[
tokens
[
21
]],
self
.
filter_num5
[
tokens
[
22
]],
self
.
repeat
[
tokens
[
23
]],
2
,
self
.
k_size
[
tokens
[
24
]]),
(
self
.
multiply
[
tokens
[
25
]],
self
.
filter_num6
[
tokens
[
26
]],
self
.
repeat
[
tokens
[
27
]],
1
,
self
.
k_size
[
tokens
[
28
]]),
]
bottleneck_params_list
=
bottleneck_params_list
[:
self
.
block_num
]
def
net
A
rch
(
input
):
def
net
_a
rch
(
input
):
#conv1
input
=
self
.
conv_bn_layer
(
input
=
conv_bn_layer
(
input
,
num_filters
=
int
(
32
*
self
.
scale
),
filter_size
=
3
,
stride
=
2
,
padding
=
1
,
if_act
=
True
,
padding
=
'SAME'
,
act
=
'relu6'
,
name
=
'conv1_1'
)
# bottleneck sequences
...
...
@@ -111,57 +114,29 @@ class MobileNetV2Space(SearchSpace):
k
=
k
,
name
=
'conv'
+
str
(
i
))
in_c
=
int
(
c
*
self
.
scale
)
#last_conv
input
=
self
.
conv_bn_layer
(
input
=
input
,
num_filters
=
int
(
1280
*
self
.
scale
)
if
self
.
scale
>
1.0
else
1280
,
filter_size
=
1
,
stride
=
1
,
padding
=
0
,
if_act
=
True
,
name
=
'conv9'
)
#
#
last_conv
#input =
conv_bn_layer(
#
input=input,
#
num_filters=int(1280 * self.scale) if self.scale > 1.0 else 1280,
#
filter_size=1,
#
stride=1,
# padding='SAME'
,
# act='relu6'
,
#
name='conv9')
#input = fluid.layers.pool2d(
# input=input,
# pool_size=7,
# pool_stride=1,
# pool_type='avg',
# global_pooling=True)
# input=input, pool_type='avg', global_pooling=True)
#output = fluid.layers.fc(input=input,
# size=self.class_dim,
# param_attr=ParamAttr(name='fc10_weights'),
# bias_attr=ParamAttr(name='fc10_offset'))
# size=class_dim,
# param_attr=ParamAttr(name='fc10_weights'),
# bias_attr=ParamAttr(name='fc10_offset'))
return
input
return
net
A
rch
return
net
_a
rch
def
conv_bn_layer
(
self
,
input
,
filter_size
,
num_filters
,
stride
,
padding
,
num_groups
=
1
,
if_act
=
True
,
name
=
None
,
use_cudnn
=
True
):
"""Build convolution and batch normalization layers.
Args:
input: Variable, input.
filter_size: int, filter size.
num_filters: int, number of filters.
stride: int, stride.
padding: int, padding.
num_groups: int, number of groups.
if_act: bool, whether using activation.
name: str, name.
use_cudnn: bool, whether use cudnn.
Returns:
Variable, layers output.
"""
conv
=
fluid
.
layers
.
conv2d
(
input
,
num_filters
=
num_filters
,
filter_size
=
filter_size
,
stride
=
stride
,
padding
=
padding
,
groups
=
num_groups
,
act
=
None
,
use_cudnn
=
use_cudnn
,
param_attr
=
ParamAttr
(
name
=
name
+
'_weights'
),
bias_attr
=
False
)
bn_name
=
name
+
'_bn'
bn
=
fluid
.
layers
.
batch_norm
(
input
=
conv
,
param_attr
=
ParamAttr
(
name
=
bn_name
+
'_scale'
),
bias_attr
=
ParamAttr
(
name
=
bn_name
+
'_offset'
),
moving_mean_name
=
bn_name
+
'_mean'
,
moving_variance_name
=
bn_name
+
'_variance'
)
if
if_act
:
return
fluid
.
layers
.
relu6
(
bn
)
else
:
return
bn
def
shortcut
(
self
,
input
,
data_residual
):
"""Build shortcut layer.
Args:
...
...
@@ -185,48 +160,48 @@ class MobileNetV2Space(SearchSpace):
name
=
None
):
"""Build inverted residual unit.
Args:
input
: Variable
, input.
num_in_filter
: int
, number of in filters.
num_filters
: int
, number of filters.
ifshortcut
: bool
, whether using shortcut.
stride
: int
, stride.
filter_size
: int
, filter size.
padding
: int
, padding.
expansion_factor
: float
, expansion factor.
name
: str
, name.
input
(Variable)
, input.
num_in_filter
(int)
, number of in filters.
num_filters
(int)
, number of filters.
ifshortcut
(bool)
, whether using shortcut.
stride
(int)
, stride.
filter_size
(int)
, filter size.
padding
(str, 'SAME'|'VAILD')
, padding.
expansion_factor
(float)
, expansion factor.
name
(str)
, name.
Returns:
Variable, layers output.
"""
num_expfilter
=
int
(
round
(
num_in_filter
*
expansion_factor
))
channel_expand
=
self
.
conv_bn_layer
(
channel_expand
=
conv_bn_layer
(
input
=
input
,
num_filters
=
num_expfilter
,
filter_size
=
1
,
stride
=
1
,
padding
=
0
,
padding
=
'SAME'
,
num_groups
=
1
,
if_act
=
True
,
act
=
'relu6'
,
name
=
name
+
'_expand'
)
bottleneck_conv
=
self
.
conv_bn_layer
(
bottleneck_conv
=
conv_bn_layer
(
input
=
channel_expand
,
num_filters
=
num_expfilter
,
filter_size
=
filter_size
,
stride
=
stride
,
padding
=
int
((
filter_size
-
1
)
/
2
)
,
padding
=
'SAME'
,
num_groups
=
num_expfilter
,
if_act
=
True
,
act
=
'relu6'
,
name
=
name
+
'_dwise'
,
use_cudnn
=
False
)
linear_out
=
self
.
conv_bn_layer
(
linear_out
=
conv_bn_layer
(
input
=
bottleneck_conv
,
num_filters
=
num_filters
,
filter_size
=
1
,
stride
=
1
,
padding
=
0
,
padding
=
'SAME'
,
num_groups
=
1
,
if_act
=
Fals
e
,
act
=
Non
e
,
name
=
name
+
'_linear'
)
out
=
linear_out
if
ifshortcut
:
...
...
paddleslim/nas/SearchSpaceFactory.py
浏览文件 @
9e4324ef
from
MobileNetV2Space
import
MobileNetV2Space
class
SearchSpaceFactory
(
object
):
def
__init__
(
self
,
key
,
config
):
self
.
key
=
key
self
.
input_size
=
config
[
'input_size'
]
self
.
output_size
=
config
[
'output_size'
]
self
.
block_num
=
config
[
'block_num'
]
def
__init__
(
self
):
pass
def
get_search_space
(
self
):
if
self
.
key
==
'MobileNetV2'
:
space
=
MobileNetV2Space
(
self
.
input_size
,
self
.
output_size
,
self
.
block_num
)
def
get_search_space
(
self
,
key
,
config
):
"""
Args:
key(str): model name
config(dict): basic config information.
"""
if
key
==
'MobileNetV2'
:
space
=
MobileNetV2Space
(
config
[
'input_size'
],
config
[
'output_size'
],
config
[
'block_num'
])
return
space
...
...
@@ -17,9 +19,9 @@ class SearchSpaceFactory(object):
import
paddle.fluid
as
fluid
if
__name__
==
'__main__'
:
config
=
{
'input_size'
:
224
,
'output_size'
:
7
,
'block_num'
:
5
}
space
=
SearchSpaceFactory
(
'MobileNetV2'
,
config
=
config
)
space
=
SearchSpaceFactory
()
my_space
=
space
.
get_search_space
()
my_space
=
space
.
get_search_space
(
'MobileNetV2'
,
config
)
model_arch
=
my_space
.
token2arch
()
train_prog
=
fluid
.
Program
()
...
...
paddleslim/nas/base_layer.py
0 → 100644
浏览文件 @
9e4324ef
# Copyright (c) 2019 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import
paddle.fluid
as
fluid
from
paddle.fluid.param_attr
import
ParamAttr
def
conv_bn_layer
(
input
,
filter_size
,
num_filters
,
stride
,
padding
,
num_groups
=
1
,
act
=
None
,
name
=
None
,
use_cudnn
=
True
):
"""Build convolution and batch normalization layers.
Args:
input(Variable): input.
filter_size(int): filter size.
num_filters(int): number of filters.
stride(int): stride.
padding(int|list|str): padding.
num_groups(int): number of groups.
act(str): activation type.
name(str): name.
use_cudnn(bool): whether use cudnn.
Returns:
Variable, layers output.
"""
conv
=
fluid
.
layers
.
conv2d
(
input
,
num_filters
=
num_filters
,
filter_size
=
filter_size
,
stride
=
stride
,
padding
=
padding
,
groups
=
num_groups
,
act
=
None
,
use_cudnn
=
use_cudnn
,
param_attr
=
ParamAttr
(
name
=
name
+
'_weights'
),
bias_attr
=
False
)
bn_name
=
name
+
'_bn'
bn
=
fluid
.
layers
.
batch_norm
(
input
=
conv
,
param_attr
=
ParamAttr
(
name
=
bn_name
+
'_scale'
),
bias_attr
=
ParamAttr
(
name
=
bn_name
+
'_offset'
),
moving_mean_name
=
bn_name
+
'_mean'
,
moving_variance_name
=
bn_name
+
'_variance'
)
if
act
==
'relu6'
:
return
fluid
.
layers
.
relu6
(
bn
)
else
:
return
bn
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录