13 references to ExpSlow
Microsoft.ML.Core (2)
Utilities\MathUtils.cs (2)
511return 1 / (1 + ExpSlow(-x)); 514var ex = ExpSlow(x);
Microsoft.ML.Data (2)
Utils\LossFunctions.cs (2)
450return MathUtils.ExpSlow(-_beta * truth * output); 457return factor * MathUtils.ExpSlow(factor * output);
Microsoft.ML.FastTree (1)
FastTreeTweedie.cs (1)
558dst = MathUtils.ExpSlow(dst);
Microsoft.ML.StandardTrainers (7)
FactorizationMachine\FactorizationMachineTrainer.cs (2)
347return MathUtils.Log(1 + MathUtils.ExpSlow(-margin)); 349return -margin + MathUtils.Log(1 + MathUtils.ExpSlow(margin));
Standard\LinearModelParameters.cs (1)
756return MathUtils.ExpSlow(base.Score(in src));
Standard\LogisticRegression\LogisticRegression.cs (1)
202float modelProb1 = MathUtils.ExpSlow(s - logZ);
Standard\LogisticRegression\MulticlassLogisticRegression.cs (2)
267float modelProb = MathUtils.ExpSlow(scores[c] - logZ); 1247dst[i] = MathUtils.ExpSlow(dst[i] - softmax);
Standard\PoissonRegression\PoissonRegression.cs (1)
172float lambda = MathUtils.ExpSlow(dot);
Microsoft.ML.TimeSeries (1)
SrCnnAnomalyDetectionBase.cs (1)
196spectralList.Add(MathUtils.ExpSlow(magLogList[i] - filteredLogList[i]));