File size: 1,249 Bytes
8729264 | 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 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 | ---
license: cc0-1.0
configs:
- config_name: default
data_files:
- split: train
path: data/train-*
dataset_info:
features:
- name: image
dtype: image
- name: label
dtype:
class_label:
names:
'0': Auto Rickshaws
'1': Bikes
'2': Cars
'3': Motorcycles
'4': Planes
'5': Ships
'6': Trains
splits:
- name: train
num_bytes: 606407823
num_examples: 5590
download_size: 871660951
dataset_size: 606407823
---
## Vehicles Dataset
A lightweight image classification dataset of **vehicle categories** hosted on the Hugging Face Hub. It contains:
* **~5,590 images** across various vehicle types
* **7 class labels** (e.g., Cars, Bikes, Planes, Trains, Ships, Auto Rickshaws, Motorcycles)
* Single training split for exploration and model benchmarking
* Public domain license (**CC0-1.0**)
* Easy to load with the Hugging Face Datasets library
### Load in Python
```python
from datasets import load_dataset
ds = load_dataset("AIOmarRehan/Vehicles")
print(ds["train"].features)
```
---
This dataset is ideal for:
* Evaluating model generalization
* Benchmarking PyTorch architectures
* Practicing image preprocessing and augmentation |