W3cubDocs

/TensorFlow

tf.keras.ops.log_softmax

Log-softmax activation function.

It is defined as:

f(x) = x - max(x) - log(sum(exp(x - max(x))))

Args
x Input tensor.
axis Integer, axis along which the log-softmax is applied. Defaults to -1.
Returns
A tensor with the same shape as x.

Example:

x = np.array([-1., 0., 1.])
x_log_softmax = keras.ops.log_softmax(x)
print(x_log_softmax)
array([-2.40760596, -1.40760596, -0.40760596], shape=(3,), dtype=float64)

© 2022 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 4.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/api_docs/python/tf/keras/ops/log_softmax