Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
Crayon鑫
Paddle
提交
7e6a2190
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看板
未验证
提交
7e6a2190
编写于
1月 27, 2022
作者:
zhouweiwei2014
提交者:
GitHub
1月 27, 2022
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
fix UT test_lr_scheduler random fail (#39254)
上级
0e235e58
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
20 addition
and
27 deletion
+20
-27
python/paddle/fluid/tests/unittests/test_lr_scheduler.py
python/paddle/fluid/tests/unittests/test_lr_scheduler.py
+20
-27
未找到文件。
python/paddle/fluid/tests/unittests/test_lr_scheduler.py
浏览文件 @
7e6a2190
...
...
@@ -323,15 +323,15 @@ def step_lr(epoch_num, learning_rate, step_size, gamma=0.1, verbose=False):
class
TestLRScheduler
(
unittest
.
TestCase
):
def
_test_static
(
self
,
python_func
,
paddle_api
,
kwarg
,
place
):
scheduler
=
paddle_api
(
**
kwarg
)
adam
=
paddle
.
optimizer
.
Adam
(
learning_rate
=
scheduler
)
main_prog
=
paddle
.
static
.
Program
()
start_prog
=
paddle
.
static
.
Program
()
with
paddle
.
static
.
program_guard
(
main_prog
,
start_prog
):
x
=
paddle
.
static
.
data
(
name
=
'x'
,
shape
=
[
3
,
4
,
5
])
y
=
paddle
.
static
.
data
(
name
=
'y'
,
shape
=
[
3
,
4
,
5
])
z
=
paddle
.
static
.
nn
.
fc
(
x
,
100
)
loss
=
paddle
.
mean
(
z
)
scheduler
=
paddle_api
(
**
kwarg
)
adam
=
paddle
.
optimizer
.
Adam
(
learning_rate
=
scheduler
)
loss
=
paddle
.
mean
(
x
)
adam
.
minimize
(
loss
)
lr_var
=
adam
.
_global_learning_rate
()
test_prog
=
main_prog
.
clone
()
...
...
@@ -339,14 +339,12 @@ class TestLRScheduler(unittest.TestCase):
num
=
0
exe
=
paddle
.
static
.
Executor
(
place
)
exe
.
run
(
start_prog
)
for
epoch
in
range
(
5
):
for
batch_id
in
range
(
2
):
out
=
exe
.
run
(
main_prog
,
feed
=
{
'x'
:
np
.
random
.
randn
(
3
,
4
,
5
).
astype
(
'float32'
),
'y'
:
np
.
random
.
randn
(
3
,
4
,
5
).
astype
(
'float32'
)
},
feed
=
{
'x'
:
np
.
random
.
randn
(
3
,
4
,
5
).
astype
(
'float32'
)},
fetch_list
=
lr_var
.
name
)
self
.
assertEqual
(
out
,
np
.
array
(
python_func
(
num
,
**
kwarg
)))
scheduler
.
step
()
...
...
@@ -356,10 +354,7 @@ class TestLRScheduler(unittest.TestCase):
for
batch_id
in
range
(
2
):
out
=
exe
.
run
(
test_prog
,
feed
=
{
'x'
:
np
.
random
.
randn
(
3
,
4
,
5
).
astype
(
'float32'
),
'y'
:
np
.
random
.
randn
(
3
,
4
,
5
).
astype
(
'float32'
)
},
feed
=
{
'x'
:
np
.
random
.
randn
(
3
,
4
,
5
).
astype
(
'float32'
)},
fetch_list
=
lr_var
.
name
)
self
.
assertEqual
(
out
,
np
.
array
(
python_func
(
num
,
**
kwarg
)))
scheduler
.
step
()
...
...
@@ -372,13 +367,12 @@ class TestLRScheduler(unittest.TestCase):
for
epoch
in
range
(
5
):
python_result
=
python_func
(
num
,
**
kwarg
)
for
batch_id
in
range
(
2
):
_
=
exe
.
run
(
compiled_train_prog
,
feed
=
{
'x'
:
np
.
random
.
randn
(
12
,
4
,
5
).
astype
(
'float32'
),
'y'
:
np
.
random
.
randn
(
12
,
4
,
5
).
astype
(
'float32'
)
},
fetch_list
=
lr_var
.
name
)
_
=
exe
.
run
(
compiled_train_prog
,
feed
=
{
'x'
:
np
.
random
.
randn
(
12
,
4
,
5
).
astype
(
'float32'
)
},
fetch_list
=
lr_var
.
name
)
scopes
=
compiled_train_prog
.
_executor
.
local_scopes
()
out
=
np
.
array
(
scopes
[
0
].
var
(
lr_var
.
name
).
get_tensor
())
self
.
assertEqual
(
out
,
np
.
array
(
python_result
))
...
...
@@ -399,13 +393,12 @@ class TestLRScheduler(unittest.TestCase):
for
epoch
in
range
(
5
):
python_result
=
python_func
(
num
,
**
kwarg
)
for
batch_id
in
range
(
2
):
_
=
exe
.
run
(
compiled_test_prog
,
feed
=
{
'x'
:
np
.
random
.
randn
(
12
,
4
,
5
).
astype
(
'float32'
),
'y'
:
np
.
random
.
randn
(
12
,
4
,
5
).
astype
(
'float32'
)
},
fetch_list
=
lr_var
.
name
)
_
=
exe
.
run
(
compiled_test_prog
,
feed
=
{
'x'
:
np
.
random
.
randn
(
12
,
4
,
5
).
astype
(
'float32'
)
},
fetch_list
=
lr_var
.
name
)
scopes
=
compiled_test_prog
.
_executor
.
local_scopes
()
out
=
np
.
array
(
scopes
[
0
].
var
(
lr_var
.
name
).
get_tensor
())
self
.
assertEqual
(
out
,
np
.
array
(
python_result
))
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录