HomeSort by relevance Sort by last modified time
    Searched refs:iou_threshold (Results 1 - 7 of 7) sorted by null

  /external/tensorflow/tensorflow/core/kernels/
non_max_suppression_op.h 30 float iou_threshold, int max_output_size,
non_max_suppression_op.cc 69 // is greater than iou_threshold.
72 float iou_threshold) {
92 return iou > iou_threshold;
97 const float iou_threshold) {
98 OP_REQUIRES(context, iou_threshold >= 0 && iou_threshold <= 1,
99 errors::InvalidArgument("iou_threshold must be in [0, 1]"));
126 iou_threshold)) {
152 OP_REQUIRES_OK(context, context->GetAttr("iou_threshold", &iou_threshold_));
192 // iou_threshold: scala
193 const Tensor& iou_threshold = context->input(3); variable
    [all...]
non_max_suppression_op_test.cc 33 void MakeOp(float iou_threshold) {
38 .Attr("iou_threshold", iou_threshold)
163 StringPiece(s.ToString()).contains("iou_threshold must be in [0, 1]"))
325 StringPiece(s.ToString()).contains("iou_threshold must be in [0, 1]"))
  /external/tensorflow/tensorflow/core/ops/
image_ops.cc 611 .Attr("iou_threshold: float = 0.5")
636 .Input("iou_threshold: float")
646 ShapeHandle iou_threshold;
647 TF_RETURN_IF_ERROR(c->WithRank(c->input(3), 0, &iou_threshold));
  /external/tensorflow/tensorflow/python/ops/
image_ops_impl.py     [all...]
image_ops_test.py     [all...]
  /external/tensorflow/tensorflow/go/op/
wrappers.go     [all...]

Completed in 286 milliseconds