STL-10_Subset / README.md
Chiranjeev007's picture
Add dataset card
13b8155 verified
---
license: mit
tags:
- stl10
- image-classification
- subset
- computer-vision
source_datasets:
- tanganke/stl10
task_categories:
- image-classification
---
# STL-10 — Subset
Stratified random subset of [STL-10](https://cs.stanford.edu/~acoates/stl10/).
| Split | Rows | Per class |
|-------|-------|-----------|
| train | 5,000 | 500 |
| test | 1,000 | 100 |
| validation | 500 | 50 |
**Classes:** airplane, bird, car, cat, deer, dog, horse, monkey, ship, truck
**Images:** 96 × 96 RGB | **Seed:** 42
```python
from datasets import load_dataset
ds = load_dataset("Chiranjeev007/STL-10_Subset")
sample = ds["train"][0]
sample["image"] # PIL Image 96×96 RGB
sample["label"] # int 0–9
```