Datasets:
Upload folder using huggingface_hub
Browse files- README.md +84 -0
- data/train-00000.parquet +3 -0
- data/train-00001.parquet +3 -0
- data/train-00002.parquet +3 -0
- dataset_info.json +25 -0
README.md
ADDED
|
@@ -0,0 +1,84 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
language:
|
| 3 |
+
- en
|
| 4 |
+
task_categories:
|
| 5 |
+
- automatic-speech-recognition
|
| 6 |
+
- text-generation
|
| 7 |
+
- audio-classification
|
| 8 |
+
tags:
|
| 9 |
+
- spoken-dialogue
|
| 10 |
+
- full-duplex
|
| 11 |
+
- turn-taking
|
| 12 |
+
- interruption
|
| 13 |
+
- backchannel
|
| 14 |
+
pretty_name: InteractSpeech English Text and Timeline
|
| 15 |
+
configs:
|
| 16 |
+
- config_name: default
|
| 17 |
+
data_files:
|
| 18 |
+
- split: train
|
| 19 |
+
path: data/*.parquet
|
| 20 |
+
---
|
| 21 |
+
|
| 22 |
+
# InteractSpeech: English Text-and-Timeline Release
|
| 23 |
+
|
| 24 |
+
This is the English text-and-timeline release associated with **InteractSpeech: A Speech Dialogue Interaction Corpus for Spoken Dialogue Model** (Findings of EMNLP 2025).
|
| 25 |
+
|
| 26 |
+
InteractSpeech is designed for real-time spoken-dialogue interaction, including interruptions, backchannels, pauses, gaps, overlaps, and turn transitions. The paper describes an approximately 150-hour English corpus containing 90,000 text utterances.
|
| 27 |
+
|
| 28 |
+
## Release contents
|
| 29 |
+
|
| 30 |
+
| Item | Value |
|
| 31 |
+
| --- | ---: |
|
| 32 |
+
| Training records | 59,020 |
|
| 33 |
+
| Parquet shards | 3 |
|
| 34 |
+
| Audio waveforms | Not included |
|
| 35 |
+
| Video assets | Not included |
|
| 36 |
+
|
| 37 |
+
The release preserves dialogue text, speaker timing, interaction events, overlap regions, complete interrupted utterances, quality metadata, and per-utterance TTS reconstruction specifications. Audio can be regenerated with any TTS system while preserving each published segment duration and the global dialogue timeline.
|
| 38 |
+
|
| 39 |
+
## Data format
|
| 40 |
+
|
| 41 |
+
Each Parquet row contains:
|
| 42 |
+
|
| 43 |
+
| Column | Description |
|
| 44 |
+
| --- | --- |
|
| 45 |
+
| `id` | Public record identifier |
|
| 46 |
+
| `view` | Dataset view |
|
| 47 |
+
| `category` | Dataset category |
|
| 48 |
+
| `record_json` | Complete record serialized as JSON |
|
| 49 |
+
|
| 50 |
+
```python
|
| 51 |
+
import json
|
| 52 |
+
import pyarrow.parquet as pq
|
| 53 |
+
|
| 54 |
+
table = pq.read_table("data/train-00000.parquet", columns=["record_json"])
|
| 55 |
+
sample = json.loads(table["record_json"][0].as_py())
|
| 56 |
+
```
|
| 57 |
+
|
| 58 |
+
The decoded record contains:
|
| 59 |
+
|
| 60 |
+
- `turns`: the training dialogue with timestamps and input-speech reconstruction recipes;
|
| 61 |
+
- `meta`: dialogue-level language, topic, event counts, and truncation information;
|
| 62 |
+
- `source_record`: the preserved InteractionSpeech dialogue, event annotations, full utterances, overlap regions, and source-to-training turn mapping.
|
| 63 |
+
|
| 64 |
+
For each input-speech segment, synthesize the text in `audio_in.source.transcript` using a consistent voice for the same `voice_key`, then fit it to `reference_duration_ms`. Do not alter the published global `start_ms` and `end_ms` values.
|
| 65 |
+
|
| 66 |
+
## Citation
|
| 67 |
+
|
| 68 |
+
```bibtex
|
| 69 |
+
@inproceedings{chen-etal-2025-interactspeech,
|
| 70 |
+
title = {{I}nteract{S}peech: A Speech Dialogue Interaction Corpus for Spoken Dialogue Model},
|
| 71 |
+
author = {Chen, Yifu and Ji, Shengpeng and Wang, Ziqing and Wang, Hanting and Zhao, Zhou},
|
| 72 |
+
booktitle = {Findings of the Association for Computational Linguistics: EMNLP 2025},
|
| 73 |
+
month = nov,
|
| 74 |
+
year = {2025},
|
| 75 |
+
address = {Suzhou, China},
|
| 76 |
+
publisher = {Association for Computational Linguistics},
|
| 77 |
+
pages = {8024--8033},
|
| 78 |
+
doi = {10.18653/v1/2025.findings-emnlp.424},
|
| 79 |
+
url = {https://aclanthology.org/2025.findings-emnlp.424/}
|
| 80 |
+
}
|
| 81 |
+
```
|
| 82 |
+
|
| 83 |
+
- Paper: https://aclanthology.org/2025.findings-emnlp.424/
|
| 84 |
+
- Project page and audio examples: https://interactspeech.github.io/
|
data/train-00000.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:180cc47c2a1316d26e975a38b52d9f34c8943d2cc2d452303902d98ae0faaa91
|
| 3 |
+
size 18454736
|
data/train-00001.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:d55d778da60ec868fce63395c625f1db8b8127eb3bb013330d01835c8ccdba3a
|
| 3 |
+
size 76485365
|
data/train-00002.parquet
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dabf93e21ac1cd6c87e35c6f0cece50f5a036353fac906e25f20e722508a1c11
|
| 3 |
+
size 1611989
|
dataset_info.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"dataset": "InteractSpeech",
|
| 3 |
+
"subset": "English text and timeline",
|
| 4 |
+
"schema": "interactspeech_text_timeline_v1",
|
| 5 |
+
"rows": 59020,
|
| 6 |
+
"parquet_shards": [
|
| 7 |
+
{
|
| 8 |
+
"path": "data/train-00000.parquet",
|
| 9 |
+
"rows": 9849,
|
| 10 |
+
"bytes": 18454736
|
| 11 |
+
},
|
| 12 |
+
{
|
| 13 |
+
"path": "data/train-00001.parquet",
|
| 14 |
+
"rows": 48144,
|
| 15 |
+
"bytes": 76485365
|
| 16 |
+
},
|
| 17 |
+
{
|
| 18 |
+
"path": "data/train-00002.parquet",
|
| 19 |
+
"rows": 1027,
|
| 20 |
+
"bytes": 1611989
|
| 21 |
+
}
|
| 22 |
+
],
|
| 23 |
+
"audio_waveforms_included": false,
|
| 24 |
+
"tts_reconstructable": true
|
| 25 |
+
}
|