Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
book
提交
11903b95
B
book
项目概览
PaddlePaddle
/
book
通知
16
Star
4
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
40
列表
看板
标记
里程碑
合并请求
37
Wiki
5
Wiki
分析
仓库
DevOps
项目成员
Pages
B
book
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
40
Issue
40
列表
看板
标记
里程碑
合并请求
37
合并请求
37
Pages
分析
分析
仓库分析
DevOps
Wiki
5
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
11903b95
编写于
6月 18, 2018
作者:
N
Nicky Chan
提交者:
daminglu
6月 18, 2018
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add plot and add more iterations to draw plot in jupyter (#546)
上级
54ace206
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
9 addition
and
1 deletion
+9
-1
05.recommender_system/README.md
05.recommender_system/README.md
+9
-1
未找到文件。
05.recommender_system/README.md
浏览文件 @
11903b95
...
...
@@ -405,6 +405,11 @@ For example, we can check the cost by `trainer.test` when `EndStepEvent` occurs
# Specify the directory path to save the parameters
params_dirname
=
"recommender_system.inference.model"
from
paddle.v2.plot
import
Ploter
test_title
=
"Test cost"
plot_cost
=
Ploter
(
test_title
)
def
event_handler
(
event
):
if
isinstance
(
event
,
fluid
.
EndStepEvent
):
avg_cost_set
=
trainer
.
test
(
...
...
@@ -412,12 +417,15 @@ def event_handler(event):
# get avg cost
avg_cost
=
np
.
array
(
avg_cost_set
).
mean
()
plot_cost
.
append
(
test_title
,
event
.
step
,
avg_cost_set
[
0
])
plot_cost
.
plot
()
print
(
"avg_cost: %s"
%
avg_cost
)
print
(
'BatchID {0}, Test Loss {1:0.2}'
.
format
(
event
.
epoch
+
1
,
float
(
avg_cost
)))
if
float
(
avg_cost
)
<
4
:
if
event
.
step
==
20
:
# Adjust this number for accuracy
trainer
.
save_params
(
params_dirname
)
trainer
.
stop
()
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录