Update README.md
Browse files
README.md
CHANGED
@@ -40,6 +40,42 @@ dataset = load_dataset("sled-umich/Conversation-Entailment")
|
|
40 |
* [HuggingFace-Dataset](https://huggingface.co/datasets/sled-umich/Conversation-Entailment)
|
41 |
* [DropBox](https://www.dropbox.com/s/z5vchgzvzxv75es/conversation_entailment.tar?dl=0)
|
42 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
43 |
### Cite
|
44 |
|
45 |
[Towards Conversation Entailment: An Empirical Investigation](https://sled.eecs.umich.edu/publication/dblp-confemnlp-zhang-c-10/). *Chen Zhang, Joyce Chai*. EMNLP, 2010. [[Paper]](https://aclanthology.org/D10-1074/)
|
|
|
40 |
* [HuggingFace-Dataset](https://huggingface.co/datasets/sled-umich/Conversation-Entailment)
|
41 |
* [DropBox](https://www.dropbox.com/s/z5vchgzvzxv75es/conversation_entailment.tar?dl=0)
|
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 |
+
|
79 |
### Cite
|
80 |
|
81 |
[Towards Conversation Entailment: An Empirical Investigation](https://sled.eecs.umich.edu/publication/dblp-confemnlp-zhang-c-10/). *Chen Zhang, Joyce Chai*. EMNLP, 2010. [[Paper]](https://aclanthology.org/D10-1074/)
|