logsumexp¶
- paddle. logsumexp ( x, axis=None, keepdim=False, name=None ) [source]
-
This OP calculates the log of the sum of exponentials of
xalongaxis.\[\begin{split}logsumexp(x) = \\log\\sum exp(x)\end{split}\]- Parameters
-
x (Tensor) – The input Tensor with data type float32, float64.
axis (int|list|tuple, optional) – The axis along which to perform logsumexp calculations.
axisshould be int, list(int) or tuple(int). Ifaxisis a list/tuple of dimension(s), logsumexp is calculated along all element(s) ofaxis.axisor element(s) ofaxisshould be in range [-D, D), where D is the dimensions ofx. Ifaxisor element(s) ofaxisis less than 0, it works the same way as \(axis + D\) . Ifaxisis None, logsumexp is calculated along all elements ofx. Default is None.keepdim (bool, optional) – Whether to reserve the reduced dimension(s) in the output Tensor. If
keep_dimis True, the dimensions of the output Tensor is the same asxexcept in the reduced dimensions(it is of size 1 in this case). Otherwise, the shape of the output Tensor is squeezed inaxis. Default is False.name (str, optional) – Name for the operation (optional, default is None). For more information, please refer to Name.
- Returns
-
Tensor, results of logsumexp along
axisofx, with the same data type asx.
Examples:
import paddle x = paddle.to_tensor([[-1.5, 0., 2.], [3., 1.2, -2.4]]) out1 = paddle.logsumexp(x) # [3.4691226] out2 = paddle.logsumexp(x, 1) # [2.15317821, 3.15684602]
