179 questions
No questions match those filters.
A colleague wants to add more decisions to the router (rewrite, source selection, rerank depth). How do you adjudicate?
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 plansAdding decisions to a classifier creates a multiplicative labeling bill. For example, 3 x 2 x 3 x 2 pipelines would require 36 classes, which is unsustainable for both labeling and training. Furthermore, these decisions interact—e.g., whether a query needs a second hop depends on whether it was rewritten—meaning the grid does not decompose into independent classifiers. The honest resolution is to use classifiers only while the action space is small and enumerable, and switch to a reinforcement learning policy once the action space becomes a complex product.