File size: 1,499 Bytes
c5e4518
 
 
 
 
 
ae703d9
c5e4518
 
ae703d9
7f6dd65
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
c5e4518
 
 
 
ae703d9
 
 
 
 
 
 
 
 
c5e4518
ae703d9
 
 
c5e4518
ae703d9
 
 
 
c5e4518
ae703d9
 
 
 
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
57
58
59
60
61
62
63
64
65
66
67
68
69
---
license: mit
task_categories:
- image-classification
tags:
- human-detection
- face-classification
- computer-vision
size_categories:
- 1K<n<10K
configs:
- config_name: default
  data_files:
  - split: train
    path: data/train-*
  - split: validation
    path: data/validation-*
  - split: test
    path: data/test-*
dataset_info:
  features:
  - name: image
    dtype: image
  - name: label
    dtype:
      class_label:
        names:
          '0': human
          '1': non_human
  splits:
  - name: train
    num_bytes: 58130594.868
    num_examples: 5973
  - name: validation
    num_bytes: 17288633.048
    num_examples: 1706
  - name: test
    num_bytes: 9426595.0
    num_examples: 855
  download_size: 88469762
  dataset_size: 84845822.91600001
---

# Human vs Non-Human Face Dataset

A robust dataset for binary classification between real human faces and non-human face-like objects (statues, art, gaming, anime).

## πŸ“Š Dataset Statistics
| Split | Human | Non-Human | Total |
| :--- | :--- | :--- | :--- |
| **Train** | 3,024 | 2,949 | 5,973 |
| **Validation** | 864 | 842 | 1,706 |
| **Test** | 433 | 422 | 855 |
| **Total** | | | **8,534** |

## πŸ“ Format
- Images are decodable as **PIL.Image** objects.
- Labels: `0: human`, `1: non_human`.

## πŸš€ Quick Start   
```python
from datasets import load_dataset
ds = load_dataset("8Opt/human-nonhuman-face-classification")

# Access test set
example = ds['test'][0]
img, label = example['image'], example['label']
img.show()