mindspore.mint.logaddexp
- mindspore.mint.logaddexp(input, other)[source]
Computes the logarithm of the sum of exponentiations of the inputs. This function is useful in statistics where the calculated probabilities of events may be so small as to exceed the range of normal floating point numbers.
\[out_i = \log(exp(input_i) + \exp(other_i))\]Warning
This is an experimental API that is subject to change or deletion.
- Parameters
- Returns
Tensor, with the same dtype as input and other.
- Raises
- Supported Platforms:
Ascend
Examples
>>> import numpy as np >>> from mindspore import Tensor, mint >>> x1 = Tensor(np.array([1, 2, 3]).astype(np.float16)) >>> x2 = Tensor(np.array(2).astype(np.float16)) >>> output = mint.logaddexp(x1, x2) >>> print(output) [2.312 2.693 3.312]