Skip to content
Preptima

Deep Learning Foundations interview questions

Backpropagation, optimisers and learning-rate behaviour, normalisation and regularisation, attention and transformers, and when a neural net is not the answer.

3 questions in Machine Learning.

medium3

mediumConceptScenario

How do you choose an optimiser and a learning-rate schedule?

Start with AdamW because it needs less tuning, and consider SGD with momentum where you have the budget to tune it and want its generalisation behaviour. The schedule matters more than the choice: a short warmup, then decay, and read the loss curve to tell a rate that is too high from a model that has stopped learning.

5 minmid, senior, staff
mediumConceptDesign

When is a neural network the wrong choice?

On small and medium tabular data, where gradient-boosted trees usually match it for a fraction of the effort; where a decision must be explained exactly rather than approximately; and where a tight CPU latency or memory budget makes it unservable. The simpler model then wins on every axis that matters.

5 minmid, senior, staff, lead