Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
PaddlePaddle
Paddle
提交
41d26a82
P
Paddle
项目概览
PaddlePaddle
/
Paddle
大约 1 年 前同步成功
通知
2298
Star
20931
Fork
5422
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
1423
列表
看板
标记
里程碑
合并请求
543
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
P
Paddle
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
1,423
Issue
1,423
列表
看板
标记
里程碑
合并请求
543
合并请求
543
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
未验证
提交
41d26a82
编写于
10月 28, 2020
作者:
W
wangxinxin08
提交者:
GitHub
10月 28, 2020
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
update matrix nms op to api 2.0 (#28265)
* update matrix nms op to api 2.0 * modify code according to review
上级
7fcb32dd
变更
3
隐藏空白更改
内联
并排
Showing
3 changed file
with
26 addition
and
2 deletion
+26
-2
paddle/fluid/operators/detection/matrix_nms_op.cc
paddle/fluid/operators/detection/matrix_nms_op.cc
+23
-1
paddle/fluid/pybind/op_function_generator.cc
paddle/fluid/pybind/op_function_generator.cc
+1
-0
python/paddle/fluid/tests/unittests/test_matrix_nms_op.py
python/paddle/fluid/tests/unittests/test_matrix_nms_op.py
+2
-1
未找到文件。
paddle/fluid/operators/detection/matrix_nms_op.cc
浏览文件 @
41d26a82
...
...
@@ -12,6 +12,7 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
limitations under the License. */
#include "paddle/fluid/framework/op_registry.h"
#include "paddle/fluid/framework/op_version_registry.h"
#include "paddle/fluid/operators/detection/nms_util.h"
namespace
paddle
{
...
...
@@ -59,6 +60,9 @@ class MatrixNMSOp : public framework::OperatorWithKernel {
}
ctx
->
SetOutputDim
(
"Out"
,
{
box_dims
[
1
],
box_dims
[
2
]
+
2
});
ctx
->
SetOutputDim
(
"Index"
,
{
box_dims
[
1
],
1
});
if
(
ctx
->
HasOutput
(
"RoisNum"
))
{
ctx
->
SetOutputDim
(
"RoisNum"
,
{
-
1
});
}
if
(
!
ctx
->
IsRuntime
())
{
ctx
->
SetLoDLevel
(
"Out"
,
std
::
max
(
ctx
->
GetLoDLevel
(
"BBoxes"
),
1
));
ctx
->
SetLoDLevel
(
"Index"
,
std
::
max
(
ctx
->
GetLoDLevel
(
"BBoxes"
),
1
));
...
...
@@ -259,8 +263,10 @@ class MatrixNMSKernel : public framework::OpKernel<T> {
std
::
vector
<
size_t
>
offsets
=
{
0
};
std
::
vector
<
T
>
detections
;
std
::
vector
<
int
>
indices
;
std
::
vector
<
int
>
num_per_batch
;
detections
.
reserve
(
out_dim
*
num_boxes
*
batch_size
);
indices
.
reserve
(
num_boxes
*
batch_size
);
num_per_batch
.
reserve
(
batch_size
);
for
(
int
i
=
0
;
i
<
batch_size
;
++
i
)
{
scores_slice
=
scores
->
Slice
(
i
,
i
+
1
);
scores_slice
.
Resize
({
score_dims
[
1
],
score_dims
[
2
]});
...
...
@@ -272,6 +278,7 @@ class MatrixNMSKernel : public framework::OpKernel<T> {
background_label
,
nms_top_k
,
keep_top_k
,
normalized
,
score_threshold
,
post_threshold
,
use_gaussian
,
gaussian_sigma
);
offsets
.
push_back
(
offsets
.
back
()
+
num_out
);
num_per_batch
.
emplace_back
(
num_out
);
}
int64_t
num_kept
=
offsets
.
back
();
...
...
@@ -285,6 +292,12 @@ class MatrixNMSKernel : public framework::OpKernel<T> {
std
::
copy
(
indices
.
begin
(),
indices
.
end
(),
index
->
data
<
int
>
());
}
if
(
ctx
.
HasOutput
(
"RoisNum"
))
{
auto
*
rois_num
=
ctx
.
Output
<
Tensor
>
(
"RoisNum"
);
rois_num
->
mutable_data
<
int
>
({
batch_size
},
ctx
.
GetPlace
());
std
::
copy
(
num_per_batch
.
begin
(),
num_per_batch
.
end
(),
rois_num
->
data
<
int
>
());
}
framework
::
LoD
lod
;
lod
.
emplace_back
(
offsets
);
outs
->
set_lod
(
lod
);
...
...
@@ -355,6 +368,8 @@ class MatrixNMSOpMaker : public framework::OpProtoAndCheckerMaker {
"(LoDTensor) A 2-D LoDTensor with shape [No, 1] represents the "
"index of selected bbox. The index is the absolute index cross "
"batches."
);
AddOutput
(
"RoisNum"
,
"(Tensor), Number of RoIs in each images."
)
.
AsDispensable
();
AddComment
(
R"DOC(
This operator does multi-class matrix non maximum suppression (NMS) on batched
boxes and scores.
...
...
@@ -369,7 +384,9 @@ This operator support multi-class and batched inputs. It applying NMS
independently for each class. The outputs is a 2-D LoDTenosr, for each
image, the offsets in first dimension of LoDTensor are called LoD, the number
of offset is N + 1, where N is the batch size. If LoD[i + 1] - LoD[i] == 0,
means there is no detected bbox for this image.
means there is no detected bbox for this image. Now this operator has one more
ouput, which is RoisNum. The size of RoisNum is N, RoisNum[i] means the number of
detected bbox for this image.
For more information on Matrix NMS, please refer to:
https://arxiv.org/abs/2003.10152
...
...
@@ -387,3 +404,8 @@ REGISTER_OPERATOR(
paddle
::
framework
::
EmptyGradOpMaker
<
paddle
::
imperative
::
OpBase
>
);
REGISTER_OP_CPU_KERNEL
(
matrix_nms
,
ops
::
MatrixNMSKernel
<
float
>
,
ops
::
MatrixNMSKernel
<
double
>
);
REGISTER_OP_VERSION
(
matrix_nms
)
.
AddCheckpoint
(
R"ROC(Upgrade matrix_nms: add a new output [RoisNum].)ROC"
,
paddle
::
framework
::
compatible
::
OpVersionDesc
().
NewOutput
(
"RoisNum"
,
"The number of RoIs in each image."
));
paddle/fluid/pybind/op_function_generator.cc
浏览文件 @
41d26a82
...
...
@@ -74,6 +74,7 @@ std::map<std::string, std::set<std::string>> op_outs_map = {
{
"unique"
,
{
"Out"
,
"Index"
,
"Indices"
,
"Counts"
}},
{
"generate_proposals"
,
{
"RpnRois"
,
"RpnRoiProbs"
,
"RpnRoisNum"
}},
{
"collect_fpn_proposals"
,
{
"FpnRois"
,
"RoisNum"
}},
{
"matrix_nms"
,
{
"Out"
,
"Index"
,
"RoisNum"
}},
{
"distribute_fpn_proposals"
,
{
"MultiFpnRois"
,
"RestoreIndex"
,
"MultiLevelRoIsNum"
}},
{
"moving_average_abs_max_scale"
,
{
"OutScale"
,
"OutAccum"
,
"OutState"
}},
...
...
python/paddle/fluid/tests/unittests/test_matrix_nms_op.py
浏览文件 @
41d26a82
...
...
@@ -201,7 +201,8 @@ class TestMatrixNMSOp(OpTest):
self
.
inputs
=
{
'BBoxes'
:
boxes
,
'Scores'
:
scores
}
self
.
outputs
=
{
'Out'
:
(
nmsed_outs
,
[
lod
]),
'Index'
:
(
index_outs
[:,
None
],
[
lod
])
'Index'
:
(
index_outs
[:,
None
],
[
lod
]),
'RoisNum'
:
np
.
array
(
lod
).
astype
(
'int32'
)
}
self
.
attrs
=
{
'background_label'
:
0
,
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录