Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
book
提交
80f1d86b
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看板
提交
80f1d86b
编写于
2月 15, 2019
作者:
C
ceci
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update fit a line
上级
e85a459c
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
66 addition
and
16 deletion
+66
-16
01.fit_a_line/README.cn.md
01.fit_a_line/README.cn.md
+33
-8
01.fit_a_line/image/prediction_gt.png
01.fit_a_line/image/prediction_gt.png
+0
-0
01.fit_a_line/image/ranges.png
01.fit_a_line/image/ranges.png
+0
-0
01.fit_a_line/index.cn.html
01.fit_a_line/index.cn.html
+33
-8
未找到文件。
01.fit_a_line/README.cn.md
浏览文件 @
80f1d86b
...
...
@@ -155,6 +155,16 @@ ratio = 0.8 # 训练集和验证集的划分比例
offset
=
int
(
data
.
shape
[
0
]
*
ratio
)
train_data
=
data
[:
offset
]
test_data
=
data
[
offset
:]
train_reader
=
paddle
.
batch
(
paddle
.
reader
.
shuffle
(
train_data
,
buf_size
=
500
),
batch_size
=
BATCH_SIZE
)
test_reader
=
paddle
.
batch
(
paddle
.
reader
.
shuffle
(
test_data
,
buf_size
=
500
),
batch_size
=
BATCH_SIZE
)
```
### 配置训练程序
...
...
@@ -242,7 +252,7 @@ plot_prompt = ploter(train_prompt, test_prompt)
### 训练主循环
首先
给出需要存储的目录名,并初始化一个执行器。
给出需要存储的目录名,并初始化一个执行器。
```
python
%
matplotlib
inline
...
...
@@ -257,7 +267,7 @@ exe_test = fluid.Executor(place)
paddlepaddle提供了reader机制来读取训练数据。reader会一次提供多列数据,因此我们需要一个python的列表来定义读取顺序。我们构建一个循环来进行训练,直到训练结果足够好或者循环次数足够多。
如果训练迭代次数满足参数保存的迭代次数,可以把训练参数保存到
`params_dirname`
。
其次
设置训练主循环
设置训练主循环
```
python
for
pass_id
in
range
(
num_epochs
):
for
data_train
in
train_reader
():
...
...
@@ -282,12 +292,10 @@ for pass_id in range(num_epochs):
if
math
.
isnan
(
float
(
avg_loss_value
[
0
])):
sys
.
exit
(
"got NaN loss, training failed."
)
```
保存训练参数到之前给定的路径中
```
python
if
params_dirname
is
not
None
:
fluid
.
io
.
save_inference_model
(
params_dirname
,
[
'x'
],
[
y_predict
],
exe
)
#保存训练参数到之前给定的路径中
if
params_dirname
is
not
None
:
fluid
.
io
.
save_inference_model
(
params_dirname
,
[
'x'
],
[
y_predict
],
exe
)
```
## 预测
...
...
@@ -325,6 +333,23 @@ with fluid.scope_guard(inference_scope):
fetch_list
=
fetch_targets
)
# 进行预测
```
保存图片
```
python
def
save_result
(
points1
,
points2
):
import
matplotlib
matplotlib
.
use
(
'Agg'
)
import
matplotlib.pyplot
as
plt
x1
=
[
idx
for
idx
in
range
(
len
(
points1
))]
y1
=
points1
y2
=
points2
l1
=
plt
.
plot
(
x1
,
y1
,
'r--'
,
label
=
'predictions'
)
l2
=
plt
.
plot
(
x1
,
y2
,
'g--'
,
label
=
'GT'
)
plt
.
plot
(
x1
,
y1
,
'ro-'
,
x1
,
y2
,
'g+-'
)
plt
.
title
(
'predictions VS GT'
)
plt
.
legend
()
plt
.
savefig
(
'./image/prediction_gt.png'
)
```
打印预测结果和标签并可视化结果
```
python
print
(
"infer results: (House Price)"
)
...
...
@@ -335,7 +360,7 @@ with fluid.scope_guard(inference_scope):
for
idx
,
val
in
enumerate
(
infer_label
):
print
(
"%d: %.2f"
%
(
idx
,
val
))
# 打印标签值
save_result
(
results
[
0
],
infer_label
)
# 保存图片
,该函数实现在train.py中
save_result
(
results
[
0
],
infer_label
)
# 保存图片
```
## 总结
...
...
01.fit_a_line/image/prediction_gt.png
查看替换文件 @
e85a459c
浏览文件 @
80f1d86b
42.4 KB
|
W:
|
H:
42.7 KB
|
W:
|
H:
2-up
Swipe
Onion skin
01.fit_a_line/image/ranges.png
查看替换文件 @
e85a459c
浏览文件 @
80f1d86b
6.6 KB
|
W:
|
H:
8.6 KB
|
W:
|
H:
2-up
Swipe
Onion skin
01.fit_a_line/index.cn.html
浏览文件 @
80f1d86b
...
...
@@ -197,6 +197,16 @@ ratio = 0.8 # 训练集和验证集的划分比例
offset = int(data.shape[0]*ratio)
train_data = data[:offset]
test_data = data[offset:]
train_reader = paddle.batch(
paddle.reader.shuffle(
train_data, buf_size=500),
batch_size=BATCH_SIZE)
test_reader = paddle.batch(
paddle.reader.shuffle(
test_data, buf_size=500),
batch_size=BATCH_SIZE)
```
### 配置训练程序
...
...
@@ -284,7 +294,7 @@ plot_prompt = ploter(train_prompt, test_prompt)
### 训练主循环
首先
给出需要存储的目录名,并初始化一个执行器。
给出需要存储的目录名,并初始化一个执行器。
```python
%matplotlib inline
...
...
@@ -299,7 +309,7 @@ exe_test = fluid.Executor(place)
paddlepaddle提供了reader机制来读取训练数据。reader会一次提供多列数据,因此我们需要一个python的列表来定义读取顺序。我们构建一个循环来进行训练,直到训练结果足够好或者循环次数足够多。
如果训练迭代次数满足参数保存的迭代次数,可以把训练参数保存到`params_dirname`。
其次
设置训练主循环
设置训练主循环
```python
for pass_id in range(num_epochs):
for data_train in train_reader():
...
...
@@ -324,12 +334,10 @@ for pass_id in range(num_epochs):
if
math.isnan
(
float
(
avg_loss_value
[0]))
:
sys.exit
("
got
NaN
loss
,
training
failed.
")
```
保存训练参数到之前给定的路径中
```
python
if
params_dirname
is
not
None:
fluid.io.save_inference_model
(
params_dirname
,
['
x
'],
[
y_predict
],
exe
)
#保存训练参数到之前给定的路径中
if
params_dirname
is
not
None:
fluid.io.save_inference_model
(
params_dirname
,
['
x
'],
[
y_predict
],
exe
)
```
##
预测
...
...
@@ -367,6 +375,23 @@ with fluid.scope_guard(inference_scope):
fetch_list=
fetch_targets)
#
进行预测
```
保存图片
```
python
def
save_result
(
points1
,
points2
)
:
import
matplotlib
matplotlib.use
('
Agg
')
import
matplotlib.pyplot
as
plt
x1 =
[idx
for
idx
in
range
(
len
(
points1
))]
y1 =
points1
y2 =
points2
l1 =
plt.plot(x1,
y1
,
'
r--
',
label=
'predictions'
)
l2 =
plt.plot(x1,
y2
,
'
g--
',
label=
'GT'
)
plt.plot
(
x1
,
y1
,
'
ro-
',
x1
,
y2
,
'
g
+
-
')
plt.title
('
predictions
VS
GT
')
plt.legend
()
plt.savefig
('./
image
/
prediction_gt.png
')
```
打印预测结果和标签并可视化结果
```
python
print
("
infer
results:
(
House
Price
)")
...
...
@@ -377,7 +402,7 @@ with fluid.scope_guard(inference_scope):
for
idx
,
val
in
enumerate
(
infer_label
)
:
print
("%
d:
%.2
f
"
%
(
idx
,
val
))
#
打印标签值
save_result
(
results
[0],
infer_label
)
#
保存图片
,
该函数实现在train.py中
save_result
(
results
[0],
infer_label
)
#
保存图片
```
##
总结
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录