Datasets:

Modalities:
Text
Formats:
json
Languages:
English
ArXiv:
Libraries:
Datasets
pandas
License:
orionweller commited on
Commit
c96aaeb
·
1 Parent(s): cf52ea7

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +83 -1
README.md CHANGED
@@ -13,4 +13,86 @@ tags:
13
  - negation
14
  - information_retrieval
15
  - IR
16
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
13
  - negation
14
  - information_retrieval
15
  - IR
16
+ ---
17
+
18
+
19
+ # Dataset Card for NevIR: Negation in Neural Information Retrieval
20
+
21
+ ## Dataset Description
22
+
23
+ - **Repository:** [https://github.com/AbhilashaRavichander/CondaQA](https://github.com/orionw/NevIR)
24
+ - **Paper:** []()
25
+ - **Point of Contact:** [email protected]
26
+
27
+ ## Dataset Summary
28
+
29
+ Data from the paper: "NevIR: Negation in Neural Information Retrieval".
30
+
31
+ If you use this dataset, we would appreciate you citing our work:
32
+
33
+ ```
34
+ @inproceedings{weller-et-al-2023-nevir,
35
+ title={NevIR: Negation in Neural Information Retrieval},
36
+ author={Weller, Orion and Lawrie, Dawn, and Van Durme, Benjamin},
37
+ proceedings={arxiv},
38
+ year={2023}
39
+ }
40
+ ```
41
+
42
+ From the paper: "We introduce CondaQA to facilitate the future development of models that can process negation effectively. This is the first English reading comprehension dataset which requires reasoning about the implications of negated statements in paragraphs. We collect paragraphs with diverse negation cues, then have crowdworkers ask questions about the _implications_ of the negated statement in the passage. We also have workers make three kinds of edits to the passage---paraphrasing the negated statement, changing the scope of the negation, and reversing the negation---resulting in clusters of question-answer pairs that are difficult for models to answer with spurious shortcuts. CondaQA features 14,182 question-answer pairs with over 200 unique negation cues."
43
+
44
+ ### Supported Tasks and Leaderboards
45
+
46
+ The task is to answer a question given a Wikipedia passage that includes something being negated. There is no official leaderboard.
47
+
48
+ ### Language
49
+ English
50
+
51
+ ## Dataset Structure
52
+
53
+ ### Data Instances
54
+ Here's an example instance:
55
+
56
+ ```
57
+ {"QuestionID": "q10",
58
+ "original cue": "rarely",
59
+ "PassageEditID": 0,
60
+ "original passage": "Drug possession is the crime of having one or more illegal drugs in one's possession, either for personal use, distribution, sale or otherwise. Illegal drugs fall into different categories and sentences vary depending on the amount, type of drug, circumstances, and jurisdiction. In the U.S., the penalty for illegal drug possession and sale can vary from a small fine to a prison sentence. In some states, marijuana possession is considered to be a petty offense, with the penalty being comparable to that of a speeding violation. In some municipalities, possessing a small quantity of marijuana in one's own home is not punishable at all. Generally, however, drug possession is an arrestable offense, although first-time offenders rarely serve jail time. Federal law makes even possession of \"soft drugs\", such as cannabis, illegal, though some local governments have laws contradicting federal laws.",
61
+ "SampleID": 5294,
62
+ "label": "YES",
63
+ "original sentence": "Generally, however, drug possession is an arrestable offense, although first-time offenders rarely serve jail time.",
64
+ "sentence2": "If a drug addict is caught with marijuana, is there a chance he will be jailed?",
65
+ "PassageID": 444,
66
+ "sentence1": "Drug possession is the crime of having one or more illegal drugs in one's possession, either for personal use, distribution, sale or otherwise. Illegal drugs fall into different categories and sentences vary depending on the amount, type of drug, circumstances, and jurisdiction. In the U.S., the penalty for illegal drug possession and sale can vary from a small fine to a prison sentence. In some states, marijuana possession is considered to be a petty offense, with the penalty being comparable to that of a speeding violation. In some municipalities, possessing a small quantity of marijuana in one's own home is not punishable at all. Generally, however, drug possession is an arrestable offense, although first-time offenders rarely serve jail time. Federal law makes even possession of \"soft drugs\", such as cannabis, illegal, though some local governments have laws contradicting federal laws."
67
+ }
68
+
69
+ ```
70
+
71
+ ### Data Fields
72
+
73
+ * `QuestionID`: unique ID for this question (might be asked for multiple passages)
74
+ * `original cue`: Negation cue that was used to select this passage from Wikipedia
75
+ * `PassageEditID`: 0 = original passage, 1 = paraphrase-edit passage, 2 = scope-edit passage, 3 = affirmative-edit passage
76
+ * `original passage`: Original Wikipedia passage the passage is based on (note that the passage might either be the original Wikipedia passage itself, or an edit based on it)
77
+ * `SampleID`: unique ID for this passage-question pair
78
+ * `label`: answer
79
+ * `original sentence`: Sentence that contains the negated statement
80
+ * `sentence2`: question
81
+ * `PassageID`: unique ID for the Wikipedia passage
82
+ * `sentence1`: passage
83
+
84
+ ### Data Splits
85
+
86
+ Data splits can be accessed as:
87
+ ```
88
+ from datasets import load_dataset
89
+ train_set = load_dataset("nevir", "train")
90
+ dev_set = load_dataset("nevir", "dev")
91
+ test_set = load_dataset("nevir", "test")
92
+ ```
93
+
94
+ ## Dataset Creation
95
+
96
+ Full details are in the paper.
97
+
98
+