![]() |
Computes the recall@k of the predictions with respect to dense labels. (deprecated)
tf.contrib.metrics.streaming_recall_at_k(
predictions,
labels,
k,
weights=None,
metrics_collections=None,
updates_collections=None,
name=None
)
The streaming_recall_at_k
function creates two local variables, total
and
count
, that are used to compute the recall@k frequency. This frequency is
ultimately returned as recall_at_<k>
: an idempotent operation that simply
divides total
by count
.
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_at_<k>
. Internally, an in_top_k
operation computes a Tensor
with
shape [batch_size] whose elements indicate whether or not the corresponding
label is in the top k
predictions
. Then update_op
increments total
with the reduced sum of weights
where in_top_k
is True
, and it
increments count
with the reduced sum of weights
.
If weights
is None
, weights default to 1. Use weights of 0 to mask values.
Args:
predictions
: A floatTensor
of dimension [batch_size, num_classes].labels
: ATensor
of dimension [batch_size] whose type is inint32
,int64
.k
: The number of top elements to look at for computing recall.weights
:Tensor
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).metrics_collections
: An optional list of collections thatrecall_at_k
should be added to.updates_collections
: An optional list of collectionsupdate_op
should be added to.name
: An optional variable_scope name.
Returns:
recall_at_k
: ATensor
representing the recall@k, the fraction of labels which fall into the topk
predictions.update_op
: An operation that increments thetotal
andcount
variables appropriately and whose value matchesrecall_at_k
.
Raises:
ValueError
: Ifpredictions
andlabels
have mismatched shapes, or ifweights
is notNone
and its shape doesn't matchpredictions
, or if eithermetrics_collections
orupdates_collections
are not a list or tuple.