tf.contrib.metrics.accuracy(predictions, labels, weights=None)
Computes the percentage of times that predictions matches labels.
Args:
-
predictions: the predicted values, aTensorwhose dtype and shape matches 'labels'. -
labels: the ground truth values, aTensorof any shape and bool, integer, or string dtype. -
weights: None orTensorof 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.