summaryrefslogtreecommitdiff
path: root/res/TensorFlowPythonExamples/examples/exp/__init__.py
blob: e836384363a928134285fbf35d9f841f1d7880b2 (plain)
1
2
3
4
import tensorflow as tf

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