IClassificationLoss Interface

Definition

public interface IClassificationLoss : Microsoft.ML.Trainers.ILossFunction<float,float>, Microsoft.ML.Trainers.IScalarLoss
type IClassificationLoss = interface
    interface IScalarLoss
    interface ILossFunction<single, single>
Public Interface IClassificationLoss
Implements ILossFunction(Of Single, Single), IScalarLoss
Derived
Implements

Methods

Derivative(Single, Single)

Derivative of the loss function with respect to output

(Inherited from IScalarLoss)
Loss(TOutput, TLabel)

Computes the loss given the output and the ground truth. Note that the return value has type Double because the loss is usually accumulated over many instances.

(Inherited from ILossFunction<TOutput,TLabel>)

Applies to