Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
PaddleDetection
提交
9ee9fefd
P
PaddleDetection
项目概览
PaddlePaddle
/
PaddleDetection
大约 1 年 前同步成功
通知
694
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
9ee9fefd
编写于
12月 19, 2017
作者:
Y
yangyaming
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Change the return order to h, c.
上级
d993a4f5
变更
2
显示空白变更内容
内联
并排
Showing
2 changed file
with
5 addition
and
5 deletion
+5
-5
python/paddle/v2/fluid/layers/nn.py
python/paddle/v2/fluid/layers/nn.py
+4
-4
python/paddle/v2/fluid/tests/test_layers.py
python/paddle/v2/fluid/tests/test_layers.py
+1
-1
未找到文件。
python/paddle/v2/fluid/layers/nn.py
浏览文件 @
9ee9fefd
...
...
@@ -900,7 +900,7 @@ def lstm_unit(x_t,
i_t = \sigma(L_{i_t})
This layer has two outputs including :math:`
o_t` and :math:`h
_t`.
This layer has two outputs including :math:`
h_t` and :math:`o
_t`.
Args:
x_t (Variable): The input value of current step.
...
...
@@ -915,7 +915,7 @@ def lstm_unit(x_t,
startup_program (Program): the startup program.
Returns:
tuple: The
cell value and hidden
value of lstm unit.
tuple: The
hidden value and cell
value of lstm unit.
Raises:
ValueError: The ranks of **x_t**, **hidden_t_prev** and **cell_t_prev**
\
...
...
@@ -929,7 +929,7 @@ def lstm_unit(x_t,
x_t = fluid.layers.fc(input=x_t_data, size=10)
prev_hidden = fluid.layers.fc(input=prev_hidden_data, size=20)
prev_cell = fluid.layers.fc(input=prev_cell_data, size=30)
cell_value, hidden
_value = fluid.layers.lstm_unit(x_t=x_t,
hidden_value, cell
_value = fluid.layers.lstm_unit(x_t=x_t,
hidden_t_prev=prev_hidden,
cell_t_prev=prev_cell)
"""
...
...
@@ -977,4 +977,4 @@ def lstm_unit(x_t,
"H"
:
h
},
attrs
=
{
"forget_bias"
:
forget_bias
})
return
c
,
h
return
h
,
c
python/paddle/v2/fluid/tests/test_layers.py
浏览文件 @
9ee9fefd
...
...
@@ -161,7 +161,7 @@ class TestBook(unittest.TestCase):
x
=
dat
,
label
=
lbl
))
print
(
str
(
program
))
def
test_seq_expand
(
self
):
def
test_seq
uence
_expand
(
self
):
program
=
Program
()
with
program_guard
(
program
):
x
=
layers
.
data
(
name
=
'x'
,
shape
=
[
10
],
dtype
=
'float32'
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录