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