Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Serving
提交
690624f5
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看板
提交
690624f5
编写于
4月 24, 2020
作者:
M
MRXLT
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
change lod info to numpy
上级
f798f761
变更
2
隐藏空白更改
内联
并排
Showing
2 changed file
with
5 addition
and
7 deletion
+5
-7
python/paddle_serving_client/__init__.py
python/paddle_serving_client/__init__.py
+4
-6
python/paddle_serving_server/web_service.py
python/paddle_serving_server/web_service.py
+1
-1
未找到文件。
python/paddle_serving_client/__init__.py
浏览文件 @
690624f5
...
...
@@ -276,18 +276,17 @@ class Client(object):
result_map
[
name
]
=
np
.
array
(
result_map
[
name
])
result_map
[
name
].
shape
=
shape
if
name
in
self
.
lod_tensor_set
:
result_map
[
"{}.lod"
.
format
(
name
)]
=
result_batch
.
get_lod
(
mi
,
name
)
result_map
[
"{}.lod"
.
format
(
name
)]
=
np
.
array
(
result_batch
.
get_lod
(
mi
,
name
)
)
elif
self
.
fetch_names_to_type_
[
name
]
==
float_type
:
result_map
[
name
]
=
result_batch
.
get_float_by_name
(
mi
,
name
)
shape
=
result_batch
.
get_shape
(
mi
,
name
)
result_map
[
name
]
=
np
.
array
(
result_map
[
name
])
result_map
[
name
].
shape
=
shape
if
name
in
self
.
lod_tensor_set
:
result_map
[
"{}.lod"
.
format
(
name
)]
=
result_batch
.
get_lod
(
mi
,
name
)
result_map
[
"{}.lod"
.
format
(
name
)]
=
np
.
array
(
result_batch
.
get_lod
(
mi
,
name
)
)
multi_result_map
.
append
(
result_map
)
ret
=
None
if
len
(
model_engine_names
)
==
1
:
# If only one model result is returned, the format of ret is result_map
...
...
@@ -298,7 +297,6 @@ class Client(object):
engine_name
:
multi_result_map
[
mi
]
for
mi
,
engine_name
in
enumerate
(
model_engine_names
)
}
# When using the A/B test, the tag of variant needs to be returned
return
ret
if
not
need_variant_tag
else
[
ret
,
self
.
result_handle_
.
variant_tag
()
...
...
python/paddle_serving_server/web_service.py
浏览文件 @
690624f5
...
...
@@ -66,7 +66,7 @@ class WebService(object):
del
feed
[
"fetch"
]
fetch_map
=
self
.
client_service
.
predict
(
feed
=
feed
,
fetch
=
fetch
)
for
key
in
fetch_map
:
fetch_map
[
key
]
=
fetch_map
[
key
]
[
0
]
.
tolist
()
fetch_map
[
key
]
=
fetch_map
[
key
].
tolist
()
result
=
self
.
postprocess
(
feed
=
request
.
json
,
fetch
=
fetch
,
fetch_map
=
fetch_map
)
result
=
{
"result"
:
result
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录