Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
book
提交
78d4347d
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
78d4347d
编写于
6月 05, 2018
作者:
W
Wang,Jeff
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Add some comments
上级
6c30c1ed
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
10 addition
and
3 deletion
+10
-3
03.image_classification/train.py
03.image_classification/train.py
+10
-3
未找到文件。
03.image_classification/train.py
浏览文件 @
78d4347d
...
...
@@ -24,10 +24,12 @@ from resnet import resnet_cifar10
def
inference_network
():
# The image is 32 * 32 with RGB representation.
data_shape
=
[
3
,
32
,
32
]
images
=
fluid
.
layers
.
data
(
name
=
'pixel'
,
shape
=
data_shape
,
dtype
=
'float32'
)
predict
=
resnet_cifar10
(
images
,
32
)
# predict = vgg_bn_drop(images)
# predict = vgg_bn_drop(images)
# un-comment to use vgg net
return
predict
...
...
@@ -87,7 +89,7 @@ def infer(use_cuda, inference_program, params_dirname=None):
inferencer
=
fluid
.
Inferencer
(
infer_func
=
inference_program
,
param_path
=
params_dirname
,
place
=
place
)
#
inference
#
Prepare testing data.
from
PIL
import
Image
import
numpy
as
np
import
os
...
...
@@ -105,13 +107,16 @@ def infer(use_cuda, inference_program, params_dirname=None):
# image is B(Blue), G(green), R(Red). But PIL open
# image in RGB mode. It must swap the channel order.
im
=
im
[(
2
,
1
,
0
),
:,
:]
# BGR
# im = im.flatten()
im
=
im
/
255.0
# Add one dimension to mimic the list format.
im
=
numpy
.
expand_dims
(
im
,
axis
=
0
)
return
im
cur_dir
=
os
.
path
.
dirname
(
os
.
path
.
realpath
(
__file__
))
img
=
load_image
(
cur_dir
+
'/image/dog.png'
)
# inference
results
=
inferencer
.
infer
({
'pixel'
:
img
})
print
(
"infer results: "
,
results
)
...
...
@@ -134,4 +139,6 @@ def main(use_cuda):
if
__name__
==
'__main__'
:
# For demo purpose, the training runs on CPU
# Please change accordingly.
main
(
use_cuda
=
False
)
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录