Explain why distribution mismatch undermines a random 70/30 split.
Question: In a concise essay, explain why a random 70%/30% split into training and test sets can fail when the training distribution differs from the distribution the system ultimately needs to perform well on.
Sample answer: A random split only preserves the characteristics of whatever data was collected. If that data (e.g., website images) does not represent the target use case (e.g., mobile phone images), then even a perfectly executed random split will produce a test set that reflects the wrong distribution. As a result, performance on the test set won't accurately predict performance on the real target distribution, undermining the split's usefulness for evaluation.
Key points:
- Random split preserves the distribution of available data
- Available data distribution may differ from target-use distribution
- Example: website images vs. mobile phone images
- Test set becomes unrepresentative of the real target use case
- This undermines the split's value for evaluating real-world performance
Rubric: Full credit requires explaining that a random split preserves the source data's distribution, noting the mismatch example (website vs. mobile images), and explaining the consequence for test set validity.
0
1
Tags
Machine Learning
Deep Learning
Machine Learning Strategy
Supervised Learning
Dive into Deep Learning @ D2L
Data Science
Machine Learning Yearning @ DeepLearning.AI
Related
Why can a random 70/30 train/test split be a bad idea in modern applications?
True or False: A random 70/30 split guarantees the test set matches the target distribution.
Before the modern era of big data, a common rule was to use a random _____ split for train/test sets.
Match each data scenario to whether a random 70/30 split is appropriate.
Order the reasoning steps for evaluating a random 70/30 split's suitability.
Explain why distribution mismatch undermines a random 70/30 split.
Diagnose a mobile app team's train/test split decision.
When does the random 70/30 split practice fail, according to the source?
Which example illustrates the risk of a random 70/30 split?
True or False: The 70/30 split was historically common before the era of big data.