summaryrefslogtreecommitdiff
path: root/res/TensorFlowPythonExamples/examples/sin/__init__.py
blob: 75ea73b85a872480afa47a4aa667251cc2dd49c8 (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")
op_ = tf.compat.v1.sin(in_)