Jiayi-Pan commited on
Commit
3a321ae
1 Parent(s): 81c94d6

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +16 -28
README.md CHANGED
@@ -43,35 +43,23 @@ dataset = load_dataset("sled-umich/Conversation-Entailment")
43
  ### Data Sample
44
  ```json
45
  {
46
- "dialog": {
47
- "turn": [
48
- {
49
- "num": "2",
50
- "speaker": "B",
51
- "text": "Hi, um, okay what, now, uh, what particularly, particularly what kind of music do you like?"
52
- },
53
- {
54
- "num": "3",
55
- "speaker": "A",
56
- "text": "Well, I mostly listen to popular music. I, uh, listen to it all the time in, in my car, so, I, I tend to be one of those people who switches stations a lot because I don't like commercials. But,"
57
- },
58
- {
59
- "num": "4",
60
- "speaker": "B",
61
- "text": "Yeah."
62
- },
63
- {
64
- "num": "5",
65
- "speaker": "A",
66
- "text": "uh, I find myself listening to popular music, and, uh, quite honestly, I, I have some little children and I, unfortunately, found myself listening to a lot of nursery rhyme music here lately, but that's not by my choice."
67
- }
68
  ],
69
- "source": "SW2020"
70
- },
71
- "h": "SpeakerA likes popular music",
72
- "id": "15",
73
- "entailment": "1",
74
- "type": "belief"
 
 
 
 
 
75
  }
76
  ```
77
 
 
43
  ### Data Sample
44
  ```json
45
  {
46
+ "id": 3,
47
+ "type": "fact",
48
+ "dialog_num_list": [
49
+ 30,
50
+ 31
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
51
  ],
52
+ "dialog_speaker_list": [
53
+ "B",
54
+ "A"
55
+ ],
56
+ "dialog_text_list": [
57
+ "Have you seen SLEEPING WITH THE ENEMY?",
58
+ "No. I've heard, I've heard that's really great, though."
59
+ ],
60
+ "h": "SpeakerA and SpeakerB have seen SLEEPING WITH THE ENEMY",
61
+ "entailment": false,
62
+ "dialog_source": "SW2010"
63
  }
64
  ```
65