leakage
Applied AI interview questions tagged leakage, across every topic.
6 questions · 1 unlocked for you
Concepts behind "leakage"
The curriculum that explains the ideas these questions test.
Foundational
Cross-Validation (Done Right)Cross-validation estimates how a model generalizes by training and testing on rotating folds, giving a more reliable estimate than a single split. The traps are what make it an interview topic: use stratified folds for imbalanced classes, grouped folds when records share an entity, and time-ordered splits for temporal data (never random), and fit all preprocessing inside each fold to avoid leakage. Applied-AI interviews probe it because the wrong scheme produces optimistic estimates that fall apart in production.📊 Evaluation & ML Foundations
Core
Handling Missing and Corrupted DataMissing data has three mechanisms (MCAR, MAR, MNAR) and the mechanism decides whether dropping rows is safe or biased and which imputation is valid. Beyond filling values, missingness itself is often a feature, and naive imputation is a classic source of leakage. Applied AI interviews probe it because how you handle gaps quietly determines whether your model is biased before training even starts.📊 Evaluation & ML FoundationsSign in
