H-RAG at SemEval-2026 Task 8: Hierarchical Parent–Child Retrieval for Multi-Turn RAG Conversations

· Source: Paper Index on ACL Anthology · Field: Technology & Digital — Artificial Intelligence & Machine Learning, Data Science & Analytics · Depth: Expert, quick

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

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

Topics

Best for: AI Architect, AI Engineer, Research Scientist, AI Scientist, NLP Engineer, Machine Learning Engineer

Related on AIssential

Open in AIssential →

Editorial summary, takeaway, and curation by AIssential. Original article published by Paper Index on ACL Anthology.