File size: 723 Bytes
1e3e6bd
b1e0ec7
 
13b8155
 
 
 
b1e0ec7
13b8155
b1e0ec7
13b8155
1e3e6bd
b1e0ec7
594a1a2
b1e0ec7
 
 
 
 
465dfae
 
de14e59
b1e0ec7
594a1a2
b1e0ec7
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
---
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
```