torch.nn.functional.gaussian_nll_loss#
- torch.nn.functional.gaussian_nll_loss(input, target, var, full=False, eps=1e-06, reduction='mean')[source]#
Compute the Gaussian negative log likelihood loss.
See
GaussianNLLLoss
for details.- Parameters
input (Tensor) โ Expectation of the Gaussian distribution.
target (Tensor) โ Sample from the Gaussian distribution.
var (Union[Tensor, float]) โ Tensor of positive variance(s), one for each of the expectations in the input (heteroscedastic), or a single one (homoscedastic), or a positive scalar value to be used for all expectations.
full (bool, optional) โ Whether to include the constant term in the loss calculation. Default:
False
.eps (float, optional) โ Value added to var, for stability. Default: 1e-6.
reduction (str, optional) โ Specifies the reduction to apply to the output:
'none'
|'mean'
|'sum'
.'none'
: no reduction will be applied,'mean'
: the output is the average of all batch member losses,'sum'
: the output is the sum of all batch member losses. Default:'mean'
.
- Return type