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 03b05df commit 92ca11dCopy full SHA for 92ca11d
test/Microsoft.ML.Tests/ScenariosWithDirectInstantiation/TensorflowTests.cs
@@ -901,8 +901,8 @@ public void TensorFlowTransformMNISTConvSavedModelTest()
901
var metrics = _mlContext.MulticlassClassification.Evaluate(predicted);
902
903
// First group of checks
904
- Assert.Equal(0.99, metrics.MicroAccuracy, 2);
905
- Assert.Equal(1.0, metrics.MacroAccuracy, 2);
+ Assert.Equal(0.99, metrics.MicroAccuracy, .01);
+ Assert.Equal(.93, metrics.MacroAccuracy, 2);
906
907
// An in-memory example. Its label is predicted below.
908
var oneSample = GetOneMNISTExample();
0 commit comments