Datasets:
Update README.md
Browse files
README.md
CHANGED
@@ -1,3 +1,68 @@
|
|
1 |
-
---
|
2 |
-
license: apache-2.0
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
task_categories:
|
4 |
+
- image-classification
|
5 |
+
language:
|
6 |
+
- en
|
7 |
+
tags:
|
8 |
+
- age
|
9 |
+
- 10,000
|
10 |
+
- image
|
11 |
+
- video
|
12 |
+
- art
|
13 |
+
- synthetic
|
14 |
+
- image-classification
|
15 |
+
size_categories:
|
16 |
+
- 1K<n<10K
|
17 |
+
---
|
18 |
+
|
19 |
+
# Face-Age-10K Dataset
|
20 |
+
|
21 |
+
The **Face-Age-10K** dataset consists of over 9,000 facial images annotated with age group labels. It is designed for training machine learning models to perform **age classification** from facial features.
|
22 |
+
|
23 |
+
## Dataset Details
|
24 |
+
|
25 |
+
* **Total Images**: 9,165
|
26 |
+
* **Image Size**: 200x200 pixels
|
27 |
+
* **Format**: Parquet
|
28 |
+
* **Modality**: Image
|
29 |
+
* **Split**:
|
30 |
+
|
31 |
+
* `train`: 9,165 images
|
32 |
+
|
33 |
+
## Labels
|
34 |
+
|
35 |
+
The dataset includes 8 age group classes:
|
36 |
+
|
37 |
+
```python
|
38 |
+
labels_list = [
|
39 |
+
'age 01-10',
|
40 |
+
'age 11-20',
|
41 |
+
'age 21-30',
|
42 |
+
'age 31-40',
|
43 |
+
'age 41-55',
|
44 |
+
'age 56-65',
|
45 |
+
'age 66-80',
|
46 |
+
'age 80 +'
|
47 |
+
]
|
48 |
+
```
|
49 |
+
|
50 |
+
Each image is labeled with one of the above age categories.
|
51 |
+
|
52 |
+
## Usage
|
53 |
+
|
54 |
+
You can load this dataset using the Hugging Face `datasets` library:
|
55 |
+
|
56 |
+
```python
|
57 |
+
from datasets import load_dataset
|
58 |
+
|
59 |
+
dataset = load_dataset("prithivMLmods/Face-Age-10K")
|
60 |
+
```
|
61 |
+
|
62 |
+
To access individual samples:
|
63 |
+
|
64 |
+
```python
|
65 |
+
sample = dataset["train"][0]
|
66 |
+
image = sample["image"]
|
67 |
+
label = sample["label"]
|
68 |
+
```
|