5 references to Log
Microsoft.ML.Core (2)
Utilities\Stats.cs (2)
209
ret -= scale * MathUtils.
Log
(1 - 2 * u);
211
ret += scale * MathUtils.
Log
(1 + 2 * u);
Microsoft.ML.StandardTrainers (2)
FactorizationMachine\FactorizationMachineTrainer.cs (2)
347
return MathUtils.
Log
(1 + MathUtils.ExpSlow(-margin));
349
return -margin + MathUtils.
Log
(1 + MathUtils.ExpSlow(margin));
Microsoft.ML.TimeSeries (1)
SrCnnAnomalyDetectionBase.cs (1)
191
List<Single> magLogList = magList.Select(x => x != 0 ? MathUtils.
Log
(x) : 0).ToList();