/** * Held-out test data for BitNet classifier evaluation * * These resources are intentionally NOT in training-data.ts * Used to measure true generalization, not memorization */ import type { VerificationCategory } from './categories.js'; export interface TestExample { resourceType: string; category: VerificationCategory; notes?: string; } export declare const HELD_OUT_TEST_DATA: TestExample[]; /** * Get test data distribution */ export declare function getTestDistribution(): Record; //# sourceMappingURL=test-data.d.ts.map