[Paper Review] Exploring Graph-structured Passage Representation for Multi-hop Reading Comprehension with Graph Neural Networks
The paper builds graph-structured representations over passages with three edge types (same-entity, coreference, window) and applies graph neural networks (GRN/GCN) to perform evidence integration for multi-hop reading comprehension, achieving state-of-the-art results on WikiHop and ComplexWebQuestions without extra annotations.
Multi-hop reading comprehension focuses on one type of factoid question, where a system needs to properly integrate multiple pieces of evidence to correctly answer a question. Previous work approximates global evidence with local coreference information, encoding coreference chains with DAG-styled GRU layers within a gated-attention reader. However, coreference is limited in providing information for rich inference. We introduce a new method for better connecting global evidence, which forms more complex graphs compared to DAGs. To perform evidence integration on our graphs, we investigate two recent graph neural networks, namely graph convolutional network (GCN) and graph recurrent network (GRN). Experiments on two standard datasets show that richer global information leads to better answers. Our method performs better than all published results on these datasets.
Motivation & Objective
- Motivate and improve multi-hop reading comprehension by connecting global evidence beyond local coreference information.
- Propose a richer graph construction over entity mentions across passages using three edge types.
- Apply graph neural networks (GRN/GCN) to encode the graph and integrate evidence for answer selection.
Proposed method
- Construct graphs from entity mentions and pronouns across passages using three edge types: same-entity, coreference, and window-based edges.
- Encode graphs with Graph Recurrent Network (GRN) or Graph Convolutional Network (GCN) to propagate information.
- Represent each entity mention and question with neural encodings, then perform additive attention to score candidate answers across graph states.
- Aggregate per-mention scores for each candidate and normalize to obtain final probabilities.
- Train end-to-end with cross-entropy loss using Adam optimizer.
- Compare against baselines including Local BiLSTM and Coref-LSTM/DAG-LSTM variants, and perform ablations on edge types.
Experimental results
Research questions
- RQ1Does enriching global evidence with multiple edge types improve multi-hop reasoning over text passages?
- RQ2How do GRN and GCN compare in encoding richer graph structures for MHRC?
- RQ3What is the contribution of each edge type (same, coreference, window) to overall performance?
- RQ4Can a graph-based evidence integration framework outperform DAG-based coreference approaches on standard MHRC datasets?
Key findings
- MHQA-GRN achieves 65.4% accuracy on the WikiHop test set, the best published result at submission time.
- MHQA-GRN consistently outperforms MHQA-GCN, and both outperform baselines on WikiHop and ComplexWebQuestions.
- Ablation shows all three edge types contribute to performance, with window edges being less impactful than same-coreference relations but still beneficial.
- On WikiHop dev, GRN with three transition steps (T=3) yields best results; more steps can introduce noise and degrade performance.
- On ComplexWebQuestions, MHQA-GRN improves over Local and outperforms the SplitQA approach without extra annotations (dev-set numbers: MHQA-GRN 33.2 vs Local 31.2).
- MHQA-GRN shows substantial gains by integrating evidence across multiple passages and related entities, indicating the value of graph-based global context.
Better researchstarts right now
From reading papers to final review, dramatically reduce your research time.
No credit card · Free plan available
This review was created by AI and reviewed by human editors.