AI Interview Questions and Answers
AI interview questions for engineering roles (not pure research roles) usually focus on practical understanding -- how a model is trained, what can go wrong, and how modern LLM-based tools actually work.
Example: Overfitting shown numerically
A model trained on 1,000 house-price examples reaches 99% accuracy predicting prices on those same 1,000 examples, but only 62% accuracy on 200 new houses it's never seen. That gap is overfitting -- the model memorized quirks of the training data rather than learning patterns that generalize. The fix isn't training longer; it's usually more (or more varied) training data, regularization, or a simpler model.