1 write to RootMeanSquaredError
Microsoft.ML.Transforms (1)
MetricStatistics.cs (1)
119RootMeanSquaredError = new MetricStatistics();
20 references to RootMeanSquaredError
Microsoft.ML.IntegrationTests (1)
Common.cs (1)
293AssertMetricStatistics(metrics.RootMeanSquaredError);
Microsoft.ML.Samples (4)
Dynamic\Trainers\Regression\PermutationFeatureImportance.cs (2)
55metrics.RootMeanSquaredError 66var rmse = permutationMetrics.Select(x => x.RootMeanSquaredError)
Dynamic\Trainers\Regression\PermutationFeatureImportanceLoadFromDisk.cs (2)
62metrics.RootMeanSquaredError 73var rmse = permutationMetrics.Select(x => x.RootMeanSquaredError)
Microsoft.ML.Tests (14)
PermutationFeatureImportanceTests.cs (13)
87Assert.Equal(3, MinDeltaIndex(pfi, m => m.RootMeanSquaredError.Mean)); 88Assert.Equal(1, MaxDeltaIndex(pfi, m => m.RootMeanSquaredError.Mean)); 161Assert.Equal(3, MinDeltaIndex(pfi, m => m.RootMeanSquaredError.Mean)); 162Assert.Equal(1, MaxDeltaIndex(pfi, m => m.RootMeanSquaredError.Mean)); 234Assert.Equal(3, MinDeltaIndex(pfi, m => m.RootMeanSquaredError.StandardDeviation)); 235Assert.Equal(1, MaxDeltaIndex(pfi, m => m.RootMeanSquaredError.StandardDeviation)); 247Assert.Equal(3, MinDeltaIndex(pfi, m => m.RootMeanSquaredError.StandardError)); 248Assert.Equal(1, MaxDeltaIndex(pfi, m => m.RootMeanSquaredError.StandardError)); 254Assert.Equal(pfi[0].RootMeanSquaredError.StandardError, pfi[0].RootMeanSquaredError.StandardDeviation / Math.Sqrt(pfi[0].RootMeanSquaredError.Count)); 322Assert.Equal(2, MinDeltaIndex(results, m => m.RootMeanSquaredError.Mean)); 323Assert.Equal(5, MaxDeltaIndex(results, m => m.RootMeanSquaredError.Mean));
Scenarios\Api\CookbookSamples\CookbookSamplesDynamicApi.cs (1)
363Console.WriteLine($"Feature {i}: Difference in RMS - {featureImportance[i].RootMeanSquaredError.Mean}");
Microsoft.ML.Transforms (1)
MetricStatistics.cs (1)
132RootMeanSquaredError.Add(metrics.RootMeanSquaredError);