Earlier quoted context omitted.
A lot of people here (myself included) work across different specialisations and are here to learn from discussion that is intentionally unfamiliar.
Yes, but ChatGPT knows these things! Just ask it to expand the acronyms. This is the new “can you Google that for me?”
Contextual Retrieval
71–73 of 73 posts
Re: Contextual Retrieval
#72Earlier quoted context omitted.
Could you explain or link to explanations of all of the acronyms you’ve used in your comment?
These are all "techniques" on top of the foundations of RAG. It's similar to "Chain of Thought" in prompt engineering. You have an underlying technology, and then come up with techniques/frameworks on top. What MVC was for Web dev +15 years ago. RAPTOR for example is a technique that groups and clusters documents together, summarizes them, and creates embeddings defining a sort of a Tree. Paper: https://arxiv.org/htm…
Re: Contextual Retrieval
#73Earlier quoted context omitted.
You could do a lot of stuff with pre-calculating things for your embeddings. Why cache when you can pre-calculate. That brings into play a whole lot of things people commonly do as part of ETL. I come from a traditional search back ground. It's quite obvious to me that RAG is a bit of a naive strategy if you limit it to just using vector search with some off the shelf embedding model. Vector search simply isn't that…
Graph RAG is very cool and outstanding at filling some niches. IIRC, Perplexity's actual search is just BM25 (based a lex fridman interview of the founder).