Update README.md
Browse files
README.md
CHANGED
@@ -32,6 +32,11 @@ Official dataset for [Towards Conversation Entailment: An Empirical Investigatio
|
|
32 |
Textual entailment has mainly focused on inference from written text in monologue. Recent years also observed an increasing amount of conversational data such as conversation scripts of meetings, call center records, court proceedings, as well as online chatting. Although conversation is a form of language, it is different from monologue text with several unique characteristics. The key distinctive features include turn-taking between participants, grounding between participants, different linguistic phenomena of utterances, and conversation implicatures. Traditional approaches dealing with textual entailment were not designed to handle these unique conversation behaviors and thus to support automated entailment from conversation scripts. This project intends to address this limitation.
|
33 |
|
34 |
### Download
|
|
|
|
|
|
|
|
|
|
|
35 |
* [HuggingFace-Dataset](https://huggingface.co/datasets/sled-umich/Conversation-Entailment)
|
36 |
* [DropVox](https://www.dropbox.com/s/z5vchgzvzxv75es/conversation_entailment.tar?dl=0)
|
37 |
|
|
|
32 |
Textual entailment has mainly focused on inference from written text in monologue. Recent years also observed an increasing amount of conversational data such as conversation scripts of meetings, call center records, court proceedings, as well as online chatting. Although conversation is a form of language, it is different from monologue text with several unique characteristics. The key distinctive features include turn-taking between participants, grounding between participants, different linguistic phenomena of utterances, and conversation implicatures. Traditional approaches dealing with textual entailment were not designed to handle these unique conversation behaviors and thus to support automated entailment from conversation scripts. This project intends to address this limitation.
|
33 |
|
34 |
### Download
|
35 |
+
```python
|
36 |
+
from datasets import load_dataset
|
37 |
+
|
38 |
+
dataset = load_dataset("sled-umich/Conversation-Entailment")
|
39 |
+
```
|
40 |
* [HuggingFace-Dataset](https://huggingface.co/datasets/sled-umich/Conversation-Entailment)
|
41 |
* [DropVox](https://www.dropbox.com/s/z5vchgzvzxv75es/conversation_entailment.tar?dl=0)
|
42 |
|