pietrolesci
commited on
Commit
•
32fef37
1
Parent(s):
a92cac7
Update README.md
Browse files
README.md
CHANGED
@@ -1,7 +1,17 @@
|
|
1 |
-
|
|
|
|
|
2 |
|
3 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
4 |
|
|
|
|
|
5 |
```python
|
6 |
import pandas as pd
|
7 |
from datasets import Dataset, ClassLabel, Value, Features, DatasetDict
|
|
|
1 |
+
## Overview
|
2 |
+
The original dataset can be found [here](https://github.com/swarnaHub/ConjNLI). It has been
|
3 |
+
proposed in [ConjNLI: Natural Language Inference Over Conjunctive Sentences](https://aclanthology.org/2020.emnlp-main.661/).
|
4 |
|
5 |
+
This dataset is a stress test for natural language inference over conjunctive sentences,
|
6 |
+
where the premise differs from the hypothesis by conjuncts removed, added, or replaced.
|
7 |
+
|
8 |
+
|
9 |
+
## Dataset curation
|
10 |
+
No curation is performed. This dataset is "as-is". The label mapping is the usual `{"entailment": 0, "neutral": 1, "contradiction": 2}`
|
11 |
+
used in NLI datasets.
|
12 |
|
13 |
+
|
14 |
+
## Code to create the dataset
|
15 |
```python
|
16 |
import pandas as pd
|
17 |
from datasets import Dataset, ClassLabel, Value, Features, DatasetDict
|