Zubnet AIसीखेंWiki › Data Augmentation
Training

Data Augmentation

Existing examples के modified versions create करके एक training dataset को artificially expand करने की techniques। Images के लिए: flipping, rotating, cropping, color shifting। Text के लिए: paraphrasing, back-translation, synonym substitution। Audio के लिए: speed changes, noise injection। Goal है model को invariances सिखाना — एक cat एक cat है चाहे image flip हो, dark हो, या crop हो।

यह क्यों matter करता है

Data augmentation limited data होने पर model performance improve करने का सबसे cheapest way है। ये model को हर example के कई variations दिखाकर overfitting reduce करती है, उसे superficial details के बजाय essential features पर focus करना सिखाते हुए। Computer vision में, augmentation routinely 2–5% accuracy improvements free में provide करती है।

Deep Dive

The key principle: augmentations must preserve the label. Flipping a cat image horizontally still shows a cat (valid augmentation). Flipping a "turn left" sign makes it a "turn right" sign (invalid augmentation). Choosing appropriate augmentations requires understanding what invariances matter for your task.

Modern Augmentation

AutoAugment and its successors (RandAugment, TrivialAugment) learn or randomize augmentation policies instead of hand-designing them. Cutout/CutMix randomly masks or mixes patches from different images. MixUp interpolates between pairs of examples, creating synthetic training points that smooth decision boundaries. These techniques are now standard in vision training pipelines.

AI-Powered Augmentation

With generative models, augmentation goes beyond geometric transforms. You can use LLMs to paraphrase text training data, use diffusion models to generate variant images, or use models to create entirely new training examples (synthetic data). The line between "augmentation" (modifying existing examples) and "synthetic data" (generating new examples) is blurring, and both are becoming essential parts of modern training pipelines.

संबंधित अवधारणाएँ

← सभी Terms
← Cursor Data Centers →