179 questions
No questions match those filters.
Design an AI system for a client with a strict overnight processing window.
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 plansWork backwards from the SLA, not forwards from the model. Start with total volume, the pass-through rate expected at each pipeline stage, the throughput each stage needs to sustain to clear that volume inside the window, and enough headroom built in for a bad day — a volume spike or a slow provider response shouldn’t blow through the deadline.
From there, design the cheapest path that reliably clears the volume in time, which in almost every case means tiered routing rather than one model handling everything: cheap deterministic stages for the bulk of volume, an expensive model reserved for the fraction that genuinely needs it.
The part worth designing explicitly, not as an afterthought: the degradation path. If the expensive tier becomes unavailable partway through the window, what happens? The answer must never be “silently skip it” — it should escalate the affected cases to human review, so a provider outage degrades the output rather than silently corrupting it.