Datasets:
Tasks:
Question Answering
Modalities:
Text
Formats:
json
Languages:
English
Size:
10K - 100K
License:
Update README.md
Browse files
README.md
CHANGED
@@ -2,10 +2,22 @@
|
|
2 |
license: mit
|
3 |
---
|
4 |
|
5 |
-
ConcurrentQA is a textual multi-hop QA benchmark to require concurrent retrieval over multiple data-distributions (i.e. Wikipedia and email data).
|
6 |
|
7 |
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
|
8 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
The repo https://github.com/facebookresearch/concurrentqa contains model training and result analysis code.
|
10 |
|
11 |
If you find this resource useful, consider citing the paper:
|
|
|
2 |
license: mit
|
3 |
---
|
4 |
|
5 |
+
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.
|
6 |
|
7 |
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
|
8 |
|
9 |
+
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:
|
10 |
+
```
|
11 |
+
cd ..
|
12 |
+
mkdir corpora
|
13 |
+
cd corpora
|
14 |
+
|
15 |
+
wget https://dl.fbaipublicfiles.com/concurrentqa/corpora/enron_only_corpus.json
|
16 |
+
wget https://dl.fbaipublicfiles.com/concurrentqa/corpora/combined_corpus.json
|
17 |
+
wget https://dl.fbaipublicfiles.com/concurrentqa/corpora/wiki_only_corpus.json
|
18 |
+
wget https://dl.fbaipublicfiles.com/concurrentqa/corpora/title2sent_map.json
|
19 |
+
```
|
20 |
+
|
21 |
The repo https://github.com/facebookresearch/concurrentqa contains model training and result analysis code.
|
22 |
|
23 |
If you find this resource useful, consider citing the paper:
|