tf.keras.activations.softmax(
x,
axis=-1
)
Defined in tensorflow/python/keras/activations.py
.
Softmax activation function.
Arguments:
x
: Input tensor.axis
: Integer, axis along which the softmax normalization is applied.
Returns:
Tensor, output of softmax transformation.
Raises:
ValueError
: In casedim(x) == 1
.