1 write to _statistic
Microsoft.ML.Transforms (1)
MetricStatistics.cs (1)
41_statistic = new SummaryStatistics();
7 references to _statistic
Microsoft.ML.Transforms (7)
MetricStatistics.cs (7)
21public double Mean => _statistic.Mean; 26public double StandardDeviation => (_statistic.RawCount <= 1) ? 0 : _statistic.SampleStdDev; 31public double StandardError => (_statistic.RawCount <= 1) ? 0 : _statistic.StandardErrorMean; 37public int Count => (int)_statistic.RawCount; 50_statistic.Add(metric);