detection_out.cc 3.0 KB
Newer Older
X
xiexionghang 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69
// Copyright (c) 2018 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/inference/anakin/convert/detection_out.h"
#include <algorithm>
#include <map>

namespace paddle {
namespace inference {
namespace anakin {

template <typename TargetT, ::anakin::Precision PrecisionT>
void DetectionOutOpConverter<TargetT, PrecisionT>::operator()(
    const framework::proto::OpDesc &op, const framework::BlockDesc &block_desc,
    const framework::Scope &scope, bool test_mode) {
  framework::OpDesc op_desc(op, nullptr);
  auto target_name = op_desc.Input("TargetBox").front();
  auto prior_box_name = op_desc.Input("PriorBox").front();
  auto scores_name = op_desc.Input("Scores").front();
  auto output_name = op_desc.Output("Out").front();

  auto op_name = op_desc.Type() + ":" + op_desc.Output("Out").front();

  auto code_type = boost::get<std::string>(op_desc.GetAttr("code_type"));
  auto background_label = boost::get<int>(op_desc.GetAttr("background_label"));
  auto score_threshold = boost::get<float>(op_desc.GetAttr("score_threshold"));
  auto nms_top_k = boost::get<int>(op_desc.GetAttr("nms_top_k"));
  auto nms_threshold = boost::get<float>(op_desc.GetAttr("nms_threshold"));
  auto nms_eta = boost::get<float>(op_desc.GetAttr("nms_eta"));
  auto keep_top_k = boost::get<int>(op_desc.GetAttr("keep_top_k"));
  std::string anakin_code_type;
  if (code_type == "decode_center_size") {
    anakin_code_type = "CENTER_SIZE";
  } else if (code_type == "encode_center_size") {
    PADDLE_THROW(
        "Not support encode_center_size code_type in DetectionOut of anakin");
  }

  this->engine_->AddOp(op_name, "DetectionOutput",
                       {target_name, scores_name, prior_box_name},
                       {output_name});
  this->engine_->AddOpAttr(op_name, "share_location", true);
  this->engine_->AddOpAttr(op_name, "variance_encode_in_target", false);
  this->engine_->AddOpAttr(op_name, "class_num", static_cast<int>(0));
  this->engine_->AddOpAttr(op_name, "background_id", background_label);
  this->engine_->AddOpAttr(op_name, "keep_top_k", keep_top_k);
  this->engine_->AddOpAttr(op_name, "code_type", anakin_code_type);
  this->engine_->AddOpAttr(op_name, "conf_thresh", score_threshold);
  this->engine_->AddOpAttr(op_name, "nms_top_k", nms_top_k);
  this->engine_->AddOpAttr(op_name, "nms_thresh", nms_threshold);
  this->engine_->AddOpAttr(op_name, "nms_eta", nms_eta);
}

}  // namespace anakin
}  // namespace inference
}  // namespace paddle

REGISTER_ANAKIN_OP_CONVERTER(detection_out, DetectionOutOpConverter);