Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Serving
提交
243ca6ef
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看板
提交
243ca6ef
编写于
4月 15, 2020
作者:
D
dongdaxiang
提交者:
dongdaxiang
4月 17, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update web service
上级
35610a69
变更
3
显示空白变更内容
内联
并排
Showing
3 changed file
with
121 addition
and
41 deletion
+121
-41
python/paddle_serving_client/__init__.py
python/paddle_serving_client/__init__.py
+4
-0
python/paddle_serving_server/web_service.py
python/paddle_serving_server/web_service.py
+35
-22
python/paddle_serving_server_gpu/web_service.py
python/paddle_serving_server_gpu/web_service.py
+82
-19
未找到文件。
python/paddle_serving_client/__init__.py
浏览文件 @
243ca6ef
...
...
@@ -235,6 +235,8 @@ class Client(object):
int_feed_names
.
append
(
key
)
if
isinstance
(
feed_i
[
key
],
np
.
ndarray
):
int_shape
.
append
(
list
(
feed_i
[
key
].
shape
))
else
:
int_shape
.
append
(
self
.
feed_shapes_
[
key
])
if
isinstance
(
feed_i
[
key
],
np
.
ndarray
):
int_slot
.
append
(
np
.
reshape
(
feed_i
[
key
],
(
-
1
)).
tolist
())
else
:
...
...
@@ -244,6 +246,8 @@ class Client(object):
float_feed_names
.
append
(
key
)
if
isinstance
(
feed_i
[
key
],
np
.
ndarray
):
float_shape
.
append
(
list
(
feed_i
[
key
].
shape
))
else
:
float_shape
.
append
(
self
.
feed_shapes_
[
key
])
if
isinstance
(
feed_i
[
key
],
np
.
ndarray
):
float_slot
.
append
(
np
.
reshape
(
feed_i
[
key
],
(
-
1
)).
tolist
())
...
...
python/paddle_serving_server/web_service.py
浏览文件 @
243ca6ef
...
...
@@ -55,29 +55,42 @@ class WebService(object):
"{}/serving_server_conf.prototxt"
.
format
(
self
.
model_config
))
self
.
client_service
.
connect
([
"0.0.0.0:{}"
.
format
(
self
.
port
+
1
)])
def
get_prediction
(
self
,
request
):
@
app_instance
.
route
(
service_name
,
methods
=
[
'POST'
])
def
get_prediction
():
if
not
request
.
json
:
abort
(
400
)
if
"fetch"
not
in
request
.
json
:
abort
(
400
)
try
:
feed
,
fetch
=
self
.
preprocess
(
request
.
json
,
request
.
json
[
"fetch"
])
feed
,
fetch
=
self
.
preprocess
(
request
.
json
,
request
.
json
[
"fetch"
])
if
isinstance
(
feed
,
list
):
fetch_map_batch
=
self
.
client_service
.
predict
(
fetch_map_batch
=
client_service
.
predict
(
feed_batch
=
feed
,
fetch
=
fetch
)
fetch_map_batch
=
self
.
postprocess
(
feed
=
request
.
json
,
fetch
=
fetch
,
fetch_map
=
fetch_map_batch
)
feed
=
request
.
json
,
fetch
=
fetch
,
fetch_map
=
fetch_map_batch
)
for
key
in
fetch_map_batch
:
fetch_map_batch
[
key
]
=
fetch_map_batch
[
key
].
tolist
()
result
=
{
"result"
:
fetch_map_batch
}
elif
isinstance
(
feed
,
dict
):
if
"fetch"
in
feed
:
del
feed
[
"fetch"
]
fetch_map
=
self
.
client_service
.
predict
(
feed
=
feed
,
fetch
=
fetch
)
fetch_map
=
client_service
.
predict
(
feed
=
feed
,
fetch
=
fetch
)
for
key
in
fetch_map
:
fetch_map
[
key
]
=
fetch_map
[
key
][
0
].
tolist
()
result
=
self
.
postprocess
(
feed
=
request
.
json
,
fetch
=
fetch
,
fetch_map
=
fetch_map
)
except
ValueError
:
result
=
{
"result"
:
"Request Value Error"
}
return
result
app_instance
.
run
(
host
=
"0.0.0.0"
,
port
=
self
.
port
,
threaded
=
False
,
processes
=
1
)
def
run_server
(
self
):
import
socket
localIP
=
socket
.
gethostbyname
(
socket
.
gethostname
())
...
...
python/paddle_serving_server_gpu/web_service.py
浏览文件 @
243ca6ef
...
...
@@ -90,26 +90,89 @@ class WebService(object):
self
.
client
=
Client
()
self
.
client
.
load_client_config
(
"{}/serving_server_conf.prototxt"
.
format
(
self
.
model_config
))
endpoints
=
""
if
gpu_num
>
0
:
client
.
connect
([
endpoint
])
while
True
:
request_json
=
inputqueue
.
get
()
try
:
feed
,
fetch
=
self
.
preprocess
(
request_json
,
request_json
[
"fetch"
])
if
isinstance
(
feed
,
list
):
fetch_map_batch
=
client
.
predict
(
feed_batch
=
feed
,
fetch
=
fetch
)
fetch_map_batch
=
self
.
postprocess
(
feed
=
request_json
,
fetch
=
fetch
,
fetch_map
=
fetch_map_batch
)
for
key
in
fetch_map_batch
:
fetch_map_batch
[
key
]
=
fetch_map_batch
[
key
].
tolist
()
result
=
{
"result"
:
fetch_map_batch
}
elif
isinstance
(
feed
,
dict
):
if
"fetch"
in
feed
:
del
feed
[
"fetch"
]
fetch_map
=
client
.
predict
(
feed
=
feed
,
fetch
=
fetch
)
for
key
in
fetch_map
:
fetch_map
[
key
]
=
fetch_map
[
key
][
0
].
tolist
()
result
=
self
.
postprocess
(
feed
=
request_json
,
fetch
=
fetch
,
fetch_map
=
fetch_map
)
self
.
output_queue
.
put
(
result
)
except
ValueError
:
self
.
output_queue
.
put
(
-
1
)
def
_launch_web_service
(
self
,
gpu_num
):
app_instance
=
Flask
(
__name__
)
service_name
=
"/"
+
self
.
name
+
"/prediction"
self
.
input_queues
=
[]
self
.
output_queue
=
Queue
()
for
i
in
range
(
gpu_num
):
endpoints
+=
"127.0.0.1:{},"
.
format
(
self
.
port
+
i
+
1
)
else
:
endpoints
=
"127.0.0.1:{}"
.
format
(
self
.
port
+
1
)
self
.
client
.
connect
([
endpoints
])
self
.
input_queues
.
append
(
Queue
())
producer_list
=
[]
for
i
,
input_q
in
enumerate
(
self
.
input_queues
):
producer_processes
=
Process
(
target
=
self
.
producers
,
args
=
(
input_q
,
"0.0.0.0:{}"
.
format
(
self
.
port
+
1
+
i
),
))
producer_list
.
append
(
producer_processes
)
for
p
in
producer_list
:
p
.
start
()
client
=
Client
()
client
.
load_client_config
(
"{}/serving_server_conf.prototxt"
.
format
(
self
.
model_config
))
client
.
connect
([
"0.0.0.0:{}"
.
format
(
self
.
port
+
1
)])
def
get_prediction
(
self
,
request
):
self
.
idx
=
0
@
app_instance
.
route
(
service_name
,
methods
=
[
'POST'
])
def
get_prediction
():
if
not
request
.
json
:
abort
(
400
)
if
"fetch"
not
in
request
.
json
:
abort
(
400
)
feed
,
fetch
=
self
.
preprocess
(
request
.
json
,
request
.
json
[
"fetch"
])
fetch_map_batch
=
self
.
client
.
predict
(
feed
=
feed
,
fetch
=
fetch
)
fetch_map_batch
=
self
.
postprocess
(
feed
=
request
.
json
,
fetch
=
fetch
,
fetch_map
=
fetch_map_batch
)
result
=
{
"result"
:
fetch_map_batch
}
self
.
input_queues
[
self
.
idx
].
put
(
request
.
json
)
#self.input_queues[0].put(request.json)
self
.
idx
+=
1
if
self
.
idx
>=
len
(
self
.
gpus
):
self
.
idx
=
0
result
=
self
.
output_queue
.
get
()
if
not
isinstance
(
result
,
dict
)
and
result
==
-
1
:
result
=
{
"result"
:
"Request Value Error"
}
return
result
app_instance
.
run
(
host
=
"0.0.0.0"
,
port
=
self
.
port
,
threaded
=
False
,
processes
=
1
)
for
p
in
producer_list
:
p
.
join
()
def
run_server
(
self
):
import
socket
localIP
=
socket
.
gethostbyname
(
socket
.
gethostname
())
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录