7 implementations of Derivative
Microsoft.ML.Data (7)
Utils\LossFunctions.cs (7)
139
public float
Derivative
(float output, float label)
246
public float
Derivative
(float output, float label)
362
public float
Derivative
(float output, float label)
453
public float
Derivative
(float output, float label)
495
public float
Derivative
(float output, float label)
550
public float
Derivative
(float output, float label)
644
public float
Derivative
(float output, float label)
3 references to Derivative
Microsoft.ML.Core.Tests (1)
UnitTests\TestLoss.cs (1)
41
float derivative = lossFunc.
Derivative
((float)output, (float)label);
Microsoft.ML.StandardTrainers (2)
Standard\Online\AveragedLinear.cs (1)
248
float biasUpdate = -rate * _loss.
Derivative
(output, label);
Standard\SdcaBinary.cs (1)
2125
float derivative = cursor.Weight * lossFunc.
Derivative
(WScaledDot(in features, weightScaling, in weights, bias), label); // complexity: O(k)