Datasets:

Languages:
English
ArXiv:
License:
File size: 6,430 Bytes
e573418
29f36fc
 
e573418
29f36fc
 
e573418
 
29f36fc
e573418
 
8385af4
02c0e76
29f36fc
 
 
02c0e76
e1cbb69
 
29f36fc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
de4da28
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
e839079
de4da28
 
 
 
 
 
 
 
 
 
 
 
4a63849
 
 
 
 
 
 
 
 
 
 
 
 
 
de4da28
 
 
 
 
 
 
 
 
 
 
 
 
823d669
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
---
language:
- en
license: cc-by-4.0
size_categories:
- 1K<n<10K
task_categories:
- question-answering
pretty_name: MoreHopQA
tags:
- multi-hop
configs:
- config_name: verified
  data_files:
  - split: test
    path: verified/test-*
  default: true
- config_name: unverified
  data_files: data/without_human_verification.json
dataset_info:
  config_name: verified
  features:
  - name: question
    dtype: string
  - name: context
    sequence:
    - name: title
      dtype: string
    - name: paragraphs
      sequence: string
  - name: answer
    dtype: string
  - name: previous_question
    dtype: string
  - name: previous_answer
    dtype: string
  - name: question_decomposition
    sequence:
    - name: sub_id
      dtype: string
    - name: question
      dtype: string
    - name: answer
      dtype: string
    - name: paragraph_support_title
      dtype: string
  - name: question_on_last_hop
    dtype: string
  - name: answer_type
    dtype: string
  - name: previous_answer_type
    dtype: string
  - name: no_of_hops
    dtype: int32
  - name: reasoning_type
    dtype: string
  splits:
  - name: test
    num_bytes: 839113
    num_examples: 1118
  download_size: 201825
  dataset_size: 839113
---

# MoreHopQA: More Than Multi-hop Reasoning

<!-- Provide a quick summary of the dataset. -->

We propose a new multi-hop dataset, MoreHopQA, which shifts from extractive to generative answers. Our dataset is created by utilizing three existing multi-hop datasets: [HotpotQA](https://github.com/hotpotqa/hotpot), [2Wiki-MultihopQA](https://github.com/Alab-NII/2wikimultihop), and [MuSiQue](https://github.com/StonyBrookNLP/musique). Instead of relying solely on factual reasoning, we enhance the existing multi-hop questions by adding another layer of questioning.

<div align="center">
<img src="figures/overall-1.png" style="width:50%">
</div>

## Dataset Details

### Dataset Description

<!-- Provide a longer summary of what this dataset is. -->

Our dataset is created through a semi-automated process, resulting in a dataset with 1118 samples that have undergone human verification.  
For each sample, we share our 6 evaluation cases, including the new question, the original question, all the necessary subquestions, and a composite question from the second entity to the final answer (case 3 above).
We share both a version where each question was verified by a human, and a larger, solely automatically generated version ("unverified"). We recommend to primarily use the human-verified version.

- **Curated by:** Aizawa Lab, National Institute of Informatics (NII), Tokyo, Japan
- **Language(s) (NLP):** English
- <p xmlns:cc="http://creativecommons.org/ns#" xmlns:dct="http://purl.org/dc/terms/"><b>License:</b> The <a property="dct:title" rel="cc:attributionURL" href="https://github.com/Alab-NII/morehopqa">MorehopQA</a> dataset is licensed under <a href="https://creativecommons.org/licenses/by/4.0/?ref=chooser-v1" target="_blank" rel="license noopener noreferrer" style="display:inline-block;">CC BY 4.0</a></p>



### Dataset Sources

<!-- Provide the basic links for the dataset. -->

- **Repository:** [github.com/Alab-NII/morehopqa](https://github.com/Alab-NII/morehopqa)
- **Paper:** [arxiv.org/abs/2406.13397](https://arxiv.org/abs/2406.13397)

## Uses

<!-- Address questions around how the dataset is intended to be used. -->
We provide our dataset to the community and hope that other researchers find it a useful tool to analyze and improve the multi-hop reasoning capabilities of their models. MoreHopQA is designed to challenge systems with complex queries requiring synthesis from multiple sources, thereby advancing the field in understanding and generating nuanced, context-rich responses. Additionally, we aim for this dataset to spur further innovation in reasoning models, helping to bridge the gap between human-like understanding and AI capabilities.

## Dataset Structure

<!-- This section provides a description of the dataset fields, and additional information about the dataset structure such as criteria used to create the splits, relationships between data points, etc. -->

We share both a version where each question was verified by a human, and a larger, solely automatically generated version ("unverified"). We recommend to primarily use the human-verified version, which is also the default option when loading the dataset.

Each sample in the dataset contains the following fields:

- **question**: Our new multi-hop question with added reasoning (case 1 above)
- **answer**: The answer to the last hop (case 1, 3 and 4 above)
- **context**: Relevant context information to answer the previous question (relevant for all cases except case 4)
- **previous_question**: The previous 2-hop question from the original dataset (case 2 above)
- **previous_answer**: The answer to the previous 2-hop question (case 2 and 5 above)
- **question_decomposition**: Each question of the reasoning chain. List of entries with keys "sub_id" (position in the chain), "question", "answer", "paragraph_support_title" (relevant context paragraph). (sub_id 1 &#8594; case 6; sub_id 2 &#8594; case 5; sub_id 3 &#8594; case 4)
- **question_on_last_hop**: Question for case 3 above
- **answer_type**: Type of the expected answer
- **previous_answer_type**: Type of the answer to the previous 2-hop question
- **no_of_hops**: Number of extra hops to answer the additional reasoning question (might be more than one for more complicated tasks)
- **reasoning_type**: Might contain "Symbolic", "Arithmetic", "Commonsense"; depending on which kind of reasoning is required for the additional reasoning
  
## Dataset Creation

### Source Data

<!-- This section describes the source data (e.g. news text and headlines, social media posts, translated sentences, ...). -->
Our dataset is created by utilizing three existing multi-hop datasets: [HotpotQA](https://github.com/hotpotqa/hotpot), [2Wiki-MultihopQA](https://github.com/Alab-NII/2wikimultihop), and [MuSiQue](https://github.com/StonyBrookNLP/musique)

## Citation

If you find this dataset helpful, please consider citing our paper

**BibTeX:**

```
@misc{schnitzler2024morehopqa,
      title={MoreHopQA: More Than Multi-hop Reasoning}, 
      author={Julian Schnitzler and Xanh Ho and Jiahao Huang and Florian Boudin and Saku Sugawara and Akiko Aizawa},
      year={2024},
      eprint={2406.13397},
      archivePrefix={arXiv}
}
```