[ torch 参数更多 ]torch.nn.BCELoss

torch.nn.BCELoss

torch.nn.BCELoss(weight=None,
                 size_average=None,
                 reduce=None,
                 reduction='mean')

paddle.nn.BCELoss

paddle.nn.BCELoss(weight=None,
                  reduction='mean',
                  name=None)

PyTorch 相比 Paddle 支持更多其他参数,具体如下:

参数映射

PyTorch PaddlePaddle 备注
weight weight 表示每个 batch 二值交叉熵的权重。
size_average - PyTorch 已弃用,paddle 需要转写。
reduce - PyTorch 已弃用,paddle 需要转写。
reduction reduction 表示应用于输出结果的计算方式。

转写示例

size_average/reduce:对应到 reduction 为 sum

# PyTorch 写法
torch.nn.BCELoss(weight=w, size_average=False, reduce=True)
torch.nn.BCELoss(weight=w, size_average=False)

# Paddle 写法
paddle.nn.BCELoss(weight=w, reduction='sum')

size_average/reduce:对应到 reduction 为 mean

# PyTorch 写法
torch.nn.BCELoss(weight=w, size_average=True, reduce=True)
torch.nn.BCELoss(weight=w, reduce=True)
torch.nn.BCELoss(weight=w, size_average=True)
torch.nn.BCELoss(weight=w)

# Paddle 写法
paddle.nn.BCELoss(weight=w, reduction='mean')

size_average/reduce:对应到 reduction 为 none

# PyTorch 写法
torch.nn.BCELoss(weight=w, size_average=True, reduce=False)
torch.nn.BCELoss(weight=w, size_average=False, reduce=False)
torch.nn.BCELoss(weight=w, reduce=False)

# Paddle 写法
paddle.nn.BCELoss(weight=w, reduction='none')