TechSSN at SemEval-2026 Task 8: MTRAG Retrieval and Generation using Ensemble Re-encoders and Anchor Prompting
Summary
The TechSSN RAG system, submitted to the MTRAG-UN shared task on multi-turn conversational question answering at SemEval-2026 Task 8, addresses document retrieval and full RAG pipeline challenges. Its proposed retrieval architecture employs a cascaded hybrid pipeline, combining sparse retrieval (BM25) with dense bi-encoder models like BGE-base-en-v1.5 and E5-base. These are integrated using Reciprocal Rank Fusion and further refined by a weighted ensemble of cross-encoders. For response generation, the system injects the top-3 retrieved passages into FLAN-T5-Large via an anchor-prompting strategy to produce grounded responses. Experimental results indicate this hybrid retrieval framework significantly improves passage selection, particularly for complex non-standalone conversational queries. However, the system still faces challenges with underspecified or unanswerable questions and increased retrieval noise in later dialog turns.
Key takeaway
For Machine Learning Engineers developing multi-turn conversational RAG systems, consider implementing a cascaded hybrid retrieval architecture. Your system can benefit from combining sparse (BM25) and dense (BGE-base-en-v1.5, E5-base) retrieval with multi-stage reranking to enhance passage selection, especially for non-standalone queries. Be prepared to address challenges with underspecified questions and increased retrieval noise in later dialog turns, which may require additional conversational context handling.
Key insights
A cascaded hybrid RAG pipeline improves multi-turn conversational QA by combining sparse and dense retrieval with reranking.
Principles
- Hybrid retrieval enhances passage selection.
- Multi-stage reranking improves conversational query handling.
- Retrieval noise increases in later dialog turns.
Method
The system uses BM25 and bi-encoders (BGE-base-en-v1.5, E5-base) with Reciprocal Rank Fusion, reranked by cross-encoders. FLAN-T5-Large generates responses from top-3 passages via anchor-prompting.
In practice
- Combine sparse and dense retrieval for RAG.
- Implement multi-stage reranking for complex queries.
- Use anchor-prompting for grounded generation.
Topics
- Retrieval-Augmented Generation
- Multi-turn QA
- Hybrid Retrieval
- Ensemble Re-encoders
- Anchor Prompting
- SemEval-2026
Best for: AI Engineer, Research Scientist, AI Scientist, Machine Learning Engineer, NLP Engineer
Related on AIssential
Editorial summary, takeaway, and curation by AIssential. Original article published by Paper Index on ACL Anthology.