Week 6 - Retrieval Augmented Generation Flashcards

1
Q

How to augment generation through IR

A

1) take a query and pass it through the IR system
2) rank the list of documents based on how relevant they are (using TFIDF)
3) take the top ‘n’ documents and append it with the question
4) this becomes the input to the LLM. LLM will answer based on the sources provided

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How does RAG solve the problems?

A

1) increased reliability
2) provenance
3) updatability

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Whats the bottleneck observed with RAG

A

The IR may not work. If the IR is shit, then the input will be shit and your output would be shit

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Why is RAG not more commonly used?

A

IR has not caught up yet - it depends on the context and user need heavily and depends on how the question is framed and the ranking algorithm

How well did you know this?
1
Not at all
2
3
4
5
Perfectly