summaryrefslogtreecommitdiff
path: root/res/TensorFlowPythonExamples/examples/argmin/__init__.py
blob: f9a54627fde7a2fe82fdafbfc2cc8191649fd3c2 (plain)
1
2
3
4
import tensorflow as tf

in_ = tf.compat.v1.placeholder(dtype=tf.float32, shape=(1, 1), name="Hole")
op_ = tf.compat.v1.math.argmin(in_)