all_max = tf.convert_to_tensor([[4, 2, 3], [3, 4, 5]], dtype=tf.float32)
How to get the index of the element [3,4,5]
from the tensor array all_max
?
In list, we simply use list.index(element)
to get the index for an element present in list.
Thanks