Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
book
提交
2c3e2eae
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看板
提交
2c3e2eae
编写于
4月 18, 2017
作者:
H
hedaoyuan
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add plot
上级
1ba8782b
变更
2
展开全部
隐藏空白更改
内联
并排
Showing
2 changed file
with
441 addition
and
415 deletion
+441
-415
05.understand_sentiment/README.md
05.understand_sentiment/README.md
+13
-0
05.understand_sentiment/index.html
05.understand_sentiment/index.html
+428
-415
未找到文件。
05.understand_sentiment/README.md
浏览文件 @
2c3e2eae
...
...
@@ -310,6 +310,19 @@ Paddle中提供了一系列优化算法的API,这里使用Adam优化算法。
print
"
\n
Test with Pass %d, %s"
%
(
event
.
pass_id
,
result
.
metrics
)
```
可以通过给train函数传递一个
`event_handler`
来获取每个batch和每个pass结束的状态。比如构造如下一个
`event_handler`
可以在每100个batch结束后输出cost和error;在每个pass结束后调用
`trainer.test`
计算一遍测试集并获得当前模型在测试集上的error。
```
python
from
paddle.v2.plot
import
Ploter
train_title
=
"Train cost"
cost_ploter
=
Ploter
(
train_title
)
step
=
0
def
event_handler_plot
(
event
):
global
step
if
isinstance
(
event
,
paddle
.
event
.
EndIteration
):
cost_ploter
.
append
(
train_title
,
step
,
event
.
cost
)
cost_ploter
.
plot
()
step
+=
1
```
```
python
# create trainer
trainer
=
paddle
.
trainer
.
SGD
(
cost
=
cost
,
...
...
05.understand_sentiment/index.html
浏览文件 @
2c3e2eae
此差异已折叠。
点击以展开。
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录