Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
models
提交
3d878d02
M
models
项目概览
PaddlePaddle
/
models
大约 1 年 前同步成功
通知
222
Star
6828
Fork
2962
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
602
列表
看板
标记
里程碑
合并请求
255
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
M
models
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
602
Issue
602
列表
看板
标记
里程碑
合并请求
255
合并请求
255
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
3d878d02
编写于
7月 22, 2019
作者:
Z
zhaoyuchen2018
提交者:
ruri
7月 22, 2019
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
Fix infer and eval case fail (#2854)
上级
c0a6ebd1
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
18 addition
and
17 deletion
+18
-17
PaddleCV/image_classification/eval.py
PaddleCV/image_classification/eval.py
+4
-4
PaddleCV/image_classification/infer.py
PaddleCV/image_classification/infer.py
+12
-10
PaddleCV/image_classification/reader_cv2.py
PaddleCV/image_classification/reader_cv2.py
+2
-3
未找到文件。
PaddleCV/image_classification/eval.py
浏览文件 @
3d878d02
...
...
@@ -26,7 +26,7 @@ import functools
import
paddle
import
paddle.fluid
as
fluid
import
reader_cv2
as
reader
import
reader_cv2
as
reader
import
models
from
utils.learning_rate
import
cosine_decay
from
utils.utility
import
add_arguments
,
print_arguments
,
check_gpu
...
...
@@ -44,6 +44,7 @@ add_arg('model', str, "SE_ResNeXt50_32x4d", "Set the network to use.
add_arg
(
'resize_short_size'
,
int
,
256
,
"Set resize short size"
)
# yapf: enable
def
eval
(
args
):
# parameters from arguments
class_dim
=
args
.
class_dim
...
...
@@ -93,10 +94,9 @@ def eval(args):
exe
=
fluid
.
Executor
(
place
)
exe
.
run
(
fluid
.
default_startup_program
())
fluid
.
io
.
load_persistables
(
exe
,
pretrained_model
)
val_reader
=
paddle
.
batch
(
reader
.
val
(
settings
=
args
)
,
batch_size
=
args
.
batch_size
)
val_reader
=
reader
.
val
(
settings
=
args
,
batch_size
=
args
.
batch_size
)
feeder
=
fluid
.
DataFeeder
(
place
=
place
,
feed_list
=
[
image
,
label
])
test_info
=
[[],
[],
[]]
...
...
@@ -127,7 +127,7 @@ def eval(args):
test_acc5
=
np
.
sum
(
test_info
[
2
])
/
cnt
print
(
"Test_loss {0}, test_acc1 {1}, test_acc5 {2}"
.
format
(
"%.5f"
%
test_loss
,
"%.5f"
%
test_acc1
,
"%.5f"
%
test_acc5
))
"%.5f"
%
test_loss
,
"%.5f"
%
test_acc1
,
"%.5f"
%
test_acc5
))
sys
.
stdout
.
flush
()
...
...
PaddleCV/image_classification/infer.py
浏览文件 @
3d878d02
...
...
@@ -29,7 +29,7 @@ import paddle.fluid as fluid
import
reader_cv2
as
reader
import
models
import
utils
from
utils.utility
import
add_arguments
,
print_arguments
,
check_gpu
from
utils.utility
import
add_arguments
,
print_arguments
,
check_gpu
parser
=
argparse
.
ArgumentParser
(
description
=
__doc__
)
# yapf: disable
...
...
@@ -44,6 +44,7 @@ add_arg('save_inference', bool, False, "Whether to save infere
add_arg
(
'resize_short_size'
,
int
,
256
,
"Set resize short size"
)
# yapf: enable
def
infer
(
args
):
# parameters from arguments
class_dim
=
args
.
class_dim
...
...
@@ -80,17 +81,18 @@ def infer(args):
fluid
.
io
.
load_persistables
(
exe
,
pretrained_model
)
if
save_inference
:
fluid
.
io
.
save_inference_model
(
dirname
=
model_name
,
feeded_var_names
=
[
'image'
],
main_program
=
test_program
,
target_vars
=
out
,
executor
=
exe
,
model_filename
=
'model'
,
params_filename
=
'params'
)
print
(
"model: "
,
model_name
,
" is already saved"
)
dirname
=
model_name
,
feeded_var_names
=
[
'image'
],
main_program
=
test_program
,
target_vars
=
out
,
executor
=
exe
,
model_filename
=
'model'
,
params_filename
=
'params'
)
print
(
"model: "
,
model_name
,
" is already saved"
)
exit
(
0
)
test_batch_size
=
1
test_reader
=
paddle
.
batch
(
reader
.
test
(
settings
=
args
),
batch_size
=
test_batch_size
)
test_reader
=
reader
.
test
(
settings
=
args
,
batch_size
=
test_batch_size
)
feeder
=
fluid
.
DataFeeder
(
place
=
place
,
feed_list
=
[
image
])
TOPK
=
1
...
...
PaddleCV/image_classification/reader_cv2.py
浏览文件 @
3d878d02
...
...
@@ -243,10 +243,9 @@ def _reader_creator(settings,
img_path
=
os
.
path
.
join
(
data_dir
,
img_path
)
batch_data
.
append
([
img_path
,
int
(
label
)])
if
len
(
batch_data
)
==
batch_size
:
if
mode
==
'train'
or
mode
==
'val'
:
if
mode
==
'train'
or
mode
==
'val'
or
mode
==
'test'
:
yield
batch_data
elif
mode
==
'test'
:
yield
[
sample
[
0
]
for
sample
in
batch_data
]
batch_data
=
[]
return
read_file_list
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录