Base-2 Logarithm of 2**x + 2**y.
This function is useful in machine learning when the calculated probabilities of events may be so small as to excede the range of normal floating point numbers. In such cases the base-2 logarithm of the calculated probability can be used instead. This function allows adding probabilities stored in such a fashion.
Parameters: | x : array_like
y : array_like
|
---|---|
Returns: | result : ndarray
|
See also