Datasets:
Create README.md
Browse files
README.md
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
license: other
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
tags:
|
| 6 |
+
- audio
|
| 7 |
+
- speech
|
| 8 |
+
- speaker
|
| 9 |
+
- evaluation
|
| 10 |
+
configs:
|
| 11 |
+
- config_name: default
|
| 12 |
+
data_files:
|
| 13 |
+
- split: test
|
| 14 |
+
path: data_0.parquet
|
| 15 |
+
task_categories:
|
| 16 |
+
- audio-classification
|
| 17 |
+
pretty_name: seamless-interaction
|
| 18 |
+
---
|
| 19 |
+
|
| 20 |
+
# seamless-interaction
|
| 21 |
+
|
| 22 |
+
## Folder structure
|
| 23 |
+
|
| 24 |
+
```
|
| 25 |
+
root
|
| 26 |
+
|- audio_000/
|
| 27 |
+
|- audio_001/
|
| 28 |
+
|- data_000.parquet
|
| 29 |
+
|- data_001.parquet
|
| 30 |
+
```
|
| 31 |
+
|
| 32 |
+
## Column
|
| 33 |
+
|
| 34 |
+
```json
|
| 35 |
+
{
|
| 36 |
+
"conversation_id": "{conversation_id}",
|
| 37 |
+
"utterances": [
|
| 38 |
+
{
|
| 39 |
+
"spk": 0, // int
|
| 40 |
+
"words": [
|
| 41 |
+
{
|
| 42 |
+
"word": "str", // str
|
| 43 |
+
"start_time": 0.0, // float
|
| 44 |
+
"end_time": 0.08 // flat
|
| 45 |
+
}
|
| 46 |
+
]
|
| 47 |
+
}
|
| 48 |
+
],
|
| 49 |
+
"audio_path": "audio_{group_idx}/{conversation_id}.wav"
|
| 50 |
+
}
|
| 51 |
+
```
|