Datasets:
Tasks:
Image Classification
Modalities:
Image
Formats:
parquet
Sub-tasks:
multi-class-image-classification
Languages:
English
Size:
10K - 100K
License:
File or directory not found.
#1
by
efederici
- opened
Error: HTTPError: 404 Client Error: Not Found for url: https://download.microsoft.com/download/3/E/1/3E1C3F21-ECDB-4869-8368-6DEBA77B919F/kagglecatsanddogs_3367a.zip
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
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")