-
Notifications
You must be signed in to change notification settings - Fork 53
/
template_list.py
106 lines (106 loc) · 2.92 KB
/
template_list.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
template_list = {
("super_glue", "rte"): [
"MNLI crowdsource",
"guaranteed true",
"can we infer",
"GPT-3 style",
"does this imply",
"should assume",
"does it follow that",
"based on the previous passage",
"justified in saying",
"must be true",
],
("super_glue", "cb"): [
"can we infer",
"based on the previous passage",
"claim true/false/inconclusive",
"does it follow that",
"justified in saying",
"always/sometimes/never",
"GPT-3 style",
"consider always/sometimes/never",
"guaranteed true",
"must be true",
"guaranteed/possible/impossible",
"does this imply",
"MNLI crowdsource",
"should assume",
"take the following as truth",
],
("anli", None): [
"MNLI crowdsource",
"should assume",
"does it follow that",
"GPT-3 style",
"based on the previous passage",
"justified in saying",
"take the following as truth",
"must be true",
"can we infer",
"guaranteed/possible/impossible",
"always/sometimes/never",
"does this imply",
"consider always/sometimes/never",
"claim true/false/inconclusive",
"guaranteed true",
],
("super_glue", "wsc.fixed"): [
"does the pronoun refer to",
"by p they mean",
"in other words",
"I think they mean",
"does p stand for",
"GPT-3 Style",
"replaced with",
"p is/are r",
"the pronoun refers to",
"Who or what is/are",
],
("winogrande", "winogrande_xl"): [
"does underscore refer to",
"stand for",
"underscore refer to",
"fill in the blank",
"Replace",
],
("story_cloze", "2016"): [
"Answer Given options",
"Choose Story Ending",
"Movie What Happens Next",
"Story Continuation and Options",
"Novel Correct Ending",
],
("super_glue", "wic"): [
"question-context-meaning-with-label",
"question-context-meaning",
"grammar_homework",
"affirmation_true_or_false",
"GPT-3-prompt",
"same_sense",
"question-context",
"GPT-3-prompt-with-label",
"polysemous",
"similar-sense",
],
("hellaswag", None): [
"Predict ending with hint",
"Randomized prompts template",
"complete_first_then",
"if_begins_how_continues",
],
("super_glue", "copa"): [
"exercise",
"…What could happen next, C1 or C2?",
"i_am_hesitating",
"plausible_alternatives",
"C1 or C2? premise, so/because…",
"…As a result, C1 or C2?",
"best_option",
"…which may be caused by",
"more likely",
"cause_effect",
"…why? C1 or C2",
"choose",
]
}