DatasetHealthReport interface exported

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

Metrics

LOC: 11 Complexity: 1 Params: 0

Signature

interface DatasetHealthReport

Source Code

export interface DatasetHealthReport {
  totalSamples: number;
  typeCounts: Record<string, number>;
  /** Types with fewer than `minSamplesPerType` samples */
  underrepresentedTypes: string[];
  /** Types with zero samples (from known FieldType enum) */
  missingTypes: FieldType[];
  /** Whether train/val/test sets have overlapping signals */
  hasLeakage: boolean;
  leakedSignals: string[];
}

No outgoing dependencies.

Impact (Incoming)

graph LR DatasetHealthReport["DatasetHealthReport"] buildKeywordsFromDictionary["buildKeywordsFromDictionary"] buildKeywordsFromDictionary -->|uses| DatasetHealthReport style DatasetHealthReport fill:#dbeafe,stroke:#2563eb,stroke-width:2px click DatasetHealthReport "31043e5ebc950c0b.html" click buildKeywordsFromDictionary "dfb7d9bfef2aba38.html"
SourceType
buildKeywordsFromDictionary uses