Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Serving
提交
66196ca1
S
Serving
项目概览
PaddlePaddle
/
Serving
大约 1 年 前同步成功
通知
185
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看板
体验新版 GitCode,发现更多精彩内容 >>
提交
66196ca1
编写于
9月 15, 2020
作者:
J
Jiawei Wang
提交者:
GitHub
9月 15, 2020
浏览文件
操作
浏览文件
下载
差异文件
Merge pull request #836 from MRXLT/0.3.2-qa
0.3.2 bug fix
上级
da8e0818
2ead2931
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
6 addition
and
5 deletion
+6
-5
cmake/paddlepaddle.cmake
cmake/paddlepaddle.cmake
+1
-1
python/examples/blazeface/test_client.py
python/examples/blazeface/test_client.py
+1
-0
python/examples/imagenet/resnet50_web_service.py
python/examples/imagenet/resnet50_web_service.py
+1
-1
python/paddle_serving_app/reader/__init__.py
python/paddle_serving_app/reader/__init__.py
+1
-1
python/paddle_serving_app/reader/image_reader.py
python/paddle_serving_app/reader/image_reader.py
+2
-2
未找到文件。
cmake/paddlepaddle.cmake
浏览文件 @
66196ca1
...
...
@@ -31,7 +31,7 @@ message( "WITH_GPU = ${WITH_GPU}")
# Paddle Version should be one of:
# latest: latest develop build
# version number like 1.5.2
SET
(
PADDLE_VERSION
"1.
7.2
"
)
SET
(
PADDLE_VERSION
"1.
8.4
"
)
if
(
WITH_GPU
)
SET
(
PADDLE_LIB_VERSION
"
${
PADDLE_VERSION
}
-gpu-cuda
${
CUDA_VERSION_MAJOR
}
-cudnn7-avx-mkl"
)
...
...
python/examples/blazeface/test_client.py
浏览文件 @
66196ca1
...
...
@@ -16,6 +16,7 @@ from paddle_serving_client import Client
from
paddle_serving_app.reader
import
*
import
sys
import
numpy
as
np
from
paddle_serving_app.reader
import
BlazeFacePostprocess
preprocess
=
Sequential
([
File2Image
(),
...
...
python/examples/imagenet/resnet50_web_service.py
浏览文件 @
66196ca1
...
...
@@ -30,7 +30,7 @@ else:
class
ImageService
(
WebService
):
def
init_imagenet_setting
(
self
):
self
.
seq
=
Sequential
([
Base64To
Image
(),
Resize
(
256
),
CenterCrop
(
224
),
RGB2BGR
(),
Transpose
(
URL2
Image
(),
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
)
])
...
...
python/paddle_serving_app/reader/__init__.py
浏览文件 @
66196ca1
...
...
@@ -14,7 +14,7 @@
from
.chinese_bert_reader
import
ChineseBertReader
from
.image_reader
import
ImageReader
,
File2Image
,
URL2Image
,
Sequential
,
Normalize
,
Base64ToImage
from
.image_reader
import
CenterCrop
,
Resize
,
Transpose
,
Div
,
RGB2BGR
,
BGR2RGB
,
ResizeByFactor
from
.image_reader
import
RCNNPostprocess
,
SegPostprocess
,
PadStride
from
.image_reader
import
RCNNPostprocess
,
SegPostprocess
,
PadStride
,
BlazeFacePostprocess
from
.image_reader
import
DBPostProcess
,
FilterBoxes
,
GetRotateCropImage
,
SortedBoxes
from
.lac_reader
import
LACReader
from
.senta_reader
import
SentaReader
...
...
python/paddle_serving_app/reader/image_reader.py
浏览文件 @
66196ca1
...
...
@@ -317,7 +317,7 @@ class RCNNPostprocess(object):
self
.
clip_bbox
([
xmin
,
ymin
,
xmax
,
ymax
])
w
=
xmax
-
xmin
h
=
ymax
-
ymin
im_shape
=
t
[
'im_shape'
]
[
0
][
i
]
.
tolist
()
im_shape
=
t
[
'im_shape'
].
tolist
()
im_height
,
im_width
=
int
(
im_shape
[
0
]),
int
(
im_shape
[
1
])
xmin
*=
im_width
ymin
*=
im_height
...
...
@@ -420,7 +420,7 @@ class RCNNPostprocess(object):
for
key
in
image_with_bbox
:
if
key
==
"image"
:
continue
if
".lod"
in
key
:
if
".lod"
in
key
or
"im_shape"
in
key
:
continue
fetch_name
=
key
bbox_result
=
self
.
_get_bbox_result
(
image_with_bbox
,
fetch_name
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录