21
What would you do if a training run performed much worse than the baseline?
Tap to write answer
0 words | 0 charsPress Enter ↵ to reveal
Your Attempt
0 wordsRefined Model Answer
ReferenceI would check whether the data, preprocessing, hyperparameters, or environment changed from the baseline. Then I would compare the failed run against a known good run and look for differences in seeds, shuffling, optimizer settings, or input handling. The reason I choose this approach is that most regressions come from a small number of change points. I would also verify the evaluation script, because sometimes the model is fine and the metric is wrong. If needed, I would explain how I would make the experiment more reproducible.