Update README.md
Browse files
README.md
CHANGED
|
@@ -1,29 +1,56 @@
|
|
| 1 |
-
---
|
| 2 |
-
license: cc0-1.0
|
| 3 |
-
configs:
|
| 4 |
-
- config_name: default
|
| 5 |
-
data_files:
|
| 6 |
-
- split: train
|
| 7 |
-
path: data/train-*
|
| 8 |
-
dataset_info:
|
| 9 |
-
features:
|
| 10 |
-
- name: image
|
| 11 |
-
dtype: image
|
| 12 |
-
- name: label
|
| 13 |
-
dtype:
|
| 14 |
-
class_label:
|
| 15 |
-
names:
|
| 16 |
-
'0': Auto Rickshaws
|
| 17 |
-
'1': Bikes
|
| 18 |
-
'2': Cars
|
| 19 |
-
'3': Motorcycles
|
| 20 |
-
'4': Planes
|
| 21 |
-
'5': Ships
|
| 22 |
-
'6': Trains
|
| 23 |
-
splits:
|
| 24 |
-
- name: train
|
| 25 |
-
num_bytes: 606407823
|
| 26 |
-
num_examples: 5590
|
| 27 |
-
download_size: 871660951
|
| 28 |
-
dataset_size: 606407823
|
| 29 |
-
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc0-1.0
|
| 3 |
+
configs:
|
| 4 |
+
- config_name: default
|
| 5 |
+
data_files:
|
| 6 |
+
- split: train
|
| 7 |
+
path: data/train-*
|
| 8 |
+
dataset_info:
|
| 9 |
+
features:
|
| 10 |
+
- name: image
|
| 11 |
+
dtype: image
|
| 12 |
+
- name: label
|
| 13 |
+
dtype:
|
| 14 |
+
class_label:
|
| 15 |
+
names:
|
| 16 |
+
'0': Auto Rickshaws
|
| 17 |
+
'1': Bikes
|
| 18 |
+
'2': Cars
|
| 19 |
+
'3': Motorcycles
|
| 20 |
+
'4': Planes
|
| 21 |
+
'5': Ships
|
| 22 |
+
'6': Trains
|
| 23 |
+
splits:
|
| 24 |
+
- name: train
|
| 25 |
+
num_bytes: 606407823
|
| 26 |
+
num_examples: 5590
|
| 27 |
+
download_size: 871660951
|
| 28 |
+
dataset_size: 606407823
|
| 29 |
+
---
|
| 30 |
+
|
| 31 |
+
## Vehicles Dataset
|
| 32 |
+
|
| 33 |
+
A lightweight image classification dataset of **vehicle categories** hosted on the Hugging Face Hub. It contains:
|
| 34 |
+
|
| 35 |
+
* **~5,590 images** across various vehicle types
|
| 36 |
+
* **7 class labels** (e.g., Cars, Bikes, Planes, Trains, Ships, Auto Rickshaws, Motorcycles)
|
| 37 |
+
* Single training split for exploration and model benchmarking
|
| 38 |
+
* Public domain license (**CC0-1.0**)
|
| 39 |
+
* Easy to load with the Hugging Face Datasets library
|
| 40 |
+
|
| 41 |
+
### Load in Python
|
| 42 |
+
|
| 43 |
+
```python
|
| 44 |
+
from datasets import load_dataset
|
| 45 |
+
|
| 46 |
+
ds = load_dataset("AIOmarRehan/Vehicles")
|
| 47 |
+
print(ds["train"].features)
|
| 48 |
+
```
|
| 49 |
+
|
| 50 |
+
---
|
| 51 |
+
|
| 52 |
+
This dataset is ideal for:
|
| 53 |
+
|
| 54 |
+
* Evaluating model generalization
|
| 55 |
+
* Benchmarking PyTorch architectures
|
| 56 |
+
* Practicing image preprocessing and augmentation
|