H-RAG at SemEval-2026 Task 8: Hierarchical Parent–Child Retrieval for Multi-Turn RAG Conversations
Summary
H-RAG, a submission to SemEval-2026 Task 8 (MTRAGEval), presents a hierarchical parent–child Retrieval-Augmented Generation (RAG) pipeline designed for multi-turn conversational settings. This system addresses both Task A, evaluating standalone retrieval quality, and Task C, assessing end-to-end RAG performance, including accurate answer generation and faithful grounding. H-RAG segments documents into overlapping sentence-based child chunks for fine-grained retrieval, while retaining full documents as parent units to ensure coherent context during generation. Its retrieval process combines initial BM25, weighting, and embedding-based similarity rescoring over child chunks. The retrieved evidence is then aggregated at the parent level and fed to an instruction-tuned language model for response generation. H-RAG achieved an nDCG@5 score of 0.4271 on Task A and a harmonic mean of 0.3241 on Task C, highlighting the critical role of retrieval configuration and parent-level aggregation in multi-turn RAG.
Key takeaway
For NLP Engineers designing RAG systems for multi-turn conversations, you should implement a hierarchical parent–child retrieval strategy. This approach, demonstrated by H-RAG's performance at SemEval-2026 Task 8, improves both retrieval quality and generation faithfulness by separating fine-grained child chunk search from coherent parent-level context reconstruction. Consider segmenting your knowledge base into overlapping child chunks for retrieval while maintaining full documents as parent units for aggregation before feeding to your language model. This configuration is crucial for robust conversational RAG.
Key insights
H-RAG's hierarchical parent-child retrieval enhances multi-turn RAG by decoupling fine-grained child chunk search from parent-level context reconstruction for generation.
Principles
- Parent-level aggregation is crucial for multi-turn RAG.
- Retrieval configuration significantly impacts RAG performance.
- Decouple fine-grained search from broad context.
Method
H-RAG segments documents into overlapping child chunks for retrieval via BM25, weighting, and embedding rescoring. Full documents serve as parent units. Retrieved child evidence aggregates at the parent level, feeding an instruction-tuned LM for generation.
In practice
- Segment documents into overlapping child chunks.
- Use full documents as parent context units.
- Aggregate retrieved evidence at the parent level.
Topics
- Retrieval-Augmented Generation
- Multi-Turn Conversations
- Hierarchical Parent-Child Retrieval
- SemEval-2026 Task 8
- Language Models
Best for: AI Architect, AI Engineer, Research Scientist, AI Scientist, NLP Engineer, Machine Learning Engineer
Related on AIssential
Editorial summary, takeaway, and curation by AIssential. Original article published by Paper Index on ACL Anthology.