File size: 1,861 Bytes
d468a9d
 
9fed01d
 
 
 
d468a9d
35206ff
67ccc49
f058f77
50c3879
 
67ccc49
 
 
 
 
 
 
 
 
 
 
 
50c3879
 
 
 
 
 
 
 
2cc9db6
50c3879
 
 
 
 
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
---
license: mit
task_categories:
- question-answering
language:
- en
---

ConcurrentQA is a textual multi-hop QA benchmark to require concurrent retrieval over multiple data-distributions (i.e. Wikipedia and email data). This dataset was constructed by researchers at Stanford and FAIR, following the data collection process and schema of HotpotQA.  This benchmark can be used to study generalization in retrieval as well as privacy when reasoning across multiple privacy scopes --- i.e. public Wikipedia documents and private emails.

This dataset is for the Question-Answering task. The dataset for the Retrieval task can be found here: https://huggingface.co/datasets/simarora/ConcurrentQA-Retrieval

The corpora of documents (Wikipedia and Emails) over which a system would need to retrieve information and answer questions can be downloaded using the following commands:
```
cd ..
mkdir corpora
cd corpora

wget https://dl.fbaipublicfiles.com/concurrentqa/corpora/enron_only_corpus.json
wget https://dl.fbaipublicfiles.com/concurrentqa/corpora/combined_corpus.json
wget https://dl.fbaipublicfiles.com/concurrentqa/corpora/wiki_only_corpus.json
wget https://dl.fbaipublicfiles.com/concurrentqa/corpora/title2sent_map.json
```

The repo https://github.com/facebookresearch/concurrentqa contains model training and result analysis code.

If you find this resource useful, consider citing the paper:
```
@article{arora2023reasoning,
         title={Reasoning over Public and Private Data in Retrieval-Based Systems}, 
         author={Simran Arora and Patrick Lewis and Angela Fan and Jacob Kahn and Christopher Ré},
         year={2023},
	     url={https://aclanthology.org/2023.tacl-1.51/},
         journal={Transactions of the Association for Computational Linguistics},
}
```

Please reach out at ```[email protected]``` with questions or feedback!