LogitΒΆ
Inverse of the sigmoid function.
Abstract Signature:
Logit(input: Tensor, eps: float)
Keras
API:
βStrategy: Macro 'keras.ops.log({input} / (1 - {input}))'
TensorFlow
API:
tf.math.atanhStrategy: Macro 'tf.math.atanh(2 * {input} - 1)'
Apple MLX
API:
βStrategy: Macro 'mlx.core.log({input} / (1 - {input}))'