Datasets:
Tasks:
Question Answering
Modalities:
Text
Formats:
json
Languages:
English
Size:
10K - 100K
License:
Update parquet files
Browse files- README.md +0 -7
- default/test/0000.parquet +3 -0
- default/train/0000.parquet +3 -0
- default/validation/0000.parquet +3 -0
- download_cqa.sh +0 -32
README.md
DELETED
|
@@ -1,7 +0,0 @@
|
|
| 1 |
-
---
|
| 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). It follows the data collection process and schema of HotpotQA.
|
| 6 |
-
|
| 7 |
-
The data set is downloadable here: https://github.com/facebookresearch/concurrentqa. It also contains model and result analysis code. This benchmark can also be used to study privacy when reasoning over data distributed in multiple privacy scopes --- i.e. Wikipedia in the public domain and emails in the private domain.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
default/test/0000.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:7ae855f67a5b92cf4695a4a18e6d9302e3bd8973301fbdc1d9f67fd492344bb7
|
| 3 |
+
size 1676528
|
default/train/0000.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f442608350d8ffa44620fb70e8dc31d97adf5af390b67d601d1261fb041c5e43
|
| 3 |
+
size 16373530
|
default/validation/0000.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:a52cbe4f6473d30cfc1b49366b311fdb2151f220b62fe3c61237a7a58242305d
|
| 3 |
+
size 1695603
|
download_cqa.sh
DELETED
|
@@ -1,32 +0,0 @@
|
|
| 1 |
-
#!/usr/bin/bash
|
| 2 |
-
# Copyright (c) Meta Platforms, Inc. and affiliates.
|
| 3 |
-
#
|
| 4 |
-
# This source code is licensed under the MIT license found in the
|
| 5 |
-
# LICENSE file in the root directory of this source tree.
|
| 6 |
-
|
| 7 |
-
# download the retriever and reader training and evaluation files for ConcurentQA
|
| 8 |
-
mkdir datasets
|
| 9 |
-
cd datasets
|
| 10 |
-
|
| 11 |
-
mkdir concurrentqa
|
| 12 |
-
cd concurrentqa
|
| 13 |
-
mkdir data
|
| 14 |
-
cd data
|
| 15 |
-
|
| 16 |
-
wget https://dl.fbaipublicfiles.com/concurrentqa/data/CQA_dev_all.json
|
| 17 |
-
wget https://dl.fbaipublicfiles.com/concurrentqa/data/CQA_train_all.json
|
| 18 |
-
wget https://dl.fbaipublicfiles.com/concurrentqa/data/CQA_test_all.json
|
| 19 |
-
|
| 20 |
-
wget https://dl.fbaipublicfiles.com/concurrentqa/data/Retriever_CQA_dev_all_original.json
|
| 21 |
-
wget https://dl.fbaipublicfiles.com/concurrentqa/data/Retriever_CQA_train_all_original.json
|
| 22 |
-
wget https://dl.fbaipublicfiles.com/concurrentqa/data/Retriever_CQA_test_all_original.json
|
| 23 |
-
|
| 24 |
-
# download the background corpora from which to retrieve in the open-domain setting
|
| 25 |
-
cd ..
|
| 26 |
-
mkdir corpora
|
| 27 |
-
cd corpora
|
| 28 |
-
|
| 29 |
-
wget https://dl.fbaipublicfiles.com/concurrentqa/corpora/enron_only_corpus.json
|
| 30 |
-
wget https://dl.fbaipublicfiles.com/concurrentqa/corpora/combined_corpus.json
|
| 31 |
-
wget https://dl.fbaipublicfiles.com/concurrentqa/corpora/wiki_only_corpus.json
|
| 32 |
-
wget https://dl.fbaipublicfiles.com/concurrentqa/corpora/title2sent_map.json
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|