10 references to StandardDeviation
Microsoft.ML.IntegrationTests (1)
Microsoft.ML.Tests (9)
PermutationFeatureImportanceTests.cs (9)
228Assert.Equal(3, MinDeltaIndex(pfi, m => m.MeanAbsoluteError.StandardDeviation));
229Assert.Equal(1, MaxDeltaIndex(pfi, m => m.MeanAbsoluteError.StandardDeviation));
231Assert.Equal(3, MinDeltaIndex(pfi, m => m.MeanSquaredError.StandardDeviation));
232Assert.Equal(1, MaxDeltaIndex(pfi, m => m.MeanSquaredError.StandardDeviation));
234Assert.Equal(3, MinDeltaIndex(pfi, m => m.RootMeanSquaredError.StandardDeviation));
235Assert.Equal(1, MaxDeltaIndex(pfi, m => m.RootMeanSquaredError.StandardDeviation));
237Assert.Equal(3, MinDeltaIndex(pfi, m => m.RSquared.StandardDeviation));
238Assert.Equal(1, MaxDeltaIndex(pfi, m => m.RSquared.StandardDeviation));
254Assert.Equal(pfi[0].RootMeanSquaredError.StandardError, pfi[0].RootMeanSquaredError.StandardDeviation / Math.Sqrt(pfi[0].RootMeanSquaredError.Count));