Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
book
提交
a50b43ce
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看板
未验证
提交
a50b43ce
编写于
8月 17, 2018
作者:
C
Chen Weihang
提交者:
GitHub
8月 17, 2018
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #593 from JiabinYang/book02_refine
fix print() function to fit python3
上级
d50c2e1d
ca9ed105
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
6 addition
and
5 deletion
+6
-5
02.recognize_digits/train.py
02.recognize_digits/train.py
+6
-5
未找到文件。
02.recognize_digits/train.py
浏览文件 @
a50b43ce
from
__future__
import
print_function
import
os
from
PIL
import
Image
import
numpy
as
np
...
...
@@ -89,8 +90,8 @@ def main():
if
event
.
step
%
100
==
0
:
# event.metrics maps with train program return arguments.
# event.metrics[0] will yeild avg_cost and event.metrics[1] will yeild acc in this example.
print
"Pass %d, Batch %d, Cost %f"
%
(
event
.
step
,
event
.
epoch
,
event
.
metrics
[
0
])
print
(
"Pass %d, Batch %d, Cost %f"
%
(
event
.
step
,
event
.
epoch
,
event
.
metrics
[
0
])
)
if
isinstance
(
event
,
fluid
.
EndEpochEvent
):
avg_cost
,
acc
=
trainer
.
test
(
...
...
@@ -112,8 +113,8 @@ def main():
# find the best pass
best
=
sorted
(
lists
,
key
=
lambda
list
:
float
(
list
[
1
]))[
0
]
print
'Best pass is %s, testing Avgcost is %s'
%
(
best
[
0
],
best
[
1
]
)
print
'The classification accuracy is %.2f%%'
%
(
float
(
best
[
2
])
*
100
)
print
(
'Best pass is %s, testing Avgcost is %s'
%
(
best
[
0
],
best
[
1
])
)
print
(
'The classification accuracy is %.2f%%'
%
(
float
(
best
[
2
])
*
100
)
)
def
load_image
(
file
):
im
=
Image
.
open
(
file
).
convert
(
'L'
)
...
...
@@ -133,7 +134,7 @@ def main():
results
=
inferencer
.
infer
({
'img'
:
img
})
lab
=
np
.
argsort
(
results
)
# probs and lab are the results of one batch data
print
"Label of image/infer_3.png is: %d"
%
lab
[
0
][
0
][
-
1
]
print
(
"Inference result of image/infer_3.png is: %d"
%
lab
[
0
][
0
][
-
1
])
if
__name__
==
'__main__'
:
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录