2 writes to RootMeanSquaredError
Microsoft.ML.Data (2)
Evaluators\Metrics\RegressionMetrics.cs (2)
74RootMeanSquaredError = Fetch(RegressionEvaluator.Rms); 84RootMeanSquaredError = rms;
44 references to RootMeanSquaredError
Microsoft.ML.AutoML (5)
API\RegressionExperiment.cs (2)
65/// See <see cref="RegressionMetrics.RootMeanSquaredError"/>. 473RegressionMetric.RootMeanSquaredError => metrics.RootMeanSquaredError,
AutoMLExperiment\IMetricManager.cs (1)
135RegressionMetric.RootMeanSquaredError => metric.RootMeanSquaredError,
Experiment\MetricsAgents\RegressionMetricsAgent.cs (1)
34return metrics.RootMeanSquaredError;
Experiment\Runners\CrossValSummaryRunner.cs (1)
140rms: GetAverageOfNonNaNScores(newMetrics.Select(x => x.RootMeanSquaredError)),
Microsoft.ML.AutoML.Samples (2)
AutoFit\RecommendationExperiment.cs (1)
88Console.WriteLine($"RootMeanSquaredError: {metrics.RootMeanSquaredError}");
AutoFit\RegressionExperiment.cs (1)
72Console.WriteLine($"RootMeanSquaredError: {metrics.RootMeanSquaredError}");
Microsoft.ML.Fairlearn (2)
Metrics\FairlearnMetricCatalog.cs (2)
236result["RMS"] = DataFrameColumn.Create("RMS", groupMetric.Keys.Select(k => groupMetric[k].RootMeanSquaredError)); 262{ "RMS", metrics.RootMeanSquaredError },
Microsoft.ML.IntegrationTests (1)
Common.cs (1)
271Assert.True(metrics.RootMeanSquaredError >= 0);
Microsoft.ML.Predictor.Tests (1)
TestIniModels.cs (1)
550Assert.Equal(0.16033550560926635, results.RootMeanSquaredError);
Microsoft.ML.Samples (24)
Dynamic\Trainers\Recommendation\MatrixFactorization.cs (1)
130metrics.RootMeanSquaredError);
Dynamic\Trainers\Recommendation\MatrixFactorizationWithOptions.cs (1)
154metrics.RootMeanSquaredError);
Dynamic\Trainers\Regression\FastForest.cs (1)
113"Root Mean Squared Error: " + metrics.RootMeanSquaredError);
Dynamic\Trainers\Regression\FastForestWithOptions.cs (1)
126"Root Mean Squared Error: " + metrics.RootMeanSquaredError);
Dynamic\Trainers\Regression\FastTree.cs (1)
113"Root Mean Squared Error: " + metrics.RootMeanSquaredError);
Dynamic\Trainers\Regression\FastTreeTweedie.cs (1)
113"Root Mean Squared Error: " + metrics.RootMeanSquaredError);
Dynamic\Trainers\Regression\FastTreeTweedieWithOptions.cs (1)
128"Root Mean Squared Error: " + metrics.RootMeanSquaredError);
Dynamic\Trainers\Regression\FastTreeWithOptions.cs (1)
129"Root Mean Squared Error: " + metrics.RootMeanSquaredError);
Dynamic\Trainers\Regression\Gam.cs (1)
113"Root Mean Squared Error: " + metrics.RootMeanSquaredError);
Dynamic\Trainers\Regression\GamWithOptions.cs (1)
124"Root Mean Squared Error: " + metrics.RootMeanSquaredError);
Dynamic\Trainers\Regression\LbfgsPoissonRegression.cs (1)
111"Root Mean Squared Error: " + metrics.RootMeanSquaredError);
Dynamic\Trainers\Regression\LbfgsPoissonRegressionWithOptions.cs (1)
125"Root Mean Squared Error: " + metrics.RootMeanSquaredError);
Dynamic\Trainers\Regression\LightGbm.cs (1)
114"Root Mean Squared Error: " + metrics.RootMeanSquaredError);
Dynamic\Trainers\Regression\LightGbmAdvanced.cs (1)
80"Root Mean Squared Error: " + metrics.RootMeanSquaredError);
Dynamic\Trainers\Regression\LightGbmWithOptions.cs (1)
133"Root Mean Squared Error: " + metrics.RootMeanSquaredError);
Dynamic\Trainers\Regression\LightGbmWithOptionsAdvanced.cs (1)
89"Root Mean Squared Error: " + metrics.RootMeanSquaredError);
Dynamic\Trainers\Regression\OnlineGradientDescent.cs (1)
102"Root Mean Squared Error: " + metrics.RootMeanSquaredError);
Dynamic\Trainers\Regression\OnlineGradientDescentWithOptions.cs (1)
118"Root Mean Squared Error: " + metrics.RootMeanSquaredError);
Dynamic\Trainers\Regression\OrdinaryLeastSquares.cs (1)
110"Root Mean Squared Error: " + metrics.RootMeanSquaredError);
Dynamic\Trainers\Regression\OrdinaryLeastSquaresAdvanced.cs (1)
81"Root Mean Squared Error: " + metrics.RootMeanSquaredError);
Dynamic\Trainers\Regression\OrdinaryLeastSquaresWithOptions.cs (1)
122"Root Mean Squared Error: " + metrics.RootMeanSquaredError);
Dynamic\Trainers\Regression\OrdinaryLeastSquaresWithOptionsAdvanced.cs (1)
85"Root Mean Squared Error: " + metrics.RootMeanSquaredError);
Dynamic\Trainers\Regression\Sdca.cs (1)
110"Root Mean Squared Error: " + metrics.RootMeanSquaredError);
Dynamic\Trainers\Regression\SdcaWithOptions.cs (1)
126"Root Mean Squared Error: " + metrics.RootMeanSquaredError);
Microsoft.ML.Samples.OneDal (4)
Program.cs (4)
121metrics[0] = trainingMetrics.RootMeanSquaredError; 122metrics[1] = testingMetrics.RootMeanSquaredError; 149metrics[0] = trainingMetrics.RootMeanSquaredError; 150metrics[1] = testingMetrics.RootMeanSquaredError;
Microsoft.ML.Tests (1)
Scenarios\RegressionTest.cs (1)
47Assert.True(metrics.RootMeanSquaredError > 2);
Microsoft.ML.Transforms (4)
MetricStatistics.cs (2)
101/// Summary statistics for <see cref="RegressionMetrics.RootMeanSquaredError"/>. 132RootMeanSquaredError.Add(metrics.RootMeanSquaredError);
PermutationFeatureImportanceExtensions.cs (2)
167rms: a.RootMeanSquaredError - b.RootMeanSquaredError,