tf.contrib.metrics.streaming_sensitivity_at_specificity(predictions, labels, specificity, weights=None, num_thresholds=200, metrics_collections=None, updates_collections=None, name=None)
Computes the the specificity at a given sensitivity.
The streaming_sensitivity_at_specificity
function creates four local variables, true_positives
, true_negatives
, false_positives
and false_negatives
that are used to compute the sensitivity at the given specificity value. The threshold for the given specificity value is computed and used to evaluate the corresponding sensitivity.
For estimation of the metric over a stream of data, the function creates an update_op
operation that updates these variables and returns the sensitivity
. update_op
increments the true_positives
, true_negatives
, false_positives
and false_negatives
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.
For additional information about specificity and sensitivity, see the following: https://en.wikipedia.org/wiki/Sensitivity_and_specificity
Args:
-
predictions
: A floating pointTensor
of arbitrary shape and whose values are in the range[0, 1]
. -
labels
: Abool
Tensor
whose shape matchespredictions
. -
specificity
: A scalar value in range[0, 1]
. -
weights
: An optionalTensor
whose shape is broadcastable topredictions
. -
num_thresholds
: The number of thresholds to use for matching the given specificity. -
metrics_collections
: An optional list of collections thatsensitivity
should be added to. -
updates_collections
: An optional list of collections thatupdate_op
should be added to. -
name
: An optional variable_scope name.
Returns:
-
sensitivity
: A scalar tensor representing the sensitivity at the givenspecificity
value. -
update_op
: An operation that increments thetrue_positives
,true_negatives
,false_positives
andfalse_negatives
variables appropriately and whose value matchessensitivity
.
Raises:
-
ValueError
: Ifpredictions
andlabels
have mismatched shapes, ifweights
is notNone
and its shape doesn't matchpredictions
, or ifspecificity
is not between 0 and 1, or if eithermetrics_collections
orupdates_collections
are not a list or tuple.
Please login to continue.