1 write to _useSampleVariance
Microsoft.ML.Data (1)
Transforms\NormalizeColumnSng.cs (1)
1906_useSampleVariance = useSampleVariance;
3 references to _useSampleVariance
Microsoft.ML.Data (3)
Transforms\NormalizeColumnSng.cs (3)
1962var stdDev = _useSampleVariance ? _aggregator.StdDevSample[i] : _aggregator.StdDevPopulation[i]; 1963var variance = _useSampleVariance ? _aggregator.SampleVariance[i] : _aggregator.MeanSquareError[i]; 2008stddev[i] = (TFloat)(_useSampleVariance ? _aggregator.StdDevSample[i] : _aggregator.StdDevPopulation[i]);