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