![]() |
Computes recall
at precision
.
tf.contrib.metrics.recall_at_precision(
labels,
predictions,
precision,
weights=None,
num_thresholds=200,
metrics_collections=None,
updates_collections=None,
name=None,
strict_mode=False
)
The recall_at_precision
function creates four local variables,
tp
(true positives), fp
(false positives) and fn
(false negatives)
that are used to compute the recall
at the given precision
value. The
threshold for the given precision
value is computed and used to evaluate the
corresponding recall
.
For estimation of the metric over a stream of data, the function creates an
update_op
operation that updates these variables and returns the
recall
. update_op
increments the tp
, fp
and fn
counts with the
weight of each case found in the predictions
and labels
.
If weights
is None
, weights default to 1. Use weights of 0 to mask values.
Args:
labels
: The ground truth values, aTensor
whose dimensions must matchpredictions
. Will be cast tobool
.predictions
: A floating pointTensor
of arbitrary shape and whose values are in the range[0, 1]
.precision
: A scalar value in range[0, 1]
.weights
: OptionalTensor
whose rank is either 0, or the same rank aslabels
, and must be broadcastable tolabels
(i.e., all dimensions must be either1
, or the same as the correspondinglabels
dimension).num_thresholds
: The number of thresholds to use for matching the givenprecision
.metrics_collections
: An optional list of collections thatrecall
should be added to.updates_collections
: An optional list of collections thatupdate_op
should be added to.name
: An optional variable_scope name.strict_mode
: If true and there exists a threshold where the precision is above the target precision, return the corresponding recall at the threshold. Otherwise, return 0. If false, find the threshold where the precision is closest to the target precision and return the recall at the threshold.
Returns:
recall
: A scalarTensor
representing the recall at the givenprecision
value.update_op
: An operation that increments thetp
,fp
andfn
variables appropriately and whose value matchesrecall
.
Raises:
ValueError
: Ifpredictions
andlabels
have mismatched shapes, ifweights
is notNone
and its shape doesn't matchpredictions
, or ifprecision
is not between 0 and 1, or if eithermetrics_collections
orupdates_collections
are not a list or tuple.