Questions: Overfitting, Underfitting, and Model Capacity

5 questions to test your understanding

Score: 0 / 5
Question 1 Multiple Choice

A neural network achieves 99% accuracy on training data but only 61% accuracy on the held-out validation set. Which condition does this describe, and what is the most appropriate remedy?

AUnderfitting; increase model depth or add more input features
BOverfitting; the model has memorized training noise — apply regularization, dropout, or gather more training data
CUnderfitting; the training set is too small to represent the problem
DOverfitting; reduce training time by stopping after fewer gradient steps regardless of validation trend
Question 2 Multiple Choice

While training a model, you plot training loss and validation loss over epochs. Training loss decreases steadily throughout; validation loss decreases for the first 30 epochs, then starts rising. What does this pattern indicate?

AUnderfitting — the model cannot learn the training data and is struggling
BIdeal convergence — both losses will eventually meet at a low value if training continues
CThe onset of overfitting — after epoch 30 the model begins memorizing noise, harming generalization
DA bug in validation loss calculation — valid loss cannot rise if training loss is still falling
Question 3 True / False

A model that achieves low training error and low validation error, with a small gap between them, has achieved well-matched capacity for the problem.

TTrue
FFalse
Question 4 True / False

A model with very high training error is almost certainly overfitting the training data.

TTrue
FFalse
Question 5 Short Answer

Why does achieving low training error fail as a sufficient criterion for evaluating a machine learning model?

Think about your answer, then reveal below.