Raw JSON files from the paper's official host
#2
by
yongchanghao
- opened
No description provided.
Some users (including me) are experiencing a server-side failure when downloading from Stanford's server as in #1. It would be more stable to host it under this repo.
TODO: The corresponding links in coqa.py
should be changed to the HF download link if merged. As a temporary workaround before merging, you can modify the file as follows if you encountered downloading errors:
_URLS = {
- "train": "https://downloads.cs.stanford.edu/nlp/data/coqa/coqa-train-v1.0.json",
+ "train": "https://huggingface.co/datasets/EleutherAI/coqa/resolve/refs%2Fpr%2F2/coqa-train-v1.0.json",
- "validation": "https://downloads.cs.stanford.edu/nlp/data/coqa/coqa-dev-v1.0.json",
+ "validation": "https://huggingface.co/datasets/EleutherAI/coqa/resolve/refs%2Fpr%2F2/coqa-dev-v1.0.json",
}