You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Paddle/paddle/fluid/operators/detection/collect_fpn_proposals_op.cc

126 lines
5.2 KiB

/* Copyright (c) 2019 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.*/
#include "paddle/fluid/operators/detection/collect_fpn_proposals_op.h"
namespace paddle {
namespace operators {
using Tensor = framework::Tensor;
using LoDTensor = framework::LoDTensor;
class CollectFpnProposalsOp : public framework::OperatorWithKernel {
public:
using framework::OperatorWithKernel::OperatorWithKernel;
void InferShape(framework::InferShapeContext *context) const override {
PADDLE_ENFORCE_EQ(
context->HasInputs("MultiLevelRois"), true,
platform::errors::NotFound("Inputs(MultiLevelRois) of "
"CollectFpnProposalsOp is not found"));
PADDLE_ENFORCE_EQ(
context->HasInputs("MultiLevelScores"), true,
platform::errors::NotFound("Inputs(MultiLevelScores) of "
"CollectFpnProposalsOp is not found"));
PADDLE_ENFORCE_EQ(
context->HasOutput("FpnRois"), true,
platform::errors::NotFound("Outputs(MultiFpnRois) of "
"CollectFpnProposalsOp is not found"));
auto roi_dims = context->GetInputsDim("MultiLevelRois");
auto score_dims = context->GetInputsDim("MultiLevelScores");
auto post_nms_topN = context->Attrs().Get<int>("post_nms_topN");
std::vector<int64_t> out_dims;
for (auto &roi_dim : roi_dims) {
PADDLE_ENFORCE_EQ(
roi_dim[1], 4,
platform::errors::InvalidArgument(
"Second dimension of Input"
"(MultiLevelRois) must be 4. But received dimension = %d",
roi_dim[1]));
}
for (auto &score_dim : score_dims) {
PADDLE_ENFORCE_EQ(
score_dim[1], 1,
platform::errors::InvalidArgument(
"Second dimension of Input"
"(MultiLevelScores) must be 1. But received dimension = %d",
score_dim[1]));
}
context->SetOutputDim("FpnRois", {post_nms_topN, 4});
if (!context->IsRuntime()) { // Runtime LoD infershape will be computed
// in Kernel.
context->ShareLoD("MultiLevelRois", "FpnRois");
}
if (context->IsRuntime()) {
std::vector<framework::InferShapeVarPtr> roi_inputs =
context->GetInputVarPtrs("MultiLevelRois");
std::vector<framework::InferShapeVarPtr> score_inputs =
context->GetInputVarPtrs("MultiLevelScores");
for (size_t i = 0; i < roi_inputs.size(); ++i) {
framework::Variable *roi_var =
BOOST_GET(framework::Variable *, roi_inputs[i]);
framework::Variable *score_var =
BOOST_GET(framework::Variable *, score_inputs[i]);
auto &roi_lod = roi_var->Get<LoDTensor>().lod();
auto &score_lod = score_var->Get<LoDTensor>().lod();
PADDLE_ENFORCE_EQ(
roi_lod, score_lod,
platform::errors::InvalidArgument(
"Inputs(MultiLevelRois) and "
"Inputs(MultiLevelScores) should have same lod."));
}
}
}
protected:
framework::OpKernelType GetExpectedKernelType(
const framework::ExecutionContext &ctx) const override {
auto data_type =
OperatorWithKernel::IndicateVarDataType(ctx, "MultiLevelRois");
return framework::OpKernelType(data_type, ctx.GetPlace());
}
};
class CollectFpnProposalsOpMaker : public framework::OpProtoAndCheckerMaker {
public:
void Make() override {
AddInput("MultiLevelRois",
"(LoDTensor) Multiple roi LoDTensors from each level in shape "
"(N, 4), N is the number of RoIs")
.AsDuplicable();
AddInput("MultiLevelScores",
"(LoDTensor) Multiple score LoDTensors from each level in shape"
" (N, 1), N is the number of RoIs.")
.AsDuplicable();
AddOutput("FpnRois", "(LoDTensor) All selected RoIs with highest scores");
AddAttr<int>("post_nms_topN",
"Select post_nms_topN RoIs from"
" all images and all fpn layers");
AddComment(R"DOC(
This operator concats all proposals from different images
and different FPN levels. Then sort all of those proposals
by objectness confidence. Select the post_nms_topN RoIs in
total. Finally, re-sort the RoIs in the order of batch index.
)DOC");
}
};
} // namespace operators
} // namespace paddle
namespace ops = paddle::operators;
REGISTER_OPERATOR(
collect_fpn_proposals, ops::CollectFpnProposalsOp,
ops::CollectFpnProposalsOpMaker,
paddle::framework::EmptyGradOpMaker<paddle::framework::OpDesc>,
paddle::framework::EmptyGradOpMaker<paddle::imperative::OpBase>);
REGISTER_OP_CPU_KERNEL(collect_fpn_proposals,
ops::CollectFpnProposalsOpKernel<float>,
ops::CollectFpnProposalsOpKernel<double>);