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.
๐๏ธ Silencio Network: Conversational Speech Dataset
<p align="left"> <img src="https://cdn-uploads.huggingface.co/production/uploads/69162b50b89e7abe20de4b5a/LWhs4p2lPFcyiVsP0tluu.png" width="40%"> </p>
  
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:
Plus word-level meeting transcripts with speaker turns and timestamps.
Dataset Summary
๐ Quick Start
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
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.
