data augmentation
AI, ML & GenAI interview questions tagged data augmentation, across every topic.
2 questions · 0 unlocked for you
Concepts behind "data augmentation"
The curriculum that explains the ideas these questions test.
Core
Synthetic Data GenerationSynthetic data is training or eval data made by a model, a simulator, or a program instead of gathered from the real world, used to bootstrap labels, cover rare cases, and distill a larger model down into a smaller one. Whether it helps depends on quality, diversity, and keeping leakage out between your generator and your eval. AI, ML, and GenAI engineer interviews probe it because candidates grab it as a free fix and overlook the failure modes: distribution mismatch, eval contamination, and model collapse from training on a model's own outputs.📊 Evaluation & ML FoundationsSign in
Core
The Computer Vision PipelineA production CV system is a chain: ingest and version images, preprocess and augment, fine-tune a pretrained backbone, attach a task head, evaluate with sliced metrics, post-process, then serve and monitor. The invariant that divides working systems from broken ones is train/serve consistency: the exact resize, color space, and normalization have to match at training and inference. AI, ML, and GenAI engineer interviews probe this because most CV failures live at the preprocessing seam, not in the architecture.📊 Evaluation & ML FoundationsSign in
