BCEAfterSigmoidLoss

class BCEAfterSigmoidLoss(reduction='mean')[source]

Bases: PointwiseLoss

The numerically unstable version of explicit Sigmoid + BCE loss.

Note

The related torch module is torch.nn.BCELoss, but it can not be used interchangeably in PyKEEN because of the extended functionality implemented in PyKEEN’s loss functions.

Initialize the loss.

Parameters

reduction (str) – the reduction, cf. _Loss.__init__

Methods Summary

forward(logits, labels, **kwargs)

Defines the computation performed at every call.

Methods Documentation

forward(logits, labels, **kwargs)[source]

Defines the computation performed at every call.

Should be overridden by all subclasses.

Note

Although the recipe for forward pass needs to be defined within this function, one should call the Module instance afterwards instead of this since the former takes care of running the registered hooks while the latter silently ignores them.

Return type

FloatTensor

Parameters
  • logits (FloatTensor) –

  • labels (FloatTensor) –