Imported Upstream version 1.21.0
[platform/core/ml/nnfw.git] / res / TensorFlowPythonExamples / examples / subtract / __init__.py
1 import tensorflow as tf
2
3 tf.compat.v1.disable_eager_execution()
4
5 lhs_ = tf.compat.v1.placeholder(dtype=tf.float32, shape=(4, 4), name="Hole")
6 rhs_ = tf.compat.v1.placeholder(dtype=tf.float32, shape=(4, 4), name="Hole")
7 op_ = tf.compat.v1.subtract(lhs_, rhs_)