XiangPan commited on
Commit
9c8ab32
·
1 Parent(s): 4a2f185

[Xiang Pan] upload

Browse files
multi_nli_with_bias_split.py ADDED
@@ -0,0 +1,126 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # coding=utf-8
2
+ # Copyright 2020 The TensorFlow Datasets Authors and the HuggingFace Datasets Authors.
3
+ #
4
+ # Licensed under the Apache License, Version 2.0 (the "License");
5
+ # you may not use this file except in compliance with the License.
6
+ # You may obtain a copy of the License at
7
+ #
8
+ # http://www.apache.org/licenses/LICENSE-2.0
9
+ #
10
+ # Unless required by applicable law or agreed to in writing, software
11
+ # distributed under the License is distributed on an "AS IS" BASIS,
12
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ # See the License for the specific language governing permissions and
14
+ # limitations under the License.
15
+
16
+ # Lint as: python3
17
+ """The Multi-Genre NLI Corpus."""
18
+
19
+
20
+ import json
21
+ import os
22
+
23
+ import datasets
24
+
25
+
26
+ _CITATION = """\
27
+ @InProceedings{N18-1101,
28
+ author = {Williams, Adina
29
+ and Nangia, Nikita
30
+ and Bowman, Samuel},
31
+ title = {A Broad-Coverage Challenge Corpus for
32
+ Sentence Understanding through Inference},
33
+ booktitle = {Proceedings of the 2018 Conference of
34
+ the North American Chapter of the
35
+ Association for Computational Linguistics:
36
+ Human Language Technologies, Volume 1 (Long
37
+ Papers)},
38
+ year = {2018},
39
+ publisher = {Association for Computational Linguistics},
40
+ pages = {1112--1122},
41
+ location = {New Orleans, Louisiana},
42
+ url = {http://aclweb.org/anthology/N18-1101}
43
+ }
44
+ """
45
+
46
+ _DESCRIPTION = """\
47
+ The Multi-Genre Natural Language Inference (MultiNLI) corpus is a
48
+ crowd-sourced collection of 433k sentence pairs annotated with textual
49
+ entailment information. The corpus is modeled on the SNLI corpus, but differs in
50
+ that covers a range of genres of spoken and written text, and supports a
51
+ distinctive cross-genre generalization evaluation. The corpus served as the
52
+ basis for the shared task of the RepEval 2017 Workshop at EMNLP in Copenhagen.
53
+ """
54
+
55
+
56
+ class MultiNLIWithBiasSplits(datasets.GeneratorBasedBuilder):
57
+ """MultiNLI: The Stanford Question Answering Dataset. Version 1.1."""
58
+
59
+ def _info(self):
60
+ return datasets.DatasetInfo(
61
+ description=_DESCRIPTION,
62
+ features=datasets.Features(
63
+ {
64
+ "promptID": datasets.Value("int32"),
65
+ "pairID": datasets.Value("string"),
66
+ "premise": datasets.Value("string"),
67
+ "premise_binary_parse": datasets.Value("string"), # parses in unlabeled binary-branching format
68
+ "premise_parse": datasets.Value("string"), # sentence as parsed by the Stanford PCFG Parser 3.5.2
69
+ "hypothesis": datasets.Value("string"),
70
+ "hypothesis_binary_parse": datasets.Value("string"), # parses in unlabeled binary-branching format
71
+ "hypothesis_parse": datasets.Value(
72
+ "string"
73
+ ), # sentence as parsed by the Stanford PCFG Parser 3.5.2
74
+ "genre": datasets.Value("string"),
75
+ "label": datasets.features.ClassLabel(names=["entailment", "neutral", "contradiction"]),
76
+ }
77
+ ),
78
+ # No default supervised_keys (as we have to pass both premise
79
+ # and hypothesis as input).
80
+ supervised_keys=None,
81
+ homepage="https://www.nyu.edu/projects/bowman/multinli/",
82
+ citation=_CITATION,
83
+ )
84
+
85
+ def _split_generators(self, dl_manager):
86
+
87
+ # downloaded_dir = dl_manager.download_and_extract("https://cims.nyu.edu/~sbowman/multinli/multinli_1.0.zip")
88
+ # mnli_path = os.path.join(downloaded_dir, "multinli_1.0")
89
+ mnli_path = "/mnt/sda/Labs/DatasetDistillationNLP/cached_datasets/multi_nli_with_bias_split/multinli_1.0"
90
+ # train_path = os.path.join(mnli_path, "multinli_1.0_train.jsonl")
91
+ # matched_validation_path = os.path.join(mnli_path, "multinli_1.0_dev_matched.jsonl")
92
+ # mismatched_validation_path = os.path.join(mnli_path, "multinli_1.0_dev_mismatched.jsonl")
93
+ train_lex = os.path.join(mnli_path, "multinli_1.0_train_lex.jsonl")
94
+ matched_validation_lex = os.path.join(mnli_path, "multinli_1.0_dev_matched_lex.jsonl")
95
+ mismatched_validation_lex = os.path.join(mnli_path, "multinli_1.0_dev_mismatched_lex.jsonl")
96
+ # train_lev_path = os.path.join(mnli_path, "multinli_1.0_train_lev.jsonl")
97
+
98
+ return [
99
+ # datasets.SplitGenerator(name=datasets.Split.TRAIN, gen_kwargs={"filepath": train_path}),
100
+ # datasets.SplitGenerator(name="validation_matched", gen_kwargs={"filepath": matched_validation_path}),
101
+ # datasets.SplitGenerator(name="validation_mismatched", gen_kwargs={"filepath": mismatched_validation_path}),
102
+ datasets.SplitGenerator(name="train_lex", gen_kwargs={"filepath": train_lex}),
103
+ datasets.SplitGenerator(name="validation_matched_lex", gen_kwargs={"filepath": matched_validation_lex}),
104
+ datasets.SplitGenerator(name="validation_mismatched_lex", gen_kwargs={"filepath": mismatched_validation_lex}),
105
+ ]
106
+
107
+ def _generate_examples(self, filepath):
108
+ """Generate mnli examples"""
109
+
110
+ with open(filepath, encoding="utf-8") as f:
111
+ for id_, row in enumerate(f):
112
+ data = json.loads(row)
113
+ if data["gold_label"] == "-":
114
+ continue
115
+ yield id_, {
116
+ "promptID": data["promptID"],
117
+ "pairID": data["pairID"],
118
+ "premise": data["sentence1"],
119
+ "premise_binary_parse": data["sentence1_binary_parse"],
120
+ "premise_parse": data["sentence1_parse"],
121
+ "hypothesis": data["sentence2"],
122
+ "hypothesis_binary_parse": data["sentence2_binary_parse"],
123
+ "hypothesis_parse": data["sentence2_parse"],
124
+ "genre": data["genre"],
125
+ "label": data["gold_label"],
126
+ }
multinli_1.0/.DS_Store ADDED
Binary file (6.15 kB). View file
 
multinli_1.0/Icon ADDED
File without changes
multinli_1.0/README.md ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Finding examples that contradict the heuristics
2
+
3
+ This directory contains scripts for finding examples in the MNLI training set which contradict the heuristics targeted by HANS. The `lex_finder.py` script was used to generate the file [mnli_contradicting_examples](https://github.com/tommccoy1/hans/blob/master/mnli_contradicting_examples).
4
+
5
+
6
+ How to use these scripts with MNLI:
7
+
8
+ Move these scripts into the same directory as MNLI, which can be downloaded
9
+ from here: https://www.nyu.edu/projects/bowman/multinli/
10
+
11
+ In particular, these scripts all read from the file `multinli_1.0_train.txt`
12
+
13
+ To look for examples of the lexical overlap heuristic, run:
14
+ python lex_finder.py
15
+
16
+ To look for examples of the subsequence heuristic, run:
17
+ python subseq_finder.py
18
+
19
+ To look for examples of the constituent heuristic, run:
20
+ python const_finder.py
21
+
22
+ Each of these scripts will first print out all examples from
23
+ multinli_1.0_train.txt that contradict the heuristic. At the
24
+ end, the script then prints out a summary of how many examples which could potentially relate to the heuristic were
25
+ entailment, contradiction, or neutral (where the ones that contradict the heuristic are ones with labels of contradiction or neutral). These numbers should match the table
26
+ near the start of Section 2 of the HANS paper
27
+ (https://arxiv.org/pdf/1902.01007.pdf).
28
+
29
+
30
+ If you want to use these scripts with a corpus other than MNLI, there are two
31
+ options:
32
+ 1) Format that corpus in the same way that MNLI is formatted, such
33
+ that these scripts can run on it.
34
+ 2) Modify these scripts to deal with the format of the other corpus.
35
+ For the lexical overlap and subsequence heuristics, it should be
36
+ straightforward to modify them for other corpora. For the constituent
37
+ heuristic, it might be a bit trickier, because that script relies on the
38
+ parses that are provided with MNLI. Therefore, if your corpus is not parsed,
39
+ you will need to parse it to tell whether the constituent heuristic applies.
40
+
41
+
42
+
multinli_1.0/README.txt ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ This is the 1.0 distribution of the The Multi-genre NLI (MultiNLI) Corpus.
2
+
3
+ License information and a detailed description of the corpus are included in the accompanying PDF.
4
+
5
+ If you use this corpus, please cite the attached data description paper.
6
+
7
+ @InProceedings{williams2018broad,
8
+ author = {Williams, Adina and Nangia, Nikita and Bowman, Samuel R.},
9
+ title = {A Broad-Coverage Challenge Corpus for Sentence Understanding through Inference},
10
+ booktitle = {Proceedings of the 2018 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies},
11
+ year = {2018},
12
+ publisher = {Association for Computational Linguistics},
13
+ }
14
+
15
+
16
+ Project page: https://www.nyu.edu/projects/bowman/multinli/
17
+
18
+
19
+ Release Notes
20
+ -------------
21
+
22
+ 1.0:
23
+ - Replaces values in pairID and promptID fields. PromptID values are now shared across examples
24
+ that were collected using the same prompt, as was originally intended, and pairID values are
25
+ simply promptID values with an extra letter indicating the specific field in the prompt that was
26
+ used. If you do not use these fields, this release is equivalent to 0.9.
multinli_1.0/const_finder.py ADDED
@@ -0,0 +1,112 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+
3
+ fi = open("multinli_1.0_train.txt", "r")
4
+ output_file = open("multinli_const.txt", "w")
5
+ output_index_list = []
6
+ count_entailment = 0
7
+ count_neutral = 0
8
+ count_contradiction = 0
9
+
10
+ def parse_phrase_list(parse, phrases):
11
+
12
+ #print(parse)
13
+ if parse == "":
14
+ return phrases
15
+
16
+ phrase_list = phrases
17
+
18
+
19
+
20
+ words = parse.split()
21
+ this_phrase = []
22
+ next_level_parse = []
23
+ for index, word in enumerate(words):
24
+ if word == "(":
25
+ next_level_parse += this_phrase
26
+ this_phrase = ["("]
27
+
28
+ elif word == ")" and len(this_phrase) > 0 and this_phrase[0] == "(":
29
+ phrase_list.append(" ".join(this_phrase[1:]))
30
+ next_level_parse += this_phrase[1:]
31
+ this_phrase = []
32
+ elif word == ")":
33
+ next_level_parse += this_phrase
34
+ next_level_parse.append(")")
35
+ this_phrase = []
36
+ else:
37
+ this_phrase.append(word)
38
+ #next_level_parse.append(word)
39
+
40
+ #next_level_parse += this_phrase
41
+ #print(phrase_list, " ".join(next_level_parse))
42
+
43
+ return parse_phrase_list(" ".join(next_level_parse), phrase_list)
44
+
45
+ first = True
46
+
47
+ counter = 0
48
+ for line_index, line in enumerate(fi):
49
+ #if counter % 1000 == 0:
50
+ # print(counter)
51
+ counter += 1
52
+
53
+ if first:
54
+ first = False
55
+ continue
56
+
57
+
58
+ parts = line.strip().split("\t")
59
+
60
+ premise = parts[5]
61
+ hypothesis = parts[6]
62
+ label = parts[0]
63
+ parse = parts[1]
64
+
65
+ parse_new = []
66
+ for word in parse.split():
67
+ if word not in [".", "?", "!"]:
68
+ parse_new.append(word.lower())
69
+
70
+ all_phrases = parse_phrase_list(" ".join(parse_new), [])
71
+
72
+ prem_words = []
73
+ hyp_words = []
74
+
75
+ for word in premise.split():
76
+ if word not in [".", "?", "!"]:
77
+ prem_words.append(word.lower().replace(".", "").replace("?", "").replace("!", ""))
78
+
79
+ for word in hypothesis.split():
80
+ if word not in [".", "?", "!"]:
81
+ hyp_words.append(word.lower().replace(".", "").replace("?", "").replace("!", ""))
82
+
83
+ prem_filtered = " ".join(prem_words)
84
+ hyp_filtered = " ".join(hyp_words)
85
+
86
+ #print(hyp_filtered, all_phrases)
87
+ if hyp_filtered in all_phrases:
88
+ #print(premise, hypothesis, label)
89
+ #print(label)
90
+ if label == "entailment":
91
+ count_entailment += 1
92
+ if label == "neutral":
93
+ count_neutral += 1
94
+ print(premise, hypothesis, label)
95
+ if label == "contradiction":
96
+ count_contradiction += 1
97
+ print(premise, hypothesis, label)
98
+ # output_file.write(line)
99
+ output_index_list.append(line_index)
100
+
101
+ #print(premise, hypothesis, label)
102
+
103
+ #break
104
+ # open json file
105
+ with open('multinli_1.0_train.jsonl', 'r') as f:
106
+ for line_index, line in enumerate(f):
107
+ if line_index in output_index_list:
108
+ output_file.write(line)
109
+
110
+ print("Entailment:", count_entailment)
111
+ print("Contradiction:", count_contradiction)
112
+ print("Neutral:", count_neutral)
multinli_1.0/lex_finder.py ADDED
@@ -0,0 +1,72 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+
3
+ postfix = "_lex"
4
+ # file_name = "multinli_1.0_train"
5
+ # file_name = "multinli_1.0_dev_matched"
6
+ file_name = "multinli_1.0_dev_mismatched"
7
+ fi = open(f"{file_name}.txt", "r")
8
+ output_file = open(f"{file_name}{postfix}.jsonl", "w")
9
+ output_index_list = []
10
+
11
+ count_entailment = 0
12
+ count_neutral = 0
13
+ count_contradiction = 0
14
+
15
+ for line_index, line in enumerate(fi):
16
+ parts = line.strip().split("\t")
17
+
18
+ premise = parts[5]
19
+ hypothesis = parts[6]
20
+ label = parts[0]
21
+
22
+ prem_words = []
23
+ hyp_words = []
24
+
25
+ for word in premise.split():
26
+ if word not in [".", "?", "!"]:
27
+ prem_words.append(word.lower())
28
+
29
+ for word in hypothesis.split():
30
+ if word not in [".", "?", "!"]:
31
+ hyp_words.append(word.lower())
32
+
33
+ prem_filtered = " ".join(prem_words)
34
+ hyp_filtered = " ".join(hyp_words)
35
+
36
+ all_in = True
37
+
38
+ for word in hyp_words:
39
+ if word not in prem_words:
40
+ all_in = False
41
+ break
42
+
43
+
44
+ if all_in:
45
+ #print(prem_filtered, hyp_filtered)
46
+ #print(premise, hypothesis, label)
47
+ #print(label)
48
+ if label == "entailment":
49
+ count_entailment += 1
50
+ if label == "neutral":
51
+ count_neutral += 1
52
+ print(premise, hypothesis, label)
53
+ if label == "contradiction":
54
+ count_contradiction += 1
55
+ print(premise, hypothesis, label)
56
+ # output_file.write(line)
57
+ output_index_list.append(line_index)
58
+
59
+
60
+ #print(premise, hypothesis, label)
61
+
62
+ # open json file
63
+ with open(f'{file_name}.jsonl', 'r') as f:
64
+ for line_index, line in enumerate(f):
65
+ if line_index in output_index_list:
66
+ output_file.write(line)
67
+ # load json file
68
+ # data = json.load(f)
69
+
70
+ print("Entailment:", count_entailment)
71
+ print("Contradiction:", count_contradiction)
72
+ print("Neutral:", count_neutral)
multinli_1.0/multinli_1.0_dev_matched_lex.jsonl ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"annotator_labels": ["entailment", "entailment", "entailment", "entailment", "entailment"], "genre": "fiction", "gold_label": "entailment", "pairID": "37136e", "promptID": "37136", "sentence1": "The Kal tangled both of Adrin's arms, keeping the blades far away.", "sentence1_binary_parse": "( ( The Kal ) ( ( ( ( tangled ( both ( of ( ( Adrin 's ) arms ) ) ) ) , ) ( ( keeping ( the blades ) ) ( far away ) ) ) . ) )", "sentence1_parse": "(ROOT (S (NP (DT The) (NNP Kal)) (VP (VBN tangled) (NP (NP (DT both)) (PP (IN of) (NP (NP (NNP Adrin) (POS 's)) (NNS arms)))) (, ,) (S (VP (VBG keeping) (NP (DT the) (NNS blades)) (ADVP (RB far) (RB away))))) (. .)))", "sentence2": "Adrin's arms were tangled, keeping his blades away from Kal.", "sentence2_binary_parse": "( ( ( Adrin 's ) arms ) ( ( ( ( were tangled ) , ) ( ( ( keeping ( his blades ) ) away ) ( from Kal ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (NP (NNP Adrin) (POS 's)) (NNS arms)) (VP (VBD were) (ADJP (JJ tangled)) (, ,) (S (VP (VBG keeping) (NP (PRP$ his) (NNS blades)) (PRT (RP away)) (PP (IN from) (NP (NNP Kal)))))) (. .)))"}
2
+ {"annotator_labels": ["neutral", "entailment", "entailment", "entailment", "entailment"], "genre": "telephone", "gold_label": "entailment", "pairID": "97673n", "promptID": "97673", "sentence1": "um-hum right do where are you at what state", "sentence1_binary_parse": "( ( um-hum right ) ( do ( where ( ( are you ) ( at ( what state ) ) ) ) ) )", "sentence1_parse": "(ROOT (S (NP (JJ um-hum) (NN right)) (VP (VBP do) (SBAR (SBARQ (WHADVP (WRB where)) (SQ (VBP are) (NP (PRP you)) (PP (IN at) (WHNP (WDT what) (NN state)))))))))", "sentence2": "Where are you located?", "sentence2_binary_parse": "( Where ( ( ( are you ) located ) ? ) )", "sentence2_parse": "(ROOT (SBARQ (WHADVP (WRB Where)) (SQ (VBP are) (NP (PRP you)) (VP (VBN located))) (. ?)))"}
3
+ {"annotator_labels": ["neutral", "entailment", "neutral", "entailment", "entailment"], "genre": "fiction", "gold_label": "entailment", "pairID": "61285n", "promptID": "61285", "sentence1": "We were playing all sorts of sports, and you were not, so shut up and stop twitching,' the microbe's tone of voice changed, it was lower and more resounding.", "sentence1_binary_parse": "( ( ( ( ( We ( were ( playing ( ( all sorts ) ( of sports ) ) ) ) ) , ) and ) ( you ( ( ( were not ) ( , ( ( ( so ( shut up ) ) and ) ( stop ( twitching ( , ( ' ( ( ( the ( microbe 's ) ) tone ) ( of voice ) ) ) ) ) ) ) ) ) changed ) ) ) ( , ( it ( ( was ( ( lower and ) ( more resounding ) ) ) . ) ) ) )", "sentence1_parse": "(ROOT (S (S (S (NP (PRP We)) (VP (VBD were) (VP (VBG playing) (NP (NP (DT all) (NNS sorts)) (PP (IN of) (NP (NNS sports))))))) (, ,) (CC and) (S (NP (PRP you)) (VP (VBD were) (RB not) (PRN (, ,) (S (VP (VP (ADVP (RB so)) (VB shut) (PRT (RP up))) (CC and) (VP (VB stop) (UCP (ADJP (JJ twitching)) (, ,) ('' ') (NP (NP (NP (DT the) (NN microbe) (POS 's)) (NN tone)) (PP (IN of) (NP (NN voice))))))))) (ADJP (JJ changed))))) (, ,) (NP (PRP it)) (VP (VBD was) (ADJP (ADJP (JJR lower)) (CC and) (ADJP (RBR more) (JJ resounding)))) (. .)))", "sentence2": "We have played football, basketball, baseball and soccer and you haven't played anything so shut your mouth. ", "sentence2_binary_parse": "( ( ( ( We ( have ( played ( football ( , ( basketball ( , ( ( baseball and ) soccer ) ) ) ) ) ) ) ) and ) ( you ( ( have n't ) ( ( played anything ) ( so ( shut ( your mouth ) ) ) ) ) ) ) . )", "sentence2_parse": "(ROOT (S (S (NP (PRP We)) (VP (VBP have) (VP (VBN played) (NP (NN football) (, ,) (NN basketball) (, ,) (NN baseball) (CC and) (NN soccer))))) (CC and) (S (NP (PRP you)) (VP (VBP have) (RB n't) (VP (VBN played) (NP (NN anything)) (S (RB so) (VP (VB shut) (NP (PRP$ your) (NN mouth))))))) (. .)))"}
4
+ {"annotator_labels": ["contradiction", "contradiction", "contradiction", "contradiction", "contradiction"], "genre": "telephone", "gold_label": "contradiction", "pairID": "111341c", "promptID": "111341", "sentence1": "well i think i got to agree with you there", "sentence1_binary_parse": "( ( well i ) ( ( think ( i ( got ( to ( agree ( with you ) ) ) ) ) ) there ) )", "sentence1_parse": "(ROOT (SINV (ADVP (RB well) (RB i)) (VP (VBP think) (SBAR (S (NP (FW i)) (VP (VBD got) (S (VP (TO to) (VP (VB agree) (PP (IN with) (NP (PRP you)))))))))) (NP (RB there))))", "sentence2": "I could not agree with you.", "sentence2_binary_parse": "( I ( ( ( could not ) ( agree ( with you ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (PRP I)) (VP (MD could) (RB not) (VP (VB agree) (PP (IN with) (NP (PRP you))))) (. .)))"}
5
+ {"annotator_labels": ["contradiction", "contradiction", "contradiction", "contradiction", "contradiction"], "genre": "travel", "gold_label": "contradiction", "pairID": "45426c", "promptID": "45426", "sentence1": "It's easy to overdose on the many temples, palaces, and museums in India.", "sentence1_binary_parse": "( It ( ( 's ( easy ( to ( ( overdose ( on ( ( ( ( ( ( the ( many temples ) ) , ) palaces ) , ) and ) museums ) ) ) ( in India ) ) ) ) ) . ) )", "sentence1_parse": "(ROOT (S (NP (PRP It)) (VP (VBZ 's) (ADJP (JJ easy) (S (VP (TO to) (VP (VB overdose) (PP (IN on) (NP (NP (DT the) (JJ many) (NNS temples)) (, ,) (NP (NNS palaces)) (, ,) (CC and) (NP (NNS museums)))) (PP (IN in) (NP (NNP India)))))))) (. .)))", "sentence2": "You'll find a scarcity of palaces and temples across India.", "sentence2_binary_parse": "( You ( ( 'll ( ( find ( ( a scarcity ) ( of ( ( palaces and ) temples ) ) ) ) ( across India ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (PRP You)) (VP (MD 'll) (VP (VB find) (NP (NP (DT a) (NN scarcity)) (PP (IN of) (NP (NNS palaces) (CC and) (NNS temples)))) (PP (IN across) (NP (NNP India))))) (. .)))"}
6
+ {"annotator_labels": ["contradiction", "neutral", "contradiction", "contradiction", "contradiction"], "genre": "telephone", "gold_label": "contradiction", "pairID": "109510c", "promptID": "109510", "sentence1": "so i really i really don't have heart burn at all with doing it myself over four nights tie i tied the car up if four days but we're fortunate we didn't need it", "sentence1_binary_parse": "( so ( i ( really ( i ( ( ( really ( ( ( do n't ) ( have ( heart ( ( burn ( at all ) ) ( with ( ( doing ( it myself ) ) ( ( over four ) nights ) ) ) ) ) ) ) ( ( tie i ) ( tied ( ( ( the car ) up ) ( if ( four days ) ) ) ) ) ) ) but ) ( we ( 're ( fortunate ( we ( ( did n't ) ( need it ) ) ) ) ) ) ) ) ) ) )", "sentence1_parse": "(ROOT (S (IN so) (NP (FW i)) (ADVP (RB really)) (VP (VBD i) (SBAR (S (S (ADVP (RB really)) (VP (VBP do) (RB n't) (VP (VB have) (S (NP (NN heart)) (VP (VB burn) (ADVP (IN at) (DT all)) (PP (IN with) (S (VP (VBG doing) (S (NP (PRP it)) (NP (PRP myself))) (NP (QP (IN over) (CD four)) (NNS nights))))))))) (NP (NP (FW tie) (FW i)) (VP (VBN tied) (PP (ADVP (NP (DT the) (NN car)) (RB up)) (IN if) (NP (CD four) (NNS days)))))) (CC but) (S (NP (PRP we)) (VP (VBP 're) (ADJP (JJ fortunate) (SBAR (S (NP (PRP we)) (VP (VBD did) (RB n't) (VP (VB need) (NP (PRP it))))))))))))))", "sentence2": "I tied the car up for four nights but I had heartburn the entire time.", "sentence2_binary_parse": "( ( ( ( I ( ( ( tied ( the car ) ) up ) ( for ( four nights ) ) ) ) but ) ( I ( had ( heartburn ( the ( entire time ) ) ) ) ) ) . )", "sentence2_parse": "(ROOT (S (S (NP (PRP I)) (VP (VBD tied) (NP (DT the) (NN car)) (PRT (RP up)) (PP (IN for) (NP (CD four) (NNS nights))))) (CC but) (S (NP (PRP I)) (VP (VBD had) (VP (VBN heartburn) (NP (DT the) (JJ entire) (NN time))))) (. .)))"}
7
+ {"annotator_labels": ["entailment", "entailment", "entailment", "entailment", "neutral"], "genre": "fiction", "gold_label": "entailment", "pairID": "17056e", "promptID": "17056", "sentence1": "But, when I discovered that it was known all over the village that it was John who was attracted by the farmer's pretty wife, his silence bore quite a different interpretation. ", "sentence1_binary_parse": "( But ( , ( ( when ( I ( discovered ( that ( it ( was ( ( known ( all ( over ( the village ) ) ) ) ( that ( it ( was ( John ( who ( was ( attracted ( by ( ( the ( farmer 's ) ) ( pretty wife ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ( , ( ( his silence ) ( ( bore ( quite ( a ( different interpretation ) ) ) ) . ) ) ) ) ) )", "sentence1_parse": "(ROOT (S (CC But) (, ,) (SBAR (WHADVP (WRB when)) (S (NP (PRP I)) (VP (VBD discovered) (SBAR (IN that) (S (NP (PRP it)) (VP (VBD was) (VP (VBN known) (NP (NP (DT all)) (PP (IN over) (NP (DT the) (NN village)))) (SBAR (IN that) (S (NP (PRP it)) (VP (VBD was) (NP (NP (NNP John)) (SBAR (WHNP (WP who)) (S (VP (VBD was) (VP (VBN attracted) (PP (IN by) (NP (NP (DT the) (NN farmer) (POS 's)) (JJ pretty) (NN wife)))))))))))))))))) (, ,) (NP (PRP$ his) (NN silence)) (VP (VBD bore) (NP (RB quite) (DT a) (JJ different) (NN interpretation))) (. .)))", "sentence2": "John was attracted to the farmer's pretty wife.", "sentence2_binary_parse": "( John ( ( was ( attracted ( to ( ( the ( farmer 's ) ) ( pretty wife ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (NNP John)) (VP (VBD was) (VP (VBN attracted) (PP (TO to) (NP (NP (DT the) (NN farmer) (POS 's)) (JJ pretty) (NN wife))))) (. .)))"}
8
+ {"annotator_labels": ["entailment", "entailment", "entailment", "entailment", "entailment"], "genre": "government", "gold_label": "entailment", "pairID": "73227e", "promptID": "73227", "sentence1": "Corroborating evidence is independent evidence that supports information in the database.", "sentence1_binary_parse": "( ( Corroborating evidence ) ( ( is ( ( independent evidence ) ( that ( supports ( information ( in ( the database ) ) ) ) ) ) ) . ) )", "sentence1_parse": "(ROOT (S (NP (VBG Corroborating) (NN evidence)) (VP (VBZ is) (NP (NP (JJ independent) (NN evidence)) (SBAR (WHNP (WDT that)) (S (VP (VBZ supports) (NP (NP (NN information)) (PP (IN in) (NP (DT the) (NN database))))))))) (. .)))", "sentence2": "Independent evidence that supports information in the database is called corroborating evidence.", "sentence2_binary_parse": "( ( ( Independent evidence ) ( that ( supports ( information ( in ( the database ) ) ) ) ) ) ( ( is ( called ( corroborating evidence ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (NP (JJ Independent) (NN evidence)) (SBAR (WHNP (WDT that)) (S (VP (VBZ supports) (NP (NP (NN information)) (PP (IN in) (NP (DT the) (NN database)))))))) (VP (VBZ is) (VP (VBN called) (S (VP (VBG corroborating) (NP (NN evidence)))))) (. .)))"}
9
+ {"annotator_labels": ["neutral", "contradiction", "neutral", "neutral", "neutral"], "genre": "telephone", "gold_label": "neutral", "pairID": "26844n", "promptID": "26844", "sentence1": "during the whole war he never put out like a conservation a conservation effort for oil", "sentence1_binary_parse": "( ( during ( the ( whole ( war he ) ) ) ) ( ( never ( ( put out ) ( like ( a conservation ) ) ) ) ( ( a ( conservation effort ) ) ( for oil ) ) ) )", "sentence1_parse": "(ROOT (SINV (PP (IN during) (NP (DT the) (JJ whole) (NN war) (PRP he))) (VP (ADVP (RB never)) (VBD put) (PRT (RP out)) (PP (IN like) (NP (DT a) (NN conservation)))) (NP (NP (DT a) (NN conservation) (NN effort)) (PP (IN for) (NP (NN oil))))))", "sentence2": "The Iraq war battlefield often contained many oil fields.", "sentence2_binary_parse": "( ( The ( Iraq ( war battlefield ) ) ) ( often ( ( contained ( many ( oil fields ) ) ) . ) ) )", "sentence2_parse": "(ROOT (S (NP (DT The) (NNP Iraq) (NN war) (NN battlefield)) (ADVP (RB often)) (VP (VBD contained) (NP (JJ many) (NN oil) (NNS fields))) (. .)))"}
10
+ {"annotator_labels": ["neutral", "contradiction", "contradiction", "neutral", "neutral"], "genre": "slate", "gold_label": "neutral", "pairID": "134769n", "promptID": "134769", "sentence1": "But of course the DSM is informed by social values.", "sentence1_binary_parse": "( But ( ( of course ) ( ( the DSM ) ( ( is ( informed ( by ( social values ) ) ) ) . ) ) ) )", "sentence1_parse": "(ROOT (S (CC But) (PP (IN of) (NP (NN course))) (NP (DT the) (NNP DSM)) (VP (VBZ is) (VP (VBN informed) (PP (IN by) (NP (JJ social) (NNS values))))) (. .)))", "sentence2": "The DSM is mostly concerned with medical inputs rather than social values.", "sentence2_binary_parse": "( ( The DSM ) ( ( is ( mostly ( concerned ( with ( ( ( medical inputs ) ( rather than ) ) ( social values ) ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (DT The) (NNP DSM)) (VP (VBZ is) (ADJP (RB mostly) (VBN concerned) (PP (IN with) (NP (NP (JJ medical) (NNS inputs)) (CONJP (RB rather) (IN than)) (NP (JJ social) (NNS values)))))) (. .)))"}
11
+ {"annotator_labels": ["entailment", "entailment", "entailment", "entailment", "entailment"], "genre": "government", "gold_label": "entailment", "pairID": "145472e", "promptID": "145472", "sentence1": "I don't know what I would have done without Legal Services, said James. ", "sentence1_binary_parse": "( ( I ( ( do n't ) ( know ( what ( I ( would ( have ( done ( without ( Legal Services ) ) ) ) ) ) ) ) ) ) ( , ( ( said James ) . ) ) )", "sentence1_parse": "(ROOT (SINV (S (NP (PRP I)) (VP (VBP do) (RB n't) (VP (VB know) (SBAR (WHNP (WP what)) (S (NP (PRP I)) (VP (MD would) (VP (VB have) (VP (VBN done) (PP (IN without) (NP (NNP Legal) (NNPS Services))))))))))) (, ,) (VP (VBD said)) (NP (NNP James)) (. .)))", "sentence2": "James said Legal Services helped him a lot.", "sentence2_binary_parse": "( James ( ( said ( ( Legal Services ) ( ( helped him ) ( a lot ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (NNP James)) (VP (VBD said) (SBAR (S (NP (NNP Legal) (NNPS Services)) (VP (VBD helped) (NP (PRP him)) (NP (DT a) (NN lot)))))) (. .)))"}
12
+ {"annotator_labels": ["neutral", "neutral", "neutral", "neutral", "neutral"], "genre": "fiction", "gold_label": "neutral", "pairID": "31641n", "promptID": "31641", "sentence1": "We're going to try something different this morning, said Jon.", "sentence1_binary_parse": "( ( We ( 're ( going ( to ( ( try something ) ( different ( this morning ) ) ) ) ) ) ) ( , ( ( said Jon ) . ) ) )", "sentence1_parse": "(ROOT (SINV (S (NP (PRP We)) (VP (VBP 're) (VP (VBG going) (S (VP (TO to) (VP (VB try) (NP (NN something)) (NP (JJ different) (DT this) (NN morning)))))))) (, ,) (VP (VBD said)) (NP (NNP Jon)) (. .)))", "sentence2": "Jon decided to try a new hobby.", "sentence2_binary_parse": "( Jon ( ( decided ( to ( try ( a ( new hobby ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (NNP Jon)) (VP (VBD decided) (S (VP (TO to) (VP (VB try) (NP (DT a) (JJ new) (NN hobby)))))) (. .)))"}
13
+ {"annotator_labels": ["contradiction", "contradiction", "contradiction", "contradiction", "contradiction"], "genre": "fiction", "gold_label": "contradiction", "pairID": "42024c", "promptID": "42024", "sentence1": "A man like me cannot fail\u2026 .", "sentence1_binary_parse": "( ( A man ) ( ( ( like ( me ( ( can not ) fail ) ) ) ... ) . ) )", "sentence1_parse": "(ROOT (S (NP (DT A) (NN man)) (VP (VBP like) (SBAR (S (NP (PRP me)) (VP (MD can) (RB not) (VP (VB fail)))))) (: ...) (. .)))", "sentence2": "A man of my character can only fail.", "sentence2_binary_parse": "( ( ( A man ) ( of ( my character ) ) ) ( ( ( can only ) fail ) . ) )", "sentence2_parse": "(ROOT (S (NP (NP (DT A) (NN man)) (PP (IN of) (NP (PRP$ my) (NN character)))) (VP (MD can) (ADVP (RB only)) (VP (VB fail))) (. .)))"}
14
+ {"annotator_labels": ["contradiction", "contradiction", "contradiction", "contradiction", "contradiction"], "genre": "fiction", "gold_label": "contradiction", "pairID": "808c", "promptID": "808", "sentence1": "He felt the off-hand dagger's weight in the small of his back.", "sentence1_binary_parse": "( He ( ( ( felt ( ( the ( off-hand ( dagger 's ) ) ) weight ) ) ( in ( ( the small ) ( of ( his back ) ) ) ) ) . ) )", "sentence1_parse": "(ROOT (S (NP (PRP He)) (VP (VBD felt) (NP (NP (DT the) (JJ off-hand) (NN dagger) (POS 's)) (NN weight)) (PP (IN in) (NP (NP (DT the) (JJ small)) (PP (IN of) (NP (PRP$ his) (NN back)))))) (. .)))", "sentence2": "The knife was still in the sheath.", "sentence2_binary_parse": "( ( The knife ) ( ( ( was still ) ( in ( the sheath ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (DT The) (NN knife)) (VP (VBD was) (ADVP (RB still)) (PP (IN in) (NP (DT the) (NN sheath)))) (. .)))"}
15
+ {"annotator_labels": ["contradiction", "neutral", "neutral", "neutral", "neutral"], "genre": "government", "gold_label": "neutral", "pairID": "28375c", "promptID": "28375", "sentence1": "Research and development is composed of", "sentence1_binary_parse": "( ( ( Research and ) development ) ( is ( composed of ) ) )", "sentence1_parse": "(ROOT (S (NP (NP (NNP Research)) (CC and) (NP (NN development))) (VP (VBZ is) (VP (VBN composed) (PP (IN of))))))", "sentence2": "Research and development is composed of orchestra instruments.", "sentence2_binary_parse": "( ( ( Research and ) development ) ( ( is ( composed ( of ( orchestra instruments ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (NP (NNP Research)) (CC and) (NP (NN development))) (VP (VBZ is) (VP (VBN composed) (PP (IN of) (NP (NN orchestra) (NNS instruments))))) (. .)))"}
16
+ {"annotator_labels": ["entailment", "entailment", "entailment", "entailment", "entailment"], "genre": "telephone", "gold_label": "entailment", "pairID": "8282e", "promptID": "8282", "sentence1": "any bad stuff so uh i think TI we spend of of of all the major semiconductor firms we probably put safety and environmental on the utmost foremost uh uh first thing we always look at and we probably put more money into the systems and engineering behind the systems than any other firm i know of we eat and sleep the stuff everything we do over here and uh", "sentence1_binary_parse": "( ( ( any ( bad stuff ) ) ( so ( uh ( i ( think ( TI ( we ( spend ( ( ( ( of ( of ( of ( ( all ( the ( major ( semiconductor firms ) ) ) ) ( we ( probably ( ( ( put ( ( safety and ) environmental ) ) ( on ( the ( utmost foremost ) ) ) ) ( ( uh uh ) ( first thing ) ) ) ) ) ) ) ) ) ( we ( always ( look at ) ) ) ) and ) ( we ( probably ( ( ( put ( more money ) ) ( into ( ( the ( ( systems and ) engineering ) ) ( behind ( the systems ) ) ) ) ) ( than ( any ( other ( firm i ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ( know ( ( ( of ( we ( ( ( eat and ) sleep ) ( ( the ( stuff everything ) ) ( we ( ( do over ) here ) ) ) ) ) ) and ) uh ) ) )", "sentence1_parse": "(ROOT (S (NP (NP (DT any) (JJ bad) (NN stuff)) (SBAR (IN so) (S (INTJ (UH uh)) (NP (FW i)) (VP (VBP think) (NP (NP (NNP TI)) (SBAR (S (NP (PRP we)) (VP (VBP spend) (SBAR (S (S (PP (IN of) (PP (IN of) (IN of) (NP (NP (PDT all) (DT the) (JJ major) (NN semiconductor) (NNS firms)) (SBAR (S (NP (PRP we)) (VP (ADVP (RB probably)) (VBD put) (S (UCP (NN safety) (CC and) (JJ environmental))) (PP (IN on) (NP (DT the) (JJ utmost) (NN foremost))) (NP (INTJ (UH uh) (UH uh)) (NP (JJ first) (NN thing))))))))) (NP (PRP we)) (ADVP (RB always)) (VP (VBP look) (PP (IN at)))) (CC and) (S (NP (PRP we)) (ADVP (RB probably)) (VP (VBD put) (NP (JJR more) (NN money)) (PP (IN into) (NP (NP (DT the) (NNS systems) (CC and) (NN engineering)) (PP (IN behind) (NP (DT the) (NNS systems))))) (PP (IN than) (NP (DT any) (JJ other) (NN firm) (NN i))))))))))))))) (VP (VBP know) (SBAR (SBAR (IN of) (S (NP (PRP we)) (VP (VBP eat) (CC and) (VBP sleep) (NP (NP (DT the) (NN stuff) (NN everything)) (SBAR (S (NP (PRP we)) (VP (VBP do) (PRT (RP over)) (ADVP (RB here))))))))) (CC and) (FRAG (INTJ (UH uh)))))))", "sentence2": "Compared to other firms, we spend much more on systems and engineering behind the systems", "sentence2_binary_parse": "( ( Compared ( to ( other firms ) ) ) ( , ( we ( ( ( spend ( much more ) ) ( on ( ( systems and ) engineering ) ) ) ( behind ( the systems ) ) ) ) ) )", "sentence2_parse": "(ROOT (S (PP (VBN Compared) (PP (TO to) (NP (JJ other) (NNS firms)))) (, ,) (NP (PRP we)) (VP (VBP spend) (ADVP (RB much) (RBR more)) (PP (IN on) (NP (NNS systems) (CC and) (NN engineering))) (PP (IN behind) (NP (DT the) (NNS systems))))))"}
17
+ {"annotator_labels": ["neutral", "entailment", "neutral", "neutral", "entailment"], "genre": "telephone", "gold_label": "neutral", "pairID": "102174n", "promptID": "102174", "sentence1": "and see if Kansas if Kansas yeah but then you know it could be what if they're not hitting that night or they're low or anything and see i i feel like the college you know it's kids it's still kids", "sentence1_binary_parse": "( and ( ( ( ( see ( if Kansas ) ) ( if ( Kansas ( yeah ( ( ( but ( then ( you ( know ( it ( could ( ( be what ) ( if ( they ( ( 're not ) ( hitting ( that night ) ) ) ) ) ) ) ) ) ) ) ) or ) ( they ( 're ( ( low or ) anything ) ) ) ) ) ) ) ) and ) ( see ( ( i ( i feel ) ) ( like ( ( the college ) ( you ( know ( it ( 's ( kids ( it ( ( 's still ) kids ) ) ) ) ) ) ) ) ) ) ) ) )", "sentence1_parse": "(ROOT (S (VP (CC and) (VP (VB see) (PP (IN if) (NP (NNP Kansas))) (SBAR (IN if) (S (NP (NNP Kansas)) (VP (VBP yeah) (SBAR (S (S (CC but) (ADVP (RB then)) (NP (PRP you)) (VP (VBP know) (SBAR (S (NP (PRP it)) (VP (MD could) (VP (VB be) (NP (WP what)) (SBAR (IN if) (S (NP (PRP they)) (VP (VBP 're) (RB not) (VP (VBG hitting) (NP (DT that) (NN night)))))))))))) (CC or) (S (NP (PRP they)) (VP (VBP 're) (ADJP (ADJP (JJ low)) (CC or) (ADJP (NN anything))))))))))) (CC and) (VP (VB see) (NP (NP (FW i) (FW i) (NN feel)) (PP (IN like) (NP (NP (DT the) (NN college)) (SBAR (S (NP (PRP you)) (VP (VBP know) (SBAR (S (NP (PRP it)) (VP (VBZ 's) (NP (NP (NNS kids)) (SBAR (S (NP (PRP it)) (VP (VBZ 's) (ADVP (RB still)) (NP (NNS kids)))))))))))))))))))", "sentence2": "What if they are having a bad night?", "sentence2_binary_parse": "( What ( ( if ( they ( are ( having ( a ( bad night ) ) ) ) ) ) ? ) )", "sentence2_parse": "(ROOT (FRAG (WHNP (WDT What)) (SBAR (IN if) (S (NP (PRP they)) (VP (VBP are) (VP (VBG having) (NP (DT a) (JJ bad) (NN night)))))) (. ?)))"}
18
+ {"annotator_labels": ["contradiction", "contradiction", "contradiction", "contradiction", "contradiction"], "genre": "telephone", "gold_label": "contradiction", "pairID": "7707c", "promptID": "7707", "sentence1": "so i how do you feel that it should be applied", "sentence1_binary_parse": "( ( ( so i ) how ) ( ( do you ) ( feel ( that ( it ( should ( be applied ) ) ) ) ) ) )", "sentence1_parse": "(ROOT (SBARQ (WHADVP (ADVP (RB so) (RB i)) (WRB how)) (SQ (VBP do) (NP (PRP you)) (VP (VB feel) (SBAR (IN that) (S (NP (PRP it)) (VP (MD should) (VP (VB be) (VP (VBN applied))))))))))", "sentence2": "I do not care about your feeling just apply it whichever way to finish it already.", "sentence2_binary_parse": "( I ( ( ( do not ) ( ( ( ( ( ( care about ) ( your feeling ) ) just ) apply ) it ) ( ( whichever way ) ( to ( ( finish it ) already ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (PRP I)) (VP (VBP do) (RB not) (VP (VB care) (PRT (RP about)) (NP (PRP$ your) (NN feeling)) (ADVP (RB just)) (VB apply) (NP (PRP it)) (SBAR (WHNP (WDT whichever) (NN way)) (S (VP (TO to) (VP (VB finish) (NP (PRP it)) (ADVP (RB already)))))))) (. .)))"}
19
+ {"annotator_labels": ["entailment", "entailment", "entailment", "entailment", "entailment"], "genre": "fiction", "gold_label": "entailment", "pairID": "85863e", "promptID": "85863", "sentence1": "Sometimes it flattens entire neighbourhoods to make life easier for them.", "sentence1_binary_parse": "( Sometimes ( it ( ( flattens ( ( entire neighbourhoods ) ( to ( ( ( make life ) easier ) ( for them ) ) ) ) ) . ) ) )", "sentence1_parse": "(ROOT (S (ADVP (RB Sometimes)) (NP (PRP it)) (VP (VBZ flattens) (S (NP (JJ entire) (NNS neighbourhoods)) (VP (TO to) (VP (VB make) (NP (NN life)) (ADVP (RBR easier)) (PP (IN for) (NP (PRP them))))))) (. .)))", "sentence2": "Entire neighborhoods have been flattened just to make life easier for them.", "sentence2_binary_parse": "( ( Entire neighborhoods ) ( ( have ( been ( ( flattened just ) ( to ( ( ( make life ) easier ) ( for them ) ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (JJ Entire) (NNS neighborhoods)) (VP (VBP have) (VP (VBN been) (VP (VBN flattened) (ADVP (RB just)) (S (VP (TO to) (VP (VB make) (NP (NN life)) (ADVP (RBR easier)) (PP (IN for) (NP (PRP them))))))))) (. .)))"}
20
+ {"annotator_labels": ["contradiction", "neutral", "neutral", "neutral", "entailment"], "genre": "fiction", "gold_label": "neutral", "pairID": "23414c", "promptID": "23414", "sentence1": "Why bother to sacrifice your lives for dirt farmers and slavers?", "sentence1_binary_parse": "( Why ( ( bother ( to ( ( sacrifice ( your lives ) ) ( for ( dirt ( ( farmers and ) slavers ) ) ) ) ) ) ? ) )", "sentence1_parse": "(ROOT (SBARQ (WHADVP (WRB Why)) (SQ (VP (VBP bother) (S (VP (TO to) (VP (VB sacrifice) (NP (PRP$ your) (NNS lives)) (PP (IN for) (NP (NN dirt) (NNS farmers) (CC and) (NNS slavers)))))))) (. ?)))", "sentence2": "No one cares about the dirt farmers and slaves.", "sentence2_binary_parse": "( ( No one ) ( ( cares ( about ( the ( dirt ( ( farmers and ) slaves ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (DT No) (NN one)) (VP (VBZ cares) (PP (IN about) (NP (DT the) (NN dirt) (NNS farmers) (CC and) (NNS slaves)))) (. .)))"}
21
+ {"annotator_labels": ["contradiction", "contradiction", "contradiction", "contradiction", "contradiction"], "genre": "government", "gold_label": "contradiction", "pairID": "4795c", "promptID": "4795", "sentence1": "We saw a whole new model develop - a holistic approach to lawyering, one-stop shopping, she said. ", "sentence1_binary_parse": "( ( We ( saw ( ( a ( whole ( new model ) ) ) ( ( develop - ) ( ( a ( holistic approach ) ) ( to ( lawyering ( , ( one-stop shopping ) ) ) ) ) ) ) ) ) ( , ( she ( said . ) ) ) )", "sentence1_parse": "(ROOT (S (S (NP (PRP We)) (VP (VBD saw) (SBAR (S (NP (DT a) (JJ whole) (JJ new) (NN model)) (VP (VBP develop) (: -) (NP (NP (DT a) (JJ holistic) (NN approach)) (PP (TO to) (NP (JJ lawyering) (, ,) (JJ one-stop) (VBG shopping))))))))) (, ,) (NP (PRP she)) (VP (VBD said)) (. .)))", "sentence2": "She felt like holistic lawyering overcomplicates the shopping process.", "sentence2_binary_parse": "( She ( ( felt ( like ( ( holistic lawyering ) ( overcomplicates ( the ( shopping process ) ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (PRP She)) (VP (VBD felt) (SBAR (IN like) (S (NP (JJ holistic) (NN lawyering)) (VP (VBZ overcomplicates) (NP (DT the) (NN shopping) (NN process)))))) (. .)))"}
22
+ {"annotator_labels": ["entailment", "neutral", "neutral", "contradiction", "neutral"], "genre": "slate", "gold_label": "neutral", "pairID": "100409e", "promptID": "100409", "sentence1": "That example points to an important general Total expenditure is determined by the value of the prize, whether we're talking about presidential campaigns or state lotteries.", "sentence1_binary_parse": "( ( ( That ( example points ) ) ( to ( an ( important ( general ( Total expenditure ) ) ) ) ) ) ( ( is ( ( ( determined ( by ( ( the value ) ( of ( the prize ) ) ) ) ) , ) ( whether ( we ( 're ( talking ( about ( presidential ( campaigns ( or ( state lotteries ) ) ) ) ) ) ) ) ) ) ) . ) )", "sentence1_parse": "(ROOT (S (NP (NP (DT That) (NN example) (NNS points)) (PP (TO to) (NP (DT an) (JJ important) (JJ general) (JJ Total) (NN expenditure)))) (VP (VBZ is) (VP (VBN determined) (PP (IN by) (NP (NP (DT the) (NN value)) (PP (IN of) (NP (DT the) (NN prize))))) (, ,) (SBAR (IN whether) (S (NP (PRP we)) (VP (VBP 're) (VP (VBG talking) (PP (IN about) (NP (JJ presidential) (NNS campaigns) (CC or) (NN state) (NNS lotteries))))))))) (. .)))", "sentence2": "They stated that the monetary amount of the prize was determined regardless of how the prize was used.", "sentence2_binary_parse": "( They ( ( stated ( that ( ( ( the ( monetary amount ) ) ( of ( the prize ) ) ) ( was ( determined ( regardless ( of ( how ( ( the prize ) ( was used ) ) ) ) ) ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (PRP They)) (VP (VBD stated) (SBAR (IN that) (S (NP (NP (DT the) (JJ monetary) (NN amount)) (PP (IN of) (NP (DT the) (NN prize)))) (VP (VBD was) (VP (VBN determined) (ADVP (RB regardless) (PP (IN of) (SBAR (WHADVP (WRB how)) (S (NP (DT the) (NN prize)) (VP (VBD was) (VP (VBN used)))))))))))) (. .)))"}
23
+ {"annotator_labels": ["entailment", "neutral", "entailment", "entailment", "entailment"], "genre": "slate", "gold_label": "entailment", "pairID": "91603e", "promptID": "91603", "sentence1": "The anthropologist Napoleon Chagnon has shown that Yanomamo men who have killed other men have more wives and more offspring than average guys.", "sentence1_binary_parse": "( ( The ( anthropologist ( Napoleon Chagnon ) ) ) ( ( has ( shown ( that ( ( ( Yanomamo men ) ( who ( have ( killed ( other men ) ) ) ) ) ( have ( ( ( more wives ) and ) ( ( more offspring ) ( than ( average guys ) ) ) ) ) ) ) ) ) . ) )", "sentence1_parse": "(ROOT (S (NP (DT The) (JJ anthropologist) (NNP Napoleon) (NNP Chagnon)) (VP (VBZ has) (VP (VBN shown) (SBAR (IN that) (S (NP (NP (NNP Yanomamo) (NNS men)) (SBAR (WHNP (WP who)) (S (VP (VBP have) (VP (VBN killed) (NP (JJ other) (NNS men))))))) (VP (VBP have) (NP (NP (JJR more) (NNS wives)) (CC and) (NP (NP (JJR more) (NN offspring)) (PP (IN than) (NP (JJ average) (NNS guys)))))))))) (. .)))", "sentence2": "There is a direct correlation between Yanomamo killers and the amount of wives a man has.", "sentence2_binary_parse": "( There ( ( is ( ( ( ( a ( direct correlation ) ) ( between ( Yanomamo killers ) ) ) and ) ( ( the amount ) ( of ( wives ( ( a man ) has ) ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (EX There)) (VP (VBZ is) (NP (NP (NP (DT a) (JJ direct) (NN correlation)) (PP (IN between) (NP (NNP Yanomamo) (NNS killers)))) (CC and) (NP (NP (DT the) (NN amount)) (PP (IN of) (NP (NP (NNS wives)) (SBAR (S (NP (DT a) (NN man)) (VP (VBZ has))))))))) (. .)))"}
24
+ {"annotator_labels": ["entailment", "entailment", "entailment", "entailment", "entailment"], "genre": "slate", "gold_label": "entailment", "pairID": "53468e", "promptID": "53468", "sentence1": "But is the Internet so miraculous an advertising vehicle that Gross will be able to siphon off $400 per person from total ad spending of $1,000 per family--or persuade advertisers to spend an additional $400 to reach each of his customers?", "sentence1_binary_parse": "( But ( ( ( is ( the Internet ) ) ( so ( ( miraculous ( an ( advertising vehicle ) ) ) ( that ( Gross ( will ( be ( able ( to ( ( ( ( ( ( siphon off ) ( ( $ 400 ) ( per person ) ) ) ( from ( ( total ( ad spending ) ) ( of ( ( $ 1,000 ) ( per family ) ) ) ) ) ) -- ) or ) ( persuade ( advertisers ( to ( ( spend ( an ( additional ( $ 400 ) ) ) ) ( to ( reach ( each ( of ( his customers ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ? ) )", "sentence1_parse": "(ROOT (SQ (CC But) (VBZ is) (NP (DT the) (NN Internet)) (ADJP (RB so) (SBAR (S (VP (VBZ miraculous) (NP (DT an) (NN advertising) (NN vehicle)) (SBAR (IN that) (S (NP (NNP Gross)) (VP (MD will) (VP (VB be) (ADJP (JJ able) (S (VP (TO to) (VP (VP (VB siphon) (PRT (RP off)) (NP (NP ($ $) (CD 400)) (PP (IN per) (NP (NN person)))) (PP (IN from) (NP (NP (JJ total) (NN ad) (NN spending)) (PP (IN of) (NP (NP ($ $) (CD 1,000)) (PP (IN per) (NP (NN family)))))))) (: --) (CC or) (VP (VB persuade) (S (NP (NNS advertisers)) (VP (TO to) (VP (VB spend) (NP (DT an) (JJ additional) ($ $) (CD 400)) (S (VP (TO to) (VP (VB reach) (NP (NP (DT each)) (PP (IN of) (NP (PRP$ his) (NNS customers))))))))))))))))))))))) (. ?)))", "sentence2": "Was the internet so great at advertising that Gross would pay $400 per person per ad, totalling spending $1000 per family or persuade adversisers to shell out an extra $400 to reach each customer?", "sentence2_binary_parse": "( ( ( Was ( ( the internet ) ( so ( great ( at ( advertising ( that ( Gross ( would ( pay ( ( ( ( $ 400 ) ( per ( person ( per ad ) ) ) ) , ) totalling ) ) ) ) ) ) ) ) ) ) ) ( ( spending ( ( $ 1000 ) ( per ( family ( or ( persuade adversisers ) ) ) ) ) ) ( to ( ( ( shell out ) ( an ( extra ( $ 400 ) ) ) ) ( to ( reach ( each customer ) ) ) ) ) ) ) ? )", "sentence2_parse": "(ROOT (SQ (VBD Was) (NP (NP (DT the) (NN internet)) (ADJP (RB so) (JJ great) (PP (IN at) (S (VP (VBG advertising) (SBAR (IN that) (S (NP (NNP Gross)) (VP (MD would) (VP (VB pay) (NP (NP ($ $) (CD 400)) (PP (IN per) (NP (NP (NN person)) (PP (IN per) (NP (NN ad))))) (, ,) (VP (VBG totalling)))))))))))) (VP (VBG spending) (NP (NP ($ $) (CD 1000)) (PP (IN per) (NP (NN family) (CC or) (NN persuade) (NNS adversisers)))) (S (VP (TO to) (VP (VB shell) (PRT (RP out)) (NP (DT an) (JJ extra) ($ $) (CD 400)) (S (VP (TO to) (VP (VB reach) (NP (DT each) (NN customer))))))))) (. ?)))"}
25
+ {"annotator_labels": ["contradiction", "contradiction", "contradiction", "contradiction", "contradiction"], "genre": "telephone", "gold_label": "contradiction", "pairID": "55652c", "promptID": "55652", "sentence1": "i know that you know the further we go from Adam the worse the food is for you but God still somehow makes us all be able to still live i think it's a miracle we're all still alive after so many generations well the last couple of processed foods you know i mean but i don't know i like to i like to my i like to be able to eat really healthy you know what am saying and i guess i'm going to have to wait for the millennium i think though because i do don't think we're going to restore the earth to you know i think Jesus is the only one that can make this earth be restored to what it should be", "sentence1_binary_parse": "( i ( know ( that ( you ( know ( ( ( the further ) ( we ( go ( ( ( ( ( ( from Adam ) ( ( the worse ) ( ( the food ) ( is ( for you ) ) ) ) ) ( but ( God ( still ( somehow ( makes ( us ( all ( be ( able ( to ( still ( live ( i ( think ( it ( 's ( ( a miracle ) ( we ( ( 're all ) ( still ( alive ( after ( ( ( so many ) generations ) ( well ( ( the ( last couple ) ) ( of ( processed foods ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ( you ( know ( i mean ) ) ) ) but ) ( i ( ( do n't ) ( ( ( know i ) ( like ( to i ) ) ) ( like ( to ( ( my i ) ( like ( ( ( to ( be ( able ( to ( eat ( really ( healthy ( you ( know ( what ( am saying ) ) ) ) ) ) ) ) ) ) ) and ) ( i ( guess i ) ) ) ) ) ) ) ) ) ) ) ) ) ) ( 'm ( going ( to ( have ( to ( wait ( for ( ( the ( millennium i ) ) ( think ( though ( ( because ( i ( do ( ( do n't ) ( think ( we ( 're ( going ( to ( ( restore ( the earth ) ) ( to you ) ) ) ) ) ) ) ) ) ) ) ( know ( i ( think ( Jesus ( is ( ( the ( only one ) ) ( that ( can ( make ( ( this earth ) ( be ( restored ( to ( what ( it ( should be ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) )", "sentence1_parse": "(ROOT (S (NP (FW i)) (VP (VBP know) (SBAR (IN that) (S (NP (PRP you)) (VP (VBP know) (SBAR (S (NP (NP (DT the) (JJ further)) (SBAR (S (NP (PRP we)) (VP (VBP go) (S (S (X (IN from) (NNP Adam)) (X (DT the) (ADJP (JJR worse))) (NP (DT the) (NN food)) (VP (VBZ is) (PP (IN for) (NP (PRP you))))) (S (CC but) (NP (NNP God)) (ADVP (RB still)) (ADVP (RB somehow)) (VP (VBZ makes) (S (NP (PRP us)) (RB all) (VP (VB be) (ADJP (JJ able) (S (VP (TO to) (VP (ADVP (RB still)) (VB live) (NP (NP (FW i)) (SBAR (S (VP (VBP think) (SBAR (S (NP (PRP it)) (VP (VBZ 's) (NP (NP (DT a) (NN miracle)) (SBAR (S (NP (PRP we)) (VP (VBP 're) (RB all) (ADJP (RB still) (JJ alive) (PP (IN after) (NP (NP (ADJP (RB so) (JJ many)) (NNS generations)) (RRC (ADVP (RB well)) (NP (NP (DT the) (JJ last) (NN couple)) (PP (IN of) (NP (VBN processed) (NNS foods))))))))))))))))))))))))))) (S (NP (PRP you)) (VP (VBP know) (SBAR (S (NP (FW i)) (VP (VBP mean)))))) (CC but) (S (NP (FW i)) (VP (VBP do) (RB n't) (VP (VB know) (NP (FW i)) (PP (IN like) (PP (TO to) (NP (FW i)))) (PP (IN like) (PP (TO to) (NP (NP (PRP$ my) (FW i)) (PP (IN like) (NP (S (VP (TO to) (VP (VB be) (ADJP (JJ able) (S (VP (TO to) (VP (VB eat) (ADJP (RB really) (JJ healthy) (SBAR (S (NP (PRP you)) (VP (VBP know) (SBAR (WHNP (WP what)) (S (VP (VBP am) (VP (VBG saying)))))))))))))))) (CC and) (NP (FW i) (FW guess) (FW i))))))))))))))) (VP (VBP 'm) (VP (VBG going) (S (VP (TO to) (VP (VB have) (S (VP (TO to) (VP (VB wait) (SBAR (IN for) (S (NP (DT the) (JJ millennium) (FW i)) (VP (VBP think) (SBAR (IN though) (S (SBAR (IN because) (S (NP (FW i)) (VP (VBP do) (SBAR (S (VP (VBP do) (RB n't) (VP (VB think) (SBAR (S (NP (PRP we)) (VP (VBP 're) (VP (VBG going) (S (VP (TO to) (VP (VB restore) (NP (DT the) (NN earth)) (PP (TO to) (NP (PRP you))))))))))))))))) (VP (VBP know) (SBAR (S (NP (FW i)) (VP (VBP think) (SBAR (S (NP (NNP Jesus)) (VP (VBZ is) (NP (NP (DT the) (JJ only) (NN one)) (SBAR (WHNP (WDT that)) (S (VP (MD can) (VP (VB make) (S (NP (DT this) (NN earth)) (VP (VB be) (VP (VBN restored) (PP (TO to) (SBAR (WHNP (WP what)) (S (NP (PRP it)) (VP (MD should) (VP (VB be))))))))))))))))))))))))))))))))))))))))))", "sentence2": "The further from Adam we go, the better the food become for you.", "sentence2_binary_parse": "( ( ( ( The further ) ( from Adam ) ) ( we go ) ) ( , ( ( the better ) ( ( ( the food ) ( become ( for you ) ) ) . ) ) ) )", "sentence2_parse": "(ROOT (X (SBAR (WHNP (NP (DT The) (JJ further)) (PP (IN from) (NP (NNP Adam)))) (S (NP (PRP we)) (VP (VBP go)))) (, ,) (X (DT the) (JJR better)) (NP (NP (DT the) (NN food)) (VP (VBN become) (PP (IN for) (NP (PRP you))))) (. .)))"}
26
+ {"annotator_labels": ["contradiction", "neutral", "contradiction", "contradiction", "contradiction"], "genre": "government", "gold_label": "contradiction", "pairID": "42868c", "promptID": "42868", "sentence1": "The purpose of this paper is to analyze rural delivery costs and compare them with city delivery costs.", "sentence1_binary_parse": "( ( ( The purpose ) ( of ( this paper ) ) ) ( ( is ( to ( ( ( analyze ( rural ( delivery costs ) ) ) and ) ( ( compare them ) ( with ( city ( delivery costs ) ) ) ) ) ) ) . ) )", "sentence1_parse": "(ROOT (S (NP (NP (DT The) (NN purpose)) (PP (IN of) (NP (DT this) (NN paper)))) (VP (VBZ is) (S (VP (TO to) (VP (VP (VB analyze) (NP (JJ rural) (NN delivery) (NNS costs))) (CC and) (VP (VB compare) (NP (PRP them)) (PP (IN with) (NP (NN city) (NN delivery) (NNS costs)))))))) (. .)))", "sentence2": "They didn't compare the costs of rural vs city delivery.", "sentence2_binary_parse": "( They ( ( ( did n't ) ( compare ( ( the costs ) ( of ( rural ( vs ( city delivery ) ) ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (PRP They)) (VP (VBD did) (RB n't) (VP (VB compare) (NP (NP (DT the) (NNS costs)) (PP (IN of) (NP (JJ rural) (NN vs) (NN city) (NN delivery)))))) (. .)))"}
27
+ {"annotator_labels": ["entailment", "entailment", "entailment", "entailment", "entailment"], "genre": "government", "gold_label": "entailment", "pairID": "67113e", "promptID": "67113", "sentence1": "The seven grants flow from a new Nonprofit Capacity Building program at the foundation, part of a trend among philanthropists to give money to help organizations grow stronger, rather than to the program services they provide.", "sentence1_binary_parse": "( ( The ( seven grants ) ) ( ( ( flow ( from ( a ( new ( Nonprofit ( Capacity ( Building program ) ) ) ) ) ) ) ( ( ( ( at ( ( ( the foundation ) , ) ( part ( of ( ( a trend ) ( among ( philanthropists ( to ( ( give money ) ( to ( help ( organizations ( grow stronger ) ) ) ) ) ) ) ) ) ) ) ) ) , ) ( rather than ) ) ( to ( ( the ( program services ) ) ( they provide ) ) ) ) ) . ) )", "sentence1_parse": "(ROOT (S (NP (DT The) (CD seven) (NNS grants)) (VP (VBP flow) (PP (IN from) (NP (DT a) (JJ new) (NNP Nonprofit) (NNP Capacity) (NNP Building) (NN program))) (PP (PP (IN at) (NP (NP (DT the) (NN foundation)) (, ,) (NP (NP (NN part)) (PP (IN of) (NP (NP (DT a) (NN trend)) (PP (IN among) (NP (NNS philanthropists) (S (VP (TO to) (VP (VB give) (NP (NN money)) (S (VP (TO to) (VP (VB help) (S (NP (NNS organizations)) (VP (VB grow) (ADJP (JJR stronger))))))))))))))))) (, ,) (CONJP (RB rather) (IN than)) (PP (TO to) (NP (NP (DT the) (NN program) (NNS services)) (SBAR (S (NP (PRP they)) (VP (VBP provide)))))))) (. .)))", "sentence2": "The grants flow from a Nonprofit Capacity Building program at the foundation, exemplifying a trend among philanthropists to give money to grow organizations.", "sentence2_binary_parse": "( ( The grants ) ( ( ( ( ( flow ( from ( a ( Nonprofit ( Capacity ( Building program ) ) ) ) ) ) ( at ( the foundation ) ) ) , ) ( ( ( exemplifying ( a trend ) ) ( among philanthropists ) ) ( to ( ( give money ) ( to ( grow organizations ) ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (DT The) (NNS grants)) (VP (NN flow) (PP (IN from) (NP (DT a) (NNP Nonprofit) (NNP Capacity) (NNP Building) (NN program))) (PP (IN at) (NP (DT the) (NN foundation))) (, ,) (S (VP (VBG exemplifying) (NP (DT a) (NN trend)) (PP (IN among) (NP (NNS philanthropists))) (S (VP (TO to) (VP (VB give) (NP (NN money)) (S (VP (TO to) (VP (VB grow) (NP (NNS organizations))))))))))) (. .)))"}
28
+ {"annotator_labels": ["entailment", "entailment", "entailment", "neutral", "entailment"], "genre": "government", "gold_label": "entailment", "pairID": "102857e", "promptID": "102857", "sentence1": "Expenses included in calculating net cost for education and training programs that are intended to increase or maintain national economic productive capacity shall be reported as investments in human capital as required supplementary stewardship information accompanying the financial statements of the Federal Government and its component units.", "sentence1_binary_parse": "( ( Expenses ( included ( in ( calculating ( ( ( net cost ) ( for ( education ( and ( training programs ) ) ) ) ) ( that ( are ( intended ( to ( ( ( increase or ) maintain ) ( national ( economic ( productive capacity ) ) ) ) ) ) ) ) ) ) ) ) ) ( ( shall ( be ( ( reported ( as ( investments ( in ( human capital ) ) ) ) ) ( as ( ( required ( supplementary ( stewardship information ) ) ) ( accompanying ( ( the ( financial statements ) ) ( of ( ( ( the ( Federal Government ) ) and ) ( its ( component units ) ) ) ) ) ) ) ) ) ) ) . ) )", "sentence1_parse": "(ROOT (S (NP (NP (NNS Expenses)) (VP (VBN included) (PP (IN in) (S (VP (VBG calculating) (NP (NP (JJ net) (NN cost)) (PP (IN for) (NP (NN education) (CC and) (NN training) (NNS programs))) (SBAR (WHNP (WDT that)) (S (VP (VBP are) (VP (VBN intended) (S (VP (TO to) (VP (VB increase) (CC or) (VB maintain) (NP (JJ national) (JJ economic) (JJ productive) (NN capacity))))))))))))))) (VP (MD shall) (VP (VB be) (VP (VBN reported) (PP (IN as) (NP (NP (NNS investments)) (PP (IN in) (NP (JJ human) (NN capital))))) (PP (IN as) (NP (NP (VBN required) (JJ supplementary) (NN stewardship) (NN information)) (VP (VBG accompanying) (NP (NP (DT the) (JJ financial) (NNS statements)) (PP (IN of) (NP (NP (DT the) (NNP Federal) (NNP Government)) (CC and) (NP (PRP$ its) (NN component) (NNS units))))))))))) (. .)))", "sentence2": "Net cost for education programs can be calculated as a way to increase productivity.", "sentence2_binary_parse": "( ( ( Net cost ) ( for ( education programs ) ) ) ( ( can ( be ( ( calculated ( as ( a way ) ) ) ( to ( increase productivity ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (NP (JJ Net) (NN cost)) (PP (IN for) (NP (NN education) (NNS programs)))) (VP (MD can) (VP (VB be) (VP (VBN calculated) (PP (IN as) (NP (DT a) (NN way))) (S (VP (TO to) (VP (VB increase) (NP (NN productivity)))))))) (. .)))"}
29
+ {"annotator_labels": ["neutral", "neutral", "neutral", "neutral", "contradiction"], "genre": "telephone", "gold_label": "neutral", "pairID": "98116n", "promptID": "98116", "sentence1": "is that what you ended up going into", "sentence1_binary_parse": "( ( is that ) ( what ( you ( ( ended up ) ( going into ) ) ) ) )", "sentence1_parse": "(ROOT (SINV (VP (VBZ is)) (NP (DT that)) (SBAR (WHNP (WP what)) (S (NP (PRP you)) (VP (VBD ended) (PRT (RP up)) (S (VP (VBG going) (PP (IN into)))))))))", "sentence2": "How did you decide to do that?", "sentence2_binary_parse": "( How ( ( ( did you ) ( decide ( to ( do that ) ) ) ) ? ) )", "sentence2_parse": "(ROOT (SBARQ (WHADVP (WRB How)) (SQ (VBD did) (NP (PRP you)) (VP (VB decide) (S (VP (TO to) (VP (VB do) (NP (DT that))))))) (. ?)))"}
30
+ {"annotator_labels": ["contradiction", "contradiction", "contradiction", "contradiction", "contradiction"], "genre": "telephone", "gold_label": "contradiction", "pairID": "115391c", "promptID": "115391", "sentence1": "but we're taking our time we're going uh try to make our decision by July", "sentence1_binary_parse": "( but ( we ( 're ( taking ( ( our time ) ( we ( 're ( going ( uh ( try ( to ( ( make ( our decision ) ) ( by July ) ) ) ) ) ) ) ) ) ) ) ) )", "sentence1_parse": "(ROOT (S (CC but) (NP (PRP we)) (VP (VBP 're) (VP (VBG taking) (NP (NP (PRP$ our) (NN time)) (SBAR (S (NP (PRP we)) (VP (VBP 're) (VP (VBG going) (S (INTJ (UH uh)) (VP (VB try) (S (VP (TO to) (VP (VB make) (NP (PRP$ our) (NN decision)) (PP (IN by) (NP (NNP July)))))))))))))))))", "sentence2": "We are thinking of making the decision tomorrow.", "sentence2_binary_parse": "( We ( ( are ( thinking ( of ( ( making ( the decision ) ) tomorrow ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (PRP We)) (VP (VBP are) (VP (VBG thinking) (PP (IN of) (S (VP (VBG making) (NP (DT the) (NN decision)) (NP (NN tomorrow))))))) (. .)))"}
31
+ {"annotator_labels": ["entailment", "entailment", "entailment", "entailment", "entailment"], "genre": "slate", "gold_label": "entailment", "pairID": "73751e", "promptID": "73751", "sentence1": "The key question may be not what Hillary knew but when she knew it.", "sentence1_binary_parse": "( ( The ( key question ) ) ( ( may ( ( be not ) ( ( ( what ( Hillary knew ) ) but ) ( when ( she ( knew it ) ) ) ) ) ) . ) )", "sentence1_parse": "(ROOT (S (NP (DT The) (JJ key) (NN question)) (VP (MD may) (VP (VB be) (ADVP (RB not)) (SBAR (SBAR (WHNP (WP what)) (S (NP (NNP Hillary)) (VP (VBD knew)))) (CC but) (SBAR (WHADVP (WRB when)) (S (NP (PRP she)) (VP (VBD knew) (NP (PRP it)))))))) (. .)))", "sentence2": "We know Hillary knew it, the question is when she knew it.", "sentence2_binary_parse": "( ( We ( know ( Hillary ( knew it ) ) ) ) ( , ( ( the question ) ( ( is ( when ( she ( knew it ) ) ) ) . ) ) ) )", "sentence2_parse": "(ROOT (S (S (NP (PRP We)) (VP (VBP know) (SBAR (S (NP (NNP Hillary)) (VP (VBD knew) (NP (PRP it))))))) (, ,) (NP (DT the) (NN question)) (VP (VBZ is) (SBAR (WHADVP (WRB when)) (S (NP (PRP she)) (VP (VBD knew) (NP (PRP it)))))) (. .)))"}
32
+ {"annotator_labels": ["contradiction", "contradiction", "neutral", "contradiction", "contradiction"], "genre": "travel", "gold_label": "contradiction", "pairID": "2899c", "promptID": "2899", "sentence1": "Sandstone and granite were the materials used to build the Baroque church of Bom Jesus, famous for its casket of St. Francis Xavier's relics in the mausoleum to the right of the altar.", "sentence1_binary_parse": "( ( ( Sandstone and ) granite ) ( ( were ( ( the materials ) ( used ( to ( ( ( build ( ( ( ( the ( Baroque church ) ) ( of ( Bom Jesus ) ) ) , ) ( famous ( for ( ( its casket ) ( of ( ( St. ( Francis ( Xavier 's ) ) ) relics ) ) ) ) ) ) ) ( in ( the mausoleum ) ) ) ( to ( ( the right ) ( of ( the altar ) ) ) ) ) ) ) ) ) . ) )", "sentence1_parse": "(ROOT (S (NP (NN Sandstone) (CC and) (NN granite)) (VP (VBD were) (NP (NP (DT the) (NNS materials)) (VP (VBN used) (S (VP (TO to) (VP (VB build) (NP (NP (DT the) (JJ Baroque) (NN church)) (PP (IN of) (NP (NNP Bom) (NNP Jesus))) (, ,) (ADJP (JJ famous) (PP (IN for) (NP (NP (PRP$ its) (NN casket)) (PP (IN of) (NP (NP (NNP St.) (NNP Francis) (NNP Xavier) (POS 's)) (NNS relics))))))) (PP (IN in) (NP (DT the) (NN mausoleum))) (PP (TO to) (NP (NP (DT the) (NN right)) (PP (IN of) (NP (DT the) (NN altar))))))))))) (. .)))", "sentence2": "St. Francis Xavier's relics were never recovered, unfortunately.", "sentence2_binary_parse": "( ( ( St. ( Francis ( Xavier 's ) ) ) relics ) ( ( ( were never ) ( ( recovered , ) unfortunately ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (NP (NNP St.) (NNP Francis) (NNP Xavier) (POS 's)) (NNS relics)) (VP (VBD were) (ADVP (RB never)) (VP (VBN recovered) (, ,) (ADVP (RB unfortunately)))) (. .)))"}
33
+ {"annotator_labels": ["contradiction", "contradiction", "entailment", "contradiction", "contradiction"], "genre": "slate", "gold_label": "contradiction", "pairID": "74509c", "promptID": "74509", "sentence1": "Under the budget deal, by 2002, national defense will consume about $273 billion a year compared with $267 billion now.", "sentence1_binary_parse": "( ( Under ( the ( budget deal ) ) ) ( , ( ( by 2002 ) ( , ( ( national defense ) ( ( will ( ( consume ( ( about ( ( $ 273 ) billion ) ) ( a year ) ) ) ( compared ( with ( ( ( $ 267 ) billion ) now ) ) ) ) ) . ) ) ) ) ) )", "sentence1_parse": "(ROOT (S (PP (IN Under) (NP (DT the) (NN budget) (NN deal))) (, ,) (PP (IN by) (NP (CD 2002))) (, ,) (NP (JJ national) (NN defense)) (VP (MD will) (VP (VB consume) (NP (NP (QP (RB about) ($ $) (CD 273) (CD billion))) (NP (DT a) (NN year))) (PP (VBN compared) (PP (IN with) (NP (NP (QP ($ $) (CD 267) (CD billion))) (ADVP (RB now))))))) (. .)))", "sentence2": "The national defense budget will decrease by 2002.", "sentence2_binary_parse": "( ( The ( national ( defense budget ) ) ) ( ( will ( decrease ( by 2002 ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (DT The) (JJ national) (NN defense) (NN budget)) (VP (MD will) (VP (VB decrease) (PP (IN by) (NP (CD 2002))))) (. .)))"}
34
+ {"annotator_labels": ["contradiction", "contradiction", "neutral", "contradiction", "contradiction"], "genre": "government", "gold_label": "contradiction", "pairID": "141314c", "promptID": "141314", "sentence1": "Case Studies in Science Education.", "sentence1_binary_parse": "( ( ( Case Studies ) ( in ( Science Education ) ) ) . )", "sentence1_parse": "(ROOT (NP (NP (NNP Case) (NNPS Studies)) (PP (IN in) (NP (NNP Science) (NNP Education))) (. .)))", "sentence2": "Case studies in writing.", "sentence2_binary_parse": "( Case ( ( studies ( in writing ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (NNP Case)) (VP (VBZ studies) (PP (IN in) (S (VP (VBG writing))))) (. .)))"}
35
+ {"annotator_labels": ["neutral", "neutral", "neutral", "neutral", "neutral"], "genre": "telephone", "gold_label": "neutral", "pairID": "94241n", "promptID": "94241", "sentence1": "and uh you know it's like they they consider that but it would be the same way here you know it's like if if you had to do it you know you have a big sign i'm sorry i don't get paid you know", "sentence1_binary_parse": "( and ( uh ( you ( know ( it ( 's ( like ( they ( they ( consider ( that ( ( but ( it ( would ( be ( ( ( the ( same way ) ) here ) ( you ( know ( it ( 's ( like ( ( if ( ( if ( you ( had ( to ( do it ) ) ) ) ) ( you ( know ( you ( have ( a ( big sign ) ) ) ) ) ) ) ) ( i ( 'm ( sorry ( i ( ( do n't ) get ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ( paid ( you know ) ) ) ) ) ) ) ) ) ) ) ) ) )", "sentence1_parse": "(ROOT (FRAG (CC and) (NP (NP (NNP uh)) (SBAR (S (NP (PRP you)) (VP (VBP know) (SBAR (S (NP (PRP it)) (VP (VBZ 's) (PP (IN like) (NP (NP (PRP they)) (SBAR (S (NP (PRP they)) (VP (VBP consider) (SBAR (IN that) (S (S (CC but) (NP (PRP it)) (VP (MD would) (VP (VB be) (NP (NP (DT the) (JJ same) (NN way)) (ADVP (RB here)) (SBAR (S (NP (PRP you)) (VP (VBP know) (SBAR (S (NP (PRP it)) (VP (VBZ 's) (SBAR (IN like) (S (SBAR (IN if) (S (SBAR (IN if) (S (NP (PRP you)) (VP (VBD had) (S (VP (TO to) (VP (VB do) (NP (PRP it)))))))) (NP (PRP you)) (VP (VBP know) (SBAR (S (NP (PRP you)) (VP (VBP have) (NP (DT a) (JJ big) (NN sign)))))))) (NP (FW i)) (VP (VBP 'm) (ADJP (JJ sorry) (SBAR (S (NP (FW i)) (VP (VBP do) (RB n't) (VP (VB get))))))))))))))))))) (VP (VBD paid) (SBAR (S (NP (PRP you)) (VP (VBP know)))))))))))))))))))))", "sentence2": "If I were somewhere else I would be getting paid. ", "sentence2_binary_parse": "( ( If ( I ( ( were somewhere ) else ) ) ) ( I ( ( would ( be ( getting paid ) ) ) . ) ) )", "sentence2_parse": "(ROOT (S (SBAR (IN If) (S (NP (PRP I)) (VP (VBD were) (ADVP (RB somewhere)) (ADJP (RB else))))) (NP (PRP I)) (VP (MD would) (VP (VB be) (VP (VBG getting) (S (VP (VBN paid)))))) (. .)))"}
36
+ {"annotator_labels": ["entailment", "entailment", "entailment", "entailment", "entailment"], "genre": "slate", "gold_label": "entailment", "pairID": "69906e", "promptID": "69906", "sentence1": "The Journal put the point succinctly to Is any publicity good publicity?", "sentence1_binary_parse": "( ( The Journal ) ( ( put ( ( the ( point succinctly ) ) ( to ( Is ( any ( publicity ( good publicity ) ) ) ) ) ) ) ? ) )", "sentence1_parse": "(ROOT (S (NP (DT The) (NNP Journal)) (VP (VBD put) (S (NP (DT the) (NN point) (NN succinctly)) (VP (TO to) (VP (NNP Is) (NP (DT any) (NN publicity) (JJ good) (NN publicity)))))) (. ?)))", "sentence2": "The Journal asked \"Is any publicity good publicity?\"", "sentence2_binary_parse": "( ( The Journal ) ( ( ( asked ( `` ( Is ( any ( publicity ( good publicity ) ) ) ) ) ) ? ) '' ) )", "sentence2_parse": "(ROOT (S (NP (DT The) (NNP Journal)) (VP (VBD asked) (S (`` ``) (NP (S (VP (NNP Is) (NP (DT any) (NN publicity) (JJ good) (NN publicity))))))) (. ?) ('' '')))"}
37
+ {"annotator_labels": ["entailment", "entailment", "entailment", "entailment", "entailment"], "genre": "government", "gold_label": "entailment", "pairID": "3545e", "promptID": "3545", "sentence1": "Several of the organizations had professional and administrative staffs that provided analytical capabilities and facilitated their members' participation in the organization's activities.", "sentence1_binary_parse": "( ( Several ( of ( the organizations ) ) ) ( ( had ( ( ( ( professional and ) administrative ) staffs ) ( that ( ( ( provided ( analytical capabilities ) ) and ) ( ( facilitated ( ( their ( members ' ) ) participation ) ) ( in ( ( the ( organization 's ) ) activities ) ) ) ) ) ) ) . ) )", "sentence1_parse": "(ROOT (S (NP (NP (JJ Several)) (PP (IN of) (NP (DT the) (NNS organizations)))) (VP (VBD had) (NP (NP (UCP (JJ professional) (CC and) (JJ administrative)) (NNS staffs)) (SBAR (WHNP (WDT that)) (S (VP (VP (VBD provided) (NP (JJ analytical) (NNS capabilities))) (CC and) (VP (VBD facilitated) (NP (NP (PRP$ their) (NNS members) (POS ')) (NN participation)) (PP (IN in) (NP (NP (DT the) (NN organization) (POS 's)) (NNS activities))))))))) (. .)))", "sentence2": "Many organizations facilitated members' participation in their activities.", "sentence2_binary_parse": "( ( Many organizations ) ( ( ( facilitated ( ( members ' ) participation ) ) ( in ( their activities ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (JJ Many) (NNS organizations)) (VP (VBD facilitated) (NP (NP (NNS members) (POS ')) (NN participation)) (PP (IN in) (NP (PRP$ their) (NNS activities)))) (. .)))"}
38
+ {"annotator_labels": ["contradiction", "contradiction", "contradiction", "contradiction", "contradiction"], "genre": "fiction", "gold_label": "contradiction", "pairID": "91681c", "promptID": "91681", "sentence1": "I still didn't trust the little buggers.", "sentence1_binary_parse": "( I ( still ( ( ( did n't ) ( trust ( the ( little buggers ) ) ) ) . ) ) )", "sentence1_parse": "(ROOT (S (NP (PRP I)) (ADVP (RB still)) (VP (VBD did) (RB n't) (VP (VB trust) (NP (DT the) (JJ little) (NNS buggers)))) (. .)))", "sentence2": "I had no trouble putting all my faith into these little buggers.", "sentence2_binary_parse": "( I ( ( had ( ( no trouble ) ( ( putting ( all ( my faith ) ) ) ( into ( these ( little buggers ) ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (PRP I)) (VP (VBD had) (NP (NP (DT no) (NN trouble)) (VP (VBG putting) (NP (PDT all) (PRP$ my) (NN faith)) (PP (IN into) (NP (DT these) (JJ little) (NNS buggers)))))) (. .)))"}
39
+ {"annotator_labels": ["contradiction", "contradiction", "contradiction", "entailment", "contradiction"], "genre": "government", "gold_label": "contradiction", "pairID": "55468c", "promptID": "55468", "sentence1": "Also, the final rule is not intended to have any retroactive effect and administrative procedures must be exhausted prior to any judicial challenge to the provisions of the rule.", "sentence1_binary_parse": "( Also ( , ( ( ( ( ( the ( final rule ) ) ( ( is not ) ( intended ( to ( have ( any ( retroactive effect ) ) ) ) ) ) ) and ) ( ( administrative procedures ) ( must ( be ( ( exhausted ( prior ( to ( any ( judicial challenge ) ) ) ) ) ( to ( ( the provisions ) ( of ( the rule ) ) ) ) ) ) ) ) ) . ) ) )", "sentence1_parse": "(ROOT (S (ADVP (RB Also)) (, ,) (S (NP (DT the) (JJ final) (NN rule)) (VP (VBZ is) (RB not) (VP (VBN intended) (S (VP (TO to) (VP (VB have) (NP (DT any) (ADJP (JJ retroactive)) (NN effect)))))))) (CC and) (S (NP (JJ administrative) (NNS procedures)) (VP (MD must) (VP (VB be) (VP (VBN exhausted) (ADVP (RB prior) (PP (TO to) (NP (DT any) (JJ judicial) (NN challenge)))) (PP (TO to) (NP (NP (DT the) (NNS provisions)) (PP (IN of) (NP (DT the) (NN rule))))))))) (. .)))", "sentence2": "The final rule is meant to have a retroactive effect.", "sentence2_binary_parse": "( ( The ( final rule ) ) ( ( is ( meant ( to ( have ( a ( retroactive effect ) ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (DT The) (JJ final) (NN rule)) (VP (VBZ is) (VP (VBN meant) (S (VP (TO to) (VP (VB have) (NP (DT a) (ADJP (JJ retroactive)) (NN effect))))))) (. .)))"}
40
+ {"annotator_labels": ["neutral", "neutral", "neutral", "neutral", "neutral"], "genre": "telephone", "gold_label": "neutral", "pairID": "87087n", "promptID": "87087", "sentence1": "oh yeah IBM uh i mean uh a lot of people use human factors folks but IBM is what i'm looking at right now", "sentence1_binary_parse": "( ( oh ( yeah ( IBM ( uh i ) ) ) ) ( ( mean uh ) ( ( a lot ) ( of ( people ( use ( ( ( human ( factors folks ) ) ( but IBM ) ) ( is ( what ( i ( 'm ( ( looking ( at right ) ) now ) ) ) ) ) ) ) ) ) ) ) )", "sentence1_parse": "(ROOT (SINV (VBZ oh) (NP (NN yeah) (NNP IBM) (NNP uh) (NNP i)) (VP (VB mean) (INTJ (UH uh)) (PP (NP (DT a) (RB lot)) (IN of) (NP (NP (NNS people)) (SBAR (S (VP (VBP use) (SBAR (S (NP (NP (JJ human) (NNS factors) (NNS folks)) (PP (CC but) (NP (NNP IBM)))) (VP (VBZ is) (SBAR (WHNP (WP what)) (S (NP (FW i)) (VP (VBP 'm) (VP (VBG looking) (ADVP (IN at) (RB right)) (ADVP (RB now)))))))))))))))))", "sentence2": "I'm looking at IBM right now but I've looked at tons of other things.", "sentence2_binary_parse": "( ( ( ( I ( 'm ( ( looking ( at IBM ) ) ( right now ) ) ) ) but ) ( I ( 've ( looked ( at ( tons ( of ( other things ) ) ) ) ) ) ) ) . )", "sentence2_parse": "(ROOT (S (S (NP (PRP I)) (VP (VBP 'm) (VP (VBG looking) (PP (IN at) (NP (NNP IBM))) (ADVP (RB right) (RB now))))) (CC but) (S (NP (PRP I)) (VP (VBP 've) (VP (VBN looked) (PP (IN at) (NP (NP (NNS tons)) (PP (IN of) (NP (JJ other) (NNS things)))))))) (. .)))"}
41
+ {"annotator_labels": ["neutral", "neutral", "neutral", "entailment", "entailment"], "genre": "travel", "gold_label": "neutral", "pairID": "112293n", "promptID": "112293", "sentence1": "Cave 31 tries to emulate the style of the great Hindu temple on a much smaller scale, but the artists here were working on much harder rock and so abandoned their effort.", "sentence1_binary_parse": "( ( ( ( ( ( Cave 31 ) ( tries ( to ( emulate ( ( the style ) ( of ( ( the ( great ( Hindu temple ) ) ) ( on ( a ( ( much smaller ) scale ) ) ) ) ) ) ) ) ) ) , ) but ) ( ( the artists ) ( here ( ( ( were ( working ( on ( ( much harder ) rock ) ) ) ) and ) ( so ( abandoned ( their effort ) ) ) ) ) ) ) . )", "sentence1_parse": "(ROOT (S (S (NP (NNP Cave) (CD 31)) (VP (VBZ tries) (S (VP (TO to) (VP (VB emulate) (NP (NP (DT the) (NN style)) (PP (IN of) (NP (NP (DT the) (JJ great) (NNP Hindu) (NN temple)) (PP (IN on) (NP (DT a) (ADJP (RB much) (JJR smaller)) (NN scale))))))))))) (, ,) (CC but) (S (NP (DT the) (NNS artists)) (ADVP (RB here)) (VP (VP (VBD were) (VP (VBG working) (PP (IN on) (NP (ADJP (RB much) (JJR harder)) (NN rock))))) (CC and) (VP (ADVP (RB so)) (VBD abandoned) (NP (PRP$ their) (NN effort))))) (. .)))", "sentence2": "Cave 31 ran into problems because it was made of harder rock and everyone was disappointed.", "sentence2_binary_parse": "( ( Cave 31 ) ( ( ( ran ( into problems ) ) ( because ( it ( was ( made ( of ( ( harder ( ( rock and ) everyone ) ) ( was disappointed ) ) ) ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (NNP Cave) (CD 31)) (VP (VBD ran) (PP (IN into) (NP (NNS problems))) (SBAR (IN because) (S (NP (PRP it)) (VP (VBD was) (VP (VBN made) (PP (IN of) (NP (NP (JJR harder) (NN rock) (CC and) (NN everyone)) (SBAR (S (VP (VBD was) (ADJP (JJ disappointed)))))))))))) (. .)))"}
42
+ {"annotator_labels": ["contradiction", "neutral", "neutral", "neutral", "contradiction"], "genre": "slate", "gold_label": "neutral", "pairID": "83657c", "promptID": "83657", "sentence1": "Think of it this When consumer confidence declines, it is as if, for some reason, the typical member of the co-op had become less willing to go out, more anxious to accumulate coupons for a rainy day.", "sentence1_binary_parse": "( ( ( Think ( of ( it this ) ) ) ( When ( ( consumer confidence ) declines ) ) ) ( , ( it ( ( is ( as ( if ( ( , ( ( for ( some reason ) ) , ) ) ( ( ( the ( typical member ) ) ( of ( the co-op ) ) ) ( had ( become ( less ( willing ( to ( ( ( go out ) , ) ( more ( anxious ( to ( ( accumulate coupons ) ( for ( a ( rainy day ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) . ) ) ) )", "sentence1_parse": "(ROOT (S (S (VP (VB Think) (PP (IN of) (NP (PRP it) (DT this))) (SBAR (WHADVP (WRB When)) (S (NP (NN consumer) (NN confidence)) (VP (VBZ declines)))))) (, ,) (NP (PRP it)) (VP (VBZ is) (SBAR (RB as) (IN if) (S (PRN (, ,) (PP (IN for) (NP (DT some) (NN reason))) (, ,)) (NP (NP (DT the) (JJ typical) (NN member)) (PP (IN of) (NP (DT the) (NN co-op)))) (VP (VBD had) (VP (VBN become) (S (ADJP (RBR less) (JJ willing) (S (VP (TO to) (VP (VB go) (PRT (RP out)) (, ,) (ADJP (RBR more) (JJ anxious) (PP (TO to) (NP (NP (JJ accumulate) (NNS coupons)) (PP (IN for) (NP (DT a) (JJ rainy) (NN day)))))))))))))))) (. .)))", "sentence2": "Coupon collecting is no longer allowed in most US stores.", "sentence2_binary_parse": "( ( Coupon collecting ) ( ( ( is ( no longer ) ) ( allowed ( in ( most ( US stores ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (NN Coupon) (NN collecting)) (VP (VBZ is) (ADVP (RB no) (RB longer)) (VP (VBN allowed) (PP (IN in) (NP (JJS most) (NNP US) (NNS stores))))) (. .)))"}
43
+ {"annotator_labels": ["entailment", "entailment", "entailment", "entailment", "entailment"], "genre": "fiction", "gold_label": "entailment", "pairID": "118601e", "promptID": "118601", "sentence1": "\"If you people only knew how fatally easy it is to poison some one by mistake, you wouldn't joke about it. ", "sentence1_binary_parse": "( `` ( ( If ( ( you people ) ( only ( knew ( ( how ( fatally easy ) ) ( it ( ( is ( to poison ) ) ( ( some one ) ( by mistake ) ) ) ) ) ) ) ) ) ( , ( you ( ( ( would n't ) ( joke ( about it ) ) ) . ) ) ) ) )", "sentence1_parse": "(ROOT (S (`` ``) (SBAR (IN If) (S (NP (PRP you) (NNS people)) (ADVP (RB only)) (VP (VBD knew) (SBAR (WHADVP (WRB how) (ADJP (RB fatally) (JJ easy))) (S (NP (PRP it)) (VP (VBZ is) (PP (TO to) (NP (NN poison))) (NP (NP (DT some) (NN one)) (PP (IN by) (NP (NN mistake)))))))))) (, ,) (NP (PRP you)) (VP (MD would) (RB n't) (VP (VB joke) (PP (IN about) (NP (PRP it))))) (. .)))", "sentence2": "You wouldn't joke about poisoning someone if you knew how easy it was to do by mistake.", "sentence2_binary_parse": "( You ( ( ( would n't ) ( ( joke ( about ( poisoning someone ) ) ) ( if ( you ( knew ( ( how easy ) ( it ( was ( to ( do ( by mistake ) ) ) ) ) ) ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (PRP You)) (VP (MD would) (RB n't) (VP (VB joke) (PP (IN about) (NP (NN poisoning) (NN someone))) (SBAR (IN if) (S (NP (PRP you)) (VP (VBD knew) (SBAR (WHADVP (WRB how) (ADJP (JJ easy))) (S (NP (PRP it)) (VP (VBD was) (S (VP (TO to) (VP (VB do) (PP (IN by) (NP (NN mistake)))))))))))))) (. .)))"}
44
+ {"annotator_labels": ["entailment", "entailment", "entailment", "entailment", "neutral"], "genre": "fiction", "gold_label": "entailment", "pairID": "19630e", "promptID": "19630", "sentence1": "They make a pretty pair working together.", "sentence1_binary_parse": "( They ( ( make ( ( a ( pretty pair ) ) ( working together ) ) ) . ) )", "sentence1_parse": "(ROOT (S (NP (PRP They)) (VP (VBP make) (NP (NP (DT a) (JJ pretty) (NN pair)) (VP (VBG working) (ADVP (RB together))))) (. .)))", "sentence2": "They work well together.", "sentence2_binary_parse": "( They ( ( work ( well together ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (PRP They)) (VP (VBP work) (ADVP (RB well) (RB together))) (. .)))"}
45
+ {"annotator_labels": ["neutral", "neutral", "neutral", "neutral", "neutral"], "genre": "fiction", "gold_label": "neutral", "pairID": "71870n", "promptID": "71870", "sentence1": "No. I guess I'm going too.", "sentence1_binary_parse": "( No ( . ( I ( ( guess ( I ( 'm ( going too ) ) ) ) . ) ) ) )", "sentence1_parse": "(ROOT (S (INTJ (UH No)) (. .) (NP (PRP I)) (VP (VBP guess) (SBAR (S (NP (PRP I)) (VP (VBP 'm) (VP (VBG going) (ADVP (RB too))))))) (. .)))", "sentence2": "I guess I'm going since my sister is.", "sentence2_binary_parse": "( I ( ( guess ( I ( 'm ( going ( since ( ( my sister ) is ) ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (PRP I)) (VP (VBP guess) (SBAR (S (NP (PRP I)) (VP (VBP 'm) (VP (VBG going) (SBAR (IN since) (S (NP (PRP$ my) (NN sister)) (VP (VBZ is))))))))) (. .)))"}
46
+ {"annotator_labels": ["contradiction", "contradiction", "contradiction", "neutral", "contradiction"], "genre": "travel", "gold_label": "contradiction", "pairID": "37606c", "promptID": "37606", "sentence1": "Around the corner is the huge, domed, Neo-Classical Panth??on.", "sentence1_binary_parse": "( ( Around ( ( the corner ) ( is ( ( ( the huge ) , ) domed ) ) ) ) ( , ( ( Neo-Classical Panth ) ( ( ?? on ) . ) ) ) )", "sentence1_parse": "(ROOT (S (PP (IN Around) (NP (NP (DT the) (NN corner)) (SBAR (S (VP (VBZ is) (NP (NP (DT the) (JJ huge)) (, ,) (VP (VBN domed)))))))) (, ,) (NP (NNP Neo-Classical) (NNP Panth)) (VP (VBZ ??) (PRT (RP on))) (. .)))", "sentence2": "The Pantheon is from the Classical era.", "sentence2_binary_parse": "( ( The Pantheon ) ( ( is ( from ( the ( Classical era ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (DT The) (NNP Pantheon)) (VP (VBZ is) (PP (IN from) (NP (DT the) (NNP Classical) (NN era)))) (. .)))"}
47
+ {"annotator_labels": ["entailment", "entailment", "entailment", "entailment", "entailment"], "genre": "government", "gold_label": "entailment", "pairID": "112950e", "promptID": "112950", "sentence1": "The Saving Mystery, or Where Did the Money Go?", "sentence1_binary_parse": "( ( ( ( ( ( The Saving ) Mystery ) , ) or ) ( Where ( ( Did ( the Money ) ) Go ) ) ) ? )", "sentence1_parse": "(ROOT (S (S (NP (DT The) (NN Saving)) (VP (VBZ Mystery))) (, ,) (CC or) (SBARQ (WHADVP (WRB Where)) (SQ (VBD Did) (NP (DT the) (NN Money)) (VP (VB Go)))) (. ?)))", "sentence2": "The mystery of saving.", "sentence2_binary_parse": "( ( ( The mystery ) ( of saving ) ) . )", "sentence2_parse": "(ROOT (NP (NP (DT The) (NN mystery)) (PP (IN of) (NP (NN saving))) (. .)))"}
48
+ {"annotator_labels": ["entailment", "neutral", "neutral", "neutral", "entailment"], "genre": "telephone", "gold_label": "neutral", "pairID": "36924e", "promptID": "36924", "sentence1": "no never heard of it", "sentence1_binary_parse": "( ( no never ) ( heard ( of it ) ) )", "sentence1_parse": "(ROOT (VP (ADVP (RB no) (RB never)) (VBN heard) (PP (IN of) (NP (PRP it)))))", "sentence2": "He does not know what it is.", "sentence2_binary_parse": "( He ( ( ( does not ) ( know ( what ( it is ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (PRP He)) (VP (VBZ does) (RB not) (VP (VB know) (SBAR (WHNP (WP what)) (S (NP (PRP it)) (VP (VBZ is)))))) (. .)))"}
49
+ {"annotator_labels": ["neutral", "neutral", "neutral", "neutral", "neutral"], "genre": "travel", "gold_label": "neutral", "pairID": "136546n", "promptID": "136546", "sentence1": "In fact, the Lions of Delos were made from Naxos marble.", "sentence1_binary_parse": "( ( In fact ) ( , ( ( ( the Lions ) ( of Delos ) ) ( ( were ( made ( from ( Naxos marble ) ) ) ) . ) ) ) )", "sentence1_parse": "(ROOT (S (PP (IN In) (NP (NN fact))) (, ,) (NP (NP (DT the) (NNPS Lions)) (PP (IN of) (NP (NNP Delos)))) (VP (VBD were) (VP (VBN made) (PP (IN from) (NP (NNP Naxos) (NN marble))))) (. .)))", "sentence2": "There are five Lions of Delos, and also two Tigers of Delos.", "sentence2_binary_parse": "( There ( ( are ( ( ( ( ( five Lions ) ( of Delos ) ) , ) and ) ( also ( ( two Tigers ) ( of Delos ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (EX There)) (VP (VBP are) (NP (NP (NP (CD five) (NNS Lions)) (PP (IN of) (NP (NNP Delos)))) (, ,) (CC and) (NP (ADVP (RB also)) (NP (CD two) (NNS Tigers)) (PP (IN of) (NP (NNP Delos)))))) (. .)))"}
50
+ {"annotator_labels": ["contradiction", "entailment", "contradiction", "neutral", "contradiction"], "genre": "travel", "gold_label": "contradiction", "pairID": "121910c", "promptID": "121910", "sentence1": "If ancient writings give only a romanticized view, they do offer a more precise picture of Indo-Aryan society.", "sentence1_binary_parse": "( ( If ( ( ancient writings ) ( give ( only ( a ( romanticized view ) ) ) ) ) ) ( , ( they ( ( do ( offer ( ( a ( ( more precise ) picture ) ) ( of ( Indo-Aryan society ) ) ) ) ) . ) ) ) )", "sentence1_parse": "(ROOT (S (SBAR (IN If) (S (NP (JJ ancient) (NNS writings)) (VP (VBP give) (NP (RB only) (DT a) (JJ romanticized) (NN view))))) (, ,) (NP (PRP they)) (VP (VBP do) (VP (VB offer) (NP (NP (DT a) (ADJP (RBR more) (JJ precise)) (NN picture)) (PP (IN of) (NP (JJ Indo-Aryan) (NN society)))))) (. .)))", "sentence2": "Ancient writings show an accurate picture of Indo-Anryan society.", "sentence2_binary_parse": "( ( Ancient writings ) ( ( show ( ( an ( accurate picture ) ) ( of ( Indo-Anryan society ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (JJ Ancient) (NNS writings)) (VP (VBP show) (NP (NP (DT an) (ADJP (JJ accurate)) (NN picture)) (PP (IN of) (NP (JJ Indo-Anryan) (NN society))))) (. .)))"}
51
+ {"annotator_labels": ["entailment", "entailment", "entailment", "entailment", "entailment"], "genre": "fiction", "gold_label": "entailment", "pairID": "9060e", "promptID": "9060", "sentence1": "Yes, undoubtedly the hand of Mr. Brown! Mr. Carter paused.", "sentence1_binary_parse": "( Yes ( , ( undoubtedly ( ( ( the hand ) ( of ( Mr. ( Brown ( ! ( Mr. Carter ) ) ) ) ) ) ( paused . ) ) ) ) )", "sentence1_parse": "(ROOT (S (INTJ (UH Yes)) (, ,) (ADVP (RB undoubtedly)) (NP (NP (DT the) (NN hand)) (PP (IN of) (NP (NNP Mr.) (NNP Brown) (. !) (NNP Mr.) (NNP Carter)))) (VP (VBD paused)) (. .)))", "sentence2": "There is no doubt that hand belongs to Mr. Brown.", "sentence2_binary_parse": "( There ( ( is ( no ( doubt ( that ( hand ( belongs ( to ( Mr. Brown ) ) ) ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (EX There)) (VP (VBZ is) (ADVP (DT no) (NN doubt) (SBAR (IN that) (S (NP (NN hand)) (VP (VBZ belongs) (PP (TO to) (NP (NNP Mr.) (NNP Brown)))))))) (. .)))"}
52
+ {"annotator_labels": ["contradiction", "contradiction", "contradiction", "contradiction", "contradiction"], "genre": "travel", "gold_label": "contradiction", "pairID": "82830c", "promptID": "82830", "sentence1": "In the 19th century, when Kashmir was the most exotic hill-station of them all, the maharaja forbade the British to buy land there, so they then hit on the brilliant alternative of building luxuriously appointed houseboats moored on the lakes near Srinagar.", "sentence1_binary_parse": "( ( In ( the ( 19th century ) ) ) ( , ( ( ( ( ( ( when ( Kashmir ( was ( ( the ( ( most exotic ) hill-station ) ) ( of ( them all ) ) ) ) ) ) ( , ( ( the maharaja ) ( ( forbade ( the British ) ) ( to ( ( buy land ) there ) ) ) ) ) ) , ) so ) ( they ( then ( hit ( on ( ( the ( brilliant alternative ) ) ( of ( ( building ( luxuriously ( appointed houseboats ) ) ) ( moored ( on ( ( the lakes ) ( near Srinagar ) ) ) ) ) ) ) ) ) ) ) ) . ) ) )", "sentence1_parse": "(ROOT (S (PP (IN In) (NP (DT the) (JJ 19th) (NN century))) (, ,) (S (SBAR (WHADVP (WRB when)) (S (NP (NNP Kashmir)) (VP (VBD was) (NP (NP (DT the) (ADJP (RBS most) (JJ exotic)) (NN hill-station)) (PP (IN of) (NP (PRP them) (DT all))))))) (, ,) (NP (DT the) (NN maharaja)) (VP (VBD forbade) (NP (DT the) (JJ British)) (S (VP (TO to) (VP (VB buy) (NP (NN land)) (ADVP (RB there))))))) (, ,) (IN so) (S (NP (PRP they)) (ADVP (RB then)) (VP (VBD hit) (PP (IN on) (NP (NP (DT the) (JJ brilliant) (NN alternative)) (PP (IN of) (NP (NP (VBG building) (JJ luxuriously) (VBN appointed) (NNS houseboats)) (VP (VBN moored) (PP (IN on) (NP (NP (DT the) (NNS lakes)) (PP (IN near) (NP (NNP Srinagar)))))))))))) (. .)))", "sentence2": "The British alternatively built houseboats but they were not luxurious.", "sentence2_binary_parse": "( ( ( ( ( The British ) ( alternatively ( built houseboats ) ) ) but ) ( they ( ( were not ) luxurious ) ) ) . )", "sentence2_parse": "(ROOT (S (S (NP (DT The) (NNP British)) (ADVP (RB alternatively)) (VP (VBD built) (NP (NNS houseboats)))) (CC but) (S (NP (PRP they)) (VP (VBD were) (RB not) (ADJP (JJ luxurious)))) (. .)))"}
53
+ {"annotator_labels": ["contradiction", "contradiction", "contradiction", "neutral", "contradiction"], "genre": "slate", "gold_label": "contradiction", "pairID": "145047c", "promptID": "145047", "sentence1": "The management of the cafe has established the rules for the use of their facility.", "sentence1_binary_parse": "( ( ( The management ) ( of ( the cafe ) ) ) ( ( has ( ( established ( the rules ) ) ( for ( ( the use ) ( of ( their facility ) ) ) ) ) ) . ) )", "sentence1_parse": "(ROOT (S (NP (NP (DT The) (NN management)) (PP (IN of) (NP (DT the) (NN cafe)))) (VP (VBZ has) (VP (VBN established) (NP (DT the) (NNS rules)) (PP (IN for) (NP (NP (DT the) (NN use)) (PP (IN of) (NP (PRP$ their) (NN facility))))))) (. .)))", "sentence2": "The management of the cafe is extremely lax.", "sentence2_binary_parse": "( ( ( The management ) ( of ( the cafe ) ) ) ( ( is ( extremely lax ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (NP (DT The) (NN management)) (PP (IN of) (NP (DT the) (NN cafe)))) (VP (VBZ is) (ADJP (RB extremely) (JJ lax))) (. .)))"}
54
+ {"annotator_labels": ["neutral", "contradiction", "contradiction", "neutral", "contradiction"], "genre": "telephone", "gold_label": "contradiction", "pairID": "36514n", "promptID": "36514", "sentence1": "cook and then the next time it would be my turn and i'd try to outdo him and then he'd try to outdo me and we we was really a lot of fun and", "sentence1_binary_parse": "( ( ( cook and ) ( ( then ( the ( next time ) ) ) ( ( ( ( ( it ( would ( be ( my turn ) ) ) ) and ) ( ( ( i ( 'd ( try ( to ( outdo him ) ) ) ) ) and ) ( then ( he ( 'd ( try ( to ( outdo me ) ) ) ) ) ) ) ) and ) ( we we ) ) ) ) ( ( ( was really ) ( ( a lot ) ( of fun ) ) ) and ) )", "sentence1_parse": "(ROOT (S (NP (NP (NN cook)) (CC and) (NP (NP (RB then) (DT the) (JJ next) (NN time)) (SBAR (S (S (S (NP (PRP it)) (VP (MD would) (VP (VB be) (NP (PRP$ my) (NN turn))))) (CC and) (S (S (NP (FW i)) (VP (MD 'd) (VP (VB try) (S (VP (TO to) (VP (VB outdo) (NP (PRP him)))))))) (CC and) (S (ADVP (RB then)) (NP (PRP he)) (VP (MD 'd) (VP (VB try) (S (VP (TO to) (VP (VB outdo) (NP (PRP me)))))))))) (CC and) (S (NP (PRP we)) (NP (PRP we))))))) (VP (VBD was) (ADVP (RB really)) (NP (NP (DT a) (NN lot)) (PP (IN of) (NP (NN fun)))) (ADVP (CC and)))))", "sentence2": "I would cook and then the next turn would be his and we would try to outdo each other but sometimes we would get in a fight over things.", "sentence2_binary_parse": "( ( ( ( ( ( I ( would cook ) ) and ) ( ( ( then ( ( the ( next turn ) ) ( would ( be his ) ) ) ) and ) ( we ( would ( try ( to ( outdo ( each other ) ) ) ) ) ) ) ) but ) ( sometimes ( we ( would ( get ( in ( ( a fight ) ( over things ) ) ) ) ) ) ) ) . )", "sentence2_parse": "(ROOT (S (S (NP (PRP I)) (VP (MD would) (VP (VB cook)))) (CC and) (S (S (ADVP (RB then)) (NP (DT the) (JJ next) (NN turn)) (VP (MD would) (VP (VB be) (NP (PRP$ his))))) (CC and) (S (NP (PRP we)) (VP (MD would) (VP (VB try) (S (VP (TO to) (VP (VB outdo) (NP (DT each) (JJ other))))))))) (CC but) (S (ADVP (RB sometimes)) (NP (PRP we)) (VP (MD would) (VP (VB get) (PP (IN in) (NP (NP (DT a) (NN fight)) (PP (IN over) (NP (NNS things)))))))) (. .)))"}
55
+ {"annotator_labels": ["contradiction", "contradiction", "contradiction", "contradiction", "contradiction"], "genre": "travel", "gold_label": "contradiction", "pairID": "50657c", "promptID": "50657", "sentence1": "The Drawing Room was partially destroyed by fire in 1941, and its furnishings are faithful reproductions; the huge (repaired) Ming punch bowl is striking.", "sentence1_binary_parse": "( ( ( ( ( ( ( ( The ( Drawing Room ) ) ( ( was partially ) ( destroyed ( by ( fire ( in 1941 ) ) ) ) ) ) , ) and ) ( ( its furnishings ) ( are ( faithful reproductions ) ) ) ) ; ) ( ( the ( ( huge ( -LRB- ( repaired -RRB- ) ) ) ( Ming ( punch bowl ) ) ) ) ( is striking ) ) ) . )", "sentence1_parse": "(ROOT (S (S (S (NP (DT The) (NNP Drawing) (NNP Room)) (VP (VBD was) (ADVP (RB partially)) (VP (VBN destroyed) (PP (IN by) (NP (NP (NN fire)) (PP (IN in) (NP (CD 1941)))))))) (, ,) (CC and) (S (NP (PRP$ its) (NNS furnishings)) (VP (VBP are) (ADJP (NN faithful) (JJ reproductions))))) (: ;) (S (NP (DT the) (ADJP (ADJP (JJ huge)) (PRN (-LRB- -LRB-) (NP (NNP repaired)) (-RRB- -RRB-))) (NNP Ming) (NN punch) (NN bowl)) (VP (VBZ is) (ADJP (JJ striking)))) (. .)))", "sentence2": "The 1941 fire spared the Drawing Room.", "sentence2_binary_parse": "( ( The ( 1941 fire ) ) ( ( spared ( the ( Drawing Room ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (DT The) (CD 1941) (NN fire)) (VP (VBD spared) (NP (DT the) (NNP Drawing) (NNP Room))) (. .)))"}
56
+ {"annotator_labels": ["neutral", "neutral", "neutral", "neutral", "neutral"], "genre": "government", "gold_label": "neutral", "pairID": "144418n", "promptID": "144418", "sentence1": "million in savings this year.", "sentence1_binary_parse": "( ( million ( in ( savings ( this year ) ) ) ) . )", "sentence1_parse": "(ROOT (NP (NP (CD million)) (PP (IN in) (NP (NP (NNS savings)) (NP (DT this) (NN year)))) (. .)))", "sentence2": "The money saved will be used to grow the company internationally over the next 5 years.", "sentence2_binary_parse": "( ( ( The money ) saved ) ( ( will ( be ( used ( to ( ( ( grow ( the company ) ) internationally ) ( over ( the ( next ( 5 years ) ) ) ) ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (NP (DT The) (NN money)) (VP (VBN saved))) (VP (MD will) (VP (VB be) (VP (VBN used) (S (VP (TO to) (VP (VB grow) (NP (DT the) (NN company)) (ADVP (RB internationally)) (PP (IN over) (NP (DT the) (JJ next) (CD 5) (NNS years))))))))) (. .)))"}
57
+ {"annotator_labels": ["contradiction", "contradiction", "contradiction", "contradiction", "contradiction"], "genre": "slate", "gold_label": "contradiction", "pairID": "68583c", "promptID": "68583", "sentence1": "Sixty percent of Americans are frustrated and angry with the health-care system, and 70 percent favor federal intervention.", "sentence1_binary_parse": "( ( ( ( ( ( ( Sixty percent ) ( of Americans ) ) ( ( are ( ( frustrated and ) angry ) ) ( with ( the ( health-care system ) ) ) ) ) , ) and ) ( ( 70 percent ) ( favor ( federal intervention ) ) ) ) . )", "sentence1_parse": "(ROOT (S (S (NP (NP (CD Sixty) (NN percent)) (PP (IN of) (NP (NNPS Americans)))) (VP (VBP are) (ADJP (JJ frustrated) (CC and) (JJ angry)) (PP (IN with) (NP (DT the) (JJ health-care) (NN system))))) (, ,) (CC and) (S (NP (CD 70) (NN percent)) (VP (VBP favor) (NP (JJ federal) (NN intervention)))) (. .)))", "sentence2": "The majority of Americans are satisfied with the health-care system.", "sentence2_binary_parse": "( ( ( The majority ) ( of Americans ) ) ( ( are ( satisfied ( with ( the ( health-care system ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (NP (DT The) (NN majority)) (PP (IN of) (NP (NNPS Americans)))) (VP (VBP are) (ADJP (VBN satisfied) (PP (IN with) (NP (DT the) (JJ health-care) (NN system))))) (. .)))"}
58
+ {"annotator_labels": ["neutral", "neutral", "neutral", "contradiction", "neutral"], "genre": "telephone", "gold_label": "neutral", "pairID": "86201n", "promptID": "86201", "sentence1": "huh no i haven't attempted that i'm satisfied with what we have right now and we do have a gas credit card and we use that", "sentence1_binary_parse": "( huh ( ( ( ( no i ) ( ( have n't ) ( attempted ( that ( i ( 'm ( satisfied ( with ( what ( ( ( we ( have ( right now ) ) ) and ) ( we ( do ( have ( a ( gas ( credit card ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) and ) ( we ( use that ) ) ) )", "sentence1_parse": "(ROOT (S (VP (VB huh) (S (S (NP (DT no) (FW i)) (VP (VBP have) (RB n't) (VP (VBN attempted) (SBAR (IN that) (S (NP (FW i)) (VP (VBP 'm) (ADJP (VBN satisfied) (PP (IN with) (SBAR (WHNP (WP what)) (S (S (NP (PRP we)) (VP (VBP have) (ADVP (RB right) (RB now)))) (CC and) (S (NP (PRP we)) (VP (VBP do) (VP (VB have) (NP (DT a) (NN gas) (NN credit) (NN card))))))))))))))) (CC and) (S (NP (PRP we)) (VP (VBP use) (NP (DT that))))))))", "sentence2": "Most of our cards offer cash back rewards.", "sentence2_binary_parse": "( ( Most ( of ( our ( cards ( offer cash ) ) ) ) ) ( back ( rewards . ) ) )", "sentence2_parse": "(ROOT (S (NP (NP (JJS Most)) (PP (IN of) (NP (PRP$ our) (NNS cards) (NN offer) (NN cash)))) (ADVP (RB back)) (VP (VBZ rewards)) (. .)))"}
59
+ {"annotator_labels": ["contradiction", "contradiction", "contradiction", "contradiction", "contradiction"], "genre": "slate", "gold_label": "contradiction", "pairID": "39678c", "promptID": "39678", "sentence1": "A 1994 Roper Poll concluded that the NewsHour is perceived by the public as the most credible newscast in the country.", "sentence1_binary_parse": "( ( A ( 1994 ( Roper Poll ) ) ) ( ( concluded ( that ( ( the NewsHour ) ( is ( perceived ( by ( ( the public ) ( as ( ( the ( ( most credible ) newscast ) ) ( in ( the country ) ) ) ) ) ) ) ) ) ) ) . ) )", "sentence1_parse": "(ROOT (S (NP (DT A) (CD 1994) (NNP Roper) (NNS Poll)) (VP (VBD concluded) (SBAR (IN that) (S (NP (DT the) (NNP NewsHour)) (VP (VBZ is) (VP (VBN perceived) (PP (IN by) (NP (NP (DT the) (NN public)) (PP (IN as) (NP (NP (DT the) (ADJP (RBS most) (JJ credible)) (NN newscast)) (PP (IN in) (NP (DT the) (NN country)))))))))))) (. .)))", "sentence2": "A 1984 Poll concluded NewsHour is seen as the least credible newscast by the public.", "sentence2_binary_parse": "( ( A ( 1984 Poll ) ) ( ( concluded ( NewsHour ( is ( seen ( as ( ( the ( ( least credible ) newscast ) ) ( by ( the public ) ) ) ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (DT A) (CD 1984) (NNS Poll)) (VP (VBD concluded) (SBAR (S (NP (NNP NewsHour)) (VP (VBZ is) (VP (VBN seen) (PP (IN as) (NP (NP (DT the) (ADJP (JJS least) (JJ credible)) (NN newscast)) (PP (IN by) (NP (DT the) (NN public)))))))))) (. .)))"}
multinli_1.0/multinli_1.0_dev_mismatched_lex.jsonl ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {"annotator_labels": ["contradiction", "contradiction", "contradiction", "contradiction", "contradiction"], "genre": "nineeleven", "gold_label": "contradiction", "pairID": "75608c", "promptID": "75608", "sentence1": "Lewin had served four years as an officer in the Israeli military.", "sentence1_binary_parse": "( Lewin ( ( had ( ( served ( four years ) ) ( as ( ( an officer ) ( in ( the ( Israeli military ) ) ) ) ) ) ) . ) )", "sentence1_parse": "(ROOT (S (NP (NNP Lewin)) (VP (VBD had) (VP (VBN served) (NP (CD four) (NNS years)) (PP (IN as) (NP (NP (DT an) (NN officer)) (PP (IN in) (NP (DT the) (JJ Israeli) (NN military))))))) (. .)))", "sentence2": "Lewin had never served in a military.", "sentence2_binary_parse": "( Lewin ( ( ( had never ) ( served ( in ( a military ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (NNP Lewin)) (VP (VBD had) (ADVP (RB never)) (VP (VBN served) (PP (IN in) (NP (DT a) (NN military))))) (. .)))"}
2
+ {"annotator_labels": ["contradiction", "entailment", "entailment", "entailment", "contradiction"], "genre": "verbatim", "gold_label": "entailment", "pairID": "85968c", "promptID": "85968", "sentence1": "Journalist Charles Rappaport once quipped, I speak ten languages'all of them Yiddish. ", "sentence1_binary_parse": "( ( ( Journalist ( Charles Rappaport ) ) ( once quipped ) ) ( , ( I ( ( ( ( speak ( ten languages ) ) ` ) ( ( all ( of them ) ) Yiddish ) ) . ) ) ) )", "sentence1_parse": "(ROOT (S (S (NP (NNP Journalist) (NNP Charles) (NNP Rappaport)) (ADVP (RB once)) (VP (VBD quipped))) (, ,) (NP (PRP I)) (VP (VBP speak) (NP (CD ten) (NNS languages)) (`` `) (SBAR (S (NP (NP (DT all)) (PP (IN of) (NP (PRP them)))) (VP (VBZ Yiddish))))) (. .)))", "sentence2": "The journalist Charles Rappaport once joked that he only masters the Yiddish language.", "sentence2_binary_parse": "( ( The ( journalist ( Charles Rappaport ) ) ) ( once ( ( joked ( that ( he ( only ( masters ( the ( Yiddish language ) ) ) ) ) ) ) . ) ) )", "sentence2_parse": "(ROOT (S (NP (DT The) (NN journalist) (NNP Charles) (NNP Rappaport)) (ADVP (RB once)) (VP (VBD joked) (SBAR (IN that) (S (NP (PRP he)) (ADVP (RB only)) (VP (VBZ masters) (NP (DT the) (JJ Yiddish) (NN language)))))) (. .)))"}
3
+ {"annotator_labels": ["neutral", "neutral", "neutral", "neutral", "contradiction"], "genre": "oup", "gold_label": "neutral", "pairID": "119694n", "promptID": "119694", "sentence1": "In sociocultural theory, this joint, mutual focus is called intersubjectivity, or shared understanding.", "sentence1_binary_parse": "( ( In ( sociocultural theory ) ) ( , ( ( this ( joint ( , ( mutual focus ) ) ) ) ( ( ( ( ( is ( called intersubjectivity ) ) , ) or ) ( shared understanding ) ) . ) ) ) )", "sentence1_parse": "(ROOT (S (PP (IN In) (NP (JJ sociocultural) (NN theory))) (, ,) (NP (DT this) (JJ joint) (, ,) (JJ mutual) (NN focus)) (VP (VP (VBZ is) (VP (VBN called) (ADVP (RB intersubjectivity)))) (, ,) (CC or) (VP (VBD shared) (NP (NN understanding)))) (. .)))", "sentence2": "People don't always want to share a focus, as many are narrow-minded.", "sentence2_binary_parse": "( People ( ( ( ( do n't ) always ) ( ( ( want ( to ( share ( a focus ) ) ) ) , ) ( as ( many ( are narrow-minded ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (NNS People)) (VP (VBP do) (RB n't) (ADVP (RB always)) (VP (VB want) (S (VP (TO to) (VP (VB share) (NP (DT a) (NN focus))))) (, ,) (SBAR (IN as) (S (NP (DT many)) (VP (VBP are) (ADJP (JJ narrow-minded))))))) (. .)))"}
4
+ {"annotator_labels": ["neutral", "neutral", "neutral", "neutral", "neutral"], "genre": "letters", "gold_label": "neutral", "pairID": "8377n", "promptID": "8377", "sentence1": "Tax dollars that would have been spent on public assistance are saved.", "sentence1_binary_parse": "( ( ( Tax dollars ) ( that ( would ( have ( been ( spent ( on ( public assistance ) ) ) ) ) ) ) ) ( ( are saved ) . ) )", "sentence1_parse": "(ROOT (S (NP (NP (NNP Tax) (NNS dollars)) (SBAR (WHNP (WDT that)) (S (VP (MD would) (VP (VB have) (VP (VBN been) (VP (VBN spent) (PP (IN on) (NP (JJ public) (NN assistance)))))))))) (VP (VBP are) (VP (VBN saved))) (. .)))", "sentence2": "Saving tax dollars is helpful to the local government.", "sentence2_binary_parse": "( ( Saving ( tax dollars ) ) ( ( is ( helpful ( to ( the ( local government ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (JJ Saving) (NN tax) (NNS dollars)) (VP (VBZ is) (ADJP (JJ helpful) (PP (TO to) (NP (DT the) (JJ local) (NN government))))) (. .)))"}
5
+ {"annotator_labels": ["contradiction", "contradiction", "contradiction", "contradiction", "contradiction"], "genre": "letters", "gold_label": "contradiction", "pairID": "69771c", "promptID": "69771", "sentence1": "I moved to San Diego.", "sentence1_binary_parse": "( I ( ( moved ( to ( San Diego ) ) ) . ) )", "sentence1_parse": "(ROOT (S (NP (PRP I)) (VP (VBD moved) (PP (TO to) (NP (NNP San) (NNP Diego)))) (. .)))", "sentence2": "I was born and raised in San Diego, but moved somewhere else.", "sentence2_binary_parse": "( I ( ( ( ( ( was ( ( ( born and ) raised ) ( in ( San Diego ) ) ) ) , ) but ) ( moved ( somewhere else ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (PRP I)) (VP (VP (VBD was) (VP (VBN born) (CC and) (VBN raised) (PP (IN in) (NP (NNP San) (NNP Diego))))) (, ,) (CC but) (VP (VBD moved) (ADVP (RB somewhere) (RB else)))) (. .)))"}
6
+ {"annotator_labels": ["contradiction", "contradiction", "contradiction", "contradiction", "neutral"], "genre": "oup", "gold_label": "contradiction", "pairID": "121116c", "promptID": "121116", "sentence1": "The time saved in production can be lost if the distribution method is slow, or if there are other impediments to the movement of products from the apparel-maker to the retailer.", "sentence1_binary_parse": "( ( ( The time ) ( saved ( in production ) ) ) ( ( can ( be ( lost ( ( ( ( if ( ( the ( distribution method ) ) ( is slow ) ) ) , ) or ) ( if ( there ( are ( ( other impediments ) ( to ( ( the movement ) ( of ( products ( from ( ( the apparel-maker ) ( to ( the retailer ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) . ) )", "sentence1_parse": "(ROOT (S (NP (NP (DT The) (NN time)) (VP (VBN saved) (PP (IN in) (NP (NN production))))) (VP (MD can) (VP (VB be) (VP (VBN lost) (SBAR (SBAR (IN if) (S (NP (DT the) (NN distribution) (NN method)) (VP (VBZ is) (ADJP (JJ slow))))) (, ,) (CC or) (SBAR (IN if) (S (NP (EX there)) (VP (VBP are) (NP (NP (JJ other) (NNS impediments)) (PP (TO to) (NP (NP (DT the) (NN movement)) (PP (IN of) (NP (NP (NNS products)) (PP (IN from) (NP (NP (DT the) (NN apparel-maker)) (PP (TO to) (NP (DT the) (NN retailer))))))))))))))))) (. .)))", "sentence2": "The production time and the distribution method has nothing to do with each other.", "sentence2_binary_parse": "( ( ( ( The ( production time ) ) and ) ( the ( distribution method ) ) ) ( ( has ( nothing ( to ( do ( with ( each other ) ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (NP (DT The) (NN production) (NN time)) (CC and) (NP (DT the) (NN distribution) (NN method))) (VP (VBZ has) (NP (NN nothing) (S (VP (TO to) (VP (VB do) (PP (IN with) (NP (DT each) (JJ other)))))))) (. .)))"}
7
+ {"annotator_labels": ["neutral", "neutral", "neutral", "neutral", "neutral"], "genre": "letters", "gold_label": "neutral", "pairID": "111145n", "promptID": "111145", "sentence1": "Excitement abounds as some 300 students and proud parents and grandparents fill the IUPUI Conference Center for the event.", "sentence1_binary_parse": "( Excitement ( ( abounds ( as ( ( ( ( some ( 300 students ) ) and ) ( proud ( ( parents and ) grandparents ) ) ) ( fill ( ( the ( IUPUI ( Conference Center ) ) ) ( for ( the event ) ) ) ) ) ) ) . ) )", "sentence1_parse": "(ROOT (S (NP (NNP Excitement)) (VP (VBZ abounds) (SBAR (IN as) (S (NP (NP (DT some) (CD 300) (NNS students)) (CC and) (NP (JJ proud) (NNS parents) (CC and) (NNS grandparents))) (VP (VBP fill) (NP (NP (DT the) (NNP IUPUI) (NNP Conference) (NNP Center)) (PP (IN for) (NP (DT the) (NN event)))))))) (. .)))", "sentence2": "More than half of the students that fill the IUPUI Conference Center are women.", "sentence2_binary_parse": "( ( ( More ( than half ) ) ( of ( ( the students ) ( that ( fill ( ( the ( IUPUI ( Conference Center ) ) ) ( are women ) ) ) ) ) ) ) . )", "sentence2_parse": "(ROOT (NP (NP (QP (JJR More) (IN than) (PDT half))) (PP (IN of) (NP (NP (DT the) (NNS students)) (SBAR (WHNP (WDT that)) (S (VP (VBP fill) (SBAR (S (NP (DT the) (NNP IUPUI) (NNP Conference) (NNP Center)) (VP (VBP are) (NP (NNS women)))))))))) (. .)))"}
8
+ {"annotator_labels": ["contradiction", "contradiction", "contradiction", "contradiction", "contradiction"], "genre": "oup", "gold_label": "contradiction", "pairID": "28787c", "promptID": "28787", "sentence1": " Well, it's yellow and orange and red.", "sentence1_binary_parse": "( Well ( , ( it ( ( 's ( yellow ( and ( ( orange and ) red ) ) ) ) . ) ) ) )", "sentence1_parse": "(ROOT (S (INTJ (UH Well)) (, ,) (NP (PRP it)) (VP (VBZ 's) (ADJP (JJ yellow) (CC and) (JJ orange) (CC and) (JJ red))) (. .)))", "sentence2": "It doesn't have any red in it.", "sentence2_binary_parse": "( It ( ( ( does n't ) ( have ( ( any red ) ( in it ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (PRP It)) (VP (VBZ does) (RB n't) (VP (VB have) (NP (NP (DT any) (NN red)) (PP (IN in) (NP (PRP it)))))) (. .)))"}
9
+ {"annotator_labels": ["entailment", "entailment", "entailment", "entailment", "entailment"], "genre": "nineeleven", "gold_label": "entailment", "pairID": "14662e", "promptID": "14662", "sentence1": "Three months later, when interviewed in Afghanistan by ABC-TV, Bin Ladin enlarged on these themes.", "sentence1_binary_parse": "( ( ( Three months ) later ) ( , ( ( when ( ( interviewed ( in Afghanistan ) ) ( by ABC-TV ) ) ) ( , ( ( Bin Ladin ) ( ( enlarged ( on ( these themes ) ) ) . ) ) ) ) ) )", "sentence1_parse": "(ROOT (S (ADVP (NP (CD Three) (NNS months)) (RB later)) (, ,) (SBAR (WHADVP (WRB when)) (S (VP (VBD interviewed) (PP (IN in) (NP (NNP Afghanistan))) (PP (IN by) (NP (NNP ABC-TV)))))) (, ,) (NP (NNP Bin) (NNP Ladin)) (VP (VBZ enlarged) (PP (IN on) (NP (DT these) (NNS themes)))) (. .)))", "sentence2": "Bin Landin was interviewed three months later.", "sentence2_binary_parse": "( ( Bin Landin ) ( ( was ( interviewed ( three ( months later ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (NNP Bin) (NNP Landin)) (VP (VBD was) (VP (VBN interviewed) (NP (CD three) (NNS months) (RB later)))) (. .)))"}
10
+ {"annotator_labels": ["entailment", "entailment", "entailment", "entailment", "entailment"], "genre": "oup", "gold_label": "entailment", "pairID": "93634e", "promptID": "93634", "sentence1": "But not all fantasy qualifies as wish fulfillment.", "sentence1_binary_parse": "( But ( not ( ( all fantasy ) ( ( qualifies ( as ( wish fulfillment ) ) ) . ) ) ) )", "sentence1_parse": "(ROOT (S (CC But) (RB not) (NP (DT all) (NN fantasy)) (VP (VBZ qualifies) (PP (IN as) (NP (NN wish) (NN fulfillment)))) (. .)))", "sentence2": "Not all fantasy is for wish fulfillment.", "sentence2_binary_parse": "( Not ( ( all fantasy ) ( ( is ( for ( wish fulfillment ) ) ) . ) ) )", "sentence2_parse": "(ROOT (S (RB Not) (NP (DT all) (NN fantasy)) (VP (VBZ is) (PP (IN for) (NP (NN wish) (NN fulfillment)))) (. .)))"}
11
+ {"annotator_labels": ["entailment", "entailment", "entailment", "entailment", "entailment"], "genre": "facetoface", "gold_label": "entailment", "pairID": "126705e", "promptID": "126705", "sentence1": "Smacked my chest.", "sentence1_binary_parse": "( ( Smacked ( my chest ) ) . )", "sentence1_parse": "(ROOT (S (VP (VB Smacked) (NP (PRP$ my) (NN chest))) (. .)))", "sentence2": "Hit my chest.", "sentence2_binary_parse": "( ( Hit ( my chest ) ) . )", "sentence2_parse": "(ROOT (S (VP (VB Hit) (NP (PRP$ my) (NN chest))) (. .)))"}
12
+ {"annotator_labels": ["entailment", "neutral", "entailment", "entailment", "entailment"], "genre": "oup", "gold_label": "entailment", "pairID": "17993e", "promptID": "17993", "sentence1": " Hmmm, might be an abalone shell.", "sentence1_binary_parse": "( Hmmm ( , ( ( might ( be ( an ( abalone shell ) ) ) ) . ) ) )", "sentence1_parse": "(ROOT (S (ADVP (RB Hmmm)) (, ,) (VP (MD might) (VP (VB be) (NP (DT an) (JJ abalone) (NN shell)))) (. .)))", "sentence2": "After thinking for a second, I believe that could be an abalone shell.", "sentence2_binary_parse": "( ( After ( thinking ( for ( a second ) ) ) ) ( , ( I ( ( believe ( that ( could ( be ( an ( abalone shell ) ) ) ) ) ) . ) ) ) )", "sentence2_parse": "(ROOT (S (PP (IN After) (S (VP (VBG thinking) (PP (IN for) (NP (DT a) (NN second)))))) (, ,) (NP (PRP I)) (VP (VBP believe) (SBAR (IN that) (S (VP (MD could) (VP (VB be) (NP (DT an) (JJ abalone) (NN shell))))))) (. .)))"}
13
+ {"annotator_labels": ["contradiction", "contradiction", "contradiction", "contradiction", "contradiction"], "genre": "letters", "gold_label": "contradiction", "pairID": "75109c", "promptID": "75109", "sentence1": "Please join me in making a generous contribution to this year's Annual Campaign.", "sentence1_binary_parse": "( Please ( ( ( join me ) ( in ( ( making ( a ( generous contribution ) ) ) ( to ( ( this ( year 's ) ) ( Annual Campaign ) ) ) ) ) ) . ) )", "sentence1_parse": "(ROOT (S (INTJ (UH Please)) (VP (VB join) (NP (PRP me)) (PP (IN in) (S (VP (VBG making) (NP (DT a) (JJ generous) (NN contribution)) (PP (TO to) (NP (NP (DT this) (NN year) (POS 's)) (JJ Annual) (NN Campaign))))))) (. .)))", "sentence2": "Avoid making any contributions to this year's Annual Campaign.", "sentence2_binary_parse": "( ( Avoid ( ( making ( any contributions ) ) ( to ( ( this ( year 's ) ) ( Annual Campaign ) ) ) ) ) . )", "sentence2_parse": "(ROOT (S (VP (VBN Avoid) (S (VP (VBG making) (NP (DT any) (NNS contributions)) (PP (TO to) (NP (NP (DT this) (NN year) (POS 's)) (JJ Annual) (NN Campaign)))))) (. .)))"}
14
+ {"annotator_labels": ["neutral", "neutral", "neutral", "neutral", "neutral"], "genre": "oup", "gold_label": "neutral", "pairID": "137262n", "promptID": "137262", "sentence1": "The centering operation is important because the diameter of a knit tube varies slightly along its length, and it is necessary to reference cutting from the midline of the tube.", "sentence1_binary_parse": "( ( ( ( ( ( The ( centering operation ) ) ( ( is important ) ( because ( ( ( the diameter ) ( of ( a ( knit tube ) ) ) ) ( ( varies slightly ) ( along ( its length ) ) ) ) ) ) ) , ) and ) ( it ( is ( necessary ( to ( reference ( cutting ( from ( ( the midline ) ( of ( the tube ) ) ) ) ) ) ) ) ) ) ) . )", "sentence1_parse": "(ROOT (S (S (NP (DT The) (JJ centering) (NN operation)) (VP (VBZ is) (ADJP (JJ important)) (SBAR (IN because) (S (NP (NP (DT the) (NN diameter)) (PP (IN of) (NP (DT a) (JJ knit) (NN tube)))) (VP (VBZ varies) (ADVP (RB slightly)) (PP (IN along) (NP (PRP$ its) (NN length)))))))) (, ,) (CC and) (S (NP (PRP it)) (VP (VBZ is) (ADJP (JJ necessary) (S (VP (TO to) (VP (VB reference) (S (VP (VBG cutting) (PP (IN from) (NP (NP (DT the) (NN midline)) (PP (IN of) (NP (DT the) (NN tube))))))))))))) (. .)))", "sentence2": "The centering operation is crucial to make sure the fabric is cut straight.", "sentence2_binary_parse": "( ( The ( centering operation ) ) ( ( is ( crucial ( to ( make ( sure ( ( the fabric ) ( is ( cut straight ) ) ) ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (DT The) (JJ centering) (NN operation)) (VP (VBZ is) (ADJP (JJ crucial) (S (VP (TO to) (VP (VB make) (ADJP (JJ sure) (SBAR (S (NP (DT the) (NN fabric)) (VP (VBZ is) (VP (VBN cut) (ADVP (RB straight)))))))))))) (. .)))"}
15
+ {"annotator_labels": ["entailment", "neutral", "neutral", "entailment", "entailment"], "genre": "nineeleven", "gold_label": "entailment", "pairID": "59725e", "promptID": "59725", "sentence1": "Okay, you read that from the Vice President, right?", "sentence1_binary_parse": "( Okay ( , ( you ( ( ( ( ( read that ) ( from ( the ( Vice President ) ) ) ) , ) right ) ? ) ) ) )", "sentence1_parse": "(ROOT (S (INTJ (UH Okay)) (, ,) (NP (PRP you)) (VP (VBD read) (NP (DT that)) (PP (IN from) (NP (DT the) (NNP Vice) (NNP President))) (, ,) (ADVP (RB right))) (. ?)))", "sentence2": "Are you saying you received information from the Vice President?", "sentence2_binary_parse": "( ( ( Are you ) ( saying ( you ( ( received information ) ( from ( the ( Vice President ) ) ) ) ) ) ) ? )", "sentence2_parse": "(ROOT (SQ (VBP Are) (NP (PRP you)) (VP (VBG saying) (SBAR (S (NP (PRP you)) (VP (VBD received) (NP (NN information)) (PP (IN from) (NP (DT the) (NNP Vice) (NNP President))))))) (. ?)))"}
16
+ {"annotator_labels": ["entailment", "entailment", "entailment", "entailment", "entailment"], "genre": "verbatim", "gold_label": "entailment", "pairID": "435e", "promptID": "435", "sentence1": "Some time later, I got still another version of MUSKRAT RAMBLE, with still another version of the title.", "sentence1_binary_parse": "( ( ( Some time ) later ) ( , ( I ( ( ( ( ( got still ) ( ( another version ) ( of ( MUSKRAT RAMBLE ) ) ) ) , ) ( with ( ( still ( another version ) ) ( of ( the title ) ) ) ) ) . ) ) ) )", "sentence1_parse": "(ROOT (S (ADVP (NP (DT Some) (NN time)) (RB later)) (, ,) (NP (PRP I)) (VP (VBD got) (ADVP (RB still)) (NP (NP (DT another) (NN version)) (PP (IN of) (NP (NNP MUSKRAT) (NNP RAMBLE)))) (, ,) (PP (IN with) (NP (NP (RB still) (DT another) (NN version)) (PP (IN of) (NP (DT the) (NN title)))))) (. .)))", "sentence2": "Later on, I aquired another version of MUSKRAT RAMBLE.", "sentence2_binary_parse": "( ( Later on ) ( , ( I ( ( aquired ( ( another version ) ( of ( MUSKRAT RAMBLE ) ) ) ) . ) ) ) )", "sentence2_parse": "(ROOT (S (ADVP (RB Later) (RB on)) (, ,) (NP (PRP I)) (VP (VBD aquired) (NP (NP (DT another) (NN version)) (PP (IN of) (NP (NNP MUSKRAT) (NNP RAMBLE))))) (. .)))"}
17
+ {"annotator_labels": ["contradiction", "contradiction", "entailment", "entailment", "contradiction"], "genre": "nineeleven", "gold_label": "contradiction", "pairID": "92590c", "promptID": "92590", "sentence1": "We found no evidence that, at this critical time, NORAD's top commanders, in Florida or Cheyenne Mountain, coordinated with their counterparts at FAA headquarters to improve awareness and organize a common response.", "sentence1_binary_parse": "( We ( ( ( ( ( ( found ( ( no evidence ) that ) ) , ) ( at ( ( ( this ( critical time ) ) , ) ( ( NORAD 's ) ( top commanders ) ) ) ) ) , ) ( in ( ( ( Florida ( or ( Cheyenne Mountain ) ) ) , ) ( ( ( coordinated ( with ( their counterparts ) ) ) ( at ( FAA headquarters ) ) ) ( to ( ( ( improve awareness ) and ) ( organize ( a ( common response ) ) ) ) ) ) ) ) ) . ) )", "sentence1_parse": "(ROOT (S (NP (PRP We)) (VP (VBD found) (ADVP (NP (DT no) (NN evidence)) (RB that)) (, ,) (PP (IN at) (NP (NP (DT this) (JJ critical) (NN time)) (, ,) (NP (NP (NNP NORAD) (POS 's)) (JJ top) (NNS commanders)))) (, ,) (PP (IN in) (NP (NP (NNP Florida) (CC or) (NNP Cheyenne) (NNP Mountain)) (, ,) (VP (VBN coordinated) (PP (IN with) (NP (PRP$ their) (NNS counterparts))) (PP (IN at) (NP (NNP FAA) (NNS headquarters))) (S (VP (TO to) (VP (VP (VB improve) (NP (NN awareness))) (CC and) (VP (VB organize) (NP (DT a) (JJ common) (NN response)))))))))) (. .)))", "sentence2": "NORAD sent their top commanders to a conference call and immediately began working out a resolution.", "sentence2_binary_parse": "( NORAD ( ( ( ( ( sent ( their ( top commanders ) ) ) ( to ( a ( conference call ) ) ) ) and ) ( immediately ( began ( ( working out ) ( a resolution ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (NNP NORAD)) (VP (VP (VBD sent) (NP (PRP$ their) (JJ top) (NNS commanders)) (PP (TO to) (NP (DT a) (NN conference) (NN call)))) (CC and) (VP (ADVP (RB immediately)) (VBD began) (S (VP (VBG working) (PRT (RP out)) (NP (DT a) (NN resolution)))))) (. .)))"}
18
+ {"annotator_labels": ["entailment", "entailment", "entailment", "entailment", "entailment"], "genre": "letters", "gold_label": "entailment", "pairID": "48094e", "promptID": "48094", "sentence1": "However, we recognize that contributions at the Maennerchor Society level are not possible for all.", "sentence1_binary_parse": "( However ( , ( we ( ( recognize ( that ( ( contributions ( at ( the ( Maennerchor ( Society level ) ) ) ) ) ( ( are not ) ( possible ( for all ) ) ) ) ) ) . ) ) ) )", "sentence1_parse": "(ROOT (S (ADVP (RB However)) (, ,) (NP (PRP we)) (VP (VBP recognize) (SBAR (IN that) (S (NP (NP (NNS contributions)) (PP (IN at) (NP (DT the) (NNP Maennerchor) (NNP Society) (NN level)))) (VP (VBP are) (RB not) (ADJP (JJ possible) (PP (IN for) (NP (DT all)))))))) (. .)))", "sentence2": "Contributions at the level of the Maennerchor Society are impossible for some.", "sentence2_binary_parse": "( ( Contributions ( at ( ( the level ) ( of ( the ( Maennerchor Society ) ) ) ) ) ) ( ( are ( impossible ( for some ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (NP (NNS Contributions)) (PP (IN at) (NP (NP (DT the) (NN level)) (PP (IN of) (NP (DT the) (NNP Maennerchor) (NNP Society)))))) (VP (VBP are) (ADJP (JJ impossible) (PP (IN for) (NP (DT some))))) (. .)))"}
19
+ {"annotator_labels": ["neutral", "neutral", "neutral", "neutral", "neutral"], "genre": "nineeleven", "gold_label": "neutral", "pairID": "14122n", "promptID": "14122", "sentence1": "At 8:51, the flight deviated from its assigned altitude, and a minute later New York air traffic controllers began repeatedly and unsuccessfully trying to contact it.", "sentence1_binary_parse": "( ( At 8:51 ) ( , ( ( ( ( ( ( the flight ) ( deviated ( from ( its ( assigned altitude ) ) ) ) ) , ) and ) ( ( ( a minute ) later ) ( ( New ( York ( air ( traffic controllers ) ) ) ) ( began ( ( repeatedly and ) ( unsuccessfully ( trying ( to ( contact it ) ) ) ) ) ) ) ) ) . ) ) )", "sentence1_parse": "(ROOT (S (PP (IN At) (NP (CD 8:51))) (, ,) (S (NP (DT the) (NN flight)) (VP (VBD deviated) (PP (IN from) (NP (PRP$ its) (VBN assigned) (NN altitude))))) (, ,) (CC and) (S (ADVP (NP (DT a) (NN minute)) (RB later)) (NP (NNP New) (NNP York) (NN air) (NN traffic) (NNS controllers)) (VP (VBD began) (UCP (ADVP (RB repeatedly)) (CC and) (VP (ADVP (RB unsuccessfully)) (VBG trying) (S (VP (TO to) (VP (VB contact) (NP (PRP it))))))))) (. .)))", "sentence2": "New York traffic controllers tried a hundred times in vain to contact the plane.", "sentence2_binary_parse": "( ( New ( York ( traffic controllers ) ) ) ( ( ( ( tried ( a ( hundred times ) ) ) ( in vain ) ) ( to ( contact ( the plane ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (NNP New) (NNP York) (NN traffic) (NNS controllers)) (VP (VBD tried) (NP (QP (DT a) (CD hundred) (NNS times))) (PP (IN in) (NP (JJ vain))) (S (VP (TO to) (VP (VB contact) (NP (DT the) (NN plane)))))) (. .)))"}
20
+ {"annotator_labels": ["neutral", "neutral", "neutral", "neutral", "neutral"], "genre": "facetoface", "gold_label": "neutral", "pairID": "14393n", "promptID": "14393", "sentence1": "What how often.", "sentence1_binary_parse": "( What ( how ( often . ) ) )", "sentence1_parse": "(ROOT (FRAG (SBAR (WHNP (WP What)) (FRAG (SBARQ (WHNP (WRB how)) (ADVP (RB often) (. .)))))))", "sentence2": "How often did you have sex with him.", "sentence2_binary_parse": "( ( How often ) ( ( ( did you ) ( have ( sex ( with him ) ) ) ) . ) )", "sentence2_parse": "(ROOT (SBARQ (WHADVP (WRB How) (RB often)) (SQ (VBD did) (NP (PRP you)) (VP (VB have) (NP (NP (NN sex)) (PP (IN with) (NP (PRP him)))))) (. .)))"}
21
+ {"annotator_labels": ["neutral", "neutral", "neutral", "neutral", "contradiction"], "genre": "letters", "gold_label": "neutral", "pairID": "23514n", "promptID": "23514", "sentence1": "Please include the enclosed form with your contribution.", "sentence1_binary_parse": "( Please ( ( include ( ( the ( enclosed form ) ) ( with ( your contribution ) ) ) ) . ) )", "sentence1_parse": "(ROOT (S (INTJ (UH Please)) (VP (VB include) (NP (NP (DT the) (VBN enclosed) (NN form)) (PP (IN with) (NP (PRP$ your) (NN contribution))))) (. .)))", "sentence2": "Don't forget to sign and date the form.", "sentence2_binary_parse": "( ( ( Do n't ) ( forget ( to ( ( ( sign and ) date ) ( the form ) ) ) ) ) . )", "sentence2_parse": "(ROOT (S (VP (VB Do) (RB n't) (VP (VB forget) (S (VP (TO to) (VP (VB sign) (CC and) (VB date) (NP (DT the) (NN form))))))) (. .)))"}
22
+ {"annotator_labels": ["entailment", "entailment", "entailment", "entailment", "entailment"], "genre": "oup", "gold_label": "entailment", "pairID": "58828e", "promptID": "58828", "sentence1": "In one study, Lonigan and Whitehurst compared shared reading with teachers at preschool, shared reading with parents at home, and a combined condition.", "sentence1_binary_parse": "( ( In ( one study ) ) ( , ( ( ( Lonigan and ) Whitehurst ) ( ( ( ( compared ( shared reading ) ) ( with ( teachers ( at ( preschool ( , ( shared reading ) ) ) ) ) ) ) ( with ( ( ( ( parents ( at home ) ) , ) and ) ( a ( combined condition ) ) ) ) ) . ) ) ) )", "sentence1_parse": "(ROOT (S (PP (IN In) (NP (CD one) (NN study))) (, ,) (NP (NNP Lonigan) (CC and) (NNP Whitehurst)) (VP (VBD compared) (NP (VBN shared) (NN reading)) (PP (IN with) (NP (NP (NNS teachers)) (PP (IN at) (NP (JJ preschool) (, ,) (VBN shared) (NN reading))))) (PP (IN with) (NP (NP (NP (NNS parents)) (PP (IN at) (NP (NN home)))) (, ,) (CC and) (NP (DT a) (VBN combined) (NN condition))))) (. .)))", "sentence2": "A study compared shared reading with teacher at preschool, and parents at home.", "sentence2_binary_parse": "( ( A study ) ( ( compared ( ( ( ( ( ( shared reading ) ( with teacher ) ) ( at preschool ) ) , ) and ) ( parents ( at home ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (DT A) (NN study)) (VP (VBD compared) (NP (NP (NP (VBN shared) (NN reading)) (PP (IN with) (NP (NN teacher))) (PP (IN at) (NP (NNP preschool)))) (, ,) (CC and) (NP (NP (NNS parents)) (PP (IN at) (NP (NN home)))))) (. .)))"}
23
+ {"annotator_labels": ["entailment", "entailment", "entailment", "entailment", "entailment"], "genre": "letters", "gold_label": "entailment", "pairID": "106699e", "promptID": "106699", "sentence1": "Young Parents A key component in reduction of potential risk of child abuse, designed to decrease stress in the parent/child relationship enabling the parent to continue school attendance and achievement.", "sentence1_binary_parse": "( Young ( ( Parents ( ( ( ( ( A ( key component ) ) ( in reduction ) ) ( of ( ( potential risk ) ( of ( child abuse ) ) ) ) ) , ) ( designed ( to ( ( decrease stress ) ( in ( ( the ( parent/child relationship ) ) ( enabling ( the ( parent ( to ( continue ( school ( ( attendance and ) achievement ) ) ) ) ) ) ) ) ) ) ) ) ) ) . ) )", "sentence1_parse": "(ROOT (S (NP (NNP Young)) (VP (VBZ Parents) (NP (NP (DT A) (JJ key) (NN component)) (PP (IN in) (NP (NN reduction))) (PP (IN of) (NP (NP (JJ potential) (NN risk)) (PP (IN of) (NP (NN child) (NN abuse))))) (, ,) (VP (VBN designed) (S (VP (TO to) (VP (VB decrease) (NP (NN stress)) (PP (IN in) (NP (NP (DT the) (JJ parent/child) (NN relationship)) (VP (VBG enabling) (NP (DT the) (NN parent) (S (VP (TO to) (VP (VB continue) (NP (NN school) (NN attendance) (CC and) (NN achievement))))))))))))))) (. .)))", "sentence2": "created to lower the levels of stress in the parent/child relationship", "sentence2_binary_parse": "( created ( to ( ( lower ( ( the levels ) ( of stress ) ) ) ( in ( the ( parent/child relationship ) ) ) ) ) )", "sentence2_parse": "(ROOT (VP (VBN created) (S (VP (TO to) (VP (VB lower) (NP (NP (DT the) (NNS levels)) (PP (IN of) (NP (NN stress)))) (PP (IN in) (NP (DT the) (JJ parent/child) (NN relationship))))))))"}
24
+ {"annotator_labels": ["contradiction", "contradiction", "contradiction", "contradiction", "contradiction"], "genre": "oup", "gold_label": "contradiction", "pairID": "80414c", "promptID": "80414", "sentence1": "Instead, children are active agents, contributing to the creation of their own thought processes by collaborating with more experienced cultural members in meaningful activities.", "sentence1_binary_parse": "( Instead ( , ( children ( ( ( ( are ( active agents ) ) , ) ( ( contributing ( to ( ( the creation ) ( of ( their ( own ( thought processes ) ) ) ) ) ) ) ( by ( collaborating ( with ( ( ( more experienced ) ( cultural members ) ) ( in ( meaningful activities ) ) ) ) ) ) ) ) . ) ) ) )", "sentence1_parse": "(ROOT (S (ADVP (RB Instead)) (, ,) (NP (NNS children)) (VP (VBP are) (NP (JJ active) (NNS agents)) (, ,) (S (VP (VBG contributing) (PP (TO to) (NP (NP (DT the) (NN creation)) (PP (IN of) (NP (PRP$ their) (JJ own) (NN thought) (NNS processes))))) (PP (IN by) (S (VP (VBG collaborating) (PP (IN with) (NP (NP (ADJP (RBR more) (JJ experienced)) (JJ cultural) (NNS members)) (PP (IN in) (NP (JJ meaningful) (NNS activities))))))))))) (. .)))", "sentence2": "Children have the inability to contribute to the creation of their own thought processes.", "sentence2_binary_parse": "( Children ( ( have ( the ( inability ( to ( contribute ( to ( ( the creation ) ( of ( their ( own ( thought processes ) ) ) ) ) ) ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (NNP Children)) (VP (VBP have) (NP (DT the) (NN inability) (S (VP (TO to) (VP (VB contribute) (PP (TO to) (NP (NP (DT the) (NN creation)) (PP (IN of) (NP (PRP$ their) (JJ own) (NN thought) (NNS processes)))))))))) (. .)))"}
25
+ {"annotator_labels": ["entailment", "entailment", "entailment", "entailment", "entailment"], "genre": "verbatim", "gold_label": "entailment", "pairID": "118006e", "promptID": "118006", "sentence1": "Today, Bodenheim's novel might be of interest to students of the English language because of its use of slang.", "sentence1_binary_parse": "( Today ( , ( ( ( Bodenheim 's ) novel ) ( ( might ( ( be ( of interest ) ) ( to ( students ( of ( ( the ( English language ) ) ( because ( of ( ( its use ) ( of slang ) ) ) ) ) ) ) ) ) ) . ) ) ) )", "sentence1_parse": "(ROOT (S (NP (NN Today)) (, ,) (NP (NP (NNP Bodenheim) (POS 's)) (NN novel)) (VP (MD might) (VP (VB be) (PP (IN of) (NP (NN interest))) (PP (TO to) (NP (NP (NNS students)) (PP (IN of) (NP (NP (DT the) (JJ English) (NN language)) (PP (RB because) (IN of) (NP (NP (PRP$ its) (NN use)) (PP (IN of) (NP (NN slang))))))))))) (. .)))", "sentence2": "Bodenheim's novel makes an interesting use of slang.", "sentence2_binary_parse": "( ( ( Bodenheim 's ) novel ) ( ( makes ( ( an ( interesting use ) ) ( of slang ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (NP (NNP Bodenheim) (POS 's)) (NN novel)) (VP (VBZ makes) (NP (NP (DT an) (JJ interesting) (NN use)) (PP (IN of) (NP (NN slang))))) (. .)))"}
26
+ {"annotator_labels": ["contradiction", "contradiction", "neutral", "contradiction", "neutral"], "genre": "facetoface", "gold_label": "contradiction", "pairID": "136163c", "promptID": "136163", "sentence1": "I was four years old at the time.", "sentence1_binary_parse": "( I ( ( was ( ( four years ) ( old ( at ( the time ) ) ) ) ) . ) )", "sentence1_parse": "(ROOT (S (NP (PRP I)) (VP (VBD was) (ADJP (NP (CD four) (NNS years)) (JJ old) (PP (IN at) (NP (DT the) (NN time))))) (. .)))", "sentence2": "I was 25 years old in 2020.", "sentence2_binary_parse": "( I ( ( was ( ( 25 years ) ( old ( in 2020 ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (PRP I)) (VP (VBD was) (ADJP (NP (CD 25) (NNS years)) (JJ old) (PP (IN in) (NP (CD 2020))))) (. .)))"}
27
+ {"annotator_labels": ["contradiction", "neutral", "neutral", "neutral", "neutral"], "genre": "verbatim", "gold_label": "neutral", "pairID": "3916c", "promptID": "3916", "sentence1": "The publisher sent unrevised bound proofs from which this review was prepared; unfortunately, there was no proof of an index, but the publisher has assured me that there will be one in the published book, a rather essential ingredient of a work with this title.", "sentence1_binary_parse": "( ( ( ( ( The publisher ) ( sent ( ( ( unrevised bound ) proofs ) ( ( from which ) ( ( this review ) ( was prepared ) ) ) ) ) ) ; ) ( ( ( ( unfortunately ( , ( there ( was ( ( no proof ) ( of ( an index ) ) ) ) ) ) ) , ) but ) ( ( the publisher ) ( has ( ( assured me ) ( that ( there ( will ( be ( one ( in ( ( ( the ( published book ) ) , ) ( ( a ( ( rather essential ) ingredient ) ) ( of ( ( a work ) ( with ( this title ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) . )", "sentence1_parse": "(ROOT (S (S (NP (DT The) (NN publisher)) (VP (VBD sent) (NP (NP (ADJP (RB unrevised) (VBN bound)) (NNS proofs)) (SBAR (WHPP (IN from) (WHNP (WDT which))) (S (NP (DT this) (NN review)) (VP (VBD was) (VP (VBN prepared)))))))) (: ;) (S (S (ADVP (RB unfortunately)) (, ,) (NP (EX there)) (VP (VBD was) (NP (NP (DT no) (NN proof)) (PP (IN of) (NP (DT an) (NN index)))))) (, ,) (CC but) (S (NP (DT the) (NN publisher)) (VP (VBZ has) (VP (VBN assured) (NP (PRP me)) (SBAR (IN that) (S (NP (EX there)) (VP (MD will) (VP (VB be) (NP (NP (CD one)) (PP (IN in) (NP (NP (DT the) (JJ published) (NN book)) (, ,) (NP (NP (DT a) (ADJP (RB rather) (JJ essential)) (NN ingredient)) (PP (IN of) (NP (NP (DT a) (NN work)) (PP (IN with) (NP (DT this) (NN title))))))))))))))))) (. .)))", "sentence2": "The publisher claimed there would be an index when the book was published, but he lied. ", "sentence2_binary_parse": "( ( ( ( ( ( The publisher ) ( claimed ( there ( would ( be ( ( an index ) ( when ( ( the book ) ( was published ) ) ) ) ) ) ) ) ) , ) but ) ( he lied ) ) . )", "sentence2_parse": "(ROOT (S (S (NP (DT The) (NN publisher)) (VP (VBD claimed) (SBAR (S (NP (EX there)) (VP (MD would) (VP (VB be) (NP (NP (DT an) (NN index)) (SBAR (WHADVP (WRB when)) (S (NP (DT the) (NN book)) (VP (VBD was) (VP (VBN published)))))))))))) (, ,) (CC but) (S (NP (PRP he)) (VP (VBD lied))) (. .)))"}
28
+ {"annotator_labels": ["neutral", "neutral", "neutral", "neutral", "neutral"], "genre": "oup", "gold_label": "neutral", "pairID": "115169n", "promptID": "115169", "sentence1": "For example, sketches or photos can be draped with material of different colors and patterns.", "sentence1_binary_parse": "( ( For example ) ( , ( ( ( sketches or ) photos ) ( ( can ( be ( draped ( with ( material ( of ( different ( ( colors and ) patterns ) ) ) ) ) ) ) ) . ) ) ) )", "sentence1_parse": "(ROOT (S (PP (IN For) (NP (NN example))) (, ,) (NP (NNS sketches) (CC or) (NNS photos)) (VP (MD can) (VP (VB be) (VP (VBN draped) (PP (IN with) (NP (NP (NN material)) (PP (IN of) (NP (JJ different) (NNS colors) (CC and) (NNS patterns)))))))) (. .)))", "sentence2": "Only sketches and photos are draped with different coloured material.", "sentence2_binary_parse": "( ( Only ( ( sketches and ) photos ) ) ( ( are ( draped ( with ( different ( coloured material ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (JJ Only) (NNS sketches) (CC and) (NNS photos)) (VP (VBP are) (VP (VBN draped) (PP (IN with) (NP (JJ different) (JJ coloured) (NN material))))) (. .)))"}
29
+ {"annotator_labels": ["entailment", "entailment", "entailment", "entailment", "entailment"], "genre": "facetoface", "gold_label": "entailment", "pairID": "69278e", "promptID": "69278", "sentence1": "She remembered poems that she had learned when she was in high school.", "sentence1_binary_parse": "( She ( ( ( remembered poems ) ( that ( she ( had ( learned ( when ( she ( was ( in ( high school ) ) ) ) ) ) ) ) ) ) . ) )", "sentence1_parse": "(ROOT (S (NP (PRP She)) (VP (VBD remembered) (NP (NNS poems)) (SBAR (IN that) (S (NP (PRP she)) (VP (VBD had) (VP (VBN learned) (SBAR (WHADVP (WRB when)) (S (NP (PRP she)) (VP (VBD was) (PP (IN in) (NP (JJ high) (NN school))))))))))) (. .)))", "sentence2": "She recalled poems from high school.", "sentence2_binary_parse": "( She ( ( ( recalled poems ) ( from ( high school ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (PRP She)) (VP (VBD recalled) (NP (NNS poems)) (PP (IN from) (NP (JJ high) (NN school)))) (. .)))"}
30
+ {"annotator_labels": ["contradiction", "contradiction", "entailment", "contradiction", "contradiction"], "genre": "oup", "gold_label": "contradiction", "pairID": "39524c", "promptID": "39524", "sentence1": "Children's social exchanges begin to infiuence their ways of thinking more profoundly than before, permitting them to acquire competencies in keeping with the requirements of their families and communities.", "sentence1_binary_parse": "( ( ( Children 's ) ( social exchanges ) ) ( ( begin ( to ( infiuence ( ( their ways ) ( of ( ( ( ( thinking ( more profoundly ) ) ( than before ) ) , ) ( permitting ( them ( to ( ( acquire competencies ) ( in ( keeping ( with ( ( the requirements ) ( of ( their ( ( families and ) communities ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) . ) )", "sentence1_parse": "(ROOT (S (NP (NP (NNP Children) (POS 's)) (JJ social) (NNS exchanges)) (VP (VBP begin) (S (VP (TO to) (VP (VB infiuence) (NP (NP (PRP$ their) (NNS ways)) (PP (IN of) (S (VP (VBG thinking) (ADJP (RBR more) (RB profoundly)) (ADVP (IN than) (RB before)) (, ,) (S (VP (VBG permitting) (S (NP (PRP them)) (VP (TO to) (VP (VB acquire) (NP (NNS competencies)) (PP (IN in) (S (VP (VBG keeping) (PP (IN with) (NP (NP (DT the) (NNS requirements)) (PP (IN of) (NP (PRP$ their) (NNS families) (CC and) (NNS communities))))))))))))))))))))) (. .)))", "sentence2": "Children's social exchanges begin to inhibit how they think.", "sentence2_binary_parse": "( ( ( Children 's ) ( social exchanges ) ) ( ( begin ( to ( inhibit ( how ( they think ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (NP (NNP Children) (POS 's)) (JJ social) (NNS exchanges)) (VP (VBP begin) (S (VP (TO to) (VP (VB inhibit) (SBAR (WHADVP (WRB how)) (S (NP (PRP they)) (VP (VBP think)))))))) (. .)))"}
31
+ {"annotator_labels": ["entailment", "entailment", "entailment", "entailment", "entailment"], "genre": "verbatim", "gold_label": "entailment", "pairID": "142817e", "promptID": "142817", "sentence1": "Thus, in modern parlance, when a person goes off half cocked (or at half cock ), he or she is not in control of the situation.", "sentence1_binary_parse": "( Thus ( , ( ( in ( modern parlance ) ) ( , ( ( when ( ( a person ) ( goes ( ( off half ) ( cocked ( -LRB- ( ( or ( at ( half cock ) ) ) -RRB- ) ) ) ) ) ) ) ( , ( ( ( he or ) she ) ( ( ( is not ) ( in ( control ( of ( the situation ) ) ) ) ) . ) ) ) ) ) ) ) )", "sentence1_parse": "(ROOT (S (ADVP (RB Thus)) (, ,) (PP (IN in) (NP (JJ modern) (NN parlance))) (, ,) (SBAR (WHADVP (WRB when)) (S (NP (DT a) (NN person)) (VP (VBZ goes) (ADJP (ADVP (IN off) (DT half)) (JJ cocked) (PRN (-LRB- -LRB-) (CC or) (FRAG (X (IN at)) (NP (DT half) (NN cock))) (-RRB- -RRB-)))))) (, ,) (NP (PRP he) (CC or) (PRP she)) (VP (VBZ is) (RB not) (PP (IN in) (NP (NP (NN control)) (PP (IN of) (NP (DT the) (NN situation)))))) (. .)))", "sentence2": "A When someone is half cocked they are out of control.", "sentence2_binary_parse": "( A ( ( When ( someone ( is ( half cocked ) ) ) ) ( they ( ( ( are out ) ( of control ) ) . ) ) ) )", "sentence2_parse": "(ROOT (S (NP (NNP A)) (SBAR (WHADVP (WRB When)) (S (NP (NN someone)) (VP (VBZ is) (ADJP (RB half) (JJ cocked))))) (NP (PRP they)) (VP (VBP are) (PRT (RP out)) (PP (IN of) (NP (NN control)))) (. .)))"}
32
+ {"annotator_labels": ["neutral", "neutral", "neutral", "neutral", "neutral"], "genre": "facetoface", "gold_label": "neutral", "pairID": "93250n", "promptID": "93250", "sentence1": "Is he your favorite superhero?", "sentence1_binary_parse": "( ( ( Is he ) ( your ( favorite superhero ) ) ) ? )", "sentence1_parse": "(ROOT (SQ (VBZ Is) (NP (PRP he)) (NP (PRP$ your) (JJ favorite) (NN superhero)) (. ?)))", "sentence2": "Is Iron Man your favorite superhero?", "sentence2_binary_parse": "( ( ( Is ( Iron Man ) ) ( your ( favorite superhero ) ) ) ? )", "sentence2_parse": "(ROOT (SQ (VBZ Is) (NP (NNP Iron) (NNP Man)) (NP (PRP$ your) (JJ favorite) (NN superhero)) (. ?)))"}
33
+ {"annotator_labels": ["neutral", "neutral", "neutral", "neutral", "neutral"], "genre": "verbatim", "gold_label": "neutral", "pairID": "50806n", "promptID": "50806", "sentence1": "If you believe that balderdash, you'll believe anything.", "sentence1_binary_parse": "( ( If ( you ( believe ( that balderdash ) ) ) ) ( , ( you ( ( 'll ( believe anything ) ) . ) ) ) )", "sentence1_parse": "(ROOT (S (SBAR (IN If) (S (NP (PRP you)) (VP (VBP believe) (NP (DT that) (NN balderdash))))) (, ,) (NP (PRP you)) (VP (MD 'll) (VP (VB believe) (NP (NN anything)))) (. .)))", "sentence2": "You only believe that because you dropped out of school.", "sentence2_binary_parse": "( You ( only ( ( believe ( ( that because ) ( you ( ( dropped out ) ( of school ) ) ) ) ) . ) ) )", "sentence2_parse": "(ROOT (S (NP (PRP You)) (ADVP (RB only)) (VP (VBP believe) (SBAR (IN that) (IN because) (S (NP (PRP you)) (VP (VBD dropped) (PRT (RP out)) (PP (IN of) (NP (NN school))))))) (. .)))"}
34
+ {"annotator_labels": ["entailment", "entailment", "entailment", "entailment", "entailment"], "genre": "facetoface", "gold_label": "entailment", "pairID": "91245e", "promptID": "91245", "sentence1": "Um, do you remember everything that your mom, like when she's telling the story, do you remember everything she tells or is some of it you remember and some of it you don't?", "sentence1_binary_parse": "( Um ( , ( ( do ( you ( ( remember everything ) ( that ( ( ( ( ( your mom ) , ) ( like ( when ( she ( 's ( telling ( the story ) ) ) ) ) ) ) , ) ( do ( you ( ( remember ( everything ( she ( ( tells or ) ( is ( some ( of it ) ) ) ) ) ) ) ( ( ( you remember ) and ) ( ( some ( of it ) ) ( you ( do n't ) ) ) ) ) ) ) ) ) ) ) ) ? ) ) )", "sentence1_parse": "(ROOT (S (NP (NNP Um)) (, ,) (VP (VB do) (S (NP (PRP you)) (VP (VB remember) (NP (NN everything)) (SBAR (IN that) (S (NP (NP (PRP$ your) (NN mom)) (, ,) (PP (IN like) (SBAR (WHADVP (WRB when)) (S (NP (PRP she)) (VP (VBZ 's) (VP (VBG telling) (NP (DT the) (NN story))))))) (, ,)) (VP (VBP do) (S (NP (PRP you)) (VP (VB remember) (NP (NP (NN everything)) (SBAR (S (NP (PRP she)) (VP (VP (VBZ tells)) (CC or) (VP (VBZ is) (NP (NP (DT some)) (PP (IN of) (NP (PRP it))))))))) (SBAR (SBAR (S (NP (PRP you)) (VP (VBP remember)))) (CC and) (SBAR (WHNP (NP (DT some)) (WHPP (IN of) (WHNP (PRP it)))) (S (NP (PRP you)) (VP (VBP do) (RB n't))))))))))))) (. ?)))", "sentence2": "When your mom is telling a story, do you remember it all or just parts of it?", "sentence2_binary_parse": "( ( When ( ( your mom ) ( is ( telling ( a story ) ) ) ) ) ( , ( ( ( do you ) ( remember ( it ( ( all ( ( or just ) parts ) ) ( of it ) ) ) ) ) ? ) ) )", "sentence2_parse": "(ROOT (SBARQ (SBAR (WHADVP (WRB When)) (S (NP (PRP$ your) (NN mom)) (VP (VBZ is) (VP (VBG telling) (NP (DT a) (NN story)))))) (, ,) (SQ (VBP do) (NP (PRP you)) (VP (VB remember) (S (NP (PRP it)) (NP (NP (DT all) (QP (CC or) (RB just)) (NNS parts)) (PP (IN of) (NP (PRP it))))))) (. ?)))"}
35
+ {"annotator_labels": ["entailment", "neutral", "contradiction", "entailment", "contradiction"], "genre": "verbatim", "gold_label": "-", "pairID": "140520e", "promptID": "140520", "sentence1": "There is no arguing with taste, but even those who support the second tenet must admit that if researchers felt that way about cancer, syphilis, and AIDS, there would not be much point to research at all.", "sentence1_binary_parse": "( ( ( ( ( There ( is ( no ( arguing ( with taste ) ) ) ) ) , ) but ) ( ( ( even those ) ( who ( support ( the ( second tenet ) ) ) ) ) ( must ( admit ( that ( ( if ( researchers ( ( felt ( that way ) ) ( about ( ( ( ( ( cancer , ) syphilis ) , ) and ) AIDS ) ) ) ) ) ( , ( there ( ( would not ) ( ( be ( much ( point ( to research ) ) ) ) ( at all ) ) ) ) ) ) ) ) ) ) ) . )", "sentence1_parse": "(ROOT (S (S (NP (EX There)) (VP (VBZ is) (ADVP (RB no) (S (VP (VBG arguing) (PP (IN with) (NP (NN taste)))))))) (, ,) (CC but) (S (NP (NP (RB even) (DT those)) (SBAR (WHNP (WP who)) (S (VP (VBP support) (NP (DT the) (JJ second) (NN tenet)))))) (VP (MD must) (VP (VB admit) (SBAR (IN that) (S (SBAR (IN if) (S (NP (NNS researchers)) (VP (VBD felt) (NP (DT that) (NN way)) (PP (IN about) (NP (NP (NN cancer)) (, ,) (NP (NNS syphilis)) (, ,) (CC and) (NP (NNP AIDS))))))) (, ,) (NP (EX there)) (VP (MD would) (RB not) (VP (VB be) (ADJP (RB much) (JJ point) (PP (TO to) (NP (NN research)))) (ADVP (IN at) (DT all))))))))) (. .)))", "sentence2": "Researches disagree with the second tenet when it comes to cancer, syphilis, and AIDS research.", "sentence2_binary_parse": "( Researches ( ( ( disagree ( with ( the ( second tenet ) ) ) ) ( when ( it ( comes ( to ( ( ( ( ( cancer , ) syphilis ) , ) and ) ( AIDS research ) ) ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (NNS Researches)) (VP (VBP disagree) (PP (IN with) (NP (DT the) (JJ second) (NN tenet))) (SBAR (WHADVP (WRB when)) (S (NP (PRP it)) (VP (VBZ comes) (PP (TO to) (NP (NP (NN cancer)) (, ,) (NP (NNS syphilis)) (, ,) (CC and) (NP (NNP AIDS) (NN research)))))))) (. .)))"}
36
+ {"annotator_labels": ["entailment", "entailment", "neutral", "entailment", "neutral"], "genre": "nineeleven", "gold_label": "entailment", "pairID": "116663e", "promptID": "116663", "sentence1": "Bin Ladin flew on a leased aircraft from Khartoum to Jalalabad, with a refueling stopover in the United Arab Emirates.", "sentence1_binary_parse": "( ( Bin Ladin ) ( ( ( ( ( flew ( on ( ( a ( leased aircraft ) ) ( from Khartoum ) ) ) ) ( to Jalalabad ) ) , ) ( with ( ( a ( refueling stopover ) ) ( in ( the ( United ( Arab Emirates ) ) ) ) ) ) ) . ) )", "sentence1_parse": "(ROOT (S (NP (NNP Bin) (NNP Ladin)) (VP (VBD flew) (PP (IN on) (NP (NP (DT a) (VBN leased) (NN aircraft)) (PP (IN from) (NP (NNP Khartoum))))) (PP (TO to) (NP (NNP Jalalabad))) (, ,) (PP (IN with) (NP (NP (DT a) (JJ refueling) (NN stopover)) (PP (IN in) (NP (DT the) (NNP United) (NNP Arab) (NNPS Emirates)))))) (. .)))", "sentence2": "Bin Ladin leased an airplane to get to Jalalabad.", "sentence2_binary_parse": "( ( Bin Ladin ) ( ( leased ( an ( airplane ( to ( get ( to Jalalabad ) ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (NNP Bin) (NNP Ladin)) (VP (VBD leased) (NP (DT an) (NN airplane) (S (VP (TO to) (VP (VB get) (PP (TO to) (NP (NNP Jalalabad)))))))) (. .)))"}
37
+ {"annotator_labels": ["contradiction", "contradiction", "contradiction", "contradiction", "contradiction"], "genre": "facetoface", "gold_label": "contradiction", "pairID": "3446c", "promptID": "3446", "sentence1": "I was always into those kinds of heroic things, um, so I read a lot of those things.", "sentence1_binary_parse": "( ( ( ( ( I ( ( ( ( was always ) ( into ( ( those kinds ) ( of ( heroic things ) ) ) ) ) , ) um ) ) , ) so ) ( I ( read ( ( a lot ) ( of ( those things ) ) ) ) ) ) . )", "sentence1_parse": "(ROOT (S (S (NP (PRP I)) (VP (VBD was) (ADVP (RB always)) (PP (IN into) (NP (NP (DT those) (NNS kinds)) (PP (IN of) (NP (JJ heroic) (NNS things))))) (, ,) (ADVP (RB um)))) (, ,) (IN so) (S (NP (PRP I)) (VP (VBP read) (NP (NP (DT a) (NN lot)) (PP (IN of) (NP (DT those) (NNS things)))))) (. .)))", "sentence2": "I was never into heroic kind of things and so I never read those things.", "sentence2_binary_parse": "( ( ( ( ( I ( ( was never ) ( into ( ( heroic kind ) ( of things ) ) ) ) ) and ) so ) ( I ( never ( read ( those things ) ) ) ) ) . )", "sentence2_parse": "(ROOT (S (S (NP (PRP I)) (VP (VBD was) (ADVP (RB never)) (PP (IN into) (NP (NP (JJ heroic) (NN kind)) (PP (IN of) (NP (NNS things))))))) (CC and) (RB so) (S (NP (PRP I)) (ADVP (RB never)) (VP (VBP read) (NP (DT those) (NNS things)))) (. .)))"}
38
+ {"annotator_labels": ["entailment", "entailment", "entailment", "entailment", "entailment"], "genre": "letters", "gold_label": "entailment", "pairID": "23423e", "promptID": "23423", "sentence1": "Your child was a recent participant in a Social Health program at his or her school.", "sentence1_binary_parse": "( ( Your child ) ( ( was ( ( a ( recent participant ) ) ( in ( ( a ( Social ( Health program ) ) ) ( at ( ( ( his or ) her ) school ) ) ) ) ) ) . ) )", "sentence1_parse": "(ROOT (S (NP (PRP$ Your) (NN child)) (VP (VBD was) (NP (NP (DT a) (JJ recent) (NN participant)) (PP (IN in) (NP (NP (DT a) (NNP Social) (NNP Health) (NN program)) (PP (IN at) (NP (ADJP (PRP$ his) (CC or) (PRP$ her)) (NN school))))))) (. .)))", "sentence2": "Your child's school recently had a Social Health program.", "sentence2_binary_parse": "( ( ( Your ( child 's ) ) school ) ( recently ( ( had ( a ( Social ( Health program ) ) ) ) . ) ) )", "sentence2_parse": "(ROOT (S (NP (NP (PRP$ Your) (NN child) (POS 's)) (NN school)) (ADVP (RB recently)) (VP (VBD had) (NP (DT a) (NNP Social) (NNP Health) (NN program))) (. .)))"}
39
+ {"annotator_labels": ["entailment", "entailment", "entailment", "entailment", "entailment"], "genre": "oup", "gold_label": "entailment", "pairID": "142521e", "promptID": "142521", "sentence1": "In the most extreme case, a stock-out might cause a customer to switch retailers, costing the lifetime value of that customer and others who might defect due to negative word-of-mouth.", "sentence1_binary_parse": "( ( In ( the ( ( most extreme ) case ) ) ) ( , ( ( a stock-out ) ( ( might ( ( ( ( cause ( a customer ) ) ( to ( switch retailers ) ) ) , ) ( ( costing ( the lifetime ) ) ( ( value ( of ( ( ( that customer ) and ) others ) ) ) ( who ( might ( defect ( due ( to ( negative word-of-mouth ) ) ) ) ) ) ) ) ) ) . ) ) ) )", "sentence1_parse": "(ROOT (S (PP (IN In) (NP (DT the) (ADJP (RBS most) (JJ extreme)) (NN case))) (, ,) (NP (DT a) (NN stock-out)) (VP (MD might) (VP (VB cause) (NP (DT a) (NN customer)) (S (VP (TO to) (VP (VB switch) (NP (NNS retailers))))) (, ,) (S (VP (VBG costing) (NP (DT the) (NN lifetime)) (NP (NP (NN value)) (PP (IN of) (NP (NP (DT that) (NN customer)) (CC and) (NP (NNS others)))) (SBAR (WHNP (WP who)) (S (VP (MD might) (VP (VB defect) (ADJP (JJ due) (PP (TO to) (NP (JJ negative) (NN word-of-mouth))))))))))))) (. .)))", "sentence2": "A customer has the option to switch their preferred retailer.", "sentence2_binary_parse": "( ( A customer ) ( ( has ( the ( option ( to ( switch ( their ( preferred retailer ) ) ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (DT A) (NN customer)) (VP (VBZ has) (NP (DT the) (NN option) (S (VP (TO to) (VP (VB switch) (NP (PRP$ their) (VBN preferred) (NN retailer))))))) (. .)))"}
40
+ {"annotator_labels": ["contradiction", "contradiction", "contradiction", "contradiction", "contradiction"], "genre": "nineeleven", "gold_label": "contradiction", "pairID": "60286c", "promptID": "60286", "sentence1": "In public testimony before this Commission in May 2003, NORAD officials stated that at 9:16, NEADS received hijack notification of United 93 from the FAA.", "sentence1_binary_parse": "( ( In ( ( public testimony ) ( before ( ( this Commission ) ( in ( May 2003 ) ) ) ) ) ) ( , ( ( NORAD officials ) ( ( stated ( that ( ( at 9:16 ) ( , ( NEADS ( ( received ( ( hijack notification ) ( of ( United 93 ) ) ) ) ( from ( the FAA ) ) ) ) ) ) ) ) . ) ) ) )", "sentence1_parse": "(ROOT (S (PP (IN In) (NP (NP (JJ public) (NN testimony)) (PP (IN before) (NP (NP (DT this) (NNP Commission)) (PP (IN in) (NP (NNP May) (CD 2003))))))) (, ,) (NP (NNP NORAD) (NNS officials)) (VP (VBD stated) (SBAR (IN that) (S (PP (IN at) (NP (CD 9:16))) (, ,) (NP (NNS NEADS)) (VP (VBD received) (NP (NP (NN hijack) (NN notification)) (PP (IN of) (NP (NNP United) (CD 93)))) (PP (IN from) (NP (DT the) (NNP FAA))))))) (. .)))", "sentence2": "NEADS was not able to receive any information from the FAA.", "sentence2_binary_parse": "( NEADS ( ( ( was not ) ( able ( to ( ( receive ( any information ) ) ( from ( the FAA ) ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (NNS NEADS)) (VP (VBD was) (RB not) (ADJP (JJ able) (S (VP (TO to) (VP (VB receive) (NP (DT any) (NN information)) (PP (IN from) (NP (DT the) (NNP FAA)))))))) (. .)))"}
41
+ {"annotator_labels": ["entailment", "entailment", "entailment", "entailment", "entailment"], "genre": "verbatim", "gold_label": "entailment", "pairID": "105755e", "promptID": "105755", "sentence1": "I see the rather boring point about using alumni to cover both men and women, and I quite agree that the use of relatively newer and less widely used terms like authoress, aviatrix , and poetess seems to be a deliberate, unwarranted attempt to identify someone as a female; but a graduate of the feminine gender is a `woman graduate' = alumna , the `first woman dancer in a ballet company' is a prima ballerina (I've never heard of a prime ballerino ), and a `woman opera star' is a diva or prima donna . I hesitate to point out that we use prima donna of men, too, because my critics will say that they disapprove of the term's second life as designating a temperamental person of either sex.", "sentence1_binary_parse": "( ( ( ( ( ( ( ( I ( see ( ( the ( ( rather boring ) point ) ) ( about ( ( using alumni ) ( to ( cover ( both ( ( men and ) women ) ) ) ) ) ) ) ) ) , ) and ) ( I ( quite ( agree ( that ( ( ( the use ) ( of ( ( ( ( ( relatively newer ) and ) less ) ( ( widely used ) terms ) ) ( like ( authoress ( , ( aviatrix ( , ( and poetess ) ) ) ) ) ) ) ) ) ( seems ( to ( be ( a ( ( deliberate ( , unwarranted ) ) ( attempt ( to ( ( identify someone ) ( as ( a female ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ; ) but ) ( ( ( ( ( ( a graduate ) ( of ( the ( feminine gender ) ) ) ) ( is ( ( a ( ` ( woman ( graduate ' ) ) ) ) ( ( = alumna ) ( , ( ( ( the ( ` ( first ( woman dancer ) ) ) ) ( in ( a ( ballet company ) ) ) ) ( ' ( is ( ( a ( prima ballerina ) ) ( -LRB- ( ( I ( ( 've never ) ( heard ( of ( a ( prime ballerino ) ) ) ) ) ) -RRB- ) ) ) ) ) ) ) ) ) ) ) , ) and ) ( ( a ( ` ( woman ( opera ( star ' ) ) ) ) ) ( ( ( ( ( is ( ( ( ( ( a diva ) or ) ( prima donna ) ) . ) ( I ( hesitate ( to ( ( point out ) ( that ( we ( use ( ( prima donna ) ( of men ) ) ) ) ) ) ) ) ) ) ) , ) too ) , ) ( because ( ( my critics ) ( will ( say ( that ( they ( ( disapprove ( of ( ( the ( term 's ) ) ( second life ) ) ) ) ( as ( designating ( ( a ( temperamental person ) ) ( of ( either sex ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) . )", "sentence1_parse": "(ROOT (S (S (NP (PRP I)) (VP (VBP see) (NP (NP (DT the) (ADJP (RB rather) (VBG boring)) (NN point)) (PP (IN about) (S (VP (VBG using) (NP (NNS alumni)) (S (VP (TO to) (VP (VB cover) (NP (CC both) (NNS men) (CC and) (NNS women))))))))))) (, ,) (CC and) (S (NP (PRP I)) (ADVP (RB quite)) (VP (VBP agree) (SBAR (IN that) (S (NP (NP (DT the) (NN use)) (PP (IN of) (NP (NP (ADJP (ADJP (RB relatively) (JJR newer)) (CC and) (ADJP (JJR less))) (ADJP (RB widely) (VBN used)) (NNS terms)) (PP (IN like) (NP (NNS authoress) (, ,) (NNS aviatrix) (, ,) (CC and) (NNS poetess)))))) (VP (VBZ seems) (S (VP (TO to) (VP (VB be) (NP (DT a) (ADJP (JJ deliberate) (, ,) (JJ unwarranted)) (NN attempt) (S (VP (TO to) (VP (VB identify) (NP (NN someone)) (PP (IN as) (NP (DT a) (NN female))))))))))))))) (: ;) (CC but) (S (S (NP (NP (DT a) (NN graduate)) (PP (IN of) (NP (DT the) (JJ feminine) (NN gender)))) (VP (VBZ is) (NP (NP (DT a) (`` `) (NN woman) (NN graduate) ('' ')) (SBAR (S (S (VP (SYM =) (NP (NN alumna)))) (, ,) (NP (NP (DT the) (`` `) (JJ first) (NN woman) (NN dancer)) (PP (IN in) (NP (DT a) (JJ ballet) (NN company)))) ('' ') (VP (VBZ is) (NP (NP (DT a) (NN prima) (NN ballerina)) (PRN (-LRB- -LRB-) (S (NP (PRP I)) (VP (VBP 've) (ADVP (RB never)) (VP (VBN heard) (PP (IN of) (NP (DT a) (JJ prime) (NN ballerino)))))) (-RRB- -RRB-))))))))) (, ,) (CC and) (S (NP (DT a) (`` `) (NN woman) (NN opera) (NN star) ('' ')) (VP (VBZ is) (NP (NP (NP (DT a) (NN diva)) (CC or) (NP (NN prima) (NN donna)) (. .)) (SBAR (S (NP (PRP I)) (VP (VBP hesitate) (S (VP (TO to) (VP (VB point) (PRT (RP out)) (SBAR (IN that) (S (NP (PRP we)) (VP (VBP use) (NP (NP (NN prima) (NN donna)) (PP (IN of) (NP (NNS men)))))))))))))) (, ,) (ADVP (RB too)) (, ,) (SBAR (IN because) (S (NP (PRP$ my) (NNS critics)) (VP (MD will) (VP (VB say) (SBAR (IN that) (S (NP (PRP they)) (VP (VBP disapprove) (PP (IN of) (NP (NP (DT the) (NN term) (POS 's)) (JJ second) (NN life))) (PP (IN as) (S (VP (VBG designating) (NP (NP (DT a) (JJ temperamental) (NN person)) (PP (IN of) (NP (DT either) (NN sex))))))))))))))))) (. .)))", "sentence2": "The term prima donna can be used for men.", "sentence2_binary_parse": "( ( The ( term ( prima donna ) ) ) ( ( can ( be ( used ( for men ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (DT The) (NN term) (NN prima) (NN donna)) (VP (MD can) (VP (VB be) (VP (VBN used) (PP (IN for) (NP (NNS men)))))) (. .)))"}
42
+ {"annotator_labels": ["entailment", "entailment", "entailment", "entailment", "entailment"], "genre": "oup", "gold_label": "entailment", "pairID": "108011e", "promptID": "108011", "sentence1": "An ambulance?", "sentence1_binary_parse": "( An ( ambulance ? ) )", "sentence1_parse": "(ROOT (NP (DT An) (NN ambulance) (. ?)))", "sentence2": "An ambulance?", "sentence2_binary_parse": "( An ( ambulance ? ) )", "sentence2_parse": "(ROOT (NP (DT An) (NN ambulance) (. ?)))"}
43
+ {"annotator_labels": ["entailment", "entailment", "entailment", "entailment", "entailment"], "genre": "facetoface", "gold_label": "entailment", "pairID": "120347e", "promptID": "120347", "sentence1": "How old would you say you were when your cousins were doing this reading?", "sentence1_binary_parse": "( ( How old ) ( ( ( would you ) ( say ( you ( were ( when ( ( your cousins ) ( were ( doing ( this reading ) ) ) ) ) ) ) ) ) ? ) )", "sentence1_parse": "(ROOT (SBARQ (WHADJP (WRB How) (JJ old)) (SQ (MD would) (NP (PRP you)) (VP (VB say) (SBAR (S (NP (PRP you)) (VP (VBD were) (SBAR (WHADVP (WRB when)) (S (NP (PRP$ your) (NNS cousins)) (VP (VBD were) (VP (VBG doing) (NP (DT this) (NN reading))))))))))) (. ?)))", "sentence2": "What was your age when your cousins read this? ", "sentence2_binary_parse": "( What ( ( was ( ( your age ) ( when ( ( your cousins ) ( read this ) ) ) ) ) ? ) )", "sentence2_parse": "(ROOT (SBARQ (WHNP (WP What)) (SQ (VBD was) (NP (NP (PRP$ your) (NN age)) (SBAR (WHADVP (WRB when)) (S (NP (PRP$ your) (NNS cousins)) (VP (VBP read) (NP (DT this))))))) (. ?)))"}
44
+ {"annotator_labels": ["contradiction", "contradiction", "contradiction", "contradiction", "entailment"], "genre": "letters", "gold_label": "contradiction", "pairID": "137717c", "promptID": "137717", "sentence1": "We believe there is no more appropriate time to have a coordinated and collaborative effort to financially support the services MCCOY offers to the community as a whole.", "sentence1_binary_parse": "( We ( ( believe ( there ( is ( no ( ( more appropriate ) ( time ( to ( have ( a ( ( ( coordinated and ) collaborative ) ( effort ( to ( financially ( support ( ( the services ) ( MCCOY ( offers ( to ( ( the community ) ( as ( a whole ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) . ) )", "sentence1_parse": "(ROOT (S (NP (PRP We)) (VP (VBP believe) (SBAR (S (NP (EX there)) (VP (VBZ is) (NP (DT no) (ADJP (RBR more) (JJ appropriate)) (NN time) (S (VP (TO to) (VP (VB have) (NP (DT a) (ADJP (JJ coordinated) (CC and) (JJ collaborative)) (NN effort) (S (VP (TO to) (VP (ADVP (RB financially)) (VB support) (NP (NP (DT the) (NNS services)) (SBAR (S (NP (NNP MCCOY)) (VP (VBZ offers) (PP (TO to) (NP (NP (DT the) (NN community)) (PP (IN as) (NP (DT a) (NN whole))))))))))))))))))))) (. .)))", "sentence2": "MCCOY does not ask for you help financially at this time. ", "sentence2_binary_parse": "( MCCOY ( ( ( does not ) ( ask ( for ( you ( ( help financially ) ( at ( this time ) ) ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (NNP MCCOY)) (VP (VBZ does) (RB not) (VP (VB ask) (SBAR (IN for) (S (NP (PRP you)) (VP (VBP help) (ADVP (RB financially)) (PP (IN at) (NP (DT this) (NN time)))))))) (. .)))"}
45
+ {"annotator_labels": ["contradiction", "contradiction", "contradiction", "contradiction", "neutral"], "genre": "verbatim", "gold_label": "contradiction", "pairID": "54420c", "promptID": "54420", "sentence1": " Let me live in my house by the side of the road", "sentence1_binary_parse": "( Let ( me ( ( live ( in ( my house ) ) ) ( by ( ( the side ) ( of ( the road ) ) ) ) ) ) )", "sentence1_parse": "(ROOT (S (VP (VB Let) (S (NP (PRP me)) (VP (VB live) (PP (IN in) (NP (PRP$ my) (NN house))) (PP (IN by) (NP (NP (DT the) (NN side)) (PP (IN of) (NP (DT the) (NN road))))))))))", "sentence2": "Their house is not nearby any roads, but rather surrounded by fields.", "sentence2_binary_parse": "( ( ( ( ( ( Their house ) ( ( ( is not ) nearby ) ( any roads ) ) ) , ) but ) ( rather ( surrounded ( by fields ) ) ) ) . )", "sentence2_parse": "(ROOT (S (S (NP (PRP$ Their) (NN house)) (VP (VBZ is) (RB not) (ADVP (RB nearby)) (NP (DT any) (NNS roads)))) (, ,) (CC but) (S (ADVP (RB rather)) (VP (VBN surrounded) (PP (IN by) (NP (NNS fields))))) (. .)))"}
46
+ {"annotator_labels": ["entailment", "entailment", "entailment", "neutral", "entailment"], "genre": "nineeleven", "gold_label": "entailment", "pairID": "22457e", "promptID": "22457", "sentence1": "The cockpit voice recorder captured the sounds of the passenger assault muffled by the intervening cockpit door.", "sentence1_binary_parse": "( ( The ( cockpit ( voice recorder ) ) ) ( ( captured ( ( the sounds ) ( of ( ( the ( passenger assault ) ) ( muffled ( by ( the ( intervening ( cockpit door ) ) ) ) ) ) ) ) ) . ) )", "sentence1_parse": "(ROOT (S (NP (DT The) (NN cockpit) (NN voice) (NN recorder)) (VP (VBD captured) (NP (NP (DT the) (NNS sounds)) (PP (IN of) (NP (NP (DT the) (NN passenger) (NN assault)) (VP (VBN muffled) (PP (IN by) (NP (DT the) (JJ intervening) (NN cockpit) (NN door)))))))) (. .)))", "sentence2": "The cockpit voice recorder recorded sounds of the assault.", "sentence2_binary_parse": "( ( The ( cockpit ( voice recorder ) ) ) ( ( recorded ( sounds ( of ( the assault ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (DT The) (NN cockpit) (NN voice) (NN recorder)) (VP (VBD recorded) (NP (NP (NNS sounds)) (PP (IN of) (NP (DT the) (NN assault))))) (. .)))"}
47
+ {"annotator_labels": ["contradiction", "contradiction", "contradiction", "contradiction", "contradiction"], "genre": "facetoface", "gold_label": "contradiction", "pairID": "120057c", "promptID": "120057", "sentence1": "Um, the joys, joys and fun of construction.", "sentence1_binary_parse": "( ( ( ( ( ( ( Um , ) ( the joys ) ) , ) joys ) and ) ( fun ( of construction ) ) ) . )", "sentence1_parse": "(ROOT (NP (NP (NNP Um)) (, ,) (NP (DT the) (NNS joys)) (, ,) (NP (NNS joys)) (CC and) (NP (NP (NN fun)) (PP (IN of) (NP (NN construction)))) (. .)))", "sentence2": "Construction work is mindlessly boring.", "sentence2_binary_parse": "( ( Construction work ) ( ( is ( mindlessly boring ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (NN Construction) (NN work)) (VP (VBZ is) (ADJP (RB mindlessly) (JJ boring))) (. .)))"}
48
+ {"annotator_labels": ["neutral", "neutral", "neutral", "neutral", "neutral"], "genre": "letters", "gold_label": "neutral", "pairID": "40672n", "promptID": "40672", "sentence1": "He trained in desktop publishing and combined his enthusiastic work ethic with new-found skills in a burgeoning industry. ", "sentence1_binary_parse": "( He ( ( ( ( trained ( in ( desktop publishing ) ) ) and ) ( ( combined ( his ( enthusiastic ( work ethic ) ) ) ) ( with ( ( new-found skills ) ( in ( a ( burgeoning industry ) ) ) ) ) ) ) . ) )", "sentence1_parse": "(ROOT (S (NP (PRP He)) (VP (VP (VBN trained) (PP (IN in) (NP (JJ desktop) (NN publishing)))) (CC and) (VP (VBN combined) (NP (PRP$ his) (JJ enthusiastic) (NN work) (NN ethic)) (PP (IN with) (NP (NP (JJ new-found) (NNS skills)) (PP (IN in) (NP (DT a) (VBG burgeoning) (NN industry))))))) (. .)))", "sentence2": "It is easy to make money in the desktop publishing industry,", "sentence2_binary_parse": "( It ( ( is ( easy ( to ( ( make money ) ( in ( the ( desktop ( publishing industry ) ) ) ) ) ) ) ) , ) )", "sentence2_parse": "(ROOT (S (NP (PRP It)) (VP (VBZ is) (ADJP (JJ easy) (S (VP (TO to) (VP (VB make) (NP (NN money)) (PP (IN in) (NP (DT the) (JJ desktop) (NN publishing) (NN industry)))))))) (, ,)))"}
49
+ {"annotator_labels": ["neutral", "neutral", "neutral", "neutral", "neutral"], "genre": "verbatim", "gold_label": "neutral", "pairID": "53575n", "promptID": "53575", "sentence1": "Home in Black Mountain a chile' will smack yo' face;", "sentence1_binary_parse": "( ( Home ( in ( ( Black Mountain ) ( a ( chile ' ) ) ) ) ) ( ( ( ( ( will smack ) yo ) ' ) face ) ; ) )", "sentence1_parse": "(ROOT (S (NP (NP (NNP Home)) (PP (IN in) (NP (NP (NNP Black) (NNP Mountain)) (NP (DT a) (NN chile) (POS '))))) (VP (MD will) (ADVP (RB smack)) (ADVP (RB yo)) ('' ') (VP (VB face))) (: ;)))", "sentence2": "A chile can be very strong in Mexican food.", "sentence2_binary_parse": "( ( A chile ) ( ( can ( be ( very ( strong ( in ( Mexican food ) ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (DT A) (NN chile)) (VP (MD can) (VP (VB be) (ADJP (RB very) (JJ strong) (PP (IN in) (NP (JJ Mexican) (NN food)))))) (. .)))"}
50
+ {"annotator_labels": ["neutral", "neutral", "neutral", "entailment", "neutral"], "genre": "oup", "gold_label": "neutral", "pairID": "850n", "promptID": "850", "sentence1": "In a recent provocative study, sociologist Arlie Hochschild spent months getting to know employees at a large Midwestern corporation she called Americo.", "sentence1_binary_parse": "( ( In ( a ( recent ( provocative study ) ) ) ) ( , ( ( sociologist ( Arlie Hochschild ) ) ( ( spent ( months ( getting ( to ( ( know employees ) ( at ( ( a ( large ( Midwestern corporation ) ) ) ( she ( called Americo ) ) ) ) ) ) ) ) ) . ) ) ) )", "sentence1_parse": "(ROOT (S (PP (IN In) (NP (DT a) (JJ recent) (NN provocative) (NN study))) (, ,) (NP (NN sociologist) (NNP Arlie) (NNP Hochschild)) (VP (VBD spent) (NP (NP (NNS months)) (VP (VBG getting) (S (VP (TO to) (VP (VB know) (NP (NNS employees)) (PP (IN at) (NP (NP (DT a) (JJ large) (JJ Midwestern) (NN corporation)) (SBAR (S (NP (PRP she)) (VP (VBD called) (NP (NNP Americo))))))))))))) (. .)))", "sentence2": "Sociologist Arlie Hochschild spent seven months getting to know employees of Americo during a recent exciting study.", "sentence2_binary_parse": "( ( Sociologist ( Arlie Hochschild ) ) ( ( spent ( ( seven months ) ( getting ( to ( ( know ( employees ( of Americo ) ) ) ( during ( a ( recent ( exciting study ) ) ) ) ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (NNP Sociologist) (NNP Arlie) (NNP Hochschild)) (VP (VBD spent) (NP (NP (CD seven) (NNS months)) (VP (VBG getting) (S (VP (TO to) (VP (VB know) (NP (NP (NNS employees)) (PP (IN of) (NP (NNP Americo)))) (PP (IN during) (NP (DT a) (JJ recent) (JJ exciting) (NN study))))))))) (. .)))"}
51
+ {"annotator_labels": ["entailment", "entailment", "entailment", "neutral", "entailment"], "genre": "verbatim", "gold_label": "entailment", "pairID": "20855e", "promptID": "20855", "sentence1": "While that has not been literally proposed (as far as I know), the fact that the men's names appear first has been used by some feminists to illustrate the manifestation of an attitude that women have had to put up with all these centuries.", "sentence1_binary_parse": "( ( While ( that ( ( has not ) ( ( been literally ) ( proposed ( -LRB- ( ( ( as far ) ( as ( I know ) ) ) -RRB- ) ) ) ) ) ) ) ( , ( ( ( the fact ) ( that ( ( ( the ( men 's ) ) names ) ( appear first ) ) ) ) ( ( has ( been ( ( used ( by ( some feminists ) ) ) ( to ( ( illustrate ( ( the manifestation ) ( of ( an attitude ) ) ) ) ( that ( women ( have ( had ( to ( ( put up ) ( with ( all ( these centuries ) ) ) ) ) ) ) ) ) ) ) ) ) ) . ) ) ) )", "sentence1_parse": "(ROOT (S (SBAR (IN While) (S (NP (DT that)) (VP (VBZ has) (RB not) (VP (VBN been) (ADVP (RB literally)) (VP (VBN proposed) (PRN (-LRB- -LRB-) (ADVP (ADVP (RB as) (RB far)) (SBAR (IN as) (S (NP (PRP I)) (VP (VBP know))))) (-RRB- -RRB-))))))) (, ,) (NP (NP (DT the) (NN fact)) (SBAR (IN that) (S (NP (NP (DT the) (NNS men) (POS 's)) (NNS names)) (VP (VBP appear) (ADVP (RB first)))))) (VP (VBZ has) (VP (VBN been) (VP (VBN used) (PP (IN by) (NP (DT some) (NNS feminists))) (S (VP (TO to) (VP (VB illustrate) (NP (NP (DT the) (NN manifestation)) (PP (IN of) (NP (DT an) (NN attitude)))) (SBAR (IN that) (S (NP (NNS women)) (VP (VBP have) (VP (VBN had) (S (VP (TO to) (VP (VB put) (PRT (RP up)) (PP (IN with) (NP (PDT all) (DT these) (NNS centuries)))))))))))))))) (. .)))", "sentence2": "I know of none who literally proposes that, but a number of feminists have used the fact that women's names appear second as a means of illuminating the embodiment of a centuries-long worldview. ", "sentence2_binary_parse": "( ( ( ( ( I ( know ( of ( none ( who ( literally ( proposes that ) ) ) ) ) ) ) , ) but ) ( ( ( a number ) ( of feminists ) ) ( have ( ( used ( the fact ) ) ( that ( ( ( women 's ) names ) ( appear ( second ( as ( ( a means ) ( of ( illuminating ( ( the embodiment ) ( of ( a ( centuries-long worldview ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) . )", "sentence2_parse": "(ROOT (S (S (NP (PRP I)) (VP (VBP know) (PP (IN of) (NP (NP (NN none)) (SBAR (WHNP (WP who)) (S (ADVP (RB literally)) (VP (VBZ proposes) (WHNP (WDT that))))))))) (, ,) (CC but) (S (NP (NP (DT a) (NN number)) (PP (IN of) (NP (NNS feminists)))) (VP (VBP have) (VP (VBN used) (NP (DT the) (NN fact)) (SBAR (IN that) (S (NP (NP (NNS women) (POS 's)) (NNS names)) (VP (VBP appear) (ADJP (JJ second) (PP (IN as) (NP (NP (DT a) (NN means)) (PP (IN of) (S (VP (VBG illuminating) (NP (NP (DT the) (NN embodiment)) (PP (IN of) (NP (DT a) (JJ centuries-long) (NN worldview)))))))))))))))) (. .)))"}
52
+ {"annotator_labels": ["entailment", "neutral", "entailment", "entailment", "entailment"], "genre": "letters", "gold_label": "entailment", "pairID": "105862e", "promptID": "105862", "sentence1": "But, it is high time that we establish direct contact with all alumni from all the graduation years, from all Department activities and areas.", "sentence1_binary_parse": "( But ( , ( it ( ( ( ( ( is ( high time ) ) ( that ( we ( ( establish ( direct contact ) ) ( with ( ( all alumni ) ( from ( all ( the ( graduation years ) ) ) ) ) ) ) ) ) ) , ) ( from ( all ( Department ( ( activities and ) areas ) ) ) ) ) . ) ) ) )", "sentence1_parse": "(ROOT (S (CC But) (, ,) (NP (PRP it)) (VP (VBZ is) (NP (JJ high) (NN time)) (SBAR (IN that) (S (NP (PRP we)) (VP (VB establish) (NP (JJ direct) (NN contact)) (PP (IN with) (NP (NP (DT all) (NNS alumni)) (PP (IN from) (NP (PDT all) (DT the) (NN graduation) (NNS years)))))))) (, ,) (PP (IN from) (NP (DT all) (NNP Department) (NNS activities) (CC and) (NNS areas)))) (. .)))", "sentence2": "There are alumni from all Department activities and areas. ", "sentence2_binary_parse": "( There ( ( are ( alumni ( from ( all ( Department ( ( activities and ) areas ) ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (EX There)) (VP (VBP are) (NP (NP (NNS alumni)) (PP (IN from) (NP (DT all) (NNP Department) (NNS activities) (CC and) (NNS areas))))) (. .)))"}
53
+ {"annotator_labels": ["entailment", "entailment", "entailment", "entailment", "entailment"], "genre": "nineeleven", "gold_label": "entailment", "pairID": "23085e", "promptID": "23085", "sentence1": "Some of Bin Ladin's close comrades were more peers than subordinates.", "sentence1_binary_parse": "( ( Some ( of ( ( Bin ( Ladin 's ) ) ( close comrades ) ) ) ) ( ( were ( ( more peers ) ( than subordinates ) ) ) . ) )", "sentence1_parse": "(ROOT (S (NP (NP (DT Some)) (PP (IN of) (NP (NP (NNP Bin) (NNP Ladin) (POS 's)) (JJ close) (NNS comrades)))) (VP (VBD were) (NP (NP (JJR more) (NNS peers)) (PP (IN than) (NP (NNS subordinates))))) (. .)))", "sentence2": "Some people had a status almost equal to Bin Ladin.", "sentence2_binary_parse": "( ( Some people ) ( ( ( had ( ( a status ) ( almost equal ) ) ) ( to ( Bin Ladin ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (DT Some) (NNS people)) (VP (VBD had) (NP (NP (DT a) (NN status)) (ADJP (RB almost) (JJ equal))) (PP (TO to) (NP (NNP Bin) (NNP Ladin)))) (. .)))"}
54
+ {"annotator_labels": ["contradiction", "contradiction", "contradiction", "contradiction", "contradiction"], "genre": "letters", "gold_label": "contradiction", "pairID": "31311c", "promptID": "31311", "sentence1": "Thank you for your past help and your continued support.", "sentence1_binary_parse": "( ( ( Thank you ) ( for ( ( ( your ( past help ) ) and ) ( your ( continued support ) ) ) ) ) . )", "sentence1_parse": "(ROOT (S (VP (VB Thank) (NP (PRP you)) (PP (IN for) (NP (NP (PRP$ your) (JJ past) (NN help)) (CC and) (NP (PRP$ your) (VBN continued) (NN support))))) (. .)))", "sentence2": "They did not thank them for their help or support.", "sentence2_binary_parse": "( They ( ( ( did not ) ( ( thank them ) ( for ( their ( ( help or ) support ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (PRP They)) (VP (VBD did) (RB not) (VP (VB thank) (NP (PRP them)) (PP (IN for) (NP (PRP$ their) (NN help) (CC or) (NN support))))) (. .)))"}
55
+ {"annotator_labels": ["entailment", "entailment", "entailment", "entailment", "entailment"], "genre": "nineeleven", "gold_label": "entailment", "pairID": "75965e", "promptID": "75965", "sentence1": "Has that directive been transmitted to the aircraft?", "sentence1_binary_parse": "( ( ( Has ( that directive ) ) ( been ( transmitted ( to ( the aircraft ) ) ) ) ) ? )", "sentence1_parse": "(ROOT (SQ (VBZ Has) (NP (DT that) (NN directive)) (VP (VBN been) (VP (VBN transmitted) (PP (TO to) (NP (DT the) (NN aircraft))))) (. ?)))", "sentence2": "Has the aircraft had the directive transmitted to it?", "sentence2_binary_parse": "( ( ( Has ( the aircraft ) ) ( had ( ( the directive ) ( transmitted ( to it ) ) ) ) ) ? )", "sentence2_parse": "(ROOT (SQ (VBZ Has) (NP (DT the) (NN aircraft)) (VP (VBN had) (NP (NP (DT the) (NN directive)) (VP (VBN transmitted) (PP (TO to) (NP (PRP it)))))) (. ?)))"}
56
+ {"annotator_labels": ["neutral", "neutral", "neutral", "neutral", "contradiction"], "genre": "oup", "gold_label": "neutral", "pairID": "65431n", "promptID": "65431", "sentence1": "After completing the process of developing a demand forecast for each SKU, a retailer must determine how much of each item to stock on the shelves of its stores.", "sentence1_binary_parse": "( ( After ( completing ( ( the process ) ( of ( ( developing ( a ( demand forecast ) ) ) ( for ( each SKU ) ) ) ) ) ) ) ( , ( ( a retailer ) ( ( must ( determine ( ( ( how much ) ( of ( each item ) ) ) ( to ( stock ( on ( ( the shelves ) ( of ( its stores ) ) ) ) ) ) ) ) ) . ) ) ) )", "sentence1_parse": "(ROOT (S (PP (IN After) (S (VP (VBG completing) (NP (NP (DT the) (NN process)) (PP (IN of) (S (VP (VBG developing) (NP (DT a) (NN demand) (NN forecast)) (PP (IN for) (NP (DT each) (NNP SKU)))))))))) (, ,) (NP (DT a) (NN retailer)) (VP (MD must) (VP (VB determine) (SBAR (WHNP (WHNP (WRB how) (RB much)) (PP (IN of) (NP (DT each) (NN item)))) (S (VP (TO to) (VP (VB stock) (PP (IN on) (NP (NP (DT the) (NNS shelves)) (PP (IN of) (NP (PRP$ its) (NNS stores))))))))))) (. .)))", "sentence2": "Retailers try to be conscious of their starting budgets when looking at this.", "sentence2_binary_parse": "( Retailers ( ( try ( to ( ( be ( conscious ( of ( their ( starting budgets ) ) ) ) ) ( when ( looking ( at this ) ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (NNS Retailers)) (VP (VBP try) (S (VP (TO to) (VP (VB be) (ADJP (JJ conscious) (PP (IN of) (NP (PRP$ their) (JJ starting) (NNS budgets)))) (SBAR (WHADVP (WRB when)) (S (VP (VBG looking) (PP (IN at) (NP (DT this)))))))))) (. .)))"}
57
+ {"annotator_labels": ["entailment", "entailment", "entailment", "entailment", "entailment"], "genre": "nineeleven", "gold_label": "entailment", "pairID": "104884e", "promptID": "104884", "sentence1": "Six feet five and thin, Bin Ladin appeared to be ungainly but was in fact quite athletic, skilled as a horseman, runner, climber, and soccer player.", "sentence1_binary_parse": "( ( ( Six feet ) ( ( five and ) thin ) ) ( , ( ( Bin Ladin ) ( ( ( ( appeared ( to ( be ungainly ) ) ) but ) ( ( was ( in fact ) ) ( ( ( quite athletic ) , ) ( skilled ( as ( a ( horseman ( , ( runner ( , ( climber ( , ( and ( soccer player ) ) ) ) ) ) ) ) ) ) ) ) ) ) . ) ) ) )", "sentence1_parse": "(ROOT (S (S (NP (NP (CD Six) (NNS feet)) (UCP (NP (CD five)) (CC and) (ADJP (JJ thin))))) (, ,) (NP (NNP Bin) (NNP Ladin)) (VP (VP (VBD appeared) (S (VP (TO to) (VP (VB be) (ADJP (JJ ungainly)))))) (CC but) (VP (VBD was) (ADVP (IN in) (NN fact)) (ADJP (ADJP (RB quite) (JJ athletic)) (, ,) (ADJP (JJ skilled) (PP (IN as) (NP (DT a) (NN horseman) (, ,) (NN runner) (, ,) (NN climber) (, ,) (CC and) (NN soccer) (NN player))))))) (. .)))", "sentence2": "Bin Ladin was an athletic man despite his ungainly, thin physique.", "sentence2_binary_parse": "( ( Bin Ladin ) ( ( ( was ( an ( athletic man ) ) ) ( despite ( his ( ( ungainly ( , thin ) ) physique ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (NNP Bin) (NNP Ladin)) (VP (VBD was) (NP (DT an) (JJ athletic) (NN man)) (PP (IN despite) (NP (PRP$ his) (ADJP (JJ ungainly) (, ,) (JJ thin)) (NN physique)))) (. .)))"}
58
+ {"annotator_labels": ["neutral", "neutral", "neutral", "neutral", "neutral"], "genre": "letters", "gold_label": "neutral", "pairID": "53391n", "promptID": "53391", "sentence1": "Steven Schimmele Vice President, Class of 1992", "sentence1_binary_parse": "( ( Steven ( Schimmele Vice ) ) ( ( President ( , Class ) ) ( of 1992 ) ) )", "sentence1_parse": "(ROOT (NP (NP (NNP Steven) (NNP Schimmele) (NNP Vice)) (NP (NP (NNP President) (, ,) (NNP Class)) (PP (IN of) (NP (CD 1992))))))", "sentence2": "Steven Schimmele, from Class of 1992, the best Vice President ever.", "sentence2_binary_parse": "( Steven ( ( ( ( ( Schimmele , ) ( from ( Class ( of 1992 ) ) ) ) , ) ( the ( best ( ( Vice President ) ever ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (NNP Steven)) (VP (VB Schimmele) (, ,) (PP (IN from) (NP (NP (NNP Class)) (PP (IN of) (NP (CD 1992))))) (, ,) (NP (DT the) (JJS best) (NP (NP (NNP Vice) (NNP President)) (NP (RB ever))))) (. .)))"}
59
+ {"annotator_labels": ["neutral", "neutral", "contradiction", "entailment", "entailment"], "genre": "oup", "gold_label": "-", "pairID": "62693n", "promptID": "62693", "sentence1": "The traditional system of apparel assembly was designed to minimize the direct labor costs of assembly, not production throughput time.", "sentence1_binary_parse": "( ( ( The ( traditional system ) ) ( of ( apparel assembly ) ) ) ( ( was ( designed ( to ( minimize ( ( the ( direct ( labor costs ) ) ) ( of ( ( assembly , ) ( not ( production ( throughput time ) ) ) ) ) ) ) ) ) ) . ) )", "sentence1_parse": "(ROOT (S (NP (NP (DT The) (JJ traditional) (NN system)) (PP (IN of) (NP (NN apparel) (NN assembly)))) (VP (VBD was) (VP (VBN designed) (S (VP (TO to) (VP (VB minimize) (NP (NP (DT the) (JJ direct) (NN labor) (NNS costs)) (PP (IN of) (NP (NP (NN assembly)) (, ,) (NP (RB not) (NN production) (NN throughput) (NN time)))))))))) (. .)))", "sentence2": "The traditional system of apparel assembly was put in place so factories will have the most amount of profit possible.", "sentence2_binary_parse": "( ( ( The ( traditional system ) ) ( of ( apparel assembly ) ) ) ( ( was ( ( put ( in place ) ) ( so ( factories ( will ( have ( ( the ( most amount ) ) ( of ( profit possible ) ) ) ) ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (NP (DT The) (JJ traditional) (NN system)) (PP (IN of) (NP (NN apparel) (NN assembly)))) (VP (VBD was) (VP (VBN put) (PP (IN in) (NP (NN place))) (SBAR (IN so) (S (NP (NNS factories)) (VP (MD will) (VP (VB have) (NP (NP (DT the) (JJS most) (NN amount)) (PP (IN of) (NP (NN profit) (JJ possible)))))))))) (. .)))"}
60
+ {"annotator_labels": ["contradiction", "contradiction", "contradiction", "contradiction", "contradiction"], "genre": "letters", "gold_label": "contradiction", "pairID": "52084c", "promptID": "52084", "sentence1": "Members receive a membership package that includes all of our educational material, a subscription to aakp RENALlFE, membership in a local chapter if applicable and assurance that your voice is heard in Washington, DC.", "sentence1_binary_parse": "( Members ( ( receive ( ( a ( membership package ) ) ( that ( includes ( all ( of ( ( ( our ( educational material ) ) , ) ( a ( subscription ( to ( ( aakp ( ( ( ( RENALlFE , ) ( membership ( in ( ( a ( local chapter ) ) ( if applicable ) ) ) ) ) and ) assurance ) ) ( that ( ( your voice ) ( is ( heard ( in ( Washington ( , DC ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) ) . ) )", "sentence1_parse": "(ROOT (S (NP (NNS Members)) (VP (VBP receive) (NP (NP (DT a) (NN membership) (NN package)) (SBAR (WHNP (WDT that)) (S (VP (VBZ includes) (NP (NP (DT all)) (PP (IN of) (NP (NP (PRP$ our) (JJ educational) (NN material)) (, ,) (NP (DT a) (NN subscription) (S (VP (TO to) (VP (VB aakp) (NP (NP (NNP RENALlFE)) (, ,) (NP (NP (NN membership)) (PP (IN in) (NP (NP (DT a) (JJ local) (NN chapter)) (ADJP (IN if) (JJ applicable))))) (CC and) (NP (NN assurance))) (SBAR (IN that) (S (NP (PRP$ your) (NN voice)) (VP (VBZ is) (VP (VBN heard) (PP (IN in) (NP (NNP Washington) (, ,) (NNP DC))))))))))))))))))) (. .)))", "sentence2": "Members get nothing other than the satisfaction of helping.", "sentence2_binary_parse": "( Members ( ( ( get ( nothing other ) ) ( than ( ( the satisfaction ) ( of helping ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (NNS Members)) (VP (VBP get) (NP (NN nothing) (JJ other)) (PP (IN than) (NP (NP (DT the) (NN satisfaction)) (PP (IN of) (S (VP (VBG helping))))))) (. .)))"}
61
+ {"annotator_labels": ["neutral", "neutral", "neutral", "neutral", "neutral"], "genre": "nineeleven", "gold_label": "neutral", "pairID": "124416n", "promptID": "124416", "sentence1": "She reported that the pilot had announced that the flight had been hijacked, and she asked her husband what she should tell the captain to do.", "sentence1_binary_parse": "( ( ( ( ( She ( reported ( that ( ( the pilot ) ( had ( announced ( that ( ( the flight ) ( had ( been hijacked ) ) ) ) ) ) ) ) ) ) , ) and ) ( she ( ( asked ( her husband ) ) ( what ( she ( should ( tell ( the ( captain ( to do ) ) ) ) ) ) ) ) ) ) . )", "sentence1_parse": "(ROOT (S (S (NP (PRP She)) (VP (VBD reported) (SBAR (IN that) (S (NP (DT the) (NN pilot)) (VP (VBD had) (VP (VBN announced) (SBAR (IN that) (S (NP (DT the) (NN flight)) (VP (VBD had) (VP (VBN been) (VP (VBN hijacked)))))))))))) (, ,) (CC and) (S (NP (PRP she)) (VP (VBD asked) (NP (PRP$ her) (NN husband)) (SBAR (WHNP (WP what)) (S (NP (PRP she)) (VP (MD should) (VP (VB tell) (NP (DT the) (NN captain) (S (VP (TO to) (VP (VB do))))))))))) (. .)))", "sentence2": "She said the pilot told them they'd been hijacked by an Iraqi man.", "sentence2_binary_parse": "( She ( ( said ( ( the pilot ) ( ( told them ) ( they ( 'd ( been ( hijacked ( by ( an ( Iraqi man ) ) ) ) ) ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (PRP She)) (VP (VBD said) (SBAR (S (NP (DT the) (NN pilot)) (VP (VBD told) (NP (PRP them)) (SBAR (S (NP (PRP they)) (VP (VBD 'd) (VP (VBN been) (VP (VBN hijacked) (PP (IN by) (NP (DT an) (JJ Iraqi) (NN man)))))))))))) (. .)))"}
62
+ {"annotator_labels": ["neutral", "neutral", "contradiction", "neutral", "neutral"], "genre": "oup", "gold_label": "neutral", "pairID": "90103n", "promptID": "90103", "sentence1": "Both unions established a foothold in the industry because they represented strategic workers in the apparel production the skilled cutter working inside manufacturers' plants.", "sentence1_binary_parse": "( ( Both unions ) ( ( ( ( established ( a foothold ) ) ( in ( the industry ) ) ) ( because ( they ( represented ( ( ( strategic workers ) ( in ( the ( apparel production ) ) ) ) ( ( the ( skilled cutter ) ) ( working ( inside ( ( manufacturers ' ) plants ) ) ) ) ) ) ) ) ) . ) )", "sentence1_parse": "(ROOT (S (NP (DT Both) (NNS unions)) (VP (VBD established) (NP (DT a) (NN foothold)) (PP (IN in) (NP (DT the) (NN industry))) (SBAR (IN because) (S (NP (PRP they)) (VP (VBD represented) (S (NP (NP (JJ strategic) (NNS workers)) (PP (IN in) (NP (DT the) (NN apparel) (NN production)))) (NP (NP (DT the) (JJ skilled) (NN cutter)) (VP (VBG working) (PP (IN inside) (NP (NP (NNS manufacturers) (POS ')) (NNS plants)))))))))) (. .)))", "sentence2": "The industry could support the higher rates, but employers didn't want to pay them.", "sentence2_binary_parse": "( ( ( ( ( ( The industry ) ( could ( support ( the ( higher rates ) ) ) ) ) , ) but ) ( employers ( ( did n't ) ( want ( to ( pay them ) ) ) ) ) ) . )", "sentence2_parse": "(ROOT (S (S (NP (DT The) (NN industry)) (VP (MD could) (VP (VB support) (NP (DT the) (JJR higher) (NNS rates))))) (, ,) (CC but) (S (NP (NNS employers)) (VP (VBD did) (RB n't) (VP (VB want) (S (VP (TO to) (VP (VB pay) (NP (PRP them)))))))) (. .)))"}
63
+ {"annotator_labels": ["entailment", "entailment", "entailment", "entailment", "entailment"], "genre": "letters", "gold_label": "entailment", "pairID": "125009e", "promptID": "125009", "sentence1": "YOU CAN HELP SUPPORT THESE AND OTHER NEEDED SERVICES HERE IN CENTRAL INDIANA.", "sentence1_binary_parse": "( YOU ( ( CAN ( ( HELP ( SUPPORT ( THESE ( AND ( OTHER ( NEEDED ( SERVICES HERE ) ) ) ) ) ) ) ( IN ( CENTRAL INDIANA ) ) ) ) . ) )", "sentence1_parse": "(ROOT (S (NP (PRP YOU)) (VP (VBP CAN) (NP (NP (NNP HELP) (NNP SUPPORT) (NNP THESE) (CC AND) (NNP OTHER) (NNP NEEDED) (NNP SERVICES) (NNP HERE)) (PP (IN IN) (NP (NNP CENTRAL) (NNP INDIANA))))) (. .)))", "sentence2": "In central Indiana, you can help support needed services.", "sentence2_binary_parse": "( ( In ( central Indiana ) ) ( , ( you ( ( can ( help ( support ( needed services ) ) ) ) . ) ) ) )", "sentence2_parse": "(ROOT (S (PP (IN In) (NP (JJ central) (NNP Indiana))) (, ,) (NP (PRP you)) (VP (MD can) (VP (VB help) (VP (VB support) (NP (VBN needed) (NNS services))))) (. .)))"}
64
+ {"annotator_labels": ["neutral", "contradiction", "neutral", "contradiction", "contradiction"], "genre": "verbatim", "gold_label": "contradiction", "pairID": "92597n", "promptID": "92597", "sentence1": "Campbell held that the ancient mythologies and religions are allegorical and that there was no real distinction between gods and goddesses, who were given sexual identity when in human form only to make them more meaningful.", "sentence1_binary_parse": "( Campbell ( ( held ( ( ( that ( ( ( ( the ( ancient mythologies ) ) and ) religions ) ( are allegorical ) ) ) and ) ( that ( there ( was ( ( ( no ( real distinction ) ) ( between ( ( ( ( gods and ) goddesses ) , ) ( who ( were ( ( ( given ( sexual identity ) ) when ) ( in ( human form ) ) ) ) ) ) ) ) ( only ( to ( make ( them ( more meaningful ) ) ) ) ) ) ) ) ) ) ) . ) )", "sentence1_parse": "(ROOT (S (NP (NNP Campbell)) (VP (VBD held) (SBAR (SBAR (IN that) (S (NP (NP (DT the) (JJ ancient) (NNS mythologies)) (CC and) (NP (NNS religions))) (VP (VBP are) (ADJP (JJ allegorical))))) (CC and) (SBAR (IN that) (S (NP (EX there)) (VP (VBD was) (NP (NP (DT no) (JJ real) (NN distinction)) (PP (IN between) (NP (NP (NNS gods) (CC and) (NNS goddesses)) (, ,) (SBAR (WHNP (WP who)) (S (VP (VBD were) (VP (VBN given) (NP (JJ sexual) (NN identity)) (NP (WRB when)) (PP (IN in) (NP (JJ human) (NN form))))))))) (S (RB only) (VP (TO to) (VP (VB make) (S (NP (PRP them)) (ADJP (RBR more) (JJ meaningful)))))))))))) (. .)))", "sentence2": "God doesn't exist. ", "sentence2_binary_parse": "( God ( ( ( does n't ) exist ) . ) )", "sentence2_parse": "(ROOT (S (NP (NNP God)) (VP (VBZ does) (RB n't) (VP (VB exist))) (. .)))"}
65
+ {"annotator_labels": ["contradiction", "contradiction", "contradiction", "neutral", "contradiction"], "genre": "oup", "gold_label": "contradiction", "pairID": "141473c", "promptID": "141473", "sentence1": "And although the wages of nonsupervisory workers in retail have been and still are quite low,9 the compensation system for buyers provided substantial rewards for favorable results.", "sentence1_binary_parse": "( And ( ( although ( ( ( the wages ) ( of ( ( nonsupervisory workers ) ( in retail ) ) ) ) ( have ( ( ( been and ) ( still ( are ( quite low ) ) ) ) ,9 ) ) ) ) ( ( ( the ( compensation system ) ) ( for buyers ) ) ( ( ( provided ( substantial rewards ) ) ( for ( favorable results ) ) ) . ) ) ) )", "sentence1_parse": "(ROOT (S (CC And) (SBAR (IN although) (S (NP (NP (DT the) (NNS wages)) (PP (IN of) (NP (NP (JJ nonsupervisory) (NNS workers)) (PP (IN in) (NP (NN retail)))))) (VP (VBP have) (VP (VP (VBN been)) (CC and) (VP (ADVP (RB still)) (VBP are) (ADJP (RB quite) (JJ low))) (NP (CD ,9)))))) (NP (NP (DT the) (NN compensation) (NN system)) (PP (IN for) (NP (NNS buyers)))) (VP (VBD provided) (NP (JJ substantial) (NNS rewards)) (PP (IN for) (NP (JJ favorable) (NNS results)))) (. .)))", "sentence2": "Retail workers pay continues to improve beyond the median. ", "sentence2_binary_parse": "( ( Retail workers ) ( ( pay ( continues ( to ( improve ( beyond ( the median ) ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (JJ Retail) (NNS workers)) (VP (VBP pay) (SBAR (S (VP (VBZ continues) (S (VP (TO to) (VP (VB improve) (PP (IN beyond) (NP (DT the) (NN median)))))))))) (. .)))"}
66
+ {"annotator_labels": ["neutral", "neutral", "neutral", "neutral", "neutral"], "genre": "oup", "gold_label": "neutral", "pairID": "34795n", "promptID": "34795", "sentence1": "Make-believe play is yet another.", "sentence1_binary_parse": "( ( Make-believe play ) ( ( ( is yet ) another ) . ) )", "sentence1_parse": "(ROOT (S (NP (JJ Make-believe) (NN play)) (VP (VBZ is) (ADVP (RB yet)) (NP (DT another))) (. .)))", "sentence2": "Pretend play is naturally compelling for a young child's mind.", "sentence2_binary_parse": "( ( Pretend play ) ( ( is ( naturally ( compelling ( for ( ( a ( young ( child 's ) ) ) mind ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (JJ Pretend) (NN play)) (VP (VBZ is) (ADJP (RB naturally) (JJ compelling) (PP (IN for) (NP (NP (DT a) (JJ young) (NN child) (POS 's)) (NN mind))))) (. .)))"}
67
+ {"annotator_labels": ["entailment", "entailment", "entailment", "entailment", "entailment"], "genre": "verbatim", "gold_label": "entailment", "pairID": "59040e", "promptID": "59040", "sentence1": "Duende [XV, 1] may be absent in Italian and French, as Mr. Bria assures us, but it is alive and prospering in Portuguese.", "sentence1_binary_parse": "( ( ( ( ( ( Duende ( -LSB- XV ) ) ( , ( ( 1 -RSB- ) ( may ( ( ( be ( absent ( in ( ( Italian and ) French ) ) ) ) , ) ( as ( ( Mr. Bria ) ( assures us ) ) ) ) ) ) ) ) , ) but ) ( it ( ( is ( ( alive and ) prospering ) ) ( in Portuguese ) ) ) ) . )", "sentence1_parse": "(ROOT (S (S (NP (NNP Duende) (NNP -LSB-) (NNP XV)) (, ,) (NP (QP (CD 1) (CD -RSB-))) (VP (MD may) (VP (VB be) (ADJP (JJ absent) (PP (IN in) (ADJP (JJ Italian) (CC and) (JJ French)))) (, ,) (SBAR (IN as) (S (NP (NNP Mr.) (NNP Bria)) (VP (VBZ assures) (NP (PRP us)))))))) (, ,) (CC but) (S (NP (PRP it)) (VP (VBZ is) (ADJP (JJ alive) (CC and) (JJ prospering)) (PP (IN in) (NP (NNP Portuguese))))) (. .)))", "sentence2": "Mr. Bria assures use that Duende might not be in Italian and French.", "sentence2_binary_parse": "( ( Mr. Bria ) ( ( assures ( use ( that ( Duende ( ( might not ) ( be ( in ( ( Italian and ) French ) ) ) ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (NNP Mr.) (NNP Bria)) (VP (VBZ assures) (VP (VB use) (SBAR (IN that) (S (NP (NNP Duende)) (VP (MD might) (RB not) (VP (VB be) (PP (IN in) (NP (JJ Italian) (CC and) (JJ French))))))))) (. .)))"}
68
+ {"annotator_labels": ["neutral", "entailment", "neutral", "neutral", "entailment"], "genre": "letters", "gold_label": "neutral", "pairID": "26957n", "promptID": "26957", "sentence1": "Your National Audubon Society membership also gives you the opportunity to be part of the Audubon Network.", "sentence1_binary_parse": "( ( Your ( National ( Audubon ( Society membership ) ) ) ) ( also ( ( ( gives you ) ( the ( opportunity ( to ( be ( part ( of ( the ( Audubon Network ) ) ) ) ) ) ) ) ) . ) ) )", "sentence1_parse": "(ROOT (S (NP (PRP$ Your) (NNP National) (NNP Audubon) (NNP Society) (NN membership)) (ADVP (RB also)) (VP (VBZ gives) (NP (PRP you)) (NP (DT the) (NN opportunity) (S (VP (TO to) (VP (VB be) (NP (NP (NN part)) (PP (IN of) (NP (DT the) (NNP Audubon) (NNP Network))))))))) (. .)))", "sentence2": "The basic membership includes access to the Audubon Network.", "sentence2_binary_parse": "( ( The ( basic membership ) ) ( ( ( includes access ) ( to ( the ( Audubon Network ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (DT The) (JJ basic) (NN membership)) (VP (VBZ includes) (NP (NN access)) (PP (TO to) (NP (DT the) (NNP Audubon) (NNP Network)))) (. .)))"}
69
+ {"annotator_labels": ["contradiction", "contradiction", "contradiction", "contradiction", "contradiction"], "genre": "verbatim", "gold_label": "contradiction", "pairID": "118006c", "promptID": "118006", "sentence1": "Today, Bodenheim's novel might be of interest to students of the English language because of its use of slang.", "sentence1_binary_parse": "( Today ( , ( ( ( Bodenheim 's ) novel ) ( ( might ( ( be ( of interest ) ) ( to ( students ( of ( ( the ( English language ) ) ( because ( of ( ( its use ) ( of slang ) ) ) ) ) ) ) ) ) ) . ) ) ) )", "sentence1_parse": "(ROOT (S (NP (NN Today)) (, ,) (NP (NP (NNP Bodenheim) (POS 's)) (NN novel)) (VP (MD might) (VP (VB be) (PP (IN of) (NP (NN interest))) (PP (TO to) (NP (NP (NNS students)) (PP (IN of) (NP (NP (DT the) (JJ English) (NN language)) (PP (RB because) (IN of) (NP (NP (PRP$ its) (NN use)) (PP (IN of) (NP (NN slang))))))))))) (. .)))", "sentence2": "Bodenheim's novel might be of interest to students of French Cuisine because of its use of recipes.", "sentence2_binary_parse": "( ( ( Bodenheim 's ) novel ) ( ( might ( ( be ( of interest ) ) ( to ( students ( of ( ( French Cuisine ) ( because ( of ( ( its use ) ( of recipes ) ) ) ) ) ) ) ) ) ) . ) )", "sentence2_parse": "(ROOT (S (NP (NP (NNP Bodenheim) (POS 's)) (NN novel)) (VP (MD might) (VP (VB be) (PP (IN of) (NP (NN interest))) (PP (TO to) (NP (NP (NNS students)) (PP (IN of) (NP (NP (NNP French) (NNP Cuisine)) (PP (RB because) (IN of) (NP (NP (PRP$ its) (NN use)) (PP (IN of) (NP (NNS recipes))))))))))) (. .)))"}
multinli_1.0/multinli_1.0_train_lex.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
multinli_1.0/paper.pdf ADDED
Binary file (196 kB). View file
 
multinli_1.0/subseq_finder.py ADDED
@@ -0,0 +1,57 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+
3
+ fi = open("multinli_1.0_train.txt", "r")
4
+ output_file = open("multinli_sub.txt", "w")
5
+ output_index_list = []
6
+ count_entailment = 0
7
+ count_neutral = 0
8
+ count_contradiction = 0
9
+
10
+ for line_index, line in enumerate(fi):
11
+ parts = line.strip().split("\t")
12
+
13
+ premise = parts[5]
14
+ hypothesis = parts[6]
15
+ label = parts[0]
16
+
17
+ prem_words = []
18
+ hyp_words = []
19
+
20
+ for word in premise.split():
21
+ if word not in [".", "?", "!"]:
22
+ prem_words.append(word.lower())
23
+
24
+ for word in hypothesis.split():
25
+ if word not in [".", "?", "!"]:
26
+ hyp_words.append(word.lower())
27
+
28
+ prem_filtered = " ".join(prem_words)
29
+ hyp_filtered = " ".join(hyp_words)
30
+
31
+ if hyp_filtered in prem_filtered:
32
+ #print(premise, hypothesis, label, parts[1])
33
+ #print(label)
34
+ if label == "entailment":
35
+ count_entailment += 1
36
+ if label == "neutral":
37
+ count_neutral += 1
38
+ print(premise, hypothesis, label)
39
+ if label == "contradiction":
40
+ count_contradiction += 1
41
+ print(premise, hypothesis, label)
42
+ output_index_list.append(line_index)
43
+ # output_file.write(line)
44
+
45
+ #print(premise, hypothesis, label)
46
+
47
+ # open json file
48
+ with open('multinli_1.0_train.jsonl', 'r') as f:
49
+ for line_index, line in enumerate(f):
50
+ if line_index in output_index_list:
51
+ output_file.write(line)
52
+ # load json file
53
+ # data = json.load(f)
54
+
55
+ print("Entailment:", count_entailment)
56
+ print("Contradiction:", count_contradiction)
57
+ print("Neutral:", count_neutral)