My dataset download got interrupted halfway because of a network reset- is there any way to resume a download from a halfway previously downloaded file? It appears as if the download is starting from scratch.
Hi! You can resume a dataset download after an error with:
from datasets import load_dataset, DownloadConfig
ds = load_dataset(..., download_config=DownloadConfig(resume_download=True))
3 Likes