Home
last modified time | relevance | path

Searched refs:score_threshold (Results 1 – 21 of 21) sorted by relevance

/external/tensorflow/tensorflow/core/kernels/
Dnon_max_suppression_op.cc157 const Tensor& max_output_size, const float score_threshold, in DoNonMaxSuppressionOp() argument
177 if (static_cast<float>(scores_data[i]) > score_threshold) { in DoNonMaxSuppressionOp()
229 const float score_threshold, const float iou_threshold, in BatchedNonMaxSuppressionOp() argument
308 if (class_scores_data[i] > score_threshold) { in BatchedNonMaxSuppressionOp()
545 const Tensor& score_threshold = context->input(4); in Compute() local
547 context, TensorShapeUtils::IsScalar(score_threshold.shape()), in Compute()
549 score_threshold.shape().DebugString())); in Compute()
550 const float score_threshold_val = score_threshold.scalar<float>()(); in Compute()
596 const Tensor& score_threshold = context->input(4); in Compute() local
598 context, TensorShapeUtils::IsScalar(score_threshold.shape()), in Compute()
[all …]
Dnon_max_suppression_op.h30 float iou_threshold, float score_threshold,
/external/tensorflow/tensorflow/compiler/tests/
Dimage_ops_test.py749 score_threshold = array_ops.placeholder(score_threshold_np.dtype,
757 score_threshold=score_threshold,
762 score_threshold: score_threshold_np,
787 score_threshold = array_ops.placeholder(score_threshold_np.dtype,
795 score_threshold=score_threshold,
800 score_threshold: score_threshold_np,
829 score_threshold = array_ops.placeholder(score_threshold_np.dtype,
837 score_threshold=score_threshold,
843 score_threshold: score_threshold_np
872 score_threshold = array_ops.placeholder(score_threshold_np.dtype,
[all …]
/external/tensorflow/tensorflow/core/api_def/base_api/
Dapi_def_NonMaxSuppressionWithOverlaps.pbtxt32 name: "score_threshold"
49 `score_threshold` are removed. N-by-n overlap values are supplied as square matrix,
59 overlaps, scores, max_output_size, overlap_threshold, score_threshold)
Dapi_def_NonMaxSuppressionV3.pbtxt31 name: "score_threshold"
48 `score_threshold` are removed. Bounding boxes are supplied as
61 boxes, scores, max_output_size, iou_threshold, score_threshold)
Dapi_def_NonMaxSuppressionV4.pbtxt31 name: "score_threshold"
62 `score_threshold` are removed. Bounding boxes are supplied as
75 boxes, scores, max_output_size, iou_threshold, score_threshold)
Dapi_def_CombinedNonMaxSuppression.pbtxt39 name: "score_threshold"
/external/tensorflow/tensorflow/python/ops/
Dimage_ops_impl.py2445 score_threshold=float('-inf'), argument
2486 score_threshold = ops.convert_to_tensor(
2487 score_threshold, name='score_threshold')
2489 iou_threshold, score_threshold)
2497 score_threshold=float('-inf'), argument
2541 score_threshold = ops.convert_to_tensor(
2542 score_threshold, name='score_threshold')
2545 boxes, scores, max_output_size, iou_threshold, score_threshold,
2549 boxes, scores, max_output_size, iou_threshold, score_threshold)
2557 score_threshold=float('-inf'), argument
[all …]
Dimage_ops_test.py4376 score_threshold = float('-inf')
4384 boxes, scores, max_output_size, iou_threshold, score_threshold)
4436 score_threshold = constant_op.constant(score_threshold_np)
4442 score_threshold)
4466 score_threshold = 0.4
4469 overlaps, scores, max_output_size, overlap_threshold, score_threshold)
/external/tensorflow/tensorflow/tools/api/golden/v2/
Dtensorflow.image.pbtxt37 …ax_output_size_per_class\', \'max_total_size\', \'iou_threshold\', \'score_threshold\', \'pad_per_…
125 …gs=[\'boxes\', \'scores\', \'max_output_size\', \'iou_threshold\', \'score_threshold\', \'name\'],…
129 …verlaps\', \'scores\', \'max_output_size\', \'overlap_threshold\', \'score_threshold\', \'name\'],…
133 …gs=[\'boxes\', \'scores\', \'max_output_size\', \'iou_threshold\', \'score_threshold\', \'pad_to_m…
Dtensorflow.pbtxt505 …ax_output_size_per_class\', \'max_total_size\', \'iou_threshold\', \'score_threshold\', \'pad_per_…
Dtensorflow.raw_ops.pbtxt597 …ax_output_size_per_class\', \'max_total_size\', \'iou_threshold\', \'score_threshold\', \'pad_per_…
2153 …gs=[\'boxes\', \'scores\', \'max_output_size\', \'iou_threshold\', \'score_threshold\', \'name\'],…
2157 …gs=[\'boxes\', \'scores\', \'max_output_size\', \'iou_threshold\', \'score_threshold\', \'pad_to_m…
2161 …verlaps\', \'scores\', \'max_output_size\', \'overlap_threshold\', \'score_threshold\', \'name\'],…
/external/tensorflow/tensorflow/tools/api/golden/v1/
Dtensorflow.image.pbtxt37 …ax_output_size_per_class\', \'max_total_size\', \'iou_threshold\', \'score_threshold\', \'pad_per_…
125 …gs=[\'boxes\', \'scores\', \'max_output_size\', \'iou_threshold\', \'score_threshold\', \'name\'],…
129 …verlaps\', \'scores\', \'max_output_size\', \'overlap_threshold\', \'score_threshold\', \'name\'],…
133 …gs=[\'boxes\', \'scores\', \'max_output_size\', \'iou_threshold\', \'score_threshold\', \'pad_to_m…
Dtensorflow.raw_ops.pbtxt597 …ax_output_size_per_class\', \'max_total_size\', \'iou_threshold\', \'score_threshold\', \'pad_per_…
2153 …gs=[\'boxes\', \'scores\', \'max_output_size\', \'iou_threshold\', \'score_threshold\', \'name\'],…
2157 …gs=[\'boxes\', \'scores\', \'max_output_size\', \'iou_threshold\', \'score_threshold\', \'pad_to_m…
2161 …verlaps\', \'scores\', \'max_output_size\', \'overlap_threshold\', \'score_threshold\', \'name\'],…
Dtensorflow.pbtxt965 …ax_output_size_per_class\', \'max_total_size\', \'iou_threshold\', \'score_threshold\', \'pad_per_…
/external/tensorflow/tensorflow/core/ops/
Dimage_ops.cc121 ShapeHandle score_threshold; in NMSShapeFn() local
122 TF_RETURN_IF_ERROR(c->WithRank(c->input(4), 0, &score_threshold)); in NMSShapeFn()
880 ShapeHandle score_threshold; in __anon6a71d27f1902() local
881 TF_RETURN_IF_ERROR(c->WithRank(c->input(4), 0, &score_threshold)); in __anon6a71d27f1902()
Dops.pbtxt5726 name: "score_threshold"
20914 name: "score_threshold"
20954 name: "score_threshold"
21005 name: "score_threshold"
/external/libaom/libaom/aom_dsp/
Dnoise_model.c661 const float score_threshold = scores[top_nth_percentile].score; in aom_flat_block_finder_run() local
663 if (scores[i].score >= score_threshold) { in aom_flat_block_finder_run()
/external/tensorflow/tensorflow/go/op/
Dwrappers.go20384 …s tf.Output, max_output_size tf.Output, overlap_threshold tf.Output, score_threshold tf.Output) (s…
20391 overlaps, scores, max_output_size, overlap_threshold, score_threshold,
37733 …cores tf.Output, max_output_size tf.Output, iou_threshold tf.Output, score_threshold tf.Output) (s…
37740 boxes, scores, max_output_size, iou_threshold, score_threshold,
37795 …cores tf.Output, max_output_size tf.Output, iou_threshold tf.Output, score_threshold tf.Output, op…
37806 boxes, scores, max_output_size, iou_threshold, score_threshold,
37891 …_class tf.Output, max_total_size tf.Output, iou_threshold tf.Output, score_threshold tf.Output, op…
37902 boxes, scores, max_output_size_per_class, max_total_size, iou_threshold, score_threshold,
/external/tensorflow/tensorflow/core/ops/compat/
Dops_history.v2.pbtxt13200 name: "score_threshold"
41503 name: "score_threshold"
41530 name: "score_threshold"
41570 name: "score_threshold"
41608 name: "score_threshold"
41659 name: "score_threshold"
Dops_history.v1.pbtxt13258 name: "score_threshold"
42026 name: "score_threshold"
42053 name: "score_threshold"
42093 name: "score_threshold"
42131 name: "score_threshold"
42182 name: "score_threshold"