Share via


IRegressionLoss Interface

Definition

public interface IRegressionLoss : Microsoft.ML.Trainers.ILossFunction<float,float>, Microsoft.ML.Trainers.IScalarLoss
type IRegressionLoss = interface
    interface IScalarLoss
    interface ILossFunction<single, single>
Public Interface IRegressionLoss
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