activation_log_softmax {keras3} | R Documentation |
Log-Softmax activation function.
Description
Each input vector is handled independently.
The axis
argument sets which axis of the input the function
is applied along.
Usage
activation_log_softmax(x, axis = -1L)
Arguments
x |
Input tensor. |
axis |
Integer, axis along which the softmax is applied. |
Value
A tensor, the result from applying the activation to the input tensor x
.
See Also
Other activations:
activation_elu()
activation_exponential()
activation_gelu()
activation_hard_sigmoid()
activation_leaky_relu()
activation_linear()
activation_mish()
activation_relu()
activation_relu6()
activation_selu()
activation_sigmoid()
activation_silu()
activation_softmax()
activation_softplus()
activation_softsign()
activation_tanh()
[Package keras3 version 1.1.0 Index]