Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Crayon鑫
Paddle
提交
7ad83630
P
Paddle
项目概览
Crayon鑫
/
Paddle
与 Fork 源项目一致
Fork自
PaddlePaddle / Paddle
通知
1
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1
Issue
1
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
7ad83630
编写于
2月 28, 2017
作者:
Q
qiaolongfei
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
support boot_layer
上级
6b1a91f9
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
37 addition
and
7 deletion
+37
-7
python/paddle/trainer_config_helpers/layers.py
python/paddle/trainer_config_helpers/layers.py
+5
-1
python/paddle/v2/layer.py
python/paddle/v2/layer.py
+32
-5
python/paddle/v2/tests/CMakeLists.txt
python/paddle/v2/tests/CMakeLists.txt
+0
-1
未找到文件。
python/paddle/trainer_config_helpers/layers.py
浏览文件 @
7ad83630
...
...
@@ -3110,7 +3110,8 @@ def recurrent_group(step,
name
=
None
,
targetInlink
=
None
,
is_generating
=
False
,
in_args_converter
=
None
):
in_args_converter
=
None
,
boot_layer
=
None
):
"""
Recurrent layer group is an extremely flexible recurrent unit in
PaddlePaddle. As long as the user defines the calculation done within a
...
...
@@ -3256,6 +3257,9 @@ def recurrent_group(step,
if
in_args_converter
is
None
:
layer_outs
=
step
(
*
in_args
)
else
:
# append boot_layer to the last of in_args
if
boot_layer
is
not
None
:
in_args
.
append
(
boot_layer
)
layer_outs
=
step
(
*
in_args_converter
(
*
in_args
)).
to_proto
(
dict
())
if
isinstance
(
layer_outs
,
LayerOutput
):
...
...
python/paddle/v2/layer.py
浏览文件 @
7ad83630
...
...
@@ -140,10 +140,13 @@ class Layer(object):
if
self
.
name
is
None
:
return
self
.
to_proto_impl
(
**
kwargs
)
elif
isinstance
(
self
,
MemoryV2
):
return
self
.
to_proto_impl
(
**
kwargs
)
elif
self
.
name
not
in
context
:
context
[
self
.
name
]
=
self
.
to_proto_impl
(
**
kwargs
)
name
=
self
.
name
+
"#__memory__"
if
name
not
in
context
:
context
[
name
]
=
self
.
to_proto_impl
(
**
kwargs
)
return
context
[
name
]
if
self
.
name
not
in
context
:
context
[
self
.
name
]
=
self
.
to_proto_impl
(
**
kwargs
)
return
context
[
self
.
name
]
def
to_proto_impl
(
self
,
**
kwargs
):
...
...
@@ -256,9 +259,32 @@ class LayerOutputV2(Layer):
return
self
.
layer_output
class
StaticInputV2
(
Layer
):
def
__init__
(
self
,
**
kwargs
):
self
.
__parent_names__
=
[
'input'
]
other_kwargs
=
dict
()
parent_layers
=
dict
()
for
pname
in
self
.
__parent_names__
:
if
kwargs
.
has_key
(
pname
):
parent_layers
[
pname
]
=
kwargs
[
pname
]
for
key
in
kwargs
.
keys
():
if
key
not
in
self
.
__parent_names__
:
other_kwargs
[
key
]
=
kwargs
[
key
]
self
.
__kwargs__
=
other_kwargs
super
(
StaticInputV2
,
self
).
__init__
(
parent_layers
=
parent_layers
)
def
to_proto_impl
(
self
,
**
kwargs
):
args
=
dict
()
for
each
in
kwargs
:
args
[
each
]
=
kwargs
[
each
]
for
each
in
self
.
__kwargs__
:
args
[
each
]
=
self
.
__kwargs__
[
each
]
return
conf_helps
.
StaticInput
(
**
args
)
class
RecurrentGroupV2
(
Layer
):
def
__init__
(
self
,
name
,
**
kwargs
):
self
.
__parent_names__
=
[
'input'
]
self
.
__parent_names__
=
[
'input'
,
'boot_layer'
]
other_kwargs
=
dict
()
parent_layers
=
dict
()
for
pname
in
self
.
__parent_names__
:
...
...
@@ -443,7 +469,8 @@ layer_list = [
[
'nce'
,
'nce_layer'
,
[
'input'
,
'label'
]],
[
'hsigmoid'
,
'hsigmoid'
,
[
'input'
,
'label'
]],
# check layers
[
'eos'
,
'eos_layer'
,
[
'input'
]]
[
'eos'
,
'eos_layer'
,
[
'input'
]],
[
'gru_step_layer'
,
'gru_step_layer'
,
[
'input'
,
'output_mem'
]]
]
for
l
in
layer_list
:
globals
()[
l
[
0
]]
=
__convert_to_v2__
(
l
[
1
],
l
[
2
])
...
...
python/paddle/v2/tests/CMakeLists.txt
浏览文件 @
7ad83630
...
...
@@ -10,7 +10,6 @@ add_test(NAME test_v2_rnn_layer
COMMAND
${
PROJ_ROOT
}
/paddle/.set_python_path.sh -d
${
PROJ_ROOT
}
/python/
${
PYTHON_EXECUTABLE
}
${
PROJ_ROOT
}
/python/paddle/v2/tests/test_rnn_layer.py
)
add_test
(
NAME test_topology
COMMAND
${
PROJ_ROOT
}
/paddle/.set_python_path.sh -d
${
PROJ_ROOT
}
/python/
${
PYTHON_EXECUTABLE
}
${
PROJ_ROOT
}
/python/paddle/v2/tests/test_topology.py
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录