summaryrefslogtreecommitdiff
path: root/res/TensorFlowPythonExamples/examples/less_equal/__init__.py
blob: d60bf2a73df74f076b0cd9f02744e5f7ed2fb8ae (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.less_equal(lhs_, rhs_)