Dataset Viewer
The dataset viewer is not available for this dataset.
Unexpected token '<', "<html> <h"... is not valid JSON

Need help to make the dataset viewer work? Make sure to review how to configure the dataset viewer, and open a discussion for direct support.

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

  • Labels: 0: human, 1: non_human.

πŸš€ Quick Start

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()
Downloads last month
1,214