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