File size: 1,229 Bytes
cde5d6a
 
 
 
 
 
 
 
 
 
4cf52d5
cde5d6a
4cf52d5
 
 
 
cde5d6a
4cf52d5
 
 
 
 
 
 
 
 
 
cde5d6a
 
 
 
 
 
 
 
 
34a003b
 
cde5d6a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4cf52d5
 
 
 
cde5d6a
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
---
license: other
language:
  - en
tags:
  - audio
  - speech
  - speaker
  - evaluation
configs:
  - config_name: improvised
    data_files:
      - split: train
        path: improvised_train*.parquet
      - split: dev
        path: improvised_dev*.parquet
      - split: test
        path: improvised_test*.parquet
  - config_name: naturalistic
    data_files:
      - split: train
        path: naturalistic_train*.parquet
      - split: dev
        path: naturalistic_dev*.parquet
      - split: test
        path: naturalistic_test*.parquet

task_categories:
  - audio-classification
pretty_name: seamless-interaction
---

# seamless-interaction

## Folder structure

```text
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
        }
      ],
      "label": "improvised/naturalistic",
      "split": "train/dev/test",
      "speaker_id": {"0": "xxxx", "1": "xxxx"}
    }
  ],
  "audio_path": "audio_{group_idx}/{conversation_id}.wav"
}
```