View source on GitHub |
Compute log(exp(max(x, y)) - exp(min(x, y)))
in a numerically stable way.
tfp.math.log_sub_exp(
x, y, return_sign=False, name=None
)
Use return_sign=True
unless x >= y
, since we can't represent a negative in
log-space.
Returns | |
---|---|
logsubexp
|
Float Tensor of log(exp(max(x, y)) - exp(min(x, y))) .
|
sign
|
Float Tensor +/-1 indicating the sign of exp(x) - exp(y) .
|