Other advanced RAG techniques to explore
As with just about everything else we have discussed with RAG and GenAI, the options available for advanced techniques to apply to your RAG application are too numerous to list or even keep track of. We have selected techniques that are focused on aspects of RAG specifically, categorizing them based on the areas of your RAG application they will likely have the most impact.
Let’s walk through them in the same order that our RAG pipelines operate, starting with indexing.
Indexing improvements
These are advanced RAG techniques that focus on the indexing stage of the RAG pipeline:
- Deep chunking: The quality of retrieved results often depends on the way your data is chunked before it’s stored in the retrieval system itself. With deep chunking, you use DL models, including transformers, for optimal and intelligent chunking.
- Training and utilizing embedding adapters: Embedding adapters are lightweight modules trained...