You need to agree to share your contact information to access this dataset

This repository is publicly accessible, but you have to accept the conditions to access its files and content.

Log in or Sign Up to review the conditions and access this dataset content.

Talking Face Dataset

Dataset Description

This dataset contains short audio clips of people speaking, along with demographic information. It is intended for tasks related to speech analysis, speaker identification.

Dataset Structure

The dataset contains the following columns:

  • id: Unique identifier for each audio sample.
  • speech_caption: Transcription of the spoken content.
  • race: Speaker's race (Black, White, Asian, Unknown).
  • age: Speaker's age group.
  • gender: Speaker's gender (Male, Female).
  • audio: The audio data, loaded from the corresponding file.

Usage

from datasets import load_dataset

# Load the dataset
dataset = load_dataset("tzzte/TalkingFaceDataset")

# Access a sample
sample = dataset["train"][0]
print(f"Caption: {sample['speech_caption']}")
print(f"Gender: {sample['gender']}")
print(f"Audio: {sample['audio']}")
Downloads last month
263