A model validation team is reviewing an AI scoring model and finds that the model developer used the full dataset to select features before splitting into training and test sets. What is the primary problem with this approach?
Select an answer to reveal the explanation.
Short Explanation and Infographic
Here's the deal — b is correct because using the full dataset (including the test set) to select features means the test set has indirectly influenced model design. This is data leakage: the test set is no longer truly held-out, and the resulting performance metrics are optimistically biased.
Full explanation below image
Full Explanation
B is correct because using the full dataset (including the test set) to select features means the test set has indirectly influenced model design. This is data leakage: the test set is no longer truly held-out, and the resulting performance metrics are optimistically biased. The model will likely underperform in production compared to the inflated validation metrics. Too many features (A) is an unrelated concern. Violating intended use documentation (C) is not what is described. Retraining difficulty (D) is a process concern, not the validation integrity issue.