class torch.nn.BCELoss(weight: Optional[torch.Tensor] = None, size_average=None, reduce=None, reduction: str = 'mean')
[source]
Creates a criterion that measures the Binary Cross Entropy between the target and the output:
The unreduced (i.e. with reduction
set to 'none'
) loss can be described as:
where is the batch size. If reduction
is not 'none'
(default 'mean'
), then
This is used for measuring the error of a reconstruction in for example an auto-encoder. Note that the targets should be numbers between 0 and 1.
Notice that if is either 0 or 1, one of the log terms would be mathematically undefined in the above loss equation. PyTorch chooses to set , since . However, an infinite term in the loss equation is not desirable for several reasons.
For one, if either or , then we would be multiplying 0 with infinity. Secondly, if we have an infinite loss value, then we would also have an infinite term in our gradient, since . This would make BCELoss’s backward method nonlinear with respect to , and using it for things like linear regression would not be straight-forward.
Our solution is that BCELoss clamps its log function outputs to be greater than or equal to -100. This way, we can always have a finite loss value and a linear backward method.
nbatch
.reduction
). By default, the losses are averaged over each loss element in the batch. Note that for some losses, there are multiple elements per sample. If the field size_average
is set to False
, the losses are instead summed for each minibatch. Ignored when reduce is False
. Default: True
reduction
). By default, the losses are averaged or summed over observations for each minibatch depending on size_average
. When reduce
is False
, returns a loss per batch element instead and ignores size_average
. Default: True
'none'
| 'mean'
| 'sum'
. 'none'
: no reduction will be applied, 'mean'
: the sum of the output will be divided by the number of elements in the output, 'sum'
: the output will be summed. Note: size_average
and reduce
are in the process of being deprecated, and in the meantime, specifying either of those two args will override reduction
. Default: 'mean'
reduction
is 'none'
, then , same shape as input.Examples:
>>> m = nn.Sigmoid() >>> loss = nn.BCELoss() >>> input = torch.randn(3, requires_grad=True) >>> target = torch.empty(3).random_(2) >>> output = loss(m(input), target) >>> output.backward()
© 2019 Torch Contributors
Licensed under the 3-clause BSD License.
https://pytorch.org/docs/1.7.0/generated/torch.nn.BCELoss.html