179 questions
No questions match those filters.
What did the Chinchilla paper actually change about how people train LLMs, and why do production teams still often deviate from its recommendation?
This is one of the questions in the full AI/ML interview bank. Pro unlocks all 1789 questions; Premium includes the same bank plus the highest daily Practice limit.
See plansBefore Chinchilla, the field had been scaling parameter count faster than training data, on the assumption that was the compute-optimal trade-off. Chinchilla showed that was wrong empirically: for a fixed training compute budget, loss is minimized when model size and training token count scale together at roughly the same rate, not with parameters dominating — meaning many earlier large models were significantly undertrained relative to their size, and a smaller model trained on more data would have reached lower loss for the same compute.
The reason production teams often deliberately train past the Chinchilla-optimal point anyway comes down to which cost you’re optimizing. Chinchilla-optimal minimizes training compute for a given loss target. But inference cost scales with parameter count and gets paid on every single request, forever, while training compute is a one-time cost. If a model will serve billions of requests, it’s often cheaper overall to train a smaller model for longer than compute-optimal would suggest — trading a larger one-time training bill for a much smaller model to actually serve.