Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleDetection
提交
21a3c9d6
P
PaddleDetection
项目概览
PaddlePaddle
/
PaddleDetection
大约 1 年 前同步成功
通知
695
Star
11112
Fork
2696
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
184
列表
看板
标记
里程碑
合并请求
40
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
PaddleDetection
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
184
Issue
184
列表
看板
标记
里程碑
合并请求
40
合并请求
40
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
21a3c9d6
编写于
7月 21, 2017
作者:
Z
zlx
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add the comments for img_conv_groups
上级
fae3632c
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
31 addition
and
18 deletion
+31
-18
python/paddle/trainer_config_helpers/networks.py
python/paddle/trainer_config_helpers/networks.py
+31
-18
未找到文件。
python/paddle/trainer_config_helpers/networks.py
浏览文件 @
21a3c9d6
...
@@ -345,21 +345,34 @@ def img_conv_group(input,
...
@@ -345,21 +345,34 @@ def img_conv_group(input,
"""
"""
Image Convolution Group, Used for vgg net.
Image Convolution Group, Used for vgg net.
TODO(yuyang18): Complete docs
:param conv_batchnorm_drop_rate: if conv_with_batchnorm[i] is true,
conv_batchnorm_drop_rate[i] represents the drop rate of each batch norm.
:param conv_batchnorm_drop_rate:
:type conv_batchnorm_drop_rate: list
:param input:
:param input: layer's input.
:param conv_num_filter:
:type input: LayerOutput
:param pool_size:
:param conv_num_filter: output channels num.
:param num_channels:
:type conv_num_filter: int
:param conv_padding:
:param pool_size: pooling filter size.
:param conv_filter_size:
:type pool_size: int
:param conv_act:
:param num_channels: input channels num.
:param conv_with_batchnorm:
:type num_channels: int
:param pool_stride:
:param conv_padding: convolution padding size.
:param pool_type:
:type conv_padding: int
:param param_attr:
:param conv_filter_size: convolution filter size.
:return:
:type conv_filter_size: int
:param conv_act: activation funciton after convolution.
:type conv_act: BaseActivation
:param conv_with_batchnorm: conv_with_batchnorm[i] represents
if there is a batch normalization after each convolution.
:type conv_with_batchnorm: list
:param pool_stride: pooling stride size.
:type pool_stride: int
:param pool_type: pooling type.
:type pool_type: BasePoolingType
:param param_attr: see img_conv_layer for details.
:type param_attr: ParameterAttribute
:return: Layer's output
:type: LayerOutput
"""
"""
tmp
=
input
tmp
=
input
...
@@ -399,7 +412,7 @@ def img_conv_group(input,
...
@@ -399,7 +412,7 @@ def img_conv_group(input,
padding
=
conv_padding
[
i
],
padding
=
conv_padding
[
i
],
filter_size
=
conv_filter_size
[
i
],
filter_size
=
conv_filter_size
[
i
],
num_filters
=
conv_num_filter
[
i
],
num_filters
=
conv_num_filter
[
i
],
param_attr
=
param_attr
,
param_attr
=
param_attr
,
**
extra_kwargs
)
**
extra_kwargs
)
# logger.debug("tmp.num_filters = %d" % tmp.num_filters)
# logger.debug("tmp.num_filters = %d" % tmp.num_filters)
...
@@ -1392,7 +1405,7 @@ def inputs(layers, *args):
...
@@ -1392,7 +1405,7 @@ def inputs(layers, *args):
if
len
(
args
)
!=
0
:
if
len
(
args
)
!=
0
:
layers
.
extend
(
args
)
layers
.
extend
(
args
)
Inputs
(
*
[
l
.
name
for
l
in
layers
])
Inputs
(
*
[
l
.
name
for
l
in
layers
])
def
outputs
(
layers
,
*
args
):
def
outputs
(
layers
,
*
args
):
...
@@ -1442,7 +1455,7 @@ def outputs(layers, *args):
...
@@ -1442,7 +1455,7 @@ def outputs(layers, *args):
assert
len
(
layers
)
>
0
assert
len
(
layers
)
>
0
if
HasInputsSet
():
# input already set
if
HasInputsSet
():
# input already set
Outputs
(
*
[
l
.
name
for
l
in
layers
])
Outputs
(
*
[
l
.
name
for
l
in
layers
])
return
# just return outputs.
return
# just return outputs.
if
len
(
layers
)
!=
1
:
if
len
(
layers
)
!=
1
:
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录