Diagnosing Multiple Error Sources in a Voice Transcription Model
Case context: A product team is training a speech-to-text model using simulated studio recordings. After testing, they observe three patterns: the training error is much worse than human performance, the training-dev error is noticeably worse than the training error, and the error on a held-out set of genuine customer calls is even worse than the training-dev error.
Question: Using these results, determine which of the three main error categories are present in the model: avoidable bias, variance, and data mismatch. Explain how each metric gap supports your conclusion.
Sample answer: This model shows all three problems: avoidable bias, variance, and data mismatch. The training error being far above human-level performance indicates avoidable bias, because the model is not fitting the training task well enough. The jump from training error to training-dev error indicates variance, since performance drops on data drawn from the same general distribution. The further increase from training-dev error to the customer-call test error indicates data mismatch, because the evaluation data differ from the simulated training data.
Key points:
- High avoidable bias is shown by the gap between human-level error and training error.
- High variance is shown by the gap between training error and training-dev error.
- Data mismatch is shown by the gap between training-dev error and the held-out real-data error.
- The correct diagnosis is that all three error sources are present at the same time.
Rubric: The response must identify avoidable bias, variance, and data mismatch as all present, and it must tie each one to the relevant performance gap in the scenario.
0
1
Tags
Machine Learning
Deep Learning
Supervised Learning
Dive into Deep Learning @ D2L
Data Science
Machine Learning Strategy
Machine Learning Yearning @ DeepLearning.AI
Related
High Bias and Data Mismatch with a Small Training Gap
How can a single learning algorithm show avoidable bias, variance, and data mismatch at the same time?
True or False: A learning system can have both high avoidable bias and a data mismatch problem even if its variance is not high.
An algorithm can have any _____ of high avoidable bias, high variance, and data mismatch.
How can underfitting, overfitting, and distribution shift appear in the same model?
High Variance and Domain Mismatch Can Occur Together Without High Bias
A model may contain any _____ of three common error sources.
Match each error source to the comparison that best exposes it.
Order the checks used to diagnose bias, variance, and distribution shift.
A model has about the same error as expert performance on the training set, its training-dev error is nearly identical to its training error, and its dev-set error is much worse. What issue is most likely present?
If a classifier has high avoidable bias, it must also have high variance and a data mismatch problem.
A Large Training-Dev Gap Indicates Data Mismatch
Connect each error pattern to the combination of issues it signals.
Plan the Next Fix When Three Error Sources Are Present
Why Multiple Error Sources Can Appear at the Same Time
Diagnosing Multiple Error Sources in a Voice Transcription Model
Can Different Error Problems Appear Separately?