tf.contrib.metrics.accuracy(predictions, labels, weights=None)
Computes the percentage of times that predictions matches labels.
Args:
-
predictions
: the predicted values, aTensor
whose dtype and shape matches 'labels'. -
labels
: the ground truth values, aTensor
of any shape and bool, integer, or string dtype. -
weights
: None orTensor
of float values to reweight the accuracy.
Returns:
Accuracy Tensor
.
Raises:
-
ValueError
: if dtypes don't match or if dtype is not bool, integer, or string.
Please login to continue.