AggregateMetric
An aggregate statistic computed from a metric’s results across the evaluation dataset.
Declaration
struct AggregateMetricOverview
let accuracy = Metric("Accuracy")
let op = AggregationOperation.mean(of: accuracy)
print(op.label) // "Mean of Accuracy"The summary DataFrame stores one AggregateMetric for each column. Each value records the operation that produced it, and derives its display label and source metric name from the operation.