jax.nn.log_softmax

Contents

jax.nn.log_softmax#

jax.nn.log_softmax(x, axis=-1, where=None, initial=_UNSPECIFIED)[source]#

Log-Softmax function.

Computes the logarithm of the softmax function, which rescales elements to the range \([-\infty, 0)\).

\[\mathrm{log\_softmax}(x)_i = \log \left( \frac{\exp(x_i)}{\sum_j \exp(x_j)} \right)\]
Parameters:
  • x (ArrayLike) – input array

  • axis (int | tuple[int, ...] | None) – the axis or axes along which the log_softmax should be computed. Either an integer or a tuple of integers.

  • where (ArrayLike | None) – Elements to include in the log_softmax.

  • initial (ArrayLike | None | Unspecified)

Returns:

An array.

Return type:

Array

See also

softmax()