179 questions
No questions match those filters.
Walk me through naive RAG and tell me what breaks.
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 plansNaive RAG operates in two primary stages: retrieval of relevant documents and generation of an answer based on those documents. Failure in this system generally falls into three classes. First, the retrieval stage may return irrelevant passages that confuse the model. Second, the generator may fail to perform necessary reasoning steps even when the correct evidence is present in the context. Third, the model may suffer from redundancy, such as repeating the same fact multiple times because it appeared in multiple retrieved chunks. Simply stating that the model ‘hallucinates’ is insufficient as it collapses these distinct failure modes into one.