tf.compat.v1.argmax

View source on GitHub

Returns the index with the largest value across axes of a tensor. (deprecated arguments)

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

Warning: SOME ARGUMENTS ARE DEPRECATED: (dimension). They will be removed in a future version. Instructions for updating: Use the axis argument instead

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.