Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Serving
提交
c9eab242
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看板
未验证
提交
c9eab242
编写于
12月 04, 2020
作者:
J
Jiawei Wang
提交者:
GitHub
12月 04, 2020
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'develop' into win
上级
7966e0e5
a665522e
变更
7
隐藏空白更改
内联
并排
Showing
7 changed file
with
34 addition
and
20 deletion
+34
-20
python/examples/imagenet/resnet50_rpc_client.py
python/examples/imagenet/resnet50_rpc_client.py
+2
-1
python/examples/lac/lac_web_service.py
python/examples/lac/lac_web_service.py
+12
-3
python/examples/pipeline/imagenet/README.md
python/examples/pipeline/imagenet/README.md
+6
-6
python/examples/pipeline/imagenet/resnet50_web_service.py
python/examples/pipeline/imagenet/resnet50_web_service.py
+5
-4
python/examples/senta/senta_web_service.py
python/examples/senta/senta_web_service.py
+3
-3
python/pipeline/operator.py
python/pipeline/operator.py
+1
-1
python/pipeline/pipeline_client.py
python/pipeline/pipeline_client.py
+5
-2
未找到文件。
python/examples/imagenet/resnet50_rpc_client.py
浏览文件 @
c9eab242
...
...
@@ -38,7 +38,8 @@ start = time.time()
image_file
=
"https://paddle-serving.bj.bcebos.com/imagenet-example/daisy.jpg"
for
i
in
range
(
10
):
img
=
seq
(
image_file
)
fetch_map
=
client
.
predict
(
feed
=
{
"image"
:
img
},
fetch
=
[
"score"
])
fetch_map
=
client
.
predict
(
feed
=
{
"image"
:
img
},
fetch
=
[
"score"
],
batch
=
False
)
prob
=
max
(
fetch_map
[
"score"
][
0
])
label
=
label_dict
[
fetch_map
[
"score"
][
0
].
tolist
().
index
(
prob
)].
strip
(
).
replace
(
","
,
""
)
...
...
python/examples/lac/lac_web_service.py
浏览文件 @
c9eab242
...
...
@@ -15,6 +15,7 @@
from
paddle_serving_server.web_service
import
WebService
import
sys
from
paddle_serving_app.reader
import
LACReader
import
numpy
as
np
class
LACService
(
WebService
):
...
...
@@ -23,13 +24,21 @@ class LACService(WebService):
def
preprocess
(
self
,
feed
=
{},
fetch
=
[]):
feed_batch
=
[]
fetch
=
[
"crf_decode"
]
lod_info
=
[
0
]
is_batch
=
True
for
ins
in
feed
:
if
"words"
not
in
ins
:
raise
(
"feed data error!"
)
feed_data
=
self
.
reader
.
process
(
ins
[
"words"
])
feed_batch
.
append
({
"words"
:
feed_data
})
fetch
=
[
"crf_decode"
]
return
feed_batch
,
fetch
feed_batch
.
append
(
np
.
array
(
feed_data
).
reshape
(
len
(
feed_data
),
1
))
lod_info
.
append
(
lod_info
[
-
1
]
+
len
(
feed_data
))
feed_dict
=
{
"words"
:
np
.
concatenate
(
feed_batch
,
axis
=
0
),
"words.lod"
:
lod_info
}
return
feed_dict
,
fetch
,
is_batch
def
postprocess
(
self
,
feed
=
{},
fetch
=
[],
fetch_map
=
{}):
batch_ret
=
[]
...
...
python/examples/pipeline/imagenet/README.md
浏览文件 @
c9eab242
#
Simple
Pipeline WebService
#
Imagenet
Pipeline WebService
This document will takes
UCI
service as an example to introduce how to use Pipeline WebService.
This document will takes
Imagenet
service as an example to introduce how to use Pipeline WebService.
## Get model
```
sh get_
data
.sh
sh get_
model
.sh
```
## Start server
```
python web_service.py &>log.txt &
python
resnet50_
web_service.py &>log.txt &
```
##
Http
test
##
RPC
test
```
curl -X POST -k http://localhost:18082/uci/prediction -d '{"key": ["x"], "value": ["0.0137, -0.1136, 0.2553, -0.0692, 0.0582, -0.0727, -0.1583, -0.0584, 0.6283, 0.4919, 0.1856, 0.0795, -0.0332"]}'
python pipeline_rpc_client.py
```
python/examples/pipeline/imagenet/resnet50_web_service.py
浏览文件 @
c9eab242
...
...
@@ -52,10 +52,11 @@ class ImagenetOp(Op):
for
score
in
score_list
:
score
=
score
.
tolist
()
max_score
=
max
(
score
)
#result["label"].append(self.label_dict[score.index(max_score)]
#.strip().replace(",", ""))
#result["prob"].append(max_score)
#print(result)
result
[
"label"
].
append
(
self
.
label_dict
[
score
.
index
(
max_score
)]
.
strip
().
replace
(
","
,
""
))
result
[
"prob"
].
append
(
max_score
)
result
[
"label"
]
=
str
(
result
[
"label"
])
result
[
"prob"
]
=
str
(
result
[
"prob"
])
return
result
,
None
,
""
...
...
python/examples/senta/senta_web_service.py
浏览文件 @
c9eab242
...
...
@@ -37,6 +37,7 @@ class SentaService(WebService):
#定义senta模型预测服务的预处理,调用顺序:lac reader->lac模型预测->预测结果后处理->senta reader
def
preprocess
(
self
,
feed
=
[],
fetch
=
[]):
feed_batch
=
[]
is_batch
=
True
words_lod
=
[
0
]
for
ins
in
feed
:
if
"words"
not
in
ins
:
...
...
@@ -64,14 +65,13 @@ class SentaService(WebService):
return
{
"words"
:
np
.
concatenate
(
feed_batch
),
"words.lod"
:
words_lod
},
fetch
},
fetch
,
is_batch
senta_service
=
SentaService
(
name
=
"senta"
)
senta_service
.
load_model_config
(
"senta_bilstm_model"
)
senta_service
.
prepare_server
(
workdir
=
"workdir"
)
senta_service
.
init_lac_client
(
lac_port
=
9300
,
lac_client_config
=
"lac/lac_model/serving_server_conf.prototxt"
)
lac_port
=
9300
,
lac_client_config
=
"lac_model/serving_server_conf.prototxt"
)
senta_service
.
run_rpc_service
()
senta_service
.
run_web_service
()
python/pipeline/operator.py
浏览文件 @
c9eab242
...
...
@@ -1343,7 +1343,7 @@ class ResponseOp(Op):
type
(
var
)))
_LOGGER
.
error
(
"(logid={}) Failed to pack RPC "
"response package: {}"
.
format
(
channeldata
.
id
,
resp
.
err
or_info
))
channeldata
.
id
,
resp
.
err
_msg
))
break
resp
.
value
.
append
(
var
)
resp
.
key
.
append
(
name
)
...
...
python/pipeline/pipeline_client.py
浏览文件 @
c9eab242
...
...
@@ -23,7 +23,7 @@ import socket
from
.channel
import
ChannelDataErrcode
from
.proto
import
pipeline_service_pb2
from
.proto
import
pipeline_service_pb2_grpc
import
six
_LOGGER
=
logging
.
getLogger
(
__name__
)
...
...
@@ -53,7 +53,10 @@ class PipelineClient(object):
if
logid
is
None
:
req
.
logid
=
0
else
:
req
.
logid
=
long
(
logid
)
if
six
.
PY2
:
req
.
logid
=
long
(
logid
)
elif
six
.
PY3
:
req
.
logid
=
int
(
log_id
)
feed_dict
.
pop
(
"logid"
)
clientip
=
feed_dict
.
get
(
"clientip"
)
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录