Update test_repo.py
Browse files- test_repo.py +6 -3
test_repo.py
CHANGED
|
@@ -128,17 +128,20 @@ class TestRepo(datasets.GeneratorBasedBuilder):
|
|
| 128 |
"train_aqa": datasets.Features({
|
| 129 |
"question": datasets.Value("string"), # Simple string for the question
|
| 130 |
"answer": datasets.Value("string"), # List of strings for the answer
|
| 131 |
-
"prompt": datasets.Value("string")
|
|
|
|
| 132 |
}),
|
| 133 |
"val_aqa": datasets.Features({
|
| 134 |
"question": datasets.Value("string"), # Simple string for the question
|
| 135 |
"answer": datasets.Sequence(datasets.Value("string")), # List of strings for the answer
|
| 136 |
-
"prompt": datasets.Value("string")
|
|
|
|
| 137 |
}),
|
| 138 |
"test_aqa": datasets.Features({
|
| 139 |
"question": datasets.Value("string"), # Simple string for the question
|
| 140 |
"answer": datasets.Sequence(datasets.Value("string")), # List of strings for the answer
|
| 141 |
-
"prompt": datasets.Value("string")
|
|
|
|
| 142 |
}),
|
| 143 |
}
|
| 144 |
|
|
|
|
| 128 |
"train_aqa": datasets.Features({
|
| 129 |
"question": datasets.Value("string"), # Simple string for the question
|
| 130 |
"answer": datasets.Value("string"), # List of strings for the answer
|
| 131 |
+
"prompt": datasets.Value("string"),
|
| 132 |
+
"dataset_name": datasets.Value("string"),
|
| 133 |
}),
|
| 134 |
"val_aqa": datasets.Features({
|
| 135 |
"question": datasets.Value("string"), # Simple string for the question
|
| 136 |
"answer": datasets.Sequence(datasets.Value("string")), # List of strings for the answer
|
| 137 |
+
"prompt": datasets.Value("string"),
|
| 138 |
+
"dataset_name": datasets.Value("string"),# Simple string for the prompt
|
| 139 |
}),
|
| 140 |
"test_aqa": datasets.Features({
|
| 141 |
"question": datasets.Value("string"), # Simple string for the question
|
| 142 |
"answer": datasets.Sequence(datasets.Value("string")), # List of strings for the answer
|
| 143 |
+
"prompt": datasets.Value("string"),
|
| 144 |
+
"dataset_name": datasets.Value("string"),# Simple string for the prompt
|
| 145 |
}),
|
| 146 |
}
|
| 147 |
|