Softmax
classkeras.layers.Softmax(axis=-1, **kwargs)
Softmax activation layer.
Formula:
exp_x = exp(x - max(x))
f(x) = exp_x / sum(exp_x)
Example
>>>softmax_layer = keras.layers.activations.Softmax()
>>>input = np.array([1.0, 2.0, 1.0])
>>>result = softmax_layer(input)
[0.21194157, 0.5761169, 0.21194157]
Arguments
name
and dtype
.Call arguments
inputs
. The mask
specifies 1 to keep and 0 to mask. Defaults to None
.Returns
Softmaxed output with the same shape as inputs
.