stl10
コレクションでコンテンツを整理
必要に応じて、コンテンツの保存と分類を行います。
STL-10 データセットは、教師なし特徴学習、深層学習、独学学習アルゴリズムを開発するための画像認識データセットです。 CIFAR-10 データセットに触発されていますが、いくつかの変更が加えられています。特に、各クラスのラベル付きトレーニング例は CIFAR-10 よりも少なくなりますが、教師ありトレーニングの前に画像モデルを学習するために、ラベルなしサンプルの非常に大きなセットが提供されます。主な課題は、ラベル付けされていないデータ (ラベル付けされたデータと類似しているが異なる分布に由来する) を利用して、有用な事前確率を構築することです。すべての画像は、ImageNet のラベル付きの例から取得されました。
スプリット | 例 |
---|
'test' | 8,000 |
'train' | 5,000 |
'unlabelled' | 100,000 |
FeaturesDict({
'image': Image(shape=(96, 96, 3), dtype=uint8),
'label': ClassLabel(shape=(), dtype=int64, num_classes=10),
})
特徴 | クラス | 形 | Dtype | 説明 |
---|
| 特徴辞書 | | | |
画像 | 画像 | (96, 96, 3) | uint8 | |
ラベル | クラスラベル | | int64 | |

@inproceedings{coates2011stl10,
title={ {An Analysis of Single Layer Networks in Unsupervised Feature Learning} },
author={Coates, Adam and Ng, Andrew and Lee, Honglak},
booktitle={AISTATS},
year={2011},
note = {\url{https://cs.stanford.edu/~acoates/papers/coatesleeng_aistats_2011.pdf} },
}
特に記載のない限り、このページのコンテンツはクリエイティブ・コモンズの表示 4.0 ライセンスにより使用許諾されます。コードサンプルは Apache 2.0 ライセンスにより使用許諾されます。詳しくは、Google Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2023-01-13 UTC。
[null,null,["最終更新日 2023-01-13 UTC。"],[],[],null,["# stl10\n\n\u003cbr /\u003e\n\n- **Description**:\n\nThe STL-10 dataset is an image recognition dataset for developing unsupervised\nfeature learning, deep learning, self-taught learning algorithms. It is inspired\nby the CIFAR-10 dataset but with some modifications. In particular, each class\nhas fewer labeled training examples than in CIFAR-10, but a very large set of\nunlabeled examples is provided to learn image models prior to supervised\ntraining. The primary challenge is to make use of the unlabeled data (which\ncomes from a similar but different distribution from the labeled data) to build\na useful prior. All images were acquired from labeled examples on ImageNet.\n\n- **Additional Documentation** :\n [Explore on Papers With Code\n north_east](https://paperswithcode.com/dataset/stl-10)\n\n- **Homepage** :\n [http://ai.stanford.edu/\\~acoates/stl10/](http://ai.stanford.edu/%7Eacoates/stl10/)\n\n- **Source code** :\n [`tfds.datasets.stl10.Builder`](https://github.com/tensorflow/datasets/tree/master/tensorflow_datasets/datasets/stl10/stl10_dataset_builder.py)\n\n- **Versions**:\n\n - **`1.0.0`** (default): No release notes.\n- **Download size** : `2.46 GiB`\n\n- **Dataset size** : `1.86 GiB`\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,000 |\n| `'train'` | 5,000 |\n| `'unlabelled'` | 100,000 |\n\n- **Feature structure**:\n\n FeaturesDict({\n 'image': Image(shape=(96, 96, 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| image | Image | (96, 96, 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 @inproceedings{coates2011stl10,\n title={ {An Analysis of Single Layer Networks in Unsupervised Feature Learning} },\n author={Coates, Adam and Ng, Andrew and Lee, Honglak},\n booktitle={AISTATS},\n year={2011},\n note = {\\url{https://cs.stanford.edu/~acoates/papers/coatesleeng_aistats_2011.pdf} },\n }"]]