Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Serving
提交
9b20e199
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看板
提交
9b20e199
编写于
12月 01, 2020
作者:
W
wangjiawei04
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
add imagenet to pipeline
上级
23b132e4
变更
11
展开全部
隐藏空白更改
内联
并排
Showing
11 changed file
with
3447 addition
and
0 deletion
+3447
-0
python/examples/pipeline/imagenet/PipelineServingLogs/pipeline.log
...amples/pipeline/imagenet/PipelineServingLogs/pipeline.log
+1722
-0
python/examples/pipeline/imagenet/PipelineServingLogs/pipeline.log.wf
...les/pipeline/imagenet/PipelineServingLogs/pipeline.log.wf
+545
-0
python/examples/pipeline/imagenet/PipelineServingLogs/pipeline.tracer
...les/pipeline/imagenet/PipelineServingLogs/pipeline.tracer
+0
-0
python/examples/pipeline/imagenet/README.md
python/examples/pipeline/imagenet/README.md
+19
-0
python/examples/pipeline/imagenet/README_CN.md
python/examples/pipeline/imagenet/README_CN.md
+19
-0
python/examples/pipeline/imagenet/config.yml
python/examples/pipeline/imagenet/config.yml
+30
-0
python/examples/pipeline/imagenet/daisy.jpg
python/examples/pipeline/imagenet/daisy.jpg
+0
-0
python/examples/pipeline/imagenet/get_model.sh
python/examples/pipeline/imagenet/get_model.sh
+5
-0
python/examples/pipeline/imagenet/imagenet.label
python/examples/pipeline/imagenet/imagenet.label
+1000
-0
python/examples/pipeline/imagenet/pipeline_rpc_client.py
python/examples/pipeline/imagenet/pipeline_rpc_client.py
+36
-0
python/examples/pipeline/imagenet/resnet50_web_service.py
python/examples/pipeline/imagenet/resnet50_web_service.py
+71
-0
未找到文件。
python/examples/pipeline/imagenet/PipelineServingLogs/pipeline.log
0 → 100644
浏览文件 @
9b20e199
此差异已折叠。
点击以展开。
python/examples/pipeline/imagenet/PipelineServingLogs/pipeline.log.wf
0 → 100644
浏览文件 @
9b20e199
此差异已折叠。
点击以展开。
python/examples/pipeline/imagenet/PipelineServingLogs/pipeline.tracer
0 → 100644
浏览文件 @
9b20e199
python/examples/pipeline/imagenet/README.md
0 → 100644
浏览文件 @
9b20e199
# Simple Pipeline WebService
This document will takes UCI service as an example to introduce how to use Pipeline WebService.
## Get model
```
sh get_data.sh
```
## Start server
```
python web_service.py &>log.txt &
```
## Http 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/examples/pipeline/imagenet/README_CN.md
0 → 100644
浏览文件 @
9b20e199
# Imagenet Pipeline WebService
这里以 Uci 服务为例来介绍 Pipeline WebService 的使用。
## 获取模型
```
sh get_data.sh
```
## 启动服务
```
python web_service.py &>log.txt &
```
## 测试
```
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/examples/pipeline/imagenet/config.yml
0 → 100644
浏览文件 @
9b20e199
#worker_num, 最大并发数。当build_dag_each_worker=True时, 框架会创建worker_num个进程,每个进程内构建grpcSever和DAG
##当build_dag_each_worker=False时,框架会设置主线程grpc线程池的max_workers=worker_num
worker_num
:
1
#http端口, rpc_port和http_port不允许同时为空。当rpc_port可用且http_port为空时,不自动生成http_port
http_port
:
18082
rpc_port
:
9999
dag
:
#op资源类型, True, 为线程模型;False,为进程模型
is_thread_op
:
False
op
:
imagenet
:
#当op配置没有server_endpoints时,从local_service_conf读取本地服务配置
local_service_conf
:
#并发数,is_thread_op=True时,为线程并发;否则为进程并发
concurrency
:
2
#uci模型路径
model_config
:
ResNet50_vd_model
#计算硬件ID,当devices为""或不写时为CPU预测;当devices为"0", "0,1,2"时为GPU预测,表示使用的GPU卡
devices
:
"
0"
# "0,1"
#client类型,包括brpc, grpc和local_predictor.local_predictor不启动Serving服务,进程内预测
client_type
:
local_predictor
#Fetch结果列表,以client_config中fetch_var的alias_name为准
fetch_list
:
[
"
score"
]
python/examples/pipeline/imagenet/daisy.jpg
0 → 100644
浏览文件 @
9b20e199
38.8 KB
python/examples/pipeline/imagenet/get_model.sh
0 → 100644
浏览文件 @
9b20e199
wget
--no-check-certificate
https://paddle-serving.bj.bcebos.com/imagenet-example/ResNet50_vd.tar.gz
tar
-xzvf
ResNet50_vd.tar.gz
wget
--no-check-certificate
https://paddle-serving.bj.bcebos.com/imagenet-example/image_data.tar.gz
tar
-xzvf
image_data.tar.gz
python/examples/pipeline/imagenet/imagenet.label
0 → 100644
浏览文件 @
9b20e199
此差异已折叠。
点击以展开。
python/examples/pipeline/imagenet/pipeline_rpc_client.py
0 → 100644
浏览文件 @
9b20e199
# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
from
paddle_serving_server_gpu.pipeline
import
PipelineClient
import
numpy
as
np
import
requests
import
json
import
cv2
import
base64
import
os
client
=
PipelineClient
()
client
.
connect
([
'127.0.0.1:9999'
])
def
cv2_to_base64
(
image
):
return
base64
.
b64encode
(
image
).
decode
(
'utf8'
)
with
open
(
"daisy.jpg"
,
'rb'
)
as
file
:
image_data
=
file
.
read
()
image
=
cv2_to_base64
(
image_data
)
for
i
in
range
(
1
):
ret
=
client
.
predict
(
feed_dict
=
{
"image"
:
image
},
fetch
=
[
"label"
,
"prob"
])
print
(
ret
)
python/examples/pipeline/imagenet/resnet50_web_service.py
0 → 100644
浏览文件 @
9b20e199
# Copyright (c) 2020 PaddlePaddle Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import
sys
from
paddle_serving_app.reader
import
Sequential
,
URL2Image
,
Resize
,
CenterCrop
,
RGB2BGR
,
Transpose
,
Div
,
Normalize
,
Base64ToImage
try
:
from
paddle_serving_server_gpu.web_service
import
WebService
,
Op
except
ImportError
:
from
paddle_serving_server.web_service
import
WebService
,
Op
import
logging
import
numpy
as
np
import
base64
,
cv2
class
ImagenetOp
(
Op
):
def
init_op
(
self
):
self
.
seq
=
Sequential
([
Resize
(
256
),
CenterCrop
(
224
),
RGB2BGR
(),
Transpose
(
(
2
,
0
,
1
)),
Div
(
255
),
Normalize
([
0.485
,
0.456
,
0.406
],
[
0.229
,
0.224
,
0.225
],
True
)
])
self
.
label_dict
=
{}
label_idx
=
0
with
open
(
"imagenet.label"
)
as
fin
:
for
line
in
fin
:
self
.
label_dict
[
label_idx
]
=
line
.
strip
()
label_idx
+=
1
def
preprocess
(
self
,
input_dicts
,
data_id
,
log_id
):
(
_
,
input_dict
),
=
input_dicts
.
items
()
data
=
base64
.
b64decode
(
input_dict
[
"image"
].
encode
(
'utf8'
))
data
=
np
.
fromstring
(
data
,
np
.
uint8
)
# Note: class variables(self.var) can only be used in process op mode
im
=
cv2
.
imdecode
(
data
,
cv2
.
IMREAD_COLOR
)
img
=
self
.
seq
(
im
)
return
{
"image"
:
img
[
np
.
newaxis
,:].
copy
()},
False
,
None
,
""
def
postprocess
(
self
,
input_dicts
,
fetch_dict
,
log_id
):
print
(
fetch_dict
)
score_list
=
fetch_dict
[
"score"
]
result
=
{
"label"
:
[],
"prob"
:
[]}
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)
return
result
,
None
,
""
class
ImageService
(
WebService
):
def
get_pipeline_response
(
self
,
read_op
):
image_op
=
ImagenetOp
(
name
=
"imagenet"
,
input_ops
=
[
read_op
])
return
image_op
uci_service
=
ImageService
(
name
=
"imagenet"
)
uci_service
.
prepare_pipeline_config
(
"config.yml"
)
uci_service
.
run_service
()
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录