Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Crayon鑫
Paddle
提交
aca53535
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看板
提交
aca53535
编写于
5月 30, 2019
作者:
H
Hongyu Liu
提交者:
Jiabin Yang
5月 30, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix bug; test=develop (#17733)
上级
0a02451e
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
12 addition
and
7 deletion
+12
-7
python/paddle/fluid/dygraph/nn.py
python/paddle/fluid/dygraph/nn.py
+5
-5
python/paddle/fluid/layers/math_op_patch.py
python/paddle/fluid/layers/math_op_patch.py
+7
-2
未找到文件。
python/paddle/fluid/dygraph/nn.py
浏览文件 @
aca53535
...
...
@@ -1461,8 +1461,8 @@ class GRUUnit(layers.Layer):
sigmoid
=
1
,
tanh
=
2
,
relu
=
3
,
)
activation
=
activation_dict
[
activation
]
gate_activation
=
activation_dict
[
gate_activation
]
self
.
activation
=
activation_dict
[
activation
]
self
.
gate_activation
=
activation_dict
[
gate_activation
]
self
.
_dtype
=
dtype
size
=
size
//
3
...
...
@@ -1494,8 +1494,8 @@ class GRUUnit(layers.Layer):
'Hidden'
:
updated_hidden
,
},
attrs
=
{
'activation'
:
2
,
# tanh
'gate_activation'
:
1
,
# sigmoid
'activation'
:
self
.
activation
,
'gate_activation'
:
self
.
gate_activation
,
})
return
updated_hidden
,
reset_hidden_pre
,
gate
...
...
@@ -2053,7 +2053,7 @@ class Conv2DTranspose(layers.Layer):
self
.
_filter_size
=
[
filter_size_h
,
filter_size_w
]
else
:
self
.
_filter_size
=
utils
.
convert_to_list
(
self
.
_
output
_size
,
2
,
'conv2d_transpose.filter_size'
)
self
.
_
filter
_size
,
2
,
'conv2d_transpose.filter_size'
)
if
self
.
_output_size
is
None
:
self
.
_output_size
=
[]
...
...
python/paddle/fluid/layers/math_op_patch.py
浏览文件 @
aca53535
...
...
@@ -42,7 +42,9 @@ def monkey_patch_variable():
'shape'
:
shape
,
'value'
:
value
,
'force_cpu'
:
force_init_on_cpu
()
})
},
stop_gradient
=
True
)
var
.
stop_gradient
=
True
return
var
def
create_scalar
(
block
,
value
,
dtype
):
...
...
@@ -68,7 +70,10 @@ def monkey_patch_variable():
'value'
:
value
,
'input_dim_idx'
:
batch_dim
,
'output_dim_idx'
:
batch_dim
})
},
stop_gradient
=
True
)
var
.
stop_gradient
=
True
return
var
def
astype
(
self
,
dtype
):
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录