Skip to content

Commit

Permalink
debugging CI failure
Browse files Browse the repository at this point in the history
  • Loading branch information
antoniovs1029 committed Oct 29, 2020
1 parent ff65570 commit 4f6b119
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/Microsoft.ML.AutoML.Tests/AutoFitTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,9 @@ public void AutoFitRegressionTest(string culture)
.Execute(trainData, validationData,
new ColumnInformation() { LabelColumnName = DatasetUtil.MlNetGeneratedRegressionLabel });

//MYTODO: Only adding this for debugging purposes on the CI:
System.Console.WriteLine($"culture:{culture} - Count: {result.RunDetails.Count()} - Null ValidationMetrics Count:{result.RunDetails.Where(rd => rd.ValidationMetrics == null).Count()}");

Assert.True(result.RunDetails.Max(i => i.ValidationMetrics.RSquared > 0.9));

Thread.CurrentThread.CurrentCulture = originalCulture;
Expand Down

0 comments on commit 4f6b119

Please sign in to comment.