summaryrefslogtreecommitdiff
path: root/res/TensorFlowPythonExamples/examples/sigmoid/__init__.py
blob: 43328f2cb6b42519b51477ebce2163c6d8f690a6 (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.nn.sigmoid(in_)