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