NCA-AIIO · Question #52
Which situation MOST strongly indicates data leakage?
The correct answer is B. Using test data statistics during normalization. Data leakage occurs when information from outside the training set illegitimately influences model training, causing overly optimistic performance estimates. Using test set statistics (e.g., mean and standard deviation) to normalize the entire dataset - including training data…
Question
Which situation MOST strongly indicates data leakage?
Options
- AHigh training accuracy
- BUsing test data statistics during normalization
- CLarge model size
- DSmall batch size
How the community answered
(23 responses)- A4% (1)
- B91% (21)
- D4% (1)
Explanation
Data leakage occurs when information from outside the training set illegitimately influences model training, causing overly optimistic performance estimates. Using test set statistics (e.g., mean and standard deviation) to normalize the entire dataset - including training data - leaks future/holdout information into training. In practice, normalization parameters must be computed only on the training set and then applied to validation and test sets. Option A (high training accuracy) is a symptom of overfitting but not necessarily leakage. Options C and D (large model size, small batch size) are architectural or optimization choices unrelated to data leakage.
Topics
Community Discussion
No community discussion yet for this question.