シファール10
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
CIFAR-10 データセットは、10 クラスの 60,000 個の 32x32 カラー画像で構成されており、クラスあたり 6,000 個の画像があります。 50000 個のトレーニング画像と 10000 個のテスト画像があります。
スプリット | 例 |
---|
'test' | 10,000 |
'train' | 50,000 |
FeaturesDict({
'id': Text(shape=(), dtype=string),
'image': Image(shape=(32, 32, 3), dtype=uint8),
'label': ClassLabel(shape=(), dtype=int64, num_classes=10),
})
特徴 | クラス | 形 | Dタイプ | 説明 |
---|
| 特徴辞書 | | | |
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,["# cifar10\n\n\u003cbr /\u003e\n\n- **Description**:\n\nThe CIFAR-10 dataset consists of 60000 32x32 colour images in 10 classes, with\n6000 images per class. There are 50000 training images and 10000 test images.\n\n- **Additional Documentation** :\n [Explore on Papers With Code\n north_east](https://paperswithcode.com/dataset/cifar-10)\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.Cifar10`](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** : `162.17 MiB`\n\n- **Dataset size** : `132.40 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 'id': Text(shape=(), dtype=string),\n 'image': Image(shape=(32, 32, 3), dtype=uint8),\n 'label': ClassLabel(shape=(), dtype=int64, num_classes=10),\n })\n\n- **Feature documentation**:\n\n| Feature | Class | Shape | Dtype | Description |\n|---------|--------------|-------------|--------|-------------|\n| | FeaturesDict | | | |\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 }"]]