ClassifierReport interface exported

Last updated: 2026-02-24T21:07:57.551Z

Metrics

LOC: 6 Complexity: 1 Params: 0

Signature

interface ClassifierReport

Summary

Aggregated classifier accuracy report with health check.

Source Code

export interface ClassifierReport {
  globalAccuracy: number;
  passesGlobalThreshold: boolean;
  failingTypes: string[];
  health: DatasetHealthReport;
}

No outgoing dependencies.

No incoming dependencies.