Datasets:
image imagewidth (px) 100 8.19k | label class label 120
classes |
|---|---|
48Scotch_terrier | |
81Border_collie | |
81Border_collie | |
60vizsla | |
113toy_poodle | |
3Pekinese | |
54flat-coated_retriever | |
29American_Staffordshire_terrier | |
114miniature_poodle | |
53Lhasa | |
24otterhound | |
32Kerry_blue_terrier | |
96Saint_Bernard | |
41cairn | |
69Sussex_spaniel | |
60vizsla | |
9Afghan_hound | |
87Greater_Swiss_Mountain_dog | |
99Siberian_husky | |
66English_springer | |
85Doberman | |
10basset | |
84German_shepherd | |
2Maltese_dog | |
71kuvasz | |
5Blenheim_spaniel | |
5Blenheim_spaniel | |
67Welsh_springer_spaniel | |
32Kerry_blue_terrier | |
50silky_terrier | |
23Norwegian_elkhound | |
75briard | |
99Siberian_husky | |
24otterhound | |
58Chesapeake_Bay_retriever | |
53Lhasa | |
50silky_terrier | |
95Great_Dane | |
7toy_terrier | |
110Brabancon_griffon | |
88Bernese_mountain_dog | |
75briard | |
88Bernese_mountain_dog | |
14black-and-tan_coonhound | |
76kelpie | |
67Welsh_springer_spaniel | |
39Sealyham_terrier | |
96Saint_Bernard | |
30Bedlington_terrier | |
0Chihuahua | |
96Saint_Bernard | |
78Old_English_sheepdog | |
102pug | |
54flat-coated_retriever | |
65clumber | |
24otterhound | |
89Appenzeller | |
26Scottish_deerhound | |
110Brabancon_griffon | |
53Lhasa | |
20Italian_greyhound | |
15Walker_hound | |
90EntleBucher | |
40Airedale | |
112Cardigan | |
36Yorkshire_terrier | |
101basenji | |
41cairn | |
111Pembroke | |
49Tibetan_terrier | |
52West_Highland_white_terrier | |
33Irish_terrier | |
99Siberian_husky | |
51soft-coated_wheaten_terrier | |
52West_Highland_white_terrier | |
107Pomeranian | |
94French_bulldog | |
84German_shepherd | |
5Blenheim_spaniel | |
36Yorkshire_terrier | |
103Leonberg | |
102pug | |
33Irish_terrier | |
67Welsh_springer_spaniel | |
42Australian_terrier | |
23Norwegian_elkhound | |
36Yorkshire_terrier | |
80collie | |
80collie | |
102pug | |
74malinois | |
37wire-haired_fox_terrier | |
72schipperke | |
92bull_mastiff | |
59German_short-haired_pointer | |
71kuvasz | |
40Airedale | |
29American_Staffordshire_terrier | |
72schipperke | |
33Irish_terrier |
Stanford Dogs Amplified (Parquet Edition)
This dataset is an amplified and modernized version of the classic Stanford Dogs Dataset. It builds upon the original 120 dog breeds by automatically fetching, cleaning, and injecting thousands of new high-quality images scraped from Bing, filtered dynamically via YOLO object detection.
This specific repository hosts the dataset natively in Hugging Face's optimized Parquet format.
This means:
- It is a strictly "Image Classification" dataset (the original XML bounding boxes have been removed).
- It contains exactly two columns:
image(the binary picture) andlabel(the breed integer id). - It has been pre-split into an 80/20 train/test stratified split, ensuring perfect class balance.
- It can be downloaded and streamed instantly.
Quick Start
Load the dataset instantly into memory using the datasets library:
from datasets import load_dataset
# This will download the Parquet files and load the Train & Test splits
dataset = load_dataset("fedehorl/stanford-dogs-amplified")
# View the structure
print(dataset)
# DatasetDict({
# train: Dataset({
# features: ['image', 'label'],
# num_rows: 34157
# })
# test: Dataset({
# features: ['image', 'label'],
# num_rows: 8540
# })
# })
# Access an image and its label
sample_image = dataset['train'][0]['image']
sample_label = dataset['train'].features['label'].int2str(dataset['train'][0]['label'])
print(f"This is a {sample_label}")
Dataset Structure
image: APIL.Image.Imageobject containing the RGB image.label: Adatasets.ClassLabelrepresenting the dog breed (0 to 119).
Data Splits
The dataset contains a total of ~42,697 images natively split into:
- Train (80%): ~34,157 images
- Test (20%): ~8,540 images
Both splits are strictly stratified by the label column to maintain an identical distribution of the 120 dog breeds across the training and testing sets.
Dataset Creation & Augmentation Process
The augmented images were sourced by scraping Bing Images for modern pictures of the 120 breeds. To ensure dataset quality, a strict automated filtering pipeline was applied:
- Format Constraints: Only strictly RGB
.jpgfiles were allowed. Files with alpha channels, or inwebp/avifformats, were dropped or converted. - YOLO Validation: Every scraped image was processed through the
yolo26mmodel. - Confidence Threshold: Only images where YOLO successfully detected a "Dog" were admitted into the final dataset.
- Downloads last month
- 36