CoolFace
Datasetpublic

jml2026/conversational-speech-dataset

๐ŸŽ™๏ธ Silencio Network: Conversational Speech Dataset Overview Sample conversational speech data from Silencio Network's crowdsourced voice AI platform. This dataset contains multi-speaker meeting recordings with word-level transcripts, speaker diarization, and rich demographic metadata. Each row represents one participant in a meeting and includes 3 audio files: Audio Column Description Format file_name (speaker audio) Individual participant'sโ€ฆ See the full description on the dataset page: https://huggingface.co/datasets/jml2026/conversational-speech-dataset.

sourceHugging Facecc-by-nc-4.0updated 6mo agoView on Hugging Face
0likes135downloads
Dataset Card

๐ŸŽ™๏ธ Silencio Network: Conversational Speech Dataset

<p align="left"> <img src="https://cdn-uploads.huggingface.co/production/uploads/69162b50b89e7abe20de4b5a/LWhs4p2lPFcyiVsP0tluu.png" width="40%"> </p>

![Website](https://www.silencioai.com) ![Contact](mailto:sofia@silencioai.com) ![Data Available](mailto:sofia@silencioai.com)


Overview

Sample conversational speech data from Silencio Network's crowdsourced voice AI platform. This dataset contains multi-speaker meeting recordings with word-level transcripts, speaker diarization, and rich demographic metadata.

Each row represents one participant in a meeting and includes 3 audio files:

Audio ColumnDescriptionFormat
file_name (speaker audio)Individual participant's isolated recordingWAV
full_meeting_single_channelFull meeting mixed to single channelMP3
full_meeting_multi_channelFull meeting with separate speaker channelsWAV

Plus word-level meeting transcripts with speaker turns and timestamps.

Dataset Summary

ConfigLanguageMeetingsParticipantsTotal Audio
conversational_englishEnglish48135.9 MB

๐Ÿš€ Quick Start

python
from datasets import load_dataset

# Load conversational English samples
ds = load_dataset("jml2026/conversational-speech-dataset", "conversational_english")

conversations = ds['conversations']

for sample in conversations:
    speaker_audio = sample['audio']          # Individual speaker recording
    meeting_audio = sample['full_meeting_single_channel']  # Full meeting
    transcript = sample['meeting_transcript_text']         # Plain text transcript
    print(f"Speaker {sample['speaker_id']} ({sample['gender']}, {sample['dialect']})")
    print(f"  Words spoken: {sample['speaker_word_count']}")
    print(f"  Meeting duration: {sample['meeting_duration']}s")

Schema

ColumnTypeDescription
file_nameAudioIndividual speaker's isolated audio recording
meeting_idintUnique meeting identifier
speaker_idstringDeterministic UUID for the speaker
genderstringSpeaker gender
ethnicitystringSpeaker ethnicity
occupationstringSpeaker occupation
birth_placestringSpeaker birth place
dialectstringSpeaker dialect
year_of_birthintSpeaker year of birth
years_at_birth_placeintYears lived at birth place
languages_datastringJSON array of languages spoken with proficiency levels
languagestringMeeting language
meeting_durationintMeeting duration in seconds
meeting_transcript_word_countintTotal word count of the meeting transcript
speaker_word_countintWord count for this speaker
full_meeting_single_channelAudioFull meeting audio mixed to single channel
full_meeting_multi_channelAudioFull meeting audio with separate speaker channels
meeting_transcript_jsonstringFull meeting transcript as JSON with word-level timestamps and speaker IDs
meeting_transcript_textstringPlain text meeting transcript with speaker turns

About Silencio Network

Silencio Network operates a global platform with 500,000+ contributors across 130+ countries, collecting voice data through a mobile app. The full corpus exceeds 100,000 hours of validated speech data.

For access to the complete dataset or custom data collection, contact sofia@silencioai.com.

License

This sample dataset is released under CC BY-NC 4.0. Commercial licensing is available upon request.