Jiayi-Pan commited on
Commit
b6f84e7
1 Parent(s): b0400e3

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +30 -30
README.md CHANGED
@@ -42,37 +42,37 @@ dataset = load_dataset("sled-umich/Conversation-Entailment")
42
 
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
 
78
 
 
42
 
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
 
78