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)
| Source | Type |
|---|---|
| buildKeywordsFromDictionary | uses |