Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleSlim
提交
38110176
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看板
提交
38110176
编写于
11月 07, 2019
作者:
W
wanghaoshuang
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Refine structue of search space package
上级
150edfd9
变更
11
隐藏空白更改
内联
并排
Showing
11 changed file
with
216 addition
and
79 deletion
+216
-79
paddleslim/core/__init__.py
paddleslim/core/__init__.py
+4
-0
paddleslim/core/registry.py
paddleslim/core/registry.py
+26
-4
paddleslim/nas/__init__.py
paddleslim/nas/__init__.py
+6
-0
paddleslim/nas/search_space/__init__.py
paddleslim/nas/search_space/__init__.py
+13
-0
paddleslim/nas/search_space/base_layer.py
paddleslim/nas/search_space/base_layer.py
+26
-5
paddleslim/nas/search_space/mobilenetv2_space.py
paddleslim/nas/search_space/mobilenetv2_space.py
+84
-59
paddleslim/nas/search_space/search_space_base.py
paddleslim/nas/search_space/search_space_base.py
+1
-1
paddleslim/nas/search_space/search_space_factory.py
paddleslim/nas/search_space/search_space_factory.py
+6
-4
paddleslim/nas/search_space/search_space_registry.py
paddleslim/nas/search_space/search_space_registry.py
+5
-1
paddleslim/nas/searchspace/registry.py
paddleslim/nas/searchspace/registry.py
+0
-5
tests/test_searchspace.py
tests/test_searchspace.py
+45
-0
未找到文件。
paddleslim/core/__init__.py
浏览文件 @
38110176
...
...
@@ -14,4 +14,8 @@
from
.
import
graph_wrapper
from
.graph_wrapper
import
*
from
.
import
registry
from
.registry
import
*
__all__
=
graph_wrapper
.
__all__
__all__
+=
registry
.
__all__
paddleslim/
nas/utils
/registry.py
→
paddleslim/
core
/registry.py
浏览文件 @
38110176
# 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
inspect
__all__
=
[
"Registry"
]
class
Registry
(
object
):
def
__init__
(
self
,
name
):
self
.
_name
=
name
self
.
_module_dict
=
dict
()
def
__repr__
(
self
):
format_str
=
self
.
__class__
.
__name__
+
'(name={}, items={})'
.
format
(
self
.
_name
,
list
(
self
.
_module_dict
.
keys
()))
format_str
=
self
.
__class__
.
__name__
+
'(name={}, items={})'
.
format
(
self
.
_name
,
list
(
self
.
_module_dict
.
keys
()))
return
format_str
@
property
def
name
(
self
):
return
self
.
_name
@
property
def
module_dict
(
self
):
return
self
.
_module_dict
...
...
@@ -20,12 +40,14 @@ class Registry(object):
def
_register_module
(
self
,
module_class
):
if
not
inspect
.
isclass
(
module_class
):
raise
TypeError
(
'module must be a class, but receive {}.'
.
format
(
type
(
module_class
)))
raise
TypeError
(
'module must be a class, but receive {}.'
.
format
(
type
(
module_class
)))
module_name
=
module_class
.
__name__
if
module_name
in
self
.
_module_dict
:
raise
KeyError
(
'{} is already registered in {}.'
.
format
(
module_name
,
self
.
name
))
raise
KeyError
(
'{} is already registered in {}.'
.
format
(
module_name
,
self
.
name
))
self
.
_module_dict
[
module_name
]
=
module_class
def
register
_module
(
self
,
cls
):
def
register
(
self
,
cls
):
self
.
_register_module
(
cls
)
return
cls
paddleslim/nas/__init__.py
浏览文件 @
38110176
...
...
@@ -11,3 +11,9 @@
# 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
search_space
from
search_space
import
*
__all__
=
[]
__all__
+=
search_space
.
__all__
paddleslim/nas/
utils
/__init__.py
→
paddleslim/nas/
search_space
/__init__.py
浏览文件 @
38110176
...
...
@@ -11,3 +11,16 @@
# 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.
from
.mobilenetv2_space
import
MobileNetV2Space
import
search_space_registry
from
search_space_registry
import
*
import
search_space_factory
from
search_space_factory
import
*
import
search_space_base
from
search_space_base
import
*
__all__
=
[
"MobileNetV2Space"
]
__all__
+=
search_space_registry
.
__all__
__all__
+=
search_space_factory
.
__all__
__all__
+=
search_space_base
.
__all__
paddleslim/nas/searchspace/base_layer.py
→
paddleslim/nas/search
_
space/base_layer.py
浏览文件 @
38110176
...
...
@@ -16,7 +16,15 @@ 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
):
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.
...
...
@@ -31,11 +39,24 @@ def conv_bn_layer(input, filter_size, num_filters, stride, padding, num_groups=1
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
)
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'
)
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
:
...
...
paddleslim/nas/searchspace/mobilenetv2_space.py
→
paddleslim/nas/search
_
space/mobilenetv2_space.py
浏览文件 @
38110176
...
...
@@ -17,30 +17,39 @@ from __future__ import division
from
__future__
import
print_function
import
sys
sys
.
path
.
append
(
'..'
)
import
numpy
as
np
import
paddle.fluid
as
fluid
from
paddle.fluid.param_attr
import
ParamAttr
from
searchspace
base
import
SearchSpaceBase
from
.search_space_
base
import
SearchSpaceBase
from
.base_layer
import
conv_bn_layer
from
.registry
import
SEARCHSPACE
from
.
search_space_
registry
import
SEARCHSPACE
@
SEARCHSPACE
.
register_module
@
SEARCHSPACE
.
register
class
MobileNetV2Space
(
SearchSpaceBase
):
def
__init__
(
self
,
input_size
,
output_size
,
block_num
,
scale
=
1.0
,
class_dim
=
1000
):
super
(
MobileNetV2Space
,
self
).
__init__
(
input_size
,
output_size
,
block_num
)
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
self
.
filter_num3
=
np
.
array
([
16
,
24
,
32
,
48
,
64
,
80
,
96
,
128
])
#8
self
.
filter_num4
=
np
.
array
([
24
,
32
,
48
,
64
,
80
,
96
,
128
,
144
,
160
,
192
])
#10
self
.
filter_num5
=
np
.
array
([
32
,
48
,
64
,
80
,
96
,
128
,
144
,
160
,
192
,
224
])
#10
self
.
filter_num6
=
np
.
array
([
64
,
80
,
96
,
128
,
144
,
160
,
192
,
224
,
256
,
320
,
384
,
512
])
#12
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
.
scale
=
scale
self
.
class_dim
=
class_dim
def
__init__
(
self
,
input_size
,
output_size
,
block_num
,
scale
=
1.0
,
class_dim
=
1000
):
super
(
MobileNetV2Space
,
self
).
__init__
(
input_size
,
output_size
,
block_num
)
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
self
.
filter_num3
=
np
.
array
([
16
,
24
,
32
,
48
,
64
,
80
,
96
,
128
])
#8
self
.
filter_num4
=
np
.
array
(
[
24
,
32
,
48
,
64
,
80
,
96
,
128
,
144
,
160
,
192
])
#10
self
.
filter_num5
=
np
.
array
(
[
32
,
48
,
64
,
80
,
96
,
128
,
144
,
160
,
192
,
224
])
#10
self
.
filter_num6
=
np
.
array
(
[
64
,
80
,
96
,
128
,
144
,
160
,
192
,
224
,
256
,
320
,
384
,
512
])
#12
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
.
scale
=
scale
self
.
class_dim
=
class_dim
def
init_tokens
(
self
):
"""
...
...
@@ -49,28 +58,47 @@ class MobileNetV2Space(SearchSpaceBase):
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
4
,
5
,
1
,
0
,
# 6, 24, 1
4
,
5
,
1
,
0
,
# 6, 24, 2
4
,
4
,
2
,
0
,
# 6, 32, 3
4
,
4
,
3
,
0
,
# 6, 64, 4
4
,
5
,
2
,
0
,
# 6, 96, 3
4
,
7
,
2
,
0
,
# 6, 160, 3
4
,
9
,
0
,
0
]
# 6, 320, 1
return
[
4
,
# 1, 16, 1
4
,
5
,
1
,
0
,
# 6, 24, 1
4
,
5
,
1
,
0
,
# 6, 24, 2
4
,
4
,
2
,
0
,
# 6, 32, 3
4
,
4
,
3
,
0
,
# 6, 64, 4
4
,
5
,
2
,
0
,
# 6, 96, 3
4
,
7
,
2
,
0
,
# 6, 160, 3
4
,
9
,
0
,
0
]
# 6, 320, 1
def
range_table
(
self
):
"""
get range table of current search space
"""
# head_num + 7 * [multiple(expansion_factor), filter_num, repeat, kernel_size]
return
[
7
,
5
,
8
,
6
,
2
,
5
,
8
,
6
,
2
,
5
,
8
,
6
,
2
,
5
,
8
,
6
,
2
,
5
,
10
,
6
,
2
,
5
,
10
,
6
,
2
,
5
,
12
,
6
,
2
]
return
[
7
,
5
,
8
,
6
,
2
,
5
,
8
,
6
,
2
,
5
,
8
,
6
,
2
,
5
,
8
,
6
,
2
,
5
,
10
,
6
,
2
,
5
,
10
,
6
,
2
,
5
,
12
,
6
,
2
]
def
token2arch
(
self
,
tokens
=
None
):
"""
...
...
@@ -81,16 +109,24 @@ class MobileNetV2Space(SearchSpaceBase):
base_bottleneck_params_list
=
[
(
1
,
self
.
head_num
[
tokens
[
0
]],
1
,
1
,
3
),
(
self
.
multiply
[
tokens
[
1
]],
self
.
filter_num1
[
tokens
[
2
]],
self
.
repeat
[
tokens
[
3
]],
2
,
self
.
k_size
[
tokens
[
4
]]),
(
self
.
multiply
[
tokens
[
5
]],
self
.
filter_num1
[
tokens
[
6
]],
self
.
repeat
[
tokens
[
7
]],
2
,
self
.
k_size
[
tokens
[
8
]]),
(
self
.
multiply
[
tokens
[
9
]],
self
.
filter_num2
[
tokens
[
10
]],
self
.
repeat
[
tokens
[
11
]],
2
,
self
.
k_size
[
tokens
[
12
]]),
(
self
.
multiply
[
tokens
[
13
]],
self
.
filter_num3
[
tokens
[
14
]],
self
.
repeat
[
tokens
[
15
]],
2
,
self
.
k_size
[
tokens
[
16
]]),
(
self
.
multiply
[
tokens
[
17
]],
self
.
filter_num3
[
tokens
[
18
]],
self
.
repeat
[
tokens
[
19
]],
1
,
self
.
k_size
[
tokens
[
20
]]),
(
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
]]),
(
self
.
multiply
[
tokens
[
1
]],
self
.
filter_num1
[
tokens
[
2
]],
self
.
repeat
[
tokens
[
3
]],
2
,
self
.
k_size
[
tokens
[
4
]]),
(
self
.
multiply
[
tokens
[
5
]],
self
.
filter_num1
[
tokens
[
6
]],
self
.
repeat
[
tokens
[
7
]],
2
,
self
.
k_size
[
tokens
[
8
]]),
(
self
.
multiply
[
tokens
[
9
]],
self
.
filter_num2
[
tokens
[
10
]],
self
.
repeat
[
tokens
[
11
]],
2
,
self
.
k_size
[
tokens
[
12
]]),
(
self
.
multiply
[
tokens
[
13
]],
self
.
filter_num3
[
tokens
[
14
]],
self
.
repeat
[
tokens
[
15
]],
2
,
self
.
k_size
[
tokens
[
16
]]),
(
self
.
multiply
[
tokens
[
17
]],
self
.
filter_num3
[
tokens
[
18
]],
self
.
repeat
[
tokens
[
19
]],
1
,
self
.
k_size
[
tokens
[
20
]]),
(
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
]]),
]
assert
self
.
block_num
<
7
,
'block number must less than 7, but receive block number is {}'
.
format
(
self
.
block_num
)
assert
self
.
block_num
<
7
,
'block number must less than 7, but receive block number is {}'
.
format
(
self
.
block_num
)
# the stride = 2 means downsample feature map in the convolution, so only when stride=2, block_num minus 1,
# otherwise, add layers to params_list directly.
...
...
@@ -136,10 +172,11 @@ class MobileNetV2Space(SearchSpaceBase):
# if output_size is 1, add fc layer in the end
if
self
.
output_size
==
1
:
input
=
fluid
.
layers
.
fc
(
input
=
input
,
size
=
self
.
class_dim
,
param_attr
=
ParamAttr
(
name
=
'fc10_weights'
),
bias_attr
=
ParamAttr
(
name
=
'fc10_offset'
))
input
=
fluid
.
layers
.
fc
(
input
=
input
,
size
=
self
.
class_dim
,
param_attr
=
ParamAttr
(
name
=
'fc10_weights'
),
bias_attr
=
ParamAttr
(
name
=
'fc10_offset'
))
else
:
assert
self
.
output_size
==
input
.
shape
[
2
],
\
(
"output_size must EQUAL to input_size / (2^block_num)."
...
...
@@ -150,7 +187,6 @@ class MobileNetV2Space(SearchSpaceBase):
return
net_arch
def
shortcut
(
self
,
input
,
data_residual
):
"""Build shortcut layer.
Args:
...
...
@@ -161,7 +197,6 @@ class MobileNetV2Space(SearchSpaceBase):
"""
return
fluid
.
layers
.
elementwise_add
(
input
,
data_residual
)
def
inverted_residual_unit
(
self
,
input
,
num_in_filter
,
...
...
@@ -222,15 +257,7 @@ class MobileNetV2Space(SearchSpaceBase):
out
=
self
.
shortcut
(
input
=
input
,
data_residual
=
out
)
return
out
def
invresi_blocks
(
self
,
input
,
in_c
,
t
,
c
,
n
,
s
,
k
,
name
=
None
):
def
invresi_blocks
(
self
,
input
,
in_c
,
t
,
c
,
n
,
s
,
k
,
name
=
None
):
"""Build inverted residual blocks.
Args:
input: Variable, input.
...
...
@@ -268,5 +295,3 @@ class MobileNetV2Space(SearchSpaceBase):
expansion_factor
=
t
,
name
=
name
+
'_'
+
str
(
i
+
1
))
return
last_residual_block
paddleslim/nas/search
space
base.py
→
paddleslim/nas/search
_space/search_space_
base.py
浏览文件 @
38110176
...
...
@@ -14,6 +14,7 @@
__all__
=
[
'SearchSpaceBase'
]
class
SearchSpaceBase
(
object
):
"""Controller for Neural Architecture Search.
"""
...
...
@@ -41,4 +42,3 @@ class SearchSpaceBase(object):
list<layers>
"""
raise
NotImplementedError
(
'Abstract method.'
)
paddleslim/nas/search
space
factory.py
→
paddleslim/nas/search
_space/search_space_
factory.py
浏览文件 @
38110176
...
...
@@ -12,7 +12,10 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from
searchspace.registry
import
SEARCHSPACE
from
search_space_registry
import
SEARCHSPACE
__all__
=
[
"SearchSpaceFactory"
]
class
SearchSpaceFactory
(
object
):
def
__init__
(
self
):
...
...
@@ -29,8 +32,7 @@ class SearchSpaceFactory(object):
model space(class)
"""
cls
=
SEARCHSPACE
.
get
(
key
)
space
=
cls
(
config
[
'input_size'
],
config
[
'output_size'
],
config
[
'block_num'
])
space
=
cls
(
config
[
'input_size'
],
config
[
'output_size'
],
config
[
'block_num'
])
return
space
paddleslim/nas/search
space/__init__
.py
→
paddleslim/nas/search
_space/search_space_registry
.py
浏览文件 @
38110176
...
...
@@ -12,4 +12,8 @@
# See the License for the specific language governing permissions and
# limitations under the License.
from
.mobilenetv2_space
import
MobileNetV2Space
from
...core
import
Registry
__all__
=
[
"SEARCHSPACE"
]
SEARCHSPACE
=
Registry
(
'searchspace'
)
paddleslim/nas/searchspace/registry.py
已删除
100644 → 0
浏览文件 @
150edfd9
import
sys
sys
.
path
.
append
(
'..'
)
from
utils.registry
import
Registry
SEARCHSPACE
=
Registry
(
'searchspace'
)
paddleslim/na
s/test_searchspace.py
→
test
s/test_searchspace.py
浏览文件 @
38110176
...
...
@@ -11,26 +11,35 @@
# 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
sys
sys
.
path
.
append
(
"../"
)
import
unittest
import
paddle.fluid
as
fluid
from
searchspacefactory
import
SearchSpaceFactory
if
__name__
==
'__main__'
:
# if output_size is 1, the model will add fc layer in the end.
config
=
{
'input_size'
:
224
,
'output_size'
:
7
,
'block_num'
:
5
}
space
=
SearchSpaceFactory
()
my_space
=
space
.
get_search_space
(
'MobileNetV2Space'
,
config
)
model_arch
=
my_space
.
token2arch
()
train_prog
=
fluid
.
Program
()
startup_prog
=
fluid
.
Program
()
with
fluid
.
program_guard
(
train_prog
,
startup_prog
):
input_size
=
config
[
'input_size'
]
model_input
=
fluid
.
layers
.
data
(
name
=
'model_in'
,
shape
=
[
1
,
3
,
input_size
,
input_size
],
dtype
=
'float32'
,
append_batch_size
=
False
)
print
(
'input shape'
,
model_input
.
shape
)
predict
=
model_arch
(
model_input
)
print
(
'output shape'
,
predict
.
shape
)
from
paddleslim.nas
import
SearchSpaceFactory
class
TestSearchSpaceFactory
(
unittest
.
TestCase
):
def
test_factory
(
self
):
# if output_size is 1, the model will add fc layer in the end.
config
=
{
'input_size'
:
224
,
'output_size'
:
7
,
'block_num'
:
5
}
space
=
SearchSpaceFactory
()
#for op in train_prog.global_block().ops:
# print(op.type)
my_space
=
space
.
get_search_space
(
'MobileNetV2Space'
,
config
)
model_arch
=
my_space
.
token2arch
()
train_prog
=
fluid
.
Program
()
startup_prog
=
fluid
.
Program
()
with
fluid
.
program_guard
(
train_prog
,
startup_prog
):
input_size
=
config
[
'input_size'
]
model_input
=
fluid
.
layers
.
data
(
name
=
'model_in'
,
shape
=
[
1
,
3
,
input_size
,
input_size
],
dtype
=
'float32'
,
append_batch_size
=
False
)
print
(
'input shape'
,
model_input
.
shape
)
predict
=
model_arch
(
model_input
)
print
(
'output shape'
,
predict
.
shape
)
if
__name__
==
'__main__'
:
unittest
.
main
()
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录