BCELoss¶
- class paddle.nn. BCELoss ( weight=None, reduction='mean', name=None ) [source]
- 
         This interface is used to construct a callable object of the BCELossclass. The BCELoss layer measures the binary_cross_entropy loss between input predictionsinputand target labelslabel. The binary_cross_entropy loss can be described as:If weightis set, the loss is:\[Out = -1 * weight * (label * log(input) + (1 - label) * log(1 - input))\]If weightis None, the loss is:\[Out = -1 * (label * log(input) + (1 - label) * log(1 - input))\]If reductionset to'none', the interface will return the original loss Out.If reductionset to'mean', the reduced mean loss is:\[Out = MEAN(Out)\]If reductionset to'sum', the reduced sum loss is:\[Out = SUM(Out)\]Note that the input predictions inputalways be the output of sigmoid, and the target labelslabelshould be numbers between 0 and 1.- Parameters
- 
           - weight (Tensor, optional) – A manual rescaling weight given to the loss of each batch element. If given, has to be a Tensor of size nbatch and the data type is float32, float64. Default is - 'None'.
- reduction (str, optional) – Indicate how to average the loss by batch_size, the candicates are - 'none'|- 'mean'|- 'sum'. If- reductionis- 'none', the unreduced loss is returned; If- reductionis- 'mean', the reduced mean loss is returned; If- reductionis- 'sum', the summed loss is returned. Default is- 'mean'.
- name (str, optional) – Name for the operation (optional, default is None). For more information, please refer to Name. 
 
 - Shape:
- 
           - input (Tensor): 2-D tensor with shape: - [N, *], N is batch_size, * means number of additional dimensions. The input- inputshould always be the output of sigmod. Available dtype is float32, float64.
- label (Tensor): 2-D tensor with the same shape as - input. The target labels which values should be numbers between 0 and 1. Available dtype is float32, float64.
- output (Tensor): If - reductionis- 'none', the shape of output is same as- input, else the shape of output is scalar.
 
 - Returns
- 
           A callable object of BCELoss. 
 Examples import paddle input = paddle.to_tensor([0.5, 0.6, 0.7]) label = paddle.to_tensor([1.0, 0.0, 1.0]) bce_loss = paddle.nn.BCELoss() output = bce_loss(input, label) print(output) # Tensor(shape=[1], dtype=float32, place=Place(gpu:0), stop_gradient=True, # [0.65537101]) - 
            
           forward
           (
           input, 
           label
           )
           forward¶
- 
           Defines the computation performed at every call. Should be overridden by all subclasses. - Parameters
- 
             - *inputs (tuple) – unpacked tuple arguments 
- **kwargs (dict) – unpacked dict arguments 
 
 
 
