Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Serving
提交
f4137508
S
Serving
项目概览
PaddlePaddle
/
Serving
大约 1 年 前同步成功
通知
186
Star
833
Fork
253
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
105
列表
看板
标记
里程碑
合并请求
10
Wiki
2
Wiki
分析
仓库
DevOps
项目成员
Pages
S
Serving
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
105
Issue
105
列表
看板
标记
里程碑
合并请求
10
合并请求
10
Pages
分析
分析
仓库分析
DevOps
Wiki
2
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
f4137508
编写于
3月 22, 2020
作者:
G
guru4elephant
提交者:
dongdaxiang
3月 24, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
unify predict and batch predict interface and call batch_predict inside the predict function
上级
bafb844b
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
29 addition
and
44 deletion
+29
-44
python/paddle_serving_client/__init__.py
python/paddle_serving_client/__init__.py
+29
-44
未找到文件。
python/paddle_serving_client/__init__.py
浏览文件 @
f4137508
...
...
@@ -155,44 +155,23 @@ class Client(object):
raise
SystemExit
(
"The shape of feed tensor {} not match."
.
format
(
key
))
def
predict
(
self
,
feed
=
{},
fetch
=
[]):
int_slot
=
[]
float_slot
=
[]
int_feed_names
=
[]
float_feed_names
=
[]
fetch_names
=
[]
for
key
in
feed
:
self
.
shape_check
(
feed
,
key
)
if
key
not
in
self
.
feed_names_
:
continue
if
self
.
feed_types_
[
key
]
==
int_type
:
int_feed_names
.
append
(
key
)
int_slot
.
append
(
feed
[
key
])
elif
self
.
feed_types_
[
key
]
==
float_type
:
float_feed_names
.
append
(
key
)
float_slot
.
append
(
feed
[
key
])
for
key
in
fetch
:
if
key
in
self
.
fetch_names_
:
fetch_names
.
append
(
key
)
def
predict
(
self
,
feed
=
None
,
fetch
=
None
):
fetch_list
=
[]
if
isinstance
(
fetch
,
str
):
fetch_list
=
[
fetch
]
elif
isinstance
(
fetch
,
list
):
fetch_list
=
fetch
else
:
raise
ValueError
(
"fetch only accepts string and list of string"
)
feed_batch
=
[]
if
isinstance
(
feed
,
dict
):
feed_batch
.
append
(
feed
)
elif
isinstance
(
feed
,
list
):
feed_batch
=
feed
else
:
raise
ValueError
(
"feed only accepts dict and list of dict"
)
ret
=
self
.
client_handle_
.
predict
(
float_slot
,
float_feed_names
,
int_slot
,
int_feed_names
,
fetch_names
,
self
.
result_handle_
,
self
.
pid
)
result_map
=
{}
for
i
,
name
in
enumerate
(
fetch_names
):
if
self
.
fetch_names_to_type_
[
name
]
==
int_type
:
result_map
[
name
]
=
self
.
result_handle_
.
get_int64_by_name
(
name
)[
0
]
elif
self
.
fetch_names_to_type_
[
name
]
==
float_type
:
result_map
[
name
]
=
self
.
result_handle_
.
get_float_by_name
(
name
)[
0
]
return
result_map
def
batch_predict
(
self
,
feed_batch
=
[],
fetch
=
[]):
int_slot_batch
=
[]
float_slot_batch
=
[]
int_feed_names
=
[]
...
...
@@ -200,10 +179,20 @@ class Client(object):
fetch_names
=
[]
counter
=
0
batch_size
=
len
(
feed_batch
)
for
feed
in
feed_batch
:
for
key
in
fetch_list
:
if
key
in
self
.
fetch_names_
:
fetch_names
.
append
(
key
)
if
len
(
fetch_names
)
==
0
:
raise
ValueError
(
"fetch names should not be empty or out of saved fetch list"
)
return
{}
for
feed_i
in
feed_batch
:
int_slot
=
[]
float_slot
=
[]
for
key
in
feed
:
for
key
in
feed
_i
:
if
key
not
in
self
.
feed_names_
:
continue
if
self
.
feed_types_
[
key
]
==
int_type
:
...
...
@@ -213,15 +202,11 @@ class Client(object):
elif
self
.
feed_types_
[
key
]
==
float_type
:
if
counter
==
0
:
float_feed_names
.
append
(
key
)
float_slot
.
append
(
feed
[
key
])
float_slot
.
append
(
feed
_i
[
key
])
counter
+=
1
int_slot_batch
.
append
(
int_slot
)
float_slot_batch
.
append
(
float_slot
)
for
key
in
fetch
:
if
key
in
self
.
fetch_names_
:
fetch_names
.
append
(
key
)
result_batch
=
self
.
result_handle_
res
=
self
.
client_handle_
.
batch_predict
(
float_slot_batch
,
float_feed_names
,
int_slot_batch
,
int_feed_names
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录