| --- |
| license: other |
| language: |
| - en |
| tags: |
| - audio |
| - speech |
| - speaker |
| - evaluation |
| configs: |
| - config_name: default |
| data_files: |
| - split: test |
| path: data_0.parquet |
| task_categories: |
| - audio-classification |
| pretty_name: seamless-interaction |
| --- |
| |
| # seamless-interaction |
|
|
| ## Folder structure |
|
|
| ``` |
| root |
| |- audio_000/ |
| |- audio_001/ |
| |- data_000.parquet |
| |- data_001.parquet |
| ``` |
|
|
| ## Column |
|
|
| ```json |
| { |
| "conversation_id": "{conversation_id}", |
| "utterances": [ |
| { |
| "spk": 0, // int |
| "words": [ |
| { |
| "word": "str", // str |
| "start_time": 0.0, // float |
| "end_time": 0.08 // flat |
| } |
| ] |
| } |
| ], |
| "audio_path": "audio_{group_idx}/{conversation_id}.wav" |
| } |
| ``` |
|
|