Datasets:
Tasks:
Question Answering
Modalities:
Text
Formats:
parquet
Languages:
English
Size:
10K - 100K
ArXiv:
License:
Add additional tags for improved discoverability
#2
by
nielsr
HF Staff
- opened
README.md
CHANGED
|
@@ -1,4 +1,13 @@
|
|
| 1 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 2 |
dataset_info:
|
| 3 |
features:
|
| 4 |
- name: section_id
|
|
@@ -39,11 +48,6 @@ configs:
|
|
| 39 |
path: data/train-*
|
| 40 |
- split: validation
|
| 41 |
path: data/validation-*
|
| 42 |
-
license: cc-by-sa-4.0
|
| 43 |
-
task_categories:
|
| 44 |
-
- question-answering
|
| 45 |
-
language:
|
| 46 |
-
- en
|
| 47 |
---
|
| 48 |
|
| 49 |
# Dataset Card for DROP for CARE training
|
|
@@ -90,7 +94,9 @@ This dataset is a processed version of DROP (Discrete Reasoning Over Paragraphs)
|
|
| 90 |
"answer": "Chaz Schilens",
|
| 91 |
"answer_type": "span",
|
| 92 |
"context": "Context: Hoping to rebound from their loss to the Patriots...",
|
| 93 |
-
"prompt": "Context: [passage]
|
|
|
|
|
|
|
| 94 |
}
|
| 95 |
```
|
| 96 |
|
|
@@ -118,7 +124,7 @@ val_data = dataset["validation"]
|
|
| 118 |
```python
|
| 119 |
# Example usage in curriculum learning
|
| 120 |
class CurriculumTrainer:
|
| 121 |
-
def __init__(self)
|
| 122 |
self.drop_data = load_dataset("sheryc/DROP_care")["train"]
|
| 123 |
self.msmarco_data = load_dataset("sheryc/MSMARCO_care")["train"]
|
| 124 |
|
|
|
|
| 1 |
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
license: cc-by-sa-4.0
|
| 5 |
+
task_categories:
|
| 6 |
+
- question-answering
|
| 7 |
+
tags:
|
| 8 |
+
- retrieval-augmented-generation
|
| 9 |
+
- reasoning
|
| 10 |
+
- llm
|
| 11 |
dataset_info:
|
| 12 |
features:
|
| 13 |
- name: section_id
|
|
|
|
| 48 |
path: data/train-*
|
| 49 |
- split: validation
|
| 50 |
path: data/validation-*
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 51 |
---
|
| 52 |
|
| 53 |
# Dataset Card for DROP for CARE training
|
|
|
|
| 94 |
"answer": "Chaz Schilens",
|
| 95 |
"answer_type": "span",
|
| 96 |
"context": "Context: Hoping to rebound from their loss to the Patriots...",
|
| 97 |
+
"prompt": "Context: [passage]
|
| 98 |
+
|
| 99 |
+
Question: Who scored the first touchdown of the game?"
|
| 100 |
}
|
| 101 |
```
|
| 102 |
|
|
|
|
| 124 |
```python
|
| 125 |
# Example usage in curriculum learning
|
| 126 |
class CurriculumTrainer:
|
| 127 |
+
def __init__(self):\
|
| 128 |
self.drop_data = load_dataset("sheryc/DROP_care")["train"]
|
| 129 |
self.msmarco_data = load_dataset("sheryc/MSMARCO_care")["train"]
|
| 130 |
|