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

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