AugmentationConfig interface exported
Last updated: 2026-02-24T21:07:57.551Z
Location
Metrics
LOC: 8
Complexity: 1
Params: 0
Signature
interface AugmentationConfig
Source Code
export interface AugmentationConfig {
/** How many augmented samples to create per original sample */
multiplier: number;
/** Which augmentation strategies to apply */
strategies: Array<"shuffle" | "drop" | "typo">;
/** Drop rate for the "drop" strategy (default 0.2) */
dropRate?: number;
}
No outgoing dependencies.
No incoming dependencies.