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

lhs_ = tf.compat.v1.placeholder(dtype=tf.float32, shape=(4, 4), name="Hole")
rhs_ = tf.compat.v1.placeholder(dtype=tf.float32, shape=(4, 4), name="Hole")
op_ = tf.compat.v1.greater(lhs_, rhs_)