AntoineBlanot commited on
Commit
c4ee829
1 Parent(s): e803602

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +21 -0
README.md CHANGED
@@ -26,3 +26,24 @@ configs:
26
  - split: test
27
  path: data/test-*
28
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
26
  - split: test
27
  path: data/test-*
28
  ---
29
+ # Dataset Card for "mnli-contrast"
30
+ This dataset is the [mnli-3way](https://huggingface.co/datasets/AntoineBlanot/mnli-3way) dataset with an additional `instruction` feature.
31
+ This new feature along with its related `label_name` expresses how the `premise` and `hypothesis` features are related in the original dataset.
32
+
33
+ The following explains how the mapping is done:
34
+
35
+ ### If the original example was of class `entailment`
36
+ Two data points will be related to that example.
37
+
38
+ One is the positive example (i.e., `label_name` == "positive") which assign to it the folowing instruction: "The meaning of the hypothesis is logically inferred from the meaning of the premise."
39
+ The other is the negative example (i.e., `label_name` == "negative") which assign to it the folowing instruction: "The meaning of the hypothesis either contradicts the meaning of the premise, is unrelated to it, or does not provide sufficient information to infer the meaning of the premise."
40
+
41
+ ### If the original example was of class `contradiction` or `neutral`
42
+ Two data points will be related to that example.
43
+
44
+ One is the positive example (i.e., `label_name` == "positive") which assign to it the folowing instruction: "The meaning of the hypothesis either contradicts the meaning of the premise, is unrelated to it, or does not provide sufficient information to infer the meaning of the premise."
45
+ The other is the negative example (i.e., `label_name` == "negative") which assign to it the folowing instruction: "The meaning of the hypothesis is logically inferred from the meaning of the premise."
46
+
47
+ This dataset is double the size of this original dataset because each is related to a positive and negative instruction.
48
+
49
+ [More Information needed](https://github.com/huggingface/datasets/blob/main/CONTRIBUTING.md#how-to-contribute-to-the-dataset-cards)