9 #include "ngraph/attribute_adapter.hpp"
10 #include "ngraph/op/op.hpp"
11 #include "ngraph/op/util/attr_types.hpp"
25 NGRAPH_RTTI_DECLARATION;
31 float score_threshold;
35 float max_delta_log_wh;
39 int64_t post_nms_count;
41 size_t max_detections_per_image;
45 bool class_agnostic_box_regression;
47 std::vector<float> deltas_weights;
68 clone_with_new_inputs(
const OutputVector& new_args)
const override;
Visits the attributes of a node, primarily for serialization-like tasks.
Definition: attribute_visitor.hpp:59
A handle for one of a node's outputs.
Definition: node_output.hpp:33
Root of all actual ops.
Definition: op.hpp:17
An operation ExperimentalDetectronDetectionOutput performs non-maximum suppression to generate the de...
Definition: experimental_detectron_detection_output.hpp:23
const Attributes & get_attrs() const
Returns attributes of the operation ExperimentalDetectronDetectionOutput.
Definition: experimental_detectron_detection_output.hpp:70
void validate_and_infer_types() override
Verifies that attributes and inputs are consistent and computes output shapes and element types....
ExperimentalDetectronDetectionOutput(const Output< Node > &input_rois, const Output< Node > &input_deltas, const Output< Node > &input_scores, const Output< Node > &input_im_info, const Attributes &attrs)
Constructs a ExperimentalDetectronDetectionOutput operation.
The Intel nGraph C++ API.
Definition: attribute_adapter.hpp:16
Structure that specifies attributes of the operation.
Definition: experimental_detectron_detection_output.hpp:29