4 references to Accuracy
Microsoft.ML.TensorFlow.Tests (1)
TensorflowTests.cs (1)
1757[InlineData(ImageClassificationTrainer.EarlyStoppingMetric.Accuracy)]
Microsoft.ML.Vision (3)
ImageClassificationTrainer.cs (3)
248public EarlyStopping(float minDelta = 0.01f, int patience = 20, EarlyStoppingMetric metric = EarlyStoppingMetric.Accuracy, bool checkIncreasing = true) 258if (metric == EarlyStoppingMetric.Accuracy) 277float currentMetricValue = _metric == EarlyStoppingMetric.Accuracy ? currentMetrics.Accuracy : currentMetrics.CrossEntropy;