tf.keras.metrics.categorical_accuracy

Calculates how often predictions matches one-hot labels.

Main aliases

tf.metrics.categorical_accuracy

Compat aliases for migration

See Migration guide for more details.

tf.compat.v1.keras.metrics.categorical_accuracy

You can provide logits of classes as y_pred, since argmax of logits and probabilities are same.

y_true One-hot ground truth values.
y_pred The prediction values.

Categorical accuracy values.