tf.compat.v1.argmin

View source on GitHub

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

tf.compat.v1.argmin(
    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.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

Args:

Returns:

A Tensor of type output_type.