Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
机器未来
Paddle
提交
7c370e42
P
Paddle
项目概览
机器未来
/
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看板
未验证
提交
7c370e42
编写于
4月 22, 2019
作者:
C
chengduo
提交者:
GitHub
4月 22, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix test_recurrent_op (#17001)
* fix ramdom fail test=develop
上级
73a360b5
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
19 addition
and
12 deletion
+19
-12
python/paddle/fluid/tests/unittests/test_recurrent_op.py
python/paddle/fluid/tests/unittests/test_recurrent_op.py
+8
-2
python/paddle/fluid/tests/unittests/test_weight_decay.py
python/paddle/fluid/tests/unittests/test_weight_decay.py
+11
-10
未找到文件。
python/paddle/fluid/tests/unittests/test_recurrent_op.py
浏览文件 @
7c370e42
...
...
@@ -182,7 +182,7 @@ class RecurrentOpTest1(unittest.TestCase):
fetch_list
=
fetch_list
,
return_numpy
=
False
)
def
test_backward
(
self
):
def
test_backward
(
self
,
rtol
=
0.1
):
self
.
check_forward
()
with
fluid
.
program_guard
(
self
.
main_program
,
self
.
startup_program
):
...
...
@@ -195,7 +195,10 @@ class RecurrentOpTest1(unittest.TestCase):
self
.
assertEqual
(
num_grad
[
idx
].
shape
,
ana_grad
[
idx
].
shape
)
self
.
assertTrue
(
np
.
isclose
(
num_grad
[
idx
],
ana_grad
[
idx
],
rtol
=
0.1
).
all
())
num_grad
[
idx
],
ana_grad
[
idx
],
rtol
=
rtol
).
all
(),
"num_grad ("
+
name
+
") has diff at "
+
str
(
self
.
place
)
+
"
\n
Expect "
+
str
(
num_grad
[
idx
])
+
"
\n
"
+
"But Got"
+
str
(
ana_grad
[
idx
])
+
" in class "
+
self
.
__class__
.
__name__
)
def
check_forward
(
self
):
pd_output
=
self
.
forward
()
...
...
@@ -287,6 +290,9 @@ class RecurrentOpTest2(RecurrentOpTest1):
return
rnn
()
def
test_backward
(
self
):
super
(
RecurrentOpTest2
,
self
).
test_backward
(
rtol
=
0.2
)
class
RecurrentOpMultipleMemoryTest
(
RecurrentOpTest1
):
'''
...
...
python/paddle/fluid/tests/unittests/test_weight_decay.py
浏览文件 @
7c370e42
...
...
@@ -95,7 +95,6 @@ class TestWeightDecay(unittest.TestCase):
place
,
feed_list
,
loss
,
use_cuda
=
True
,
use_reduce
=
False
,
use_fast_executor
=
False
,
use_ir_memory_optimize
=
False
):
...
...
@@ -136,11 +135,9 @@ class TestWeightDecay(unittest.TestCase):
startup_prog
=
fluid
.
framework
.
Program
()
startup_prog
.
random_seed
=
1
with
prog_scope_guard
(
main_prog
=
main_prog
,
startup_prog
=
startup_prog
):
data
=
fluid
.
layers
.
data
(
name
=
"words"
,
shape
=
[
1
],
dtype
=
"int64"
,
lod_level
=
1
)
label
=
fluid
.
layers
.
data
(
name
=
"label"
,
shape
=
[
1
],
dtype
=
"int64"
)
avg_cost
=
model
(
data
,
label
,
len
(
self
.
word_dict
))
param_list
=
[(
var
,
var
*
self
.
learning_rate
)
...
...
@@ -148,7 +145,6 @@ class TestWeightDecay(unittest.TestCase):
optimizer
=
fluid
.
optimizer
.
Adagrad
(
learning_rate
=
self
.
learning_rate
)
optimizer
.
minimize
(
avg_cost
)
for
params
in
param_list
:
...
...
@@ -158,10 +154,7 @@ class TestWeightDecay(unittest.TestCase):
if
use_parallel_exe
:
loss
=
self
.
run_parallel_exe
(
place
,
[
data
,
label
],
loss
=
avg_cost
,
use_cuda
=
True
,
use_reduce
=
use_reduce
)
place
,
[
data
,
label
],
loss
=
avg_cost
,
use_reduce
=
use_reduce
)
else
:
loss
=
self
.
run_executor
(
place
,
[
data
,
label
],
loss
=
avg_cost
)
...
...
@@ -176,13 +169,21 @@ class TestWeightDecay(unittest.TestCase):
place
,
model
,
use_parallel_exe
=
True
,
use_reduce
=
False
)
for
i
in
range
(
len
(
loss
)):
assert
np
.
isclose
(
a
=
loss
[
i
],
b
=
loss2
[
i
],
rtol
=
5e-5
)
self
.
assertTrue
(
np
.
isclose
(
a
=
loss
[
i
],
b
=
loss2
[
i
],
rtol
=
5e-5
),
"Expect "
+
str
(
loss
[
i
])
+
"
\n
"
+
"But Got"
+
str
(
loss2
[
i
])
+
" in class "
+
self
.
__class__
.
__name__
)
loss3
=
self
.
check_weight_decay
(
place
,
model
,
use_parallel_exe
=
True
,
use_reduce
=
True
)
for
i
in
range
(
len
(
loss
)):
assert
np
.
isclose
(
a
=
loss
[
i
],
b
=
loss3
[
i
],
rtol
=
5e-5
)
self
.
assertTrue
(
np
.
isclose
(
a
=
loss
[
i
],
b
=
loss3
[
i
],
rtol
=
5e-5
),
"Expect "
+
str
(
loss
[
i
])
+
"
\n
"
+
"But Got"
+
str
(
loss2
[
i
])
+
" in class "
+
self
.
__class__
.
__name__
)
if
__name__
==
'__main__'
:
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录