Question 1
A team trains a model to predict energy consumption from a rich set of sensor readings that are known to interact in complex, non-linear ways. They start with a small, heavily regularized linear model. At evaluation, the model scores 0.63 on the training data and 0.61 on the validation data — the two scores are close, but both fall far short of the business target. Which diagnosis and remedy best fit this result?
A. The model is overfitting, because the training score and the validation score are nearly identical; the team should add stronger regularization and reduce the number of input features.
Reverses the symptoms of overfitting. Overfitting shows up as a large gap — high training performance with markedly lower validation performance — not as two poor, similar scores, and adding regularization to an already-too-simple model pushes performance further down.
B. The model exhibits fairness bias against an under-represented group of sensors, which is what the term 'high bias' means; the team should rebalance the dataset so every sensor is equally represented.
Conflates statistical bias in the bias–variance sense with fairness bias. High bias here means the model's functional form is too rigid to capture the underlying relationship; it is a modeling-capacity problem, not an unfair skew against a group, and rebalancing would not fix it.
C. Because the training and validation scores agree so closely, the model is generalizing correctly and is as good as this problem allows; the team should deploy it and rely on post-deployment monitoring to improve it.
Mistakes a small train–validation gap for adequacy. Consistency only shows the model performs the same on seen and unseen data; it says nothing about whether that shared level of performance is acceptable, and monitoring detects drift rather than raising a model's baseline capability.
D. The model is underfitting — it has high bias and is too simple to capture the non-linear relationships in the data; the team should increase model capacity, engineer more expressive features, or relax the regularization, then re-evaluate.Correct answer
Correct: poor performance on both the training and validation sets is the signature of underfitting (high bias), where the chosen hypothesis is too constrained for the underlying pattern. The remedy is more capacity, richer features, or less regularization, verified by re-running evaluation (AWS — What is Artificial Intelligence?, machine learning model training concepts).
Explanation
Underfitting and overfitting are distinguished by which scores are poor, not merely by the size of the gap between them. When a model performs badly on the data it was fitted to and equally badly on held-out data, it never captured the pattern in the first place — the classic high-bias case, expected when a heavily regularized linear form is applied to non-linear interactions; the fix is greater capacity, more expressive features, or weaker regularization. Overfitting is the opposite signature (strong training performance, weak validation performance), so adding regularization here would worsen the problem, and a small train–validation gap alone is no evidence that the achieved level of performance is good enough. Statistical bias in this sense also must not be read as fairness bias, which concerns unfair skew against a group rather than insufficient model capacity.