Alanox/stanford-dogs
收藏Hugging Face2023-09-08 更新2024-03-04 收录
下载链接:
https://hf-mirror.com/datasets/Alanox/stanford-dogs
下载链接
链接失效反馈官方服务:
资源简介:
---
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)
# Fixes
- `n02105855_2933.jpg` was not a `.jpg`. Converted all images to `.jpg`
提供机构:
Alanox
原始信息汇总
数据集概述
基本信息
- 名称: Stanford Dogs
- 许可证: MIT
- 任务类别: 分类
数据集详情
-
来源: 提取自 Stanford Dogs Dataset
-
加载方式: python import datasets
dataset = datasets.load_dataset("Alanox/stanford-dogs", split="full")
-
数据集结构: python Dataset({ features: [name, annotations, target, image], num_rows: 20580 })
-
特征描述: python { 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) }
修复记录
n02105855_2933.jpg格式不正确,已转换所有图像为.jpg格式



