We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff65570 commit 4f6b119Copy full SHA for 4f6b119
test/Microsoft.ML.AutoML.Tests/AutoFitTests.cs
@@ -143,6 +143,9 @@ public void AutoFitRegressionTest(string culture)
143
.Execute(trainData, validationData,
144
new ColumnInformation() { LabelColumnName = DatasetUtil.MlNetGeneratedRegressionLabel });
145
146
+ //MYTODO: Only adding this for debugging purposes on the CI:
147
+ System.Console.WriteLine($"culture:{culture} - Count: {result.RunDetails.Count()} - Null ValidationMetrics Count:{result.RunDetails.Where(rd => rd.ValidationMetrics == null).Count()}");
148
+
149
Assert.True(result.RunDetails.Max(i => i.ValidationMetrics.RSquared > 0.9));
150
151
Thread.CurrentThread.CurrentCulture = originalCulture;
0 commit comments