File size: 872 Bytes
9885ee5 5422e62 1e7c7d9 5422e62 2991be0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
---
pretty_name: "Stanford Dogs"
license: "mit"
task_category: "Classification"
---
# Dataset
This dataset is extracted from [Stanford Dogs Dataset](http://vision.stanford.edu/aditya86/ImageNetDogs/)
# Load
```python
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](https://github.com/AlanBlanchet/ClassezDesImagesAvecDesAlgorithmesDeDeeplearning)
|