CoolFace
Datasetpublic

LakoreAI/human-nonhuman-face-classification

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 =โ€ฆ See the full description on the dataset page: https://huggingface.co/datasets/LakoreAI/human-nonhuman-face-classification.

sourceHugging Facemitupdated 9mo agoView on Hugging Face
0likes308downloads
Dataset Card

license: mit task_categories:

  • โ€”image-classification tags:
  • โ€”human-detection
  • โ€”face-classification
  • โ€”computer-vision size_categories:
  • โ€”1K<n<10K ---

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

SplitHumanNon-HumanTotal
Train3,0242,9495,973
Validation8648421,706
Test433422855
Total8,534

๐Ÿ“ Format

  • โ€”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()