Commit
·
873660c
1
Parent(s):
f4e4756
Update README
Browse files
README.md
CHANGED
@@ -1,15 +1,15 @@
|
|
1 |
---
|
2 |
configs:
|
3 |
-
- config_name:
|
4 |
-
data_files:
|
5 |
-
- config_name:
|
6 |
-
data_files:
|
7 |
-
- config_name:
|
8 |
-
data_files:
|
9 |
-
- config_name:
|
10 |
-
data_files:
|
11 |
-
- config_name:
|
12 |
-
data_files:
|
13 |
license: cc-by-nc-4.0
|
14 |
task_categories:
|
15 |
- question-answering
|
@@ -24,4 +24,12 @@ size_categories:
|
|
24 |
pretty_name: CRA
|
25 |
---
|
26 |
|
27 |
-
Datasets are taken from Facebook's [CRAG: Comprehensive RAG Benchmark](https://github.com/facebookresearch/CRAG), see their [arXiv paper](https://arxiv.org/abs/2406.04744) for details about the dataset construction.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
---
|
2 |
configs:
|
3 |
+
- config_name: crag_task_1_and_2_subsample_1
|
4 |
+
data_files: crag_task_1_and_2_dev_v4_subsample_cdf90925.jsonl.bz2
|
5 |
+
- config_name: crag_task_1_and_2_subsample_2
|
6 |
+
data_files: crag_task_1_and_2_dev_v4_subsample_2e617280.jsonl.bz2
|
7 |
+
- config_name: crag_task_1_and_2_subsample_3
|
8 |
+
data_files: crag_task_1_and_2_dev_v4_subsample_9bca9871.jsonl.bz2
|
9 |
+
- config_name: crag_task_1_and_2_subsample_4
|
10 |
+
data_files: crag_task_1_and_2_dev_v4_subsample_ff5aa423.jsonl.bz2
|
11 |
+
- config_name: crag_task_1_and_2_subsample_5
|
12 |
+
data_files: crag_task_1_and_2_dev_v4_subsample_3f4353ba.jsonl.bz2
|
13 |
license: cc-by-nc-4.0
|
14 |
task_categories:
|
15 |
- question-answering
|
|
|
24 |
pretty_name: CRA
|
25 |
---
|
26 |
|
27 |
+
Datasets are taken from Facebook's [CRAG: Comprehensive RAG Benchmark](https://github.com/facebookresearch/CRAG), see their [arXiv paper](https://arxiv.org/abs/2406.04744) for details about the dataset construction.
|
28 |
+
|
29 |
+
The datasets `crag_task_1_and_2_dev_v4_subsample_*.json.bz2` have been created from the dataset [crag_task_1_and_2_dev_v4.jsonl.bz2](https://github.com/facebookresearch/CRAG/raw/refs/heads/main/data/crag_task_1_and_2_dev_v4.jsonl.bz2?download=) available on CRAG's GitHub repository.
|
30 |
+
For an easier handling and download of the dataset, we have split the 2706 rows of the original file in 5 subsamples, following the procedure below:
|
31 |
+
1. We have created a new label `answer_type`, classifying the answers in 3 categories:
|
32 |
+
- `invalid` for any answer == "invalid question"
|
33 |
+
- `no_answer` for any answer == "i don't know"
|
34 |
+
- `valid` for any other answer
|
35 |
+
2. We have considered the labels `answer_type`, `domain`, `question_type` and `static_or_dynamic` and performed stratified sampling, splitting the datasets in 5 subsamples. Each subsample has thus the same statistical properties of the full dataset.
|