Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Serving
提交
2dd7db95
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看板
未验证
提交
2dd7db95
编写于
4月 09, 2020
作者:
D
Dong Daxiang
提交者:
GitHub
4月 09, 2020
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #437 from MRXLT/server-robust
add feed check
上级
f8a5c44d
0012aa93
变更
1
显示空白变更内容
内联
并排
Showing
1 changed file
with
7 addition
and
5 deletion
+7
-5
python/paddle_serving_client/__init__.py
python/paddle_serving_client/__init__.py
+7
-5
未找到文件。
python/paddle_serving_client/__init__.py
浏览文件 @
2dd7db95
...
...
@@ -175,7 +175,6 @@ class Client(object):
return
self
.
fetch_names_
def
shape_check
(
self
,
feed
,
key
):
seq_shape
=
1
if
key
in
self
.
lod_tensor_set
:
return
if
len
(
feed
[
key
])
!=
self
.
feed_tensor_len
[
key
]:
...
...
@@ -192,7 +191,7 @@ class Client(object):
elif
isinstance
(
fetch
,
list
):
fetch_list
=
fetch
else
:
raise
ValueError
(
"
f
etch only accepts string and list of string"
)
raise
ValueError
(
"
F
etch only accepts string and list of string"
)
feed_batch
=
[]
if
isinstance
(
feed
,
dict
):
...
...
@@ -200,7 +199,7 @@ class Client(object):
elif
isinstance
(
feed
,
list
):
feed_batch
=
feed
else
:
raise
ValueError
(
"
f
eed only accepts dict and list of dict"
)
raise
ValueError
(
"
F
eed only accepts dict and list of dict"
)
int_slot_batch
=
[]
float_slot_batch
=
[]
...
...
@@ -216,7 +215,7 @@ class Client(object):
if
len
(
fetch_names
)
==
0
:
raise
ValueError
(
"
fetch names should not be empty or out of saved fetch list
"
)
"
Fetch names should not be empty or out of saved fetch list.
"
)
return
{}
for
i
,
feed_i
in
enumerate
(
feed_batch
):
...
...
@@ -224,7 +223,8 @@ class Client(object):
float_slot
=
[]
for
key
in
feed_i
:
if
key
not
in
self
.
feed_names_
:
continue
raise
ValueError
(
"Wrong feed name: {}."
.
format
(
key
))
self
.
shape_check
(
feed_i
,
key
)
if
self
.
feed_types_
[
key
]
==
int_type
:
if
i
==
0
:
int_feed_names
.
append
(
key
)
...
...
@@ -233,6 +233,8 @@ class Client(object):
if
i
==
0
:
float_feed_names
.
append
(
key
)
float_slot
.
append
(
feed_i
[
key
])
if
len
(
int_slot
)
+
len
(
float_slot
)
==
0
:
raise
ValueError
(
"No feed data for predict."
)
int_slot_batch
.
append
(
int_slot
)
float_slot_batch
.
append
(
float_slot
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录