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