tf.math.argmin

View source on GitHub

Returns the index with the smallest value across axes of a tensor.

tf.math.argmin(
    input, axis=None, output_type=tf.dtypes.int64, name=None
)

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

Args:

Returns:

A Tensor of type output_type.

Usage:

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