summaryrefslogtreecommitdiff
path: root/res/TensorFlowPythonExamples/examples/softmax/__init__.py
blob: 5b8d1cdfb5aa5216821d067ce0244775c4e81861 (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.softmax(in_)