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