179 questions
No questions match those filters.
How do you adjudicate a request to swap an 8B model for a 30B model to improve quality while maintaining a 500ms p50 latency target?
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 plansWhen evaluating model swaps, one must distinguish between quality and latency. Latency in a decode-bound system is a function of bytes moved per token and the number of tokens emitted. A 30B model will move significantly more bytes per decode step than an 8B model, pushing latency further from the target. To improve quality without breaking the latency SLA, focus on optimizing the retrieval and reranking pipeline. If a larger model is strictly required, quantization can mitigate the latency impact, but the ultimate latency will still be constrained by output length and batching policy.