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)
21
public double Mean =>
_statistic
.Mean;
26
public double StandardDeviation => (
_statistic
.RawCount <= 1) ? 0 :
_statistic
.SampleStdDev;
31
public double StandardError => (
_statistic
.RawCount <= 1) ? 0 :
_statistic
.StandardErrorMean;
37
public int Count => (int)
_statistic
.RawCount;
50
_statistic
.Add(metric);