Add README
Browse files
README.md
ADDED
|
@@ -0,0 +1,109 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: cc-by-nc-4.0
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
task_categories:
|
| 6 |
+
- automatic-speech-recognition
|
| 7 |
+
- audio-classification
|
| 8 |
+
tags:
|
| 9 |
+
- voice-ai
|
| 10 |
+
- speech-data
|
| 11 |
+
- conversational-ai
|
| 12 |
+
- real-world-audio
|
| 13 |
+
- crowdsourced
|
| 14 |
+
- multi-speaker
|
| 15 |
+
- meeting-transcription
|
| 16 |
+
pretty_name: "🎙️ Silencio Conversational Speech Dataset"
|
| 17 |
+
configs:
|
| 18 |
+
- config_name: conversational_english
|
| 19 |
+
data_files:
|
| 20 |
+
- split: conversations
|
| 21 |
+
path: conversational_english/conversations/**
|
| 22 |
+
size_categories:
|
| 23 |
+
- n<1K
|
| 24 |
+
---
|
| 25 |
+
|
| 26 |
+
# 🎙️ Silencio Network: Conversational Speech Dataset
|
| 27 |
+
|
| 28 |
+
<p align="left">
|
| 29 |
+
<img src="https://cdn-uploads.huggingface.co/production/uploads/69162b50b89e7abe20de4b5a/LWhs4p2lPFcyiVsP0tluu.png" width="40%">
|
| 30 |
+
</p>
|
| 31 |
+
|
| 32 |
+
[](https://www.silencioai.com)
|
| 33 |
+
[](mailto:sofia@silencioai.com)
|
| 34 |
+
[](mailto:sofia@silencioai.com)
|
| 35 |
+
|
| 36 |
+
---
|
| 37 |
+
|
| 38 |
+
## Overview
|
| 39 |
+
|
| 40 |
+
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.
|
| 41 |
+
|
| 42 |
+
Each row represents one participant in a meeting and includes **3 audio files**:
|
| 43 |
+
|
| 44 |
+
| Audio Column | Description | Format |
|
| 45 |
+
|-------------|-------------|--------|
|
| 46 |
+
| `file_name` (speaker audio) | Individual participant's isolated recording | WAV |
|
| 47 |
+
| `full_meeting_single_channel` | Full meeting mixed to single channel | MP3 |
|
| 48 |
+
| `full_meeting_multi_channel` | Full meeting with separate speaker channels | WAV |
|
| 49 |
+
|
| 50 |
+
Plus **word-level meeting transcripts** with speaker turns and timestamps.
|
| 51 |
+
|
| 52 |
+
## Dataset Summary
|
| 53 |
+
|
| 54 |
+
| Config | Language | Meetings | Participants | Total Audio |
|
| 55 |
+
|--------|----------|----------|--------------|-------------|
|
| 56 |
+
| `conversational_english` | English | 4 | 8 | 135.9 MB |
|
| 57 |
+
|
| 58 |
+
## 🚀 Quick Start
|
| 59 |
+
|
| 60 |
+
```python
|
| 61 |
+
from datasets import load_dataset
|
| 62 |
+
|
| 63 |
+
# Load conversational English samples
|
| 64 |
+
ds = load_dataset("jml2026/conversational-speech-dataset", "conversational_english")
|
| 65 |
+
|
| 66 |
+
conversations = ds['conversations']
|
| 67 |
+
|
| 68 |
+
for sample in conversations:
|
| 69 |
+
speaker_audio = sample['audio'] # Individual speaker recording
|
| 70 |
+
meeting_audio = sample['full_meeting_single_channel'] # Full meeting
|
| 71 |
+
transcript = sample['meeting_transcript_text'] # Plain text transcript
|
| 72 |
+
print(f"Speaker {sample['speaker_id']} ({sample['gender']}, {sample['dialect']})")
|
| 73 |
+
print(f" Words spoken: {sample['speaker_word_count']}")
|
| 74 |
+
print(f" Meeting duration: {sample['meeting_duration']}s")
|
| 75 |
+
```
|
| 76 |
+
|
| 77 |
+
## Schema
|
| 78 |
+
|
| 79 |
+
| Column | Type | Description |
|
| 80 |
+
|--------|------|-------------|
|
| 81 |
+
| `file_name` | Audio | Individual speaker's isolated audio recording |
|
| 82 |
+
| `meeting_id` | int | Unique meeting identifier |
|
| 83 |
+
| `speaker_id` | string | Deterministic UUID for the speaker |
|
| 84 |
+
| `gender` | string | Speaker gender |
|
| 85 |
+
| `ethnicity` | string | Speaker ethnicity |
|
| 86 |
+
| `occupation` | string | Speaker occupation |
|
| 87 |
+
| `birth_place` | string | Speaker birth place |
|
| 88 |
+
| `dialect` | string | Speaker dialect |
|
| 89 |
+
| `year_of_birth` | int | Speaker year of birth |
|
| 90 |
+
| `years_at_birth_place` | int | Years lived at birth place |
|
| 91 |
+
| `languages_data` | string | JSON array of languages spoken with proficiency levels |
|
| 92 |
+
| `language` | string | Meeting language |
|
| 93 |
+
| `meeting_duration` | int | Meeting duration in seconds |
|
| 94 |
+
| `meeting_transcript_word_count` | int | Total word count of the meeting transcript |
|
| 95 |
+
| `speaker_word_count` | int | Word count for this speaker |
|
| 96 |
+
| `full_meeting_single_channel` | Audio | Full meeting audio mixed to single channel |
|
| 97 |
+
| `full_meeting_multi_channel` | Audio | Full meeting audio with separate speaker channels |
|
| 98 |
+
| `meeting_transcript_json` | string | Full meeting transcript as JSON with word-level timestamps and speaker IDs |
|
| 99 |
+
| `meeting_transcript_text` | string | Plain text meeting transcript with speaker turns |
|
| 100 |
+
|
| 101 |
+
## About Silencio Network
|
| 102 |
+
|
| 103 |
+
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.
|
| 104 |
+
|
| 105 |
+
For access to the complete dataset or custom data collection, contact **sofia@silencioai.com**.
|
| 106 |
+
|
| 107 |
+
## License
|
| 108 |
+
|
| 109 |
+
This sample dataset is released under [CC BY-NC 4.0](https://creativecommons.org/licenses/by-nc/4.0/). Commercial licensing is available upon request.
|