179 questions
No questions match those filters.
How does Adaptive RAG dynamically choose between differ...
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 plansAdaptive RAG treats retrieval strategy as a routing problem rather than a fixed pipeline. A classifier — which can be as simple as a small model or even rule-based keyword matching — looks at each incoming query and assigns it to one of three tiers: no retrieval for simple factual questions the model already knows, a single retrieval pass for the bulk of ordinary knowledge lookups, and iterative multi-hop retrieval reserved for questions that genuinely require chaining several retrieval rounds together, like comparisons across multiple documents or time periods.
The reason this matters operationally is cost concentration: iterative retrieval is by far the most expensive strategy, and most real query traffic doesn’t need it. Routing the majority of queries to cheaper strategies and reserving the expensive path for the minority that actually requires it can cut total retrieval cost substantially compared to running every query through one uniform strategy.