Skip to content

Commit 8bc1af4

Browse files
authored
fix: use forked hotpotqa to bring dataset alive #8233 (#8234)
Resolves #8233
1 parent 5e17bcf commit 8bc1af4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

dspy/datasets/hotpotqa.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ def __init__(
2020

2121
from datasets import load_dataset
2222

23-
hf_official_train = load_dataset("hotpot_qa", "fullwiki", split="train", trust_remote_code=True)
24-
hf_official_dev = load_dataset("hotpot_qa", "fullwiki", split="validation", trust_remote_code=True)
23+
hf_official_train = load_dataset("vincentkoc/hotpot_qa_archive", "fullwiki", split="train", trust_remote_code=True)
24+
hf_official_dev = load_dataset("vincentkoc/hotpot_qa_archive", "fullwiki", split="validation", trust_remote_code=True)
2525

2626
official_train = []
2727
for raw_example in hf_official_train:

0 commit comments

Comments
 (0)