The viewer is disabled because this dataset repo requires arbitrary Python code execution. Please consider removing the loading script and relying on automated data support (you can use convert_to_parquet from the datasets library). If this is not possible, please open a discussion for direct help.

Dataset

This dataset is extracted from Stanford Dogs Dataset

Load

import datasets

dataset = datasets.load_dataset("Alanox/stanford-dogs", split="full")

print(dataset)
"""
Dataset({
    features: ['name', 'annotations', 'target', 'image'],
    num_rows: 20580
})
"""

print(dataset.features)
"""
{
    'name':         Value(dtype='string', id=None),
    'annotations':  Array2D(shape=(None, 4), dtype='int32', id=None),
    # ["xmin", "ymin", "xmax", "ymax"]
    'target':       Value(dtype='string', id=None),
    'image':        Image(decode=True, id=None)
}
"""

This dataset was created by the scripts from this github repo

Fixes

  • n02105855_2933.jpg was not a .jpg. Converted all images to .jpg
Downloads last month
89

Models trained or fine-tuned on Alanox/stanford-dogs