File or directory not found.

#1
by efederici - opened
Datasets Maintainers org

Hi, thanks for reporting! I've opened a PR with the fix (and some additional improvements) here: https://github.com/huggingface/datasets/pull/4523.

Hi @mariosasko I'm not seeing a new error with trying to load this dataset:

FileNotFoundError: Couldn't find file at https://download.microsoft.com/download/3/E/1/3E1C3F21-ECDB-4869-8368-6DEBA77B919F/kagglecatsanddogs_3367a.zip

Steps to reproduce:

from datasets import load_dataset

dataset = load_dataset("cats_vs_dogs")

For reference I'm using datasets==2.3.2

Datasets Maintainers org

Hi @lewtun ! This fix was merged after the 2.3.2 release, so you should load the dataset directly from main for now to avoid the error:

from datasets import load_dataset

dataset = load_dataset("cats_vs_dogs", revision="main")

Sign up or log in to comment