Update test_repo.py
Browse files- test_repo.py +2 -0
test_repo.py
CHANGED
@@ -196,6 +196,8 @@ class TestRepo(datasets.GeneratorBasedBuilder):
|
|
196 |
}
|
197 |
key_idx +=1
|
198 |
elif split in ["val_context_mcqa", "test_context_mcqa"]:
|
|
|
|
|
199 |
yield key_idx, {
|
200 |
"prompt": data["prompt"],
|
201 |
"question": data["question"],
|
|
|
196 |
}
|
197 |
key_idx +=1
|
198 |
elif split in ["val_context_mcqa", "test_context_mcqa"]:
|
199 |
+
for item in data["few_shot_prompt"]:
|
200 |
+
print(item)
|
201 |
yield key_idx, {
|
202 |
"prompt": data["prompt"],
|
203 |
"question": data["question"],
|