tf.compat.v1.arg_max

Returns the index with the largest value across dimensions of a tensor.

tf.compat.v1.arg_max(
    input, dimension, output_type=tf.dtypes.int64, name=None
)

Note that in case of ties the identity of the return value is not guaranteed.

Usage:

import tensorflow as tf
a = [1, 10, 26.9, 2.8, 166.32, 62.3]
b = tf.math.argmax(input = a)
c = tf.keras.backend.eval(b)
# c = 4
# here a[4] = 166.32 which is the largest element of a across axis 0

Args:

Returns:

A Tensor of type output_type.