cifar100
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
このデータセットは CIFAR-10 と似ていますが、それぞれ 600 枚の画像を含む 100 個のクラスがある点が異なります。クラスごとに 500 個のトレーニング画像と 100 個のテスト画像があります。 CIFAR-100 の 100 クラスは 20 のスーパークラスにグループ化されています。各イメージには、「細かい」ラベル (それが属するクラス) と「粗い」ラベル (それが属するスーパークラス) が付いています。
スプリット | 例 |
---|
'test' | 10,000 |
'train' | 50,000 |
FeaturesDict({
'coarse_label': ClassLabel(shape=(), dtype=int64, num_classes=20),
'id': Text(shape=(), dtype=string),
'image': Image(shape=(32, 32, 3), dtype=uint8),
'label': ClassLabel(shape=(), dtype=int64, num_classes=100),
})
特徴 | クラス | 形 | Dタイプ | 説明 |
---|
| 特徴辞書 | | | |
粗いラベル | クラスラベル | | int64 | |
ID | 文章 | | 弦 | |
画像 | 画像 | (32、32、3) | uint8 | |
ラベル | クラスラベル | | int64 | |

@TECHREPORT{Krizhevsky09learningmultiple,
author = {Alex Krizhevsky},
title = {Learning multiple layers of features from tiny images},
institution = {},
year = {2009}
}
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2024-06-01 UTC。
[null,null,["最終更新日 2024-06-01 UTC。"],[],[],null,["# cifar100\n\n\u003cbr /\u003e\n\n- **Description**:\n\nThis dataset is just like the CIFAR-10, except it has 100 classes containing 600\nimages each. There are 500 training images and 100 testing images per class. The\n100 classes in the CIFAR-100 are grouped into 20 superclasses. Each image comes\nwith a \"fine\" label (the class to which it belongs) and a \"coarse\" label (the\nsuperclass to which it belongs).\n\n- **Additional Documentation** :\n [Explore on Papers With Code\n north_east](https://paperswithcode.com/dataset/cifar-100)\n\n- **Homepage** :\n [https://www.cs.toronto.edu/\\~kriz/cifar.html](https://www.cs.toronto.edu/%7Ekriz/cifar.html)\n\n- **Source code** :\n [`tfds.image_classification.Cifar100`](https://github.com/tensorflow/datasets/tree/master/tensorflow_datasets/image_classification/cifar.py)\n\n- **Versions**:\n\n - **`3.0.2`** (default): No release notes.\n- **Download size** : `160.71 MiB`\n\n- **Dataset size** : `132.03 MiB`\n\n- **Auto-cached**\n ([documentation](https://www.tensorflow.org/datasets/performances#auto-caching)):\n Yes\n\n- **Splits**:\n\n| Split | Examples |\n|-----------|----------|\n| `'test'` | 10,000 |\n| `'train'` | 50,000 |\n\n- **Feature structure**:\n\n FeaturesDict({\n 'coarse_label': ClassLabel(shape=(), dtype=int64, num_classes=20),\n 'id': Text(shape=(), dtype=string),\n 'image': Image(shape=(32, 32, 3), dtype=uint8),\n 'label': ClassLabel(shape=(), dtype=int64, num_classes=100),\n })\n\n- **Feature documentation**:\n\n| Feature | Class | Shape | Dtype | Description |\n|--------------|--------------|-------------|--------|-------------|\n| | FeaturesDict | | | |\n| coarse_label | ClassLabel | | int64 | |\n| id | Text | | string | |\n| image | Image | (32, 32, 3) | uint8 | |\n| label | ClassLabel | | int64 | |\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 @TECHREPORT{Krizhevsky09learningmultiple,\n author = {Alex Krizhevsky},\n title = {Learning multiple layers of features from tiny images},\n institution = {},\n year = {2009}\n }"]]