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

tf.compat.v1.disable_eager_execution()

in_ = tf.compat.v1.placeholder(dtype=tf.float32, shape=(4, 4), name="Hole")
abs_ = tf.compat.v1.abs(in_)