stanford_dogs
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
Stanford Dogs データセットには、世界中の 120 種類の犬の画像が含まれています。このデータセットは、画像を細かく分類するタスクのために、ImageNet の画像と注釈を使用して構築されています。 20,580 枚の画像があり、そのうち 12,000 枚がトレーニングに使用され、8580 枚がテストに使用されます。クラス ラベルとバウンディング ボックスの注釈は、12,000 枚の画像すべてに提供されます。
スプリット | 例 |
---|
'test' | 8,580 |
'train' | 12,000 |
FeaturesDict({
'image': Image(shape=(None, None, 3), dtype=uint8),
'image/filename': Text(shape=(), dtype=string),
'label': ClassLabel(shape=(), dtype=int64, num_classes=120),
'objects': Sequence({
'bbox': BBoxFeature(shape=(4,), dtype=float32),
}),
})
特徴 | クラス | 形 | Dtype | 説明 |
---|
| 特徴辞書 | | | |
画像 | 画像 | (なし、なし、3) | uint8 | |
画像/ファイル名 | 文章 | | ストリング | |
ラベル | クラスラベル | | int64 | |
オブジェクト | 順序 | | | |
オブジェクト/bbox | BBoxFeature | (4) | float32 | |

@inproceedings{KhoslaYaoJayadevaprakashFeiFei_FGVC2011,
author = "Aditya Khosla and Nityananda Jayadevaprakash and Bangpeng Yao and
Li Fei-Fei",
title = "Novel Dataset for Fine-Grained Image Categorization",
booktitle = "First Workshop on Fine-Grained Visual Categorization,
IEEE Conference on Computer Vision and Pattern Recognition",
year = "2011",
month = "June",
address = "Colorado Springs, CO",
}
@inproceedings{imagenet_cvpr09,
AUTHOR = {Deng, J. and Dong, W. and Socher, R. and Li, L.-J. and
Li, K. and Fei-Fei, L.},
TITLE = { {ImageNet: A Large-Scale Hierarchical Image Database} },
BOOKTITLE = {CVPR09},
YEAR = {2009},
BIBSOURCE = "http://www.image-net.org/papers/imagenet_cvpr09.bib"}
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2023-01-13 UTC。
[null,null,["最終更新日 2023-01-13 UTC。"],[],[],null,["# stanford_dogs\n\n\u003cbr /\u003e\n\n- **Description**:\n\nThe Stanford Dogs dataset contains images of 120 breeds of dogs from around the\nworld. This dataset has been built using images and annotation from ImageNet for\nthe task of fine-grained image categorization. There are 20,580 images, out of\nwhich 12,000 are used for training and 8580 for testing. Class labels and\nbounding box annotations are provided for all the 12,000 images.\n\n- **Additional Documentation** :\n [Explore on Papers With Code\n north_east](https://paperswithcode.com/dataset/stanford-dogs)\n\n- **Homepage** :\n \u003chttp://vision.stanford.edu/aditya86/ImageNetDogs/main.html\u003e\n\n- **Source code** :\n [`tfds.datasets.stanford_dogs.Builder`](https://github.com/tensorflow/datasets/tree/master/tensorflow_datasets/datasets/stanford_dogs/stanford_dogs_dataset_builder.py)\n\n- **Versions**:\n\n - **`0.2.0`** (default): No release notes.\n- **Download size** : `778.12 MiB`\n\n- **Dataset size** : `744.72 MiB`\n\n- **Auto-cached**\n ([documentation](https://www.tensorflow.org/datasets/performances#auto-caching)):\n No\n\n- **Splits**:\n\n| Split | Examples |\n|-----------|----------|\n| `'test'` | 8,580 |\n| `'train'` | 12,000 |\n\n- **Feature structure**:\n\n FeaturesDict({\n 'image': Image(shape=(None, None, 3), dtype=uint8),\n 'image/filename': Text(shape=(), dtype=string),\n 'label': ClassLabel(shape=(), dtype=int64, num_classes=120),\n 'objects': Sequence({\n 'bbox': BBoxFeature(shape=(4,), dtype=float32),\n }),\n })\n\n- **Feature documentation**:\n\n| Feature | Class | Shape | Dtype | Description |\n|----------------|--------------|-----------------|---------|-------------|\n| | FeaturesDict | | | |\n| image | Image | (None, None, 3) | uint8 | |\n| image/filename | Text | | string | |\n| label | ClassLabel | | int64 | |\n| objects | Sequence | | | |\n| objects/bbox | BBoxFeature | (4,) | float32 | |\n\n- **Supervised keys** (See\n [`as_supervised` doc](https://www.tensorflow.org/datasets/api_docs/python/tfds/load#args)):\n `('image', 'label')`\n\n- **Figure**\n ([tfds.show_examples](https://www.tensorflow.org/datasets/api_docs/python/tfds/visualization/show_examples)):\n\n- **Examples** ([tfds.as_dataframe](https://www.tensorflow.org/datasets/api_docs/python/tfds/as_dataframe)):\n\nDisplay examples... \n\n- **Citation**:\n\n @inproceedings{KhoslaYaoJayadevaprakashFeiFei_FGVC2011,\n author = \"Aditya Khosla and Nityananda Jayadevaprakash and Bangpeng Yao and\n Li Fei-Fei\",\n title = \"Novel Dataset for Fine-Grained Image Categorization\",\n booktitle = \"First Workshop on Fine-Grained Visual Categorization,\n IEEE Conference on Computer Vision and Pattern Recognition\",\n year = \"2011\",\n month = \"June\",\n address = \"Colorado Springs, CO\",\n }\n @inproceedings{imagenet_cvpr09,\n AUTHOR = {Deng, J. and Dong, W. and Socher, R. and Li, L.-J. and\n Li, K. and Fei-Fei, L.},\n TITLE = { {ImageNet: A Large-Scale Hierarchical Image Database} },\n BOOKTITLE = {CVPR09},\n YEAR = {2009},\n BIBSOURCE = \"http://www.image-net.org/papers/imagenet_cvpr09.bib\"}"]]