View source on GitHub |
Logarithm of the sum of exponentiations of the inputs.
tf.keras.ops.logaddexp(
x1, x2
)
Calculates log(exp(x1) + exp(x2))
.
Args | |
---|---|
x1
|
Input tensor. |
x2
|
Input tensor. |
Returns | |
---|---|
Output tensor, element-wise logarithm of the sum of exponentiations of the inputs. |