File size: 1,022 Bytes
2ea1065
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
### Dialogue Summarizations

General formats:

```js
{
    "dataset_name--train/val/test--dialog_id": {
        "original dialog id": str,
        "dialog index": int,
        "original dialog info": {
            "summary": str,
        },
        "log": [
            {
                "turn id": int,
                "user utterance": str,
                "system response": str,
                "dialog history": str,
                "original user side information": dict,
                "original system side information": dict,
            },
         	...
        ],
        "prompt": [
            "This is a conversation between two speakers. Given the dialogue context, please generate a summarization about the dialogue.",
            ...
        ]
    },
```

Notice that we cannot form a turn with utterances from only two sides for those datasets consisting of multi-party dialogs (e.g. AMI, ICSI). Therefore, we dump the dialog context and summary in the "original dialog info" and leave the "log" blank.