Skip to content

Latest commit

 

History

History
82 lines (52 loc) · 2.48 KB

BinaryFocalLossLayer.md

File metadata and controls

82 lines (52 loc) · 2.48 KB

CBinaryFocalLossLayer Class

This class implements a layer that calculates a focal loss function for binary classification.

The focal loss function is a modified version of cross-entropy loss function in which the objects that are easily distinguished receive smaller penalties. This helps focus on learning the difference between similar-looking elements of different classes.

The function is calculated according to the formula:

loss = -pow(sigmoid(-y*x), focalForce) * log(1 + e^(-y*x))

where:

  • x is the network response.
  • y is the correct class label (can be 1 or -1).

Settings

Focal force

void SetFocalForce( float value );

Sets the focal force, that is, the degree to which learning will concentrate on similar objects. The greater the number, the more focused the learning will become.

This value should be greater than 0. The default is 2.

Loss weight

void SetLossWeight( float lossWeight );

Sets the multiplier for this function gradient during training. The default value is 1. You may wish to change the default if you are using several loss functions in your network.

Gradient clipping

void SetMaxGradientValue( float maxValue );

Sets the upper limit for the absolute value of the function gradient. Whenever the gradient exceeds this limit its absolute value will be reduced to GetMaxGradientValue().

Trainable parameters

This layer has no trainable parameters.

Inputs

The layer may have 2 to 3 inputs:

  1. The network output for which you are calculating the loss function. Height, Width, Depth, and Channels dimensions of this blob should be equal to 1.
  2. A blob of the same size as the first input, containing the class labels (may be -1 or 1).
  3. [Optional] The objects' weights. This blob should have the same dimensions as the first input.

Outputs

This layer has no output.

Getting the value of the loss function

float GetLastLoss() const;

Use this method to get the value of the loss function calculated on the network's last run.