Enum BenchmarkMetric
Defines standardized metrics used in benchmark reports.
public enum BenchmarkMetric
Fields
Accuracy = 0Proportion of correct answers (0.0 to 1.0).
AverageConfidence = 1Average confidence value (0.0 to 1.0) when available.
AverageTimePerItemMilliseconds = 5Average time per item in milliseconds.
CorrectCount = 3Number of correct items.
MeanSquaredError = 6Mean squared error (regression-style error metric).
RootMeanSquaredError = 7Root mean squared error (regression-style error metric).
TotalDurationMilliseconds = 4Total duration in milliseconds.
TotalEvaluated = 2Total number of items evaluated.
Remarks
For Beginners: Benchmarks produce scores and measurements. This enum provides a type-safe, standardized vocabulary for common metrics so we avoid "stringly-typed" metric keys.