asahi417 commited on
Commit
31c2ed8
1 Parent(s): f71ff0c

model update

Browse files
README.md ADDED
@@ -0,0 +1,144 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ ---
3
+ license: cc-by-4.0
4
+ metrics:
5
+ - bleu4
6
+ - meteor
7
+ - rouge-l
8
+ - bertscore
9
+ - moverscore
10
+ language: en
11
+ datasets:
12
+ - lmqg/qg_tweetqa
13
+ pipeline_tag: text2text-generation
14
+ tags:
15
+ - question answering
16
+ widget:
17
+ - text: "question: What is a person called is practicing heresy?, context: Heresy is any provocative belief or theory that is strongly at variance with established beliefs or customs. A heretic is a proponent of such claims or beliefs. Heresy is distinct from both apostasy, which is the explicit renunciation of one's religion, principles or cause, and blasphemy, which is an impious utterance or action concerning God or sacred things."
18
+ example_title: "Question Answering Example 1"
19
+ - text: "question: who created the post as we know it today?, context: 'So much of The Post is Ben,' Mrs. Graham said in 1994, three years after Bradlee retired as editor. 'He created it as we know it today.'— Ed O'Keefe (@edatpost) October 21, 2014"
20
+ example_title: "Question Answering Example 2"
21
+ model-index:
22
+ - name: lmqg/bart-base-tweetqa-question-answering
23
+ results:
24
+ - task:
25
+ name: Text2text Generation
26
+ type: text2text-generation
27
+ dataset:
28
+ name: lmqg/qg_tweetqa
29
+ type: default
30
+ args: default
31
+ metrics:
32
+ - name: BLEU4
33
+ type: bleu4
34
+ value: 33.57
35
+ - name: ROUGE-L
36
+ type: rouge-l
37
+ value: 58.37
38
+ - name: METEOR
39
+ type: meteor
40
+ value: 32.39
41
+ - name: BERTScore
42
+ type: bertscore
43
+ value: 93.84
44
+ - name: MoverScore
45
+ type: moverscore
46
+ value: 78.67
47
+ - name: AnswerF1Score (Question Answering)
48
+ type: answer_f1_score_question_answering
49
+ value: 64.79
50
+ - name: AnswerExactMatch (Question Answering)
51
+ type: answer_exact_match_question_answering
52
+ value: 48.38
53
+ ---
54
+
55
+ # Model Card of `lmqg/bart-base-tweetqa-question-answering`
56
+ This model is fine-tuned version of [facebook/bart-base](https://huggingface.co/facebook/bart-base) for question answering task on the [lmqg/qg_tweetqa](https://huggingface.co/datasets/lmqg/qg_tweetqa) (dataset_name: default) via [`lmqg`](https://github.com/asahi417/lm-question-generation).
57
+
58
+
59
+ ### Overview
60
+ - **Language model:** [facebook/bart-base](https://huggingface.co/facebook/bart-base)
61
+ - **Language:** en
62
+ - **Training data:** [lmqg/qg_tweetqa](https://huggingface.co/datasets/lmqg/qg_tweetqa) (default)
63
+ - **Online Demo:** [https://autoqg.net/](https://autoqg.net/)
64
+ - **Repository:** [https://github.com/asahi417/lm-question-generation](https://github.com/asahi417/lm-question-generation)
65
+ - **Paper:** [https://arxiv.org/abs/2210.03992](https://arxiv.org/abs/2210.03992)
66
+
67
+ ### Usage
68
+ - With [`lmqg`](https://github.com/asahi417/lm-question-generation#lmqg-language-model-for-question-generation-)
69
+ ```python
70
+ from lmqg import TransformersQG
71
+
72
+ # initialize model
73
+ model = TransformersQG(language="en", model="lmqg/bart-base-tweetqa-question-answering")
74
+
75
+ # model prediction
76
+ answers = model.answer_q(list_question="What is a person called is practicing heresy?", list_context=" Heresy is any provocative belief or theory that is strongly at variance with established beliefs or customs. A heretic is a proponent of such claims or beliefs. Heresy is distinct from both apostasy, which is the explicit renunciation of one's religion, principles or cause, and blasphemy, which is an impious utterance or action concerning God or sacred things.")
77
+
78
+ ```
79
+
80
+ - With `transformers`
81
+ ```python
82
+ from transformers import pipeline
83
+
84
+ pipe = pipeline("text2text-generation", "lmqg/bart-base-tweetqa-question-answering")
85
+ output = pipe("question: What is a person called is practicing heresy?, context: Heresy is any provocative belief or theory that is strongly at variance with established beliefs or customs. A heretic is a proponent of such claims or beliefs. Heresy is distinct from both apostasy, which is the explicit renunciation of one's religion, principles or cause, and blasphemy, which is an impious utterance or action concerning God or sacred things.")
86
+
87
+ ```
88
+
89
+ ## Evaluation
90
+
91
+
92
+ - ***Metric (Question Answering)***: [raw metric file](https://huggingface.co/lmqg/bart-base-tweetqa-question-answering/raw/main/eval/metric.first.answer.paragraph_question.answer.lmqg_qg_tweetqa.default.json)
93
+
94
+ | | Score | Type | Dataset |
95
+ |:-----------------|--------:|:--------|:-------------------------------------------------------------------|
96
+ | AnswerExactMatch | 48.38 | default | [lmqg/qg_tweetqa](https://huggingface.co/datasets/lmqg/qg_tweetqa) |
97
+ | AnswerF1Score | 64.79 | default | [lmqg/qg_tweetqa](https://huggingface.co/datasets/lmqg/qg_tweetqa) |
98
+ | BERTScore | 93.84 | default | [lmqg/qg_tweetqa](https://huggingface.co/datasets/lmqg/qg_tweetqa) |
99
+ | Bleu_1 | 54.68 | default | [lmqg/qg_tweetqa](https://huggingface.co/datasets/lmqg/qg_tweetqa) |
100
+ | Bleu_2 | 46.42 | default | [lmqg/qg_tweetqa](https://huggingface.co/datasets/lmqg/qg_tweetqa) |
101
+ | Bleu_3 | 38.97 | default | [lmqg/qg_tweetqa](https://huggingface.co/datasets/lmqg/qg_tweetqa) |
102
+ | Bleu_4 | 33.57 | default | [lmqg/qg_tweetqa](https://huggingface.co/datasets/lmqg/qg_tweetqa) |
103
+ | METEOR | 32.39 | default | [lmqg/qg_tweetqa](https://huggingface.co/datasets/lmqg/qg_tweetqa) |
104
+ | MoverScore | 78.67 | default | [lmqg/qg_tweetqa](https://huggingface.co/datasets/lmqg/qg_tweetqa) |
105
+ | ROUGE_L | 58.37 | default | [lmqg/qg_tweetqa](https://huggingface.co/datasets/lmqg/qg_tweetqa) |
106
+
107
+
108
+
109
+ ## Training hyperparameters
110
+
111
+ The following hyperparameters were used during fine-tuning:
112
+ - dataset_path: lmqg/qg_tweetqa
113
+ - dataset_name: default
114
+ - input_types: ['paragraph_question']
115
+ - output_types: ['answer']
116
+ - prefix_types: None
117
+ - model: facebook/bart-base
118
+ - max_length: 512
119
+ - max_length_output: 32
120
+ - epoch: 3
121
+ - batch: 32
122
+ - lr: 0.0001
123
+ - fp16: False
124
+ - random_seed: 1
125
+ - gradient_accumulation_steps: 2
126
+ - label_smoothing: 0.15
127
+
128
+ The full configuration can be found at [fine-tuning config file](https://huggingface.co/lmqg/bart-base-tweetqa-question-answering/raw/main/trainer_config.json).
129
+
130
+ ## Citation
131
+ ```
132
+ @inproceedings{ushio-etal-2022-generative,
133
+ title = "{G}enerative {L}anguage {M}odels for {P}aragraph-{L}evel {Q}uestion {G}eneration",
134
+ author = "Ushio, Asahi and
135
+ Alva-Manchego, Fernando and
136
+ Camacho-Collados, Jose",
137
+ booktitle = "Proceedings of the 2022 Conference on Empirical Methods in Natural Language Processing",
138
+ month = dec,
139
+ year = "2022",
140
+ address = "Abu Dhabi, U.A.E.",
141
+ publisher = "Association for Computational Linguistics",
142
+ }
143
+
144
+ ```
config.json CHANGED
@@ -1,5 +1,5 @@
1
  {
2
- "_name_or_path": "lmqg_output/bart-base-tweetqa-question-answering/best_model",
3
  "activation_dropout": 0.1,
4
  "activation_function": "gelu",
5
  "add_bias_logits": false,
 
1
  {
2
+ "_name_or_path": "lmqg_output/bart-base-tweetqa-question-answering/model_tsaioi/epoch_2",
3
  "activation_dropout": 0.1,
4
  "activation_function": "gelu",
5
  "add_bias_logits": false,
eval/metric.first.answer.paragraph_question.answer.lmqg_qg_tweetqa.default.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"validation": {"Bleu_1": 0.5680924777472788, "Bleu_2": 0.48516016586540583, "Bleu_3": 0.40047344437067894, "Bleu_4": 0.33073022279409037, "METEOR": 0.33891182996418623, "ROUGE_L": 0.6021708028939458, "BERTScore": 0.9381738608603539, "MoverScore": 0.7944137348341341, "AnswerF1Score": 66.88579887474913, "AnswerExactMatch": 52.302025782688766}, "test": {"Bleu_1": 0.5467908240543046, "Bleu_2": 0.46421662736218966, "Bleu_3": 0.38966324876067954, "Bleu_4": 0.3356541667545642, "METEOR": 0.32393699677472026, "ROUGE_L": 0.5837067969041474, "BERTScore": 0.9383653925541333, "MoverScore": 0.7866586761784162, "AnswerF1Score": 64.78621959918708, "AnswerExactMatch": 48.37905236907731}}
eval/samples.test.hyp.paragraph_question.answer.lmqg_qg_tweetqa.default.txt ADDED
@@ -0,0 +1,1203 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ facebook
2
+ 5
3
+ 5
4
+ 5 years in 5 seconds
5
+ southwest airlines
6
+ for maintenance checks.
7
+ crYING
8
+ she is crying.
9
+ blank space
10
+ taylor
11
+ until tomorrow
12
+ 37500
13
+ zach lowe
14
+ never made a rule change
15
+ after the flight
16
+ after the flight
17
+ 25%
18
+ 25%
19
+ portland
20
+ portland
21
+ washington post
22
+ his poll numbers
23
+ jeff gordon
24
+ sideburns, mullet and a taxi cab
25
+ tweet is not visible
26
+ tweet is not visible
27
+ saturday night live
28
+ donald trump
29
+ south carolina
30
+ pick cotton
31
+ china
32
+ in the winners ROOM
33
+ at the top of a staircase
34
+ southampton
35
+ ticket refunds
36
+ ew
37
+ 16
38
+ an adult day care center
39
+ the white house
40
+ migrants and refugees
41
+ serbia-croatia
42
+ lauren hill
43
+ their officers
44
+ an apology
45
+ an offense their officers took
46
+ the dumb media
47
+ dumb
48
+ consistency
49
+ atletico
50
+ Durbanites
51
+ immigrants
52
+ scotland
53
+ panmure golf club
54
+ willow seeds
55
+ snow
56
+ west boca
57
+ u.s. marshals
58
+ going to the white house
59
+ white house
60
+ one year
61
+ the girls.
62
+ chris rock
63
+ the oscars
64
+ jharrison9292
65
+ Steelers
66
+ put her face on a shirt
67
+ paul walkers
68
+ he died.
69
+ beautiful person and talent
70
+ paul walkers death
71
+ beautiful
72
+ that they make the right choices
73
+ their stressful jobs
74
+ a sandwich
75
+ a broomstick
76
+ megyn kelly
77
+ fox news
78
+ roger rees
79
+ a friend and colleague
80
+ it will happen here
81
+ the internet
82
+ kkk jokes
83
+ her brother-in-law
84
+ kellyanne conway
85
+ britney ever after
86
+ stop
87
+ kanyewest
88
+ donald trump
89
+ russian
90
+ PM
91
+ the duke and duchess of cambridge
92
+ disgusting
93
+ nytimes
94
+ bOOYAH
95
+ zero guns, zero knives and 2 hands
96
+ potus
97
+ he led and served our country
98
+ he is trending.
99
+ eric the actor
100
+ eric the actor
101
+ the democrats
102
+ because so many obama democrats voted for him.
103
+ years
104
+ michigan, Ohio, penn and a second term
105
+ the daily show
106
+ europe
107
+ Group B
108
+ 2:37 pm
109
+ Group B
110
+ another spider-man movie reboot
111
+ josh Peck and drake bell
112
+ josh Peck got married
113
+ philly
114
+ 1,000
115
+ jacob lescenskii
116
+ good job
117
+ beyonce
118
+ slurpee
119
+ Plugged in source
120
+ 90 percent
121
+ isis
122
+ Mosul
123
+ haradh
124
+ 30
125
+ every moment I exist is agony
126
+ katy
127
+ her son
128
+ a couple
129
+ presents
130
+ new owners and new management team
131
+ read about it here
132
+ caterham
133
+ that john heilemann was dishonest.
134
+ john heilemann
135
+ @repjohnlewis
136
+ repjohn lewis
137
+ potus
138
+ for statement on nukes
139
+ spend less time voting in the senate
140
+ to spend less time voting.
141
+ they said what so many of us want to say.
142
+ the khan's
143
+ president bling
144
+ on campus
145
+ steve bannon
146
+ in my drafts
147
+ sacramento kings
148
+ Marcus Cousins
149
+ iran
150
+ the nuclear deal
151
+ counts
152
+ switzerland
153
+ honduras
154
+ two
155
+ two
156
+ wilmariel and jason
157
+ orlando's pulse nightclub
158
+ the family
159
+ chester bennington
160
+ proper eyewear
161
+ the solar eclipse
162
+ make us rich again
163
+ inauguration
164
+ cleveland
165
+ tara the hero cat and family
166
+ bOGO
167
+ the Colombian game
168
+ the Colombian game
169
+ 2018
170
+ democrats
171
+ muslim
172
+ mosque
173
+ women who stayed silent
174
+ this is for perspective
175
+ 3 feet
176
+ the fcc
177
+ a loss
178
+ senzo meyiwa
179
+ james gunn
180
+ guardians of the galaxy
181
+ the city
182
+ donald trump
183
+ " and then what?".
184
+ good
185
+ iowa
186
+ a winter storm
187
+ miss cleo
188
+ my mom
189
+ zazie beetz
190
+ the next Deadpool
191
+ the thIRD one
192
+ the third one
193
+ the school district
194
+ to get a diplomatic resolution
195
+ sanctions
196
+ beyonce
197
+ solar
198
+ climate action
199
+ at COP22
200
+ paris agreement and climate action
201
+ iraq
202
+ reclaim their territory from ISIL
203
+ kanye
204
+ trump and kanye
205
+ super bowl
206
+ he doesn't like it.
207
+ basic human decency
208
+ ratings
209
+ basic human decency
210
+ work harder
211
+ four
212
+ the red state Gathering
213
+ ben bradlee
214
+ jennifer aniston
215
+ justin Theroux
216
+ beyonce
217
+ grease live
218
+ nytimes critic
219
+ shonda rhimes
220
+ that it is not the type of movie you see in the theaters
221
+ charlotte
222
+ a flower
223
+ he felt that we are all one.
224
+ iJesse williams
225
+ jonathan bennett
226
+ jonathan bennett
227
+ tomorrow morning
228
+ the 40th anniversary.
229
+ the 40
230
+ 2015
231
+ boston
232
+ hillary clinton
233
+ philly
234
+ david burtka
235
+ in Italy
236
+ marriage
237
+ in Italy
238
+ reds to Braves
239
+ 14 million
240
+ arkansas
241
+ aug 4, 2014
242
+ 2
243
+ the real Camelot
244
+ the obamas
245
+ a turn
246
+ youtube
247
+ night
248
+ the crickets
249
+ democrat congresswoman
250
+ zachary hammond
251
+ in the light
252
+ having the opportunity to meet Gordie Howe
253
+ Gordie Howe
254
+ peas in guac
255
+ the nyt
256
+ her country
257
+ a bed
258
+ this morning
259
+ bexley Rd
260
+ uk
261
+ mcdonald's uk
262
+ uk
263
+ 7:37 pm
264
+ mcdonald's u
265
+ the secretMenu
266
+ mcdonald's uk
267
+ the culture
268
+ @tuckercarlson and @stevehiltonx
269
+ blue
270
+ nicolespag
271
+ true blood
272
+ museum modern art
273
+ big bird and baby bear
274
+ dylan
275
+ her face
276
+ gwen Stefani
277
+ leSean mccoy
278
+ the restaurant receipt thing
279
+ fidel castro
280
+ 3 minutes to midnight
281
+ executive director and Publisher
282
+ 20 week abortion bans
283
+ it is unpopular
284
+ kept
285
+ her divine right to live
286
+ justin kirkland
287
+ dolores
288
+ cheese dust
289
+ michelle obama
290
+ apples
291
+ oranges
292
+ the pistons
293
+ reggie jackson
294
+ millions march
295
+ union square
296
+ be silenced
297
+ to take nisa home to palembang
298
+ surabaya
299
+ a little creeped out
300
+ faceID
301
+ atlanta 2015
302
+ google africa
303
+ atlanta
304
+ a stair master
305
+ hell
306
+ hell
307
+ backup QBs
308
+ patriots
309
+ black protester
310
+ four
311
+ parents
312
+ many years
313
+ a significant milestone
314
+ beam
315
+ andre Iguodala
316
+ kurt helin
317
+ facebook and twitter
318
+ russellcrowe
319
+ prime minister narendramodi
320
+ emotional things
321
+ never showed up
322
+ mariah carey
323
+ brazil
324
+ brazil
325
+ the golf course
326
+ jimmy fallon
327
+ donald trump
328
+ hillary clinton
329
+ hillary clinton
330
+ text dunham to 47246
331
+ dem convention
332
+ a farmer downstream
333
+ loading this beast
334
+ emma watson
335
+ marchers
336
+ because they're scared af.
337
+ tweet does not exist
338
+ tweet does not exist
339
+ natural gas
340
+ we'd stop them faster
341
+ an elephant
342
+ me
343
+ a nap
344
+ a pillow and blanket
345
+ julia louis-dreyfus
346
+ julia louis-dreyfus
347
+ for everyone here in vegas.
348
+ everyone here in vegas
349
+ republican lefties
350
+ on our money
351
+ eng
352
+ his organization
353
+ an apology
354
+ the Ballon d'Or
355
+ two
356
+ syria
357
+ syria
358
+ Rest in peace
359
+ porto alegre
360
+ full house
361
+ s slanderous
362
+ sen john mccain and all our veterans
363
+ kobani
364
+ Benghazi
365
+ the cops
366
+ he wished him luck
367
+ he wished him luck
368
+ the cops
369
+ nazis
370
+ the swastika
371
+ uninvited guests
372
+ in restaurants
373
+ a DR pepper
374
+ he died.
375
+ coke
376
+ immigrants
377
+ at the electoral map
378
+ the entire week
379
+ the show
380
+ he was too busy pulling out pages on evolution
381
+ autographed it
382
+ his stick
383
+ a young canucks fan
384
+ so he could be in front of NATO group
385
+ Montenegro PM
386
+ vote for mittromney
387
+ one
388
+ romney
389
+ romney
390
+ romney
391
+ vote for mittromney
392
+ something back
393
+ luis figo
394
+ tony awards2017
395
+ patti luPone
396
+ mourning
397
+ america
398
+ the president
399
+ prince
400
+ prince
401
+ the patriots
402
+ the nfl
403
+ robert kraft
404
+ an apology
405
+ wind gusts
406
+ kenting
407
+ israel
408
+ a warm friendship.
409
+ the wall
410
+ they can continue working on outstanding issues
411
+ thanksgiving
412
+ her father
413
+ two
414
+ start our holiday
415
+ a cat
416
+ very very happy
417
+ andrew Garfield
418
+ Asian
419
+ a warm wind
420
+ 42 degrees celsius
421
+ yorktown
422
+ hamilton
423
+ danny Granger/josh mcRoberts
424
+ lebron james
425
+ to figure out why it is being retooled
426
+ google glass
427
+ cesare prandelli
428
+ american horror story
429
+ killing me
430
+ trying to kill me
431
+ lFC
432
+ sunday
433
+ at Anfield
434
+ lFC
435
+ sunday
436
+ shoreham
437
+ shoreham
438
+ liberty island
439
+ civilians
440
+ hov
441
+ upload the audio to that Elevator Fight feat.
442
+ fergie
443
+ milf money
444
+ john glenn and Annie
445
+ john glenn
446
+ ariannahuff
447
+ because she is a dog
448
+ someone trying to make him do something.
449
+ he did it.
450
+ an attack
451
+ shameful
452
+ tweet promoting an ad
453
+ THC
454
+ 2.71 inches
455
+ almost 3 inches
456
+ tUES
457
+ in vegas
458
+ 2 hours
459
+ trafalgar square bookstore
460
+ on mars
461
+ a man with no legs
462
+ legs
463
+ pac
464
+ he loves pac
465
+ he came out as gay
466
+ tom hitzlsperger
467
+ the mets
468
+ too soon
469
+ the mets
470
+ a tattoo
471
+ the trailer
472
+ a BIG screen
473
+ $125
474
+ t Tupac
475
+ a veterinarian
476
+ the uk
477
+ barf bag
478
+ kim kardashian
479
+ the OG crew
480
+ some things
481
+ in your honor
482
+ generations of scientists and engineers
483
+ nhl contract
484
+ flapanthers
485
+ mine
486
+ mixed
487
+ he is complaining.
488
+ brother and half brother
489
+ the evacuated passengers
490
+ travelers beach hotel
491
+ travelers beach hotel
492
+ the evacuated passengers at Travelers beach hotel.
493
+ unpredictable
494
+ being unpredictable
495
+ anaconda
496
+ choreo and vid of the year
497
+ to express support
498
+ they appreciate it
499
+ jeb bush
500
+ special interest
501
+ the u.s. embassy
502
+ twitter pic
503
+ cPD
504
+ 970
505
+ hillary clinton's gold and white
506
+ on April 12, 2015
507
+ the oscars
508
+ 2015
509
+ mtv
510
+ the truth
511
+ ben bradlee
512
+ the truth
513
+ ben bradlee
514
+ misunderstood
515
+ a tweet
516
+ 74
517
+ muhammad ali
518
+ lesdoggg
519
+ he passed Consummate NYC actor
520
+ SonyPictures
521
+ steve iran
522
+ a new type
523
+ the 787
524
+ the bachelor finale
525
+ the bachelor finale
526
+ amazon and iTunes
527
+ his fans
528
+ beyonce
529
+ twins
530
+ 20
531
+ the notorious b.i.g
532
+ forever
533
+ private
534
+ democrats
535
+ shutdown
536
+ at a time we need it most
537
+ 7:37 pm
538
+ #homesweethome
539
+ bullying
540
+ laverne cox
541
+ jeff flake
542
+ stan freberg
543
+ stan freberg
544
+ 269
545
+ FCBarcelona
546
+ kris jenner
547
+ kris jenner
548
+ Apple
549
+ made the biggest, coolest, sexiest, funniest movie ever
550
+ gwen stefani
551
+ blake
552
+ they lost contact.
553
+ Amsterdam
554
+ us presidents
555
+ three
556
+ go black and never go back
557
+ Dean
558
+ blogging
559
+ posting
560
+ release
561
+ charlotte
562
+ giving cars away
563
+ car
564
+ women have a family to feed
565
+ their privilege
566
+ barbie
567
+ buying her daughter a barbie
568
+ kat graham and dshippjr
569
+ code
570
+ STEM
571
+ like a king
572
+ justin
573
+ checked the forecast
574
+ ky
575
+ jaz em
576
+ the people that have inspired him
577
+ buzzfeed team
578
+ buzzfeed team
579
+ b BuzzFeed
580
+ an amazing November
581
+ delusion
582
+ ted cruz
583
+ passive aggressiveness
584
+ her daughter
585
+ in vegas
586
+ dwyane wade
587
+ vfWManeEvent supporters
588
+ vfWMane
589
+ before photos
590
+ before photos
591
+ disappointed
592
+ rickie fowler
593
+ cannot conclude
594
+ cannot conclude
595
+ in the Tony awards press room
596
+ thanking people
597
+ once
598
+ half as much
599
+ beautiful
600
+ george
601
+ super bowl
602
+ 47
603
+ an acoustic
604
+ lady gaga
605
+ core mission
606
+ today
607
+ the SEC championship game
608
+ jim m elwain
609
+ washington wizards
610
+ chicago
611
+ Bulls fans
612
+ the st louis blues camp
613
+ a Stanley cup
614
+ he passed away
615
+ everyone
616
+ to win the Arc
617
+ yuichi Fukunaga
618
+ yuichi Fukunaga
619
+ kuzma
620
+ vote your conscience
621
+ your conscience
622
+ amped up
623
+ a pep talk from the Hanson brothers
624
+ the Hanson brothers
625
+ johnstown, PA
626
+ t Tsarnaev
627
+ rolling stone
628
+ one
629
+ reach out to those affected
630
+ Marcus morris
631
+ aaron gordon
632
+ kaley cuoco
633
+ long ago
634
+ president of kiev
635
+ scenes in kiev
636
+ bringing a son into this world
637
+ bringing a son into this world
638
+ hulk
639
+ hulk
640
+ this one celebrating X's victory
641
+ x's victory
642
+ x
643
+ bill murray
644
+ trump's jock
645
+ mccain's or k Kasich's socks
646
+ chiraq
647
+ because of gun violence
648
+ leslie jones
649
+ he needs to be arrested and prosecuted
650
+ all of us
651
+ in our city
652
+ 207
653
+ 207
654
+ chris martin
655
+ getting divorced
656
+ insufferable similarities
657
+ 10 minutes
658
+ the bachelorette finale
659
+ by midnight
660
+ by midnight
661
+ president
662
+ russia
663
+ russia
664
+ #charliehebdo
665
+ andrew lesnie
666
+ your humor and love
667
+ coaches in college or pro sports
668
+ geno auriemma
669
+ dunkin donuts
670
+ starbucks
671
+ hassan rouhani
672
+ two
673
+ Eva Longoria
674
+ a cheese baby
675
+ pregnancy
676
+ iowa
677
+ road trip
678
+ heat
679
+ model
680
+ california
681
+ change
682
+ that it would benefit the wealthy over the middle-class.
683
+ hawaii
684
+ when will the law take effect
685
+ by reporting them
686
+ rape
687
+ the best designer
688
+ the best designer
689
+ 4-3-3
690
+ 4-3-3
691
+ j_klinsmann
692
+ j_klinsmann
693
+ congressman john lewis
694
+ john lewis
695
+ mike munchak
696
+ 5 hours
697
+ Copper Breaks
698
+ grasshoppers & beetles
699
+ justin kirkland
700
+ Raven gates09
701
+ nyc Ebola patient's
702
+ ebola patient's footseps
703
+ political Ides of March
704
+ in the upcoming weeks
705
+ a sniper
706
+ 7k miles
707
+ in homage
708
+ super bowl
709
+ william and harry
710
+ his father
711
+ fATHER
712
+ william and harry
713
+ police
714
+ they didn't ask if you're black or white
715
+ obama
716
+ racial animus
717
+ Hijacking
718
+ ebrahim airlines
719
+ bryce dhoward
720
+ rancehoward
721
+ your support
722
+ Lunch time
723
+ the skin
724
+ under my fingernails
725
+ crying
726
+ tear gas
727
+ Nazem Kadri
728
+ cross-check
729
+ Hungary
730
+ tom & jerry
731
+ charlottesville
732
+ unite the country
733
+ good sex
734
+ sorry
735
+ what her mum says
736
+ pittsburg
737
+ new york slough
738
+ they finished goalless.
739
+ bayern
740
+ on the phone
741
+ july
742
+ Chain & lottery were made worse
743
+ daca
744
+ wall
745
+ pregnancy
746
+ he wants pics.
747
+ movie going experience
748
+ amc
749
+ as much as poss
750
+ more meaningful things
751
+ emotional
752
+ hectoring and yelling
753
+ hectoring and yelling
754
+ syrian envoy to the UNSC
755
+ fallujah, Iraq
756
+ islamic PMU
757
+ syria
758
+ bronaventure
759
+ in a movie
760
+ pay
761
+ pATERnITY leave
762
+ mama June
763
+ introducing the new me
764
+ Raise your hand
765
+ academia
766
+ saw the stiller@meara open
767
+ the Sands Hotel in vegas
768
+ he thinks it's compassion.
769
+ 3 Republicans and 48 democrats
770
+ joe biden
771
+ paul ryan
772
+ Adidas
773
+ #bring back our childhood
774
+ 1.5m
775
+ obese
776
+ obesity
777
+ the Beatles
778
+ after the sING premiere
779
+ the intro
780
+ janet mock
781
+ grace lee whit Whitney
782
+ grace lee whit Whitney
783
+ the new george michael single
784
+ george michael
785
+ after the fantasy draft
786
+ honda
787
+ he smiled
788
+ the hollywood bowl
789
+ the Browns
790
+ colin kaepernick
791
+ ruby rose
792
+ social media
793
+ the new york Rangers
794
+ tbay
795
+ a gym
796
+ Motion
797
+ sen john mccain
798
+ meghan mccain
799
+ gaby amarantos
800
+ @gabymarantos and @tottustu
801
+ ciara
802
+ baby Future
803
+ loss of life
804
+ attack
805
+ zordon
806
+ power rangers
807
+ justin
808
+ for his safety
809
+ nigerians
810
+ #bring back our girls
811
+ tweet sometimes
812
+ tweet
813
+ fake news
814
+ assad
815
+ great
816
+ in a beautiful picture
817
+ james bin zayed
818
+ Ministers
819
+ with a spirit of change and progress
820
+ the new Ministers
821
+ the lakers
822
+ in 2018 free agency
823
+ louis
824
+ basketball
825
+ the Pacers and the clippers
826
+ snl
827
+ snl
828
+ he feels it is an awesome compliment.
829
+ alan rickman
830
+ a funny and engaging person
831
+ dana harper music
832
+ season 11
833
+ greg schiano
834
+ three
835
+ death row records
836
+ beats by Dre
837
+ beats by Dre
838
+ michael jackson
839
+ james Bond
840
+ it is where the trump budget belongs.
841
+ the house of Representatives
842
+ 66-57
843
+ flint
844
+ political statements and finger pointing
845
+ long shirts
846
+ find her
847
+ mama
848
+ tapping
849
+ tapping
850
+ Arnold schwarzenegger
851
+ swamped
852
+ 6
853
+ legalize DACA
854
+ beyonce
855
+ the super bowl
856
+ american black
857
+ america
858
+ how to sit like a lady
859
+ miss america
860
+ Moon Jae-in
861
+ pyeongchang2018
862
+ the emma
863
+ bringing a flask
864
+ sad
865
+ exclamation points
866
+ strong
867
+ twitter
868
+ in heaven
869
+ jimmy d Dickens
870
+ pickin & grinnin
871
+ in heaven
872
+ damaging coal country
873
+ coal country
874
+ oliver sacks
875
+ boyish enthusiasm
876
+ bear cam time
877
+ bear cam time
878
+ exploreorg
879
+ music
880
+ the voice
881
+ cavs
882
+ the red carpet
883
+ hidden fences
884
+ the aacopd
885
+ Comey
886
+ confidence
887
+ nostayingathome
888
+ van Gaal
889
+ united
890
+ arsene ar Wenger
891
+ this summer
892
+ vOTER fRAUD
893
+ voting in two states
894
+ incredible progress
895
+ kevin hart
896
+ google maps
897
+ pacman
898
+ cnn
899
+ who is her bestie?
900
+ her/him
901
+ 5min
902
+ soccer
903
+ soccer
904
+ 5 minutes
905
+ ed sheeran
906
+ Game of thrones
907
+ the shark
908
+ ed Sheeran
909
+ hat
910
+ pharrell
911
+ alex gavan
912
+ the heli
913
+ that he was golden.
914
+ rippaulwalker
915
+ that he was golden.
916
+ so effortlessly golden
917
+ rippaulwalker
918
+ golden
919
+ barrett sallee
920
+ niece and nephew
921
+ measured and inclusive
922
+ michael chertoff
923
+ measured and inclusive
924
+ michael chertoff
925
+ 2:30 am
926
+ jFK
927
+ every article I've read
928
+ 3:37 pm
929
+ being shocked he won
930
+ it was surprising.
931
+ 2
932
+ under a boulder
933
+ philae
934
+ chester bennington's passing
935
+ chester bennington
936
+ families
937
+ 4 boys
938
+ gaza beach
939
+ Loving the pictures
940
+ @SI_swimsuit
941
+ Messiah
942
+ Messiah
943
+ an interview and a major photo shoot
944
+ the chapter on cross dressing.
945
+ gop
946
+ luis figo
947
+ the next FIFA president
948
+ joseph fiennes
949
+ justin beiber
950
+ selena gomez
951
+ laVar ball
952
+ charles bl Barkley
953
+ the depiction of religion
954
+ yaya toure
955
+ eric Garner died.
956
+ selling cigs
957
+ men
958
+ rrsd julien
959
+ 50 shades
960
+ 50 shades
961
+ earthquake
962
+ this morning
963
+ cockefeller center
964
+ pacman
965
+ on the highway
966
+ bonnieville & etown
967
+ as a US senator
968
+ cruz
969
+ the section 5 public order act
970
+ Brighton magistrates court
971
+ colin kazim-richards
972
+ the section 5 public order act
973
+ marcheRepublicaine
974
+ marcheRepublicaine
975
+ houston
976
+ $500,000
977
+ the brain
978
+ human rights issues
979
+ christina Aguilera's Whitney houston tribute
980
+ christina Aguilera
981
+ will smith
982
+ new orleans
983
+ that pesky products on high shelves
984
+ in-store
985
+ yale
986
+ for removing pane of slaves picking cotton.
987
+ germany and germany
988
+ rand paul
989
+ for the good of the party
990
+ 2
991
+ mid-November/late-December
992
+ late-November/late-December
993
+ late-November/late-December
994
+ late-November/late-December
995
+ mid-November/late-December
996
+ 97
997
+ you don't drink
998
+ the cops
999
+ the cops
1000
+ fabricate
1001
+ his humor, talent, and capacity to love
1002
+ a brother
1003
+ streamlining the annulment process
1004
+ the annulment process
1005
+ francis
1006
+ made his own
1007
+ it's okay
1008
+ in a bowling alley
1009
+ what is she taking here
1010
+ mel tillis
1011
+ good luck with this guys
1012
+ c Cantor
1013
+ enes Kanter, willy hernangomez and joakim noah
1014
+ center
1015
+ germany
1016
+ underpants
1017
+ eggy's hair
1018
+ unIVERSITY of wASHINGTON
1019
+ gay people
1020
+ people
1021
+ they're throwing a pizza party
1022
+ because of weather
1023
+ anti-racist
1024
+ Mario Balotelli
1025
+ racists
1026
+ a tv show
1027
+ she had an abortion
1028
+ being openly heterosexual
1029
+ matt Damon
1030
+ pence
1031
+ he doesn't know.
1032
+ push his head down in a car
1033
+ james Franco
1034
+ making a mistake
1035
+ he doesn't agree
1036
+ #rupertsfault
1037
+ christian
1038
+ 10pm
1039
+ the fake news show
1040
+ press the wrong button
1041
+ man
1042
+ when he died.
1043
+ mike Porcaro
1044
+ over the line
1045
+ power
1046
+ meryl
1047
+ take her seat
1048
+ his spouse or kids
1049
+ ted cruz
1050
+ it's not acceptable.
1051
+ since 2007
1052
+ Letterman
1053
+ the dial
1054
+ take over
1055
+ twizzlerchallenge
1056
+ black hole merging
1057
+ cybersecchallenge
1058
+ orange team
1059
+ white supremacists
1060
+ the president
1061
+ before they die
1062
+ ass reporters
1063
+ #oscars
1064
+ lady gaga's oscars look
1065
+ his children
1066
+ left-wing hypocrisy
1067
+ a380
1068
+ a380
1069
+ negotiate
1070
+ terrorists
1071
+ mpireFOX
1072
+ the finale
1073
+ stay safe.
1074
+ tomorrow
1075
+ everyone
1076
+ that he was consciously thinking of it.
1077
+ mcIlroy
1078
+ senate majldr mcconnell
1079
+ 7 years
1080
+ cindymannings
1081
+ Rahman suspects
1082
+ facebook
1083
+ facebookdown
1084
+ a great healthcare plan
1085
+ a great healthcare plan
1086
+ get together and piece together a great healthcare plan
1087
+ toffs
1088
+ transparency
1089
+ there is not a tweet here
1090
+ nypd
1091
+ brian moore
1092
+ over 200
1093
+ phasing down hFCs
1094
+ leonard
1095
+ millions
1096
+ lebron james
1097
+ chris broussard
1098
+ English and Spanish
1099
+ sophie cruz
1100
+ a dog
1101
+ betty williams
1102
+ las vegas' visual fabric
1103
+ promoting
1104
+ media attention
1105
+ jessica lange
1106
+ bruce jenner
1107
+ around the globe
1108
+ laughing
1109
+ vote
1110
+ he died.
1111
+ facebook
1112
+ how to survive facebook going down
1113
+ sorority
1114
+ looks like a grandmother.
1115
+ ted cruz
1116
+ donald trump
1117
+ because of the controllers strike
1118
+ in the airport
1119
+ netanyahu
1120
+ for his speech to congress
1121
+ bakery
1122
+ food
1123
+ baking
1124
+ september 24, 2014
1125
+ four months
1126
+ four months
1127
+ bETA
1128
+ during jay z and beyonce clip
1129
+ pilgrim
1130
+ navy SEALS
1131
+ 15 years
1132
+ the united states
1133
+ two
1134
+ Ship them
1135
+ sam tageson
1136
+ what you have
1137
+ his loved ones
1138
+ the messages of support, love and encouragement
1139
+ pratt
1140
+ spielberg
1141
+ a partisan
1142
+ a grand slam
1143
+ netflix
1144
+ how to get away with murder
1145
+ dallas police shooting
1146
+ obama
1147
+ katie holmes' golden pants
1148
+ katie holmes
1149
+ corey menafee
1150
+ corey menafee
1151
+ uschamber
1152
+ better and stronger trade deals
1153
+ flint
1154
+ flint
1155
+ 2016
1156
+ shark
1157
+ the bachelor producers
1158
+ dem
1159
+ he was wrong
1160
+ his rapist
1161
+ hollywood/media
1162
+ tomi lahren
1163
+ obamacare
1164
+ female
1165
+ female
1166
+ airplane seats
1167
+ movie theater
1168
+ impeachment ofDonaldTrump
1169
+ play racist calls
1170
+ defending champ murray
1171
+ Dimitrov
1172
+ paulwalkerfdn
1173
+ paulwalkerfdn
1174
+ ebola
1175
+ winnipeg
1176
+ kampala Serena
1177
+ the kayoola solarbus
1178
+ tuesday
1179
+ pat sajak
1180
+ the Wheel of Fortune
1181
+ another plane
1182
+ they vanished
1183
+ crazy
1184
+ people
1185
+ hard but liberating
1186
+ watching the evening news
1187
+ south africa
1188
+ every Praise
1189
+ mike brown
1190
+ to the movement house
1191
+ farmers
1192
+ plowing up dirt
1193
+ creme eggs
1194
+ kim kardashian pierced her daughters ears
1195
+ kim kardashian
1196
+ justin bieber
1197
+ myspace
1198
+ margot
1199
+ he is glowing
1200
+ the National Weather Service map
1201
+ spend his life serving something more important than himself
1202
+ john mccain
1203
+ a bit player
eval/samples.validation.hyp.paragraph_question.answer.lmqg_qg_tweetqa.default.txt ADDED
@@ -0,0 +1,1086 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ megynkelly
2
+ her hidden agenda
3
+ people
4
+ coachella
5
+ a very good role model
6
+ a good role model
7
+ natalie portman
8
+ saturday night live
9
+ self
10
+ trump
11
+ full of spice
12
+ in the shower
13
+ Saturday Night Live
14
+ three
15
+ who she is
16
+ trump
17
+ he has news
18
+ freedom
19
+ 5 years
20
+ the bachelor
21
+ basketball
22
+ a win
23
+ thoughtful, committed
24
+ small
25
+ love
26
+ hate
27
+ ryan
28
+ jazz
29
+ kanye jokes
30
+ stay in your seat, kanye
31
+ dad
32
+ his first Celtics jersey
33
+ the children
34
+ heteronormative
35
+ obama obama
36
+ mr. president
37
+ the candle
38
+ peachcandle
39
+ women
40
+ women
41
+ abUSE of POWER
42
+ baton rouge
43
+ black panther
44
+ a deep bench
45
+ Hidden fences
46
+ michael keaton
47
+ $1
48
+ smosh
49
+ spider mable
50
+ black cat
51
+ 14th Atlantic
52
+ 14
53
+ blue Wonderful
54
+ the Sunset Strip
55
+ he knows what happened
56
+ verizonstrike
57
+ boston
58
+ martin luther king
59
+ sharing the play.
60
+ very excited
61
+ two
62
+ bodega
63
+ a no-move clause
64
+ three
65
+ the magazine
66
+ his shirt
67
+ equal time
68
+ an apology
69
+ zero
70
+ cnn
71
+ the pizza and the dog
72
+ the right thing
73
+ everyone makes mistakes
74
+ frank luntz
75
+ the debate
76
+ jacoby ellsbury
77
+ 1st
78
+ michelle obama
79
+ women in film award
80
+ mrdrewscott
81
+ watch and vote
82
+ simone biles
83
+ her best bar
84
+ alessiacara
85
+ crowd
86
+ dove
87
+ out of this world
88
+ out of this world
89
+ Erdogan
90
+ export abuse
91
+ a copy
92
+ donald trump
93
+ lislis kudrow
94
+ smelly cat
95
+ the grammys
96
+ 1997
97
+ at the Arena
98
+ vancouver
99
+ what akers just saw
100
+ he is akers
101
+ 61 years
102
+ europe
103
+ words
104
+ in the movie
105
+ david levitz
106
+ stick together
107
+ elling yelling
108
+ stunts
109
+ until we are old enough to vote
110
+ mayor mark
111
+ the white house
112
+ the white house beer
113
+ 6,000
114
+ black
115
+ chicago
116
+ whites
117
+ 2
118
+ deprogram b4
119
+ to protect the american people
120
+ helping economy and bringing back jobs
121
+ congress
122
+ a great start
123
+ a massive expansion of retraining and counseling
124
+ the police force
125
+ @usatopinion
126
+ he was fine with it
127
+ cellphones
128
+ police patrols
129
+ chrisrock
130
+ chrisrock
131
+ Iroquois high school
132
+ jimmy fallon
133
+ kevloria Discovery
134
+ kevloria Discovery
135
+ chrishemsworth
136
+ a sweet Viennese waltz
137
+ the golden ticket
138
+ james comey
139
+ the press
140
+ serenawilliams
141
+ to see you
142
+ kerrywashington
143
+ red
144
+ the jury
145
+ the murder
146
+ man of STEEL
147
+ a prequel
148
+ paul george
149
+ tmobile custs
150
+ golden globes
151
+ cathy Lanier
152
+ 26 years
153
+ paris
154
+ paris
155
+ buckingham palace
156
+ the royals
157
+ greatness
158
+ a video
159
+ 2017
160
+ 9
161
+ tinder
162
+ to meet people and have dates
163
+ president
164
+ down the road
165
+ the economy and AHCA
166
+ making things better or worse
167
+ the media
168
+ dc
169
+ 10 years
170
+ anthony mackie
171
+ a bright, brilliant talent
172
+ he died.
173
+ anton Yelchin
174
+ charlie Bartlett and house of d
175
+ 10,000
176
+ the Buffalo Sabres
177
+ president
178
+ 1000s
179
+ his home rink
180
+ a Apple watch
181
+ Apple watch
182
+ dunkirk
183
+ what do they want to know from harry styles
184
+ sen gillibrand
185
+ sen gillibrand
186
+ a sad story
187
+ arie
188
+ 17 hours
189
+ power
190
+ oprah
191
+ juggling it all with two hands
192
+ at least 7
193
+ mayor of london
194
+ WMU football
195
+ bb
196
+ a thousand notes
197
+ BREAKING BAD
198
+ 2008-13
199
+ the mnugga
200
+ the "mcnugga"
201
+ five
202
+ coldplay
203
+ this secret
204
+ better and better
205
+ 32 miles
206
+ helicopter pilot
207
+ best
208
+ your kind words
209
+ purple
210
+ kate Gosselin
211
+ rock the Casbah panel
212
+ bill murray
213
+ an impassioned
214
+ players at texas
215
+ billboard
216
+ break free
217
+ everyone must vote
218
+ alabama
219
+ build the wall
220
+ summer
221
+ zendaya
222
+ miranda
223
+ with a pretty pink ring
224
+ more shootings and more death
225
+ they want them to stop
226
+ sundance
227
+ switzerland
228
+ thinkpieces
229
+ fyre
230
+ the mo state fair
231
+ to visit north stl county
232
+ steve bannon
233
+ casting zoe saldana
234
+ zoe saldana
235
+ gold
236
+ charlie coyle
237
+ duncan kelly
238
+ 1st intermission
239
+ the new addition to the peps zamboni
240
+ donald trump
241
+ pizza rat
242
+ bylsma
243
+ malkin and Crosby
244
+ when does beyonce get here
245
+ landondonovan
246
+ @lagalaxy
247
+ dERSHOWITZ
248
+ cassell
249
+ he is living his best Super Bowl EVER
250
+ dancing
251
+ martin luther king
252
+ love
253
+ Planned Parenthood and ocare
254
+ d.c.
255
+ 4th of July
256
+ taylor swift
257
+ disgusting
258
+ trump supporters
259
+ sam Bee
260
+ conanobrien
261
+ bb-8
262
+ starwars cast
263
+ obamas
264
+ nicest
265
+ trying to undermine democracies
266
+ Sherlock holmes
267
+ doris roberts
268
+ death
269
+ london
270
+ "No Frauds"
271
+ lebron 9
272
+ Carlton
273
+ hotline
274
+ 657
275
+ with "k"
276
+ westgate
277
+ westgate
278
+ duchess of cambridge
279
+ love it
280
+ ed sheeran
281
+ the riverlands
282
+ ed sheeran
283
+ gossip girl
284
+ anxiety
285
+ what it's like
286
+ 1903
287
+ 1883
288
+ isac_h_wright
289
+ a reality show
290
+ the best
291
+ being his number one cheerleader
292
+ a tickle
293
+ manilla
294
+ biden
295
+ everything she wants to say
296
+ everything
297
+ brangelina
298
+ iowa flag
299
+ at midfield
300
+ sen rand paul
301
+ 4/25
302
+ two more
303
+ sharks
304
+ the national anthem
305
+ houston
306
+ excitement
307
+ bio
308
+ y'all
309
+ corinne foxx
310
+ miss golden globes 2016
311
+ a meme
312
+ driving students around
313
+ the PCL
314
+ michael phelps
315
+ kDTrey5 and deandrejordan6
316
+ james harden
317
+ win or the end of the season
318
+ for clarification
319
+ nail polish
320
+ theshoe
321
+ they are wrapped in a circle of paranoia.
322
+ a former ice cream store
323
+ local
324
+ RogersArena
325
+ pat quinn Way and Griffiths Way
326
+ tick "white british"
327
+ from now on
328
+ ciara & russell
329
+ his kids
330
+ the 15th
331
+ 174 yards
332
+ goOD MORNING RUPAUL's DRAG race
333
+ gaga
334
+ floored me
335
+ heels
336
+ Wonder Woman
337
+ martin
338
+ the goals
339
+ jsyk
340
+ 1032 am
341
+ obama
342
+ trump's presidency.
343
+ the women's uk hockey program
344
+ gordon hayward
345
+ l.a.
346
+ preacher lawson
347
+ tyrabanks
348
+ greg cosell
349
+ football
350
+ sacramento
351
+ the radio station
352
+ the drama
353
+ justin party
354
+ he is risen
355
+ a candy egg delivering plushy bunny
356
+ thanksgiving
357
+ an undercover robot
358
+ a girl
359
+ liam payne
360
+ artist
361
+ hate speech
362
+ emu's king hall
363
+ van canucks
364
+ pat quinn
365
+ mlk
366
+ #mlkday
367
+ hard times
368
+ his place in nichols
369
+ the maks
370
+ maksim
371
+ section 104
372
+ hemsworth
373
+ Ruffalo
374
+ an auctioneer
375
+ halloween
376
+ harden
377
+ two
378
+ chrishemsworth
379
+ chrishemsworth
380
+ nickkroll and Stephen at home
381
+ david letterman
382
+ fred armisen
383
+ difficult people
384
+ over 200
385
+ over 200
386
+ jimmy kimmel
387
+ for the effort
388
+ grace vanderWaal
389
+ make her famous
390
+ mr. alcohol
391
+ emilia charles
392
+ eyes
393
+ a dream
394
+ this POLICE man
395
+ right now
396
+ hurricane harvey
397
+ mike nichols
398
+ comedian albums
399
+ a scarves and jacket
400
+ june
401
+ shia lebeouf
402
+ how it can be manipulated and orchestrated
403
+ new york
404
+ hopeful
405
+ @Electricmayhem
406
+ a song to release on christmas
407
+ violence
408
+ short skirt
409
+ christine teigen
410
+ a song.
411
+ doloresoriordan
412
+ islandrecords
413
+ dylan
414
+ rumors
415
+ paul mccartney
416
+ a career
417
+ their contempt
418
+ the billionaire class
419
+ donald glover
420
+ Han Solo
421
+ ed Sheeran
422
+ Ask sheev
423
+ the oLYMPICS
424
+ the olympics
425
+ nola
426
+ joel Embiid
427
+ covfefe
428
+ covfefe
429
+ ann coulter
430
+ right now
431
+ dave Mustaine
432
+ star trek
433
+ in the middle of the night
434
+ alabama
435
+ everyone
436
+ you all
437
+ a bow
438
+ you're an independent person
439
+ low
440
+ honor two more legends of our sport.
441
+ the sport
442
+ george r.r. martin
443
+ a heart attack
444
+ larry
445
+ make this about larry
446
+ trump
447
+ mr Burns
448
+ megyn kelly
449
+ a lightweight reporter
450
+ to speak in vague but bombastic generalities
451
+ vague but bombastic
452
+ patricia arquette
453
+ half
454
+ ceelo
455
+ a MK purse
456
+ sdcc 2
457
+ starwars
458
+ eagles fans
459
+ over 80
460
+ everything they could grab
461
+ ivy park
462
+ logic301
463
+ blakelively
464
+ wishing he looked like blakelively
465
+ chrissy teigen
466
+ 150
467
+ he has a mustache.
468
+ henry cavill
469
+ trevor story
470
+ rockies
471
+ donna the elephant
472
+ sad
473
+ luke Donald
474
+ vino
475
+ he can't f'ing wait
476
+ spit on TV
477
+ la
478
+ john Boyega
479
+ an airport
480
+ listen to beyonce
481
+ larry
482
+ harry
483
+ tweet did not show
484
+ tweet did not show
485
+ a rematch
486
+ matthew perry
487
+ a year and a half
488
+ record
489
+ warren and faye
490
+ warren and faye
491
+ beauty and the beast
492
+ gay
493
+ space Jam
494
+ kentucky
495
+ the upper hand
496
+ the beyhive
497
+ Paramount and Warners
498
+ imagining Paramount and Warners
499
+ luke obama
500
+ the character work
501
+ 1997
502
+ hiv/AIDS
503
+ nhl management
504
+ excitement
505
+ introducing custom-painted aircraft
506
+ disney's Frozen
507
+ "Do Ya Think I'm Sexy"
508
+ republicrecords
509
+ iowa cafe
510
+ iowa cafe
511
+ donald trump
512
+ four
513
+ istanbul
514
+ turkey and greece
515
+ sanders
516
+ 94 crime bill
517
+ the halftime show
518
+ lady gaga
519
+ iowa
520
+ the president
521
+ paul feig
522
+ all-female
523
+ Alice Oswalt
524
+ in the universe
525
+ timberlake
526
+ country album
527
+ they are done w/ the nhl.
528
+ 24/7 Series
529
+ anyone on my team
530
+ james harrison
531
+ 16
532
+ vegas
533
+ jeff sessions
534
+ who's been naughty or nice
535
+ jeff varner
536
+ head of Habitat Int'l
537
+ joe biden
538
+ john
539
+ christine teigen
540
+ jonathan drouin
541
+ that he will play on the trip.
542
+ joss whedon
543
+ batgirl
544
+ b Bryzgalov
545
+ the nhl allstar
546
+ words
547
+ their future VPOTUS
548
+ johnlegend
549
+ they are gathered in one place.
550
+ gay men
551
+ gay men
552
+ finding out they broke up
553
+ amanda Berry
554
+ cleveland
555
+ ann Coulter
556
+ delta
557
+ johnny depp
558
+ an outfit he found in Johnny depp's Goodwill donation bag
559
+ kellyanne conway
560
+ the warriors
561
+ jim buss
562
+ keobe bryant
563
+ john williams
564
+ come swim
565
+ kristen stewart
566
+ madison square Garden
567
+ lacey holsworth and her family
568
+ cavs
569
+ cavs
570
+ lebron james
571
+ lebron james
572
+ lebron
573
+ sad
574
+ to spend more time with his pets
575
+ left wing
576
+ violence
577
+ beyonce
578
+ lemonade
579
+ leslie jones
580
+ 2
581
+ introducing Harry, Ginny and albus potter
582
+ harry, Ginny and albus potter
583
+ the houston and brown
584
+ tom hiddleston
585
+ seven minutes
586
+ the pens locker room
587
+ live look in
588
+ people's mouths
589
+ the prayers & hymns
590
+ Hanzal
591
+ boedker
592
+ louis
593
+ @katebolduan
594
+ m Ming Xi
595
+ leslie odom, jr
596
+ liberation station
597
+ wiggins
598
+ 106-106
599
+ 106-106
600
+ Kemba
601
+ Macedonian and Macedonian
602
+ for taking this photo
603
+ madonna
604
+ malia obama
605
+ malia obama
606
+ malkin
607
+ an MRI
608
+ facebook
609
+ the united states
610
+ marcjacobs
611
+ hillary
612
+ hillary
613
+ rian johnson
614
+ matilda
615
+ Gryffindor and Ravenclaw
616
+ me
617
+ an homage
618
+ the harlots
619
+ a romphim
620
+ Raven
621
+ "donald gets things done"
622
+ melania trump
623
+ the Canadian anthem
624
+ sing the Canadian anthem
625
+ a winner
626
+ he messes with rosie.
627
+ michael Dal colle
628
+ Sonny Milano
629
+ trump
630
+ Possession of Controlled Substance
631
+ canada
632
+ $250k
633
+ nashville
634
+ taylor swift
635
+ white
636
+ because of race
637
+ target
638
+ kukkatori
639
+ residente's verse
640
+ his wrote my way out verse
641
+ david cassidy
642
+ proud and honored
643
+ maya angelou
644
+ a caged bird
645
+ one year old
646
+ slow down
647
+ sweden
648
+ fox news
649
+ gilmore girls
650
+ gilmore girls
651
+ nope
652
+ everyday heroes
653
+ strong and full of everyday heroes
654
+ the internet
655
+ net neutrality
656
+ kanye west
657
+ 2015
658
+ new york
659
+ devastating
660
+ the cops
661
+ he said he was inWrongSkin
662
+ she got beat up.
663
+ outside with her brothers
664
+ shutup and enjoy the show
665
+ shutup and enjoy the show
666
+ the golden globes
667
+ black
668
+ abc
669
+ arie
670
+ justinbieber
671
+ whip
672
+ jeff gorton
673
+ 11
674
+ the final five
675
+ the floor
676
+ office workers
677
+ san Bernardino
678
+ r-word
679
+ Paper Towns
680
+ a waterbottle
681
+ downton abbey
682
+ paul walkers
683
+ an accident
684
+ CriticsChoice
685
+ 9460 wilshire Blvd
686
+ screenshot this
687
+ the bachelor
688
+ livia from the bachelor
689
+ steal people's boyfriends
690
+ she ruined it.
691
+ bandages
692
+ kotex
693
+ his family
694
+ he spent yesterday with his family
695
+ casino boat
696
+ 50 people
697
+ troops
698
+ prOUdly
699
+ 4 inches
700
+ fake
701
+ the patriots
702
+ paul, noma and cherrelle
703
+ harry potter play
704
+ hugh jackman
705
+ gap toothed
706
+ cut in the wall
707
+ a hole in the wall
708
+ every word said
709
+ the pro-am
710
+ tim tebow
711
+ empathy
712
+ christine teigen
713
+ his PR team
714
+ zayn
715
+ trudeau
716
+ the united states
717
+ jules
718
+ priez
719
+ prince doing "rally4peace"
720
+ rally4peace
721
+ selena and abel
722
+ release music together
723
+ lebron james tattoo
724
+ lebron james
725
+ chester bennington
726
+ linkinpark
727
+ eastern michigan university
728
+ racist graffiti
729
+ california
730
+ sad
731
+ texans
732
+ moving out of the 1st pick
733
+ the only colors
734
+ cardinal and gold
735
+ rain & storms
736
+ central & eastern
737
+ benetton
738
+ haley
739
+ a kia
740
+ a kia
741
+ rihanna fans
742
+ rihanna fans
743
+ john lewis
744
+ martin luther king jr.
745
+ russia
746
+ negative
747
+ therealeve
748
+ dates and RSVP
749
+ elliegoulding
750
+ 3/15
751
+ justinbieber is here
752
+ his set
753
+ this nonsense
754
+ dallas
755
+ kim kardashian
756
+ gQ
757
+ purple
758
+ black panther
759
+ iGGY AZalEA
760
+ he enjoyed the holiday season
761
+ call me
762
+ in heaven
763
+ an official statement
764
+ shocked and heartbroken
765
+ show us your best office mugshot
766
+ a coffee prize pack
767
+ donald trump
768
+ for a great speech
769
+ alabama
770
+ 20
771
+ beauty and the Beast
772
+ emma watson
773
+ a mini series
774
+ the show
775
+ malcolm young
776
+ ac/dc
777
+ kane
778
+ pretty good
779
+ tom hanks
780
+ 2017
781
+ a dear friend
782
+ anne Hathaway
783
+ women syncing periods
784
+ beat him to it
785
+ he is apologizing.
786
+ violence
787
+ jeremy
788
+ 3
789
+ redsox
790
+ l Lester and Lackey
791
+ kevin
792
+ wallstar
793
+ speeches
794
+ an american
795
+ to use the restroom
796
+ 2014
797
+ in the unlikely event
798
+ 2009
799
+ emergency room nurse demographic
800
+ steph curry and under Armour
801
+ steph
802
+ god
803
+ stephen a.
804
+ after shoot-around
805
+ four
806
+ the last
807
+ a conservative
808
+ the russians
809
+ the right side
810
+ black Panther
811
+ black Panther
812
+ summer
813
+ daily into August
814
+ russell wilson
815
+ mark rodgers
816
+ TCU's punter
817
+ shawn Oakman
818
+ team usa
819
+ team usa lockerroom
820
+ rihanna
821
+ the Met Gala
822
+ vp biden and mariska
823
+ that beautiful scene
824
+ aava
825
+ @ava
826
+ colon cancer
827
+ 2
828
+ all of your warm thoughts and well wishes
829
+ getting back to work
830
+ jSU bus
831
+ @NRJAwards2015
832
+ a great time
833
+ the rock hall
834
+ their votes, posts, and videos
835
+ kiss
836
+ a 10
837
+ money23 green
838
+ 3
839
+ disney
840
+ beastiliaty
841
+ the endangered river
842
+ #endangeredriver
843
+ 3
844
+ 2:19
845
+ grandmother
846
+ Twenty dollars
847
+ the Duchess of cambridge
848
+ kensington palace
849
+ the Duchess
850
+ a flight simulator
851
+ the democrats
852
+ democrats
853
+ for his resignation
854
+ the president
855
+ mike green
856
+ mike green
857
+ their emotions
858
+ multiple offers
859
+ Regina george
860
+ election day
861
+ colonel sanders
862
+ a timesup rose
863
+ free and open
864
+ net neutrality
865
+ grease
866
+ her scalp
867
+ the area
868
+ black
869
+ president's motorcade
870
+ to be a las vegas girl
871
+ portia and portia
872
+ ellentube
873
+ running to each other
874
+ the way they run.
875
+ a hero
876
+ a movie that DELIVERS
877
+ running up to ppl's homes
878
+ it's dangerous
879
+ a free pair of limited-edition @georgehwBush socks
880
+ george hw bush
881
+ her ID
882
+ the white house
883
+ hamburg
884
+ they were hurt.
885
+ Gilmore Girls
886
+ given me new life
887
+ russian connection
888
+ jim Harbaugh
889
+ national anthem
890
+ nj
891
+ this forecast
892
+ black
893
+ work
894
+ DL champlin
895
+ after everything I've done for you
896
+ realDonaldTrump
897
+ reprehensible, prejudiced and divisive
898
+ it is the right decision.
899
+ the right coach
900
+ starwars
901
+ making their way to show
902
+ hockey
903
+ his Gordie Howe hat trick
904
+ police
905
+ mjolnir
906
+ steve
907
+ protect them
908
+ the family of Seth Thomas
909
+ seth thomas
910
+ gig Harbor
911
+ narrows airport
912
+ tina fey
913
+ Felicity jones
914
+ today
915
+ the prince of Wales
916
+ jimmy fallon
917
+ nypd hats
918
+ officer moore
919
+ tom hiddleston
920
+ red
921
+ gold
922
+ katieledecky
923
+ tsonga
924
+ before his first match
925
+ greece
926
+ turkey
927
+ he hit by a pitch
928
+ Birmingham area
929
+ Birmingham area
930
+ hailey baldwin
931
+ v
932
+ half-time
933
+ ar
934
+ the Tig
935
+ very sad
936
+ he was such a character
937
+ skydance
938
+ diane keaton
939
+ nyc
940
+ tom hiddleston
941
+ to personalize shopping
942
+ cher
943
+ hospitality
944
+ e Ethan
945
+ a global hack
946
+ the grandchildren
947
+ christmas
948
+ america
949
+ amber waves of grain
950
+ to report incidents of bias
951
+ because this state celebrates our differences
952
+ ariana grande
953
+ ariana grande
954
+ penguin avenue, Antarctica
955
+ penguin
956
+ an Instagram quality photo
957
+ 3 legs
958
+ oprah
959
+ terling k brown
960
+ so proud
961
+ indians
962
+ 22
963
+ don graham's farewell party
964
+ an honor
965
+ donald trump
966
+ he would get very mad about it
967
+ jwatt
968
+ an amazing gift
969
+ stephen curry30
970
+ when they grow up
971
+ his neighbor/genius quiara
972
+ sia WEAPONIZES vowels
973
+ a movie
974
+ sUREwalk
975
+ elizabeth
976
+ the bachelor
977
+ the thugs
978
+ white
979
+ jennifer aniston
980
+ in the mountain of despair
981
+ mountain of despair
982
+ a headache
983
+ the amazing news oscar nom
984
+ the Mets
985
+ get a mets tattoo
986
+ jemmye carter
987
+ because of the connection we shared.
988
+ the trophy
989
+ this sunday
990
+ the light
991
+ wow now the light has sold out
992
+ jtimberlake
993
+ new country
994
+ a bill
995
+ martin heinrich
996
+ cattie hallway
997
+ bathroom counter
998
+ the oscars bar
999
+ 1 am
1000
+ leaked nudes
1001
+ revenge porn
1002
+ 17's
1003
+ yogi ferrell
1004
+ the cauldron
1005
+ wayne's world
1006
+ juggalo march
1007
+ america
1008
+ the most anti-LGBTQ+ presidential ticket
1009
+ they mean nothing to us
1010
+ lebron
1011
+ that he looked familiar.
1012
+ zazie
1013
+ domino
1014
+ to the beach
1015
+ aim
1016
+ the app
1017
+ the glory of the lord
1018
+ all flesh
1019
+ sJP
1020
+ sarah jessica Parker and george malkemus
1021
+ kanye
1022
+ dark and multiracial
1023
+ kyle chandler
1024
+ comey
1025
+ zac efron
1026
+ on the cheek
1027
+ nudes
1028
+ bette midler
1029
+ kanye
1030
+ 50 minutes
1031
+ slaughter the competition.
1032
+ met gala
1033
+ that america is trash
1034
+ 20 minutes
1035
+ new isles
1036
+ drinking champagne
1037
+ champagne
1038
+ autotune
1039
+ he sounds like autotune
1040
+ a free pass
1041
+ someone's horrible musfortune
1042
+ he kissed her
1043
+ 2016
1044
+ security guy
1045
+ charlie wang
1046
+ seize the means
1047
+ the means of production
1048
+ pronouns.
1049
+ the third
1050
+ shia lebeouf
1051
+ singapore
1052
+ hop
1053
+ someone give her hope
1054
+ kim kardashian
1055
+ cashing her 80 million video game check
1056
+ spotify
1057
+ release her album
1058
+ benedict cumberbatch and a nice chap
1059
+ he plays tennis
1060
+ a lot
1061
+ an alarming amount
1062
+ @dunderswiftlin
1063
+ new. LEVEL
1064
+ michelle rodriguez
1065
+ matt bomer
1066
+ @BMarshall
1067
+ tweet
1068
+ a podium
1069
+ melissa McCarthy/sean spicer
1070
+ lowkey
1071
+ boogieman
1072
+ alexander pettyton
1073
+ opening this convo
1074
+ beautiful
1075
+ alabama
1076
+ black women
1077
+ the day we become silent
1078
+ mlk
1079
+ RED CROSS
1080
+ the people
1081
+ the world
1082
+ the world
1083
+ the airwaves
1084
+ write a book or start a podcast
1085
+ young pope
1086
+ tomorrow
pytorch_model.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:bca0c92d6c2cd914d3222365f61fdf874fefe263e44e954108bce0d91d1f99f2
3
- size 557970589
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d3a255c8a54f7b1813bce9ba75c483578da8d6b1dcb73482c350d88c562fc890
3
+ size 557974301
tokenizer_config.json CHANGED
@@ -6,7 +6,7 @@
6
  "errors": "replace",
7
  "mask_token": "<mask>",
8
  "model_max_length": 1024,
9
- "name_or_path": "lmqg_output/bart-base-tweetqa-question-answering/best_model",
10
  "pad_token": "<pad>",
11
  "sep_token": "</s>",
12
  "special_tokens_map_file": null,
 
6
  "errors": "replace",
7
  "mask_token": "<mask>",
8
  "model_max_length": 1024,
9
+ "name_or_path": "lmqg_output/bart-base-tweetqa-question-answering/model_tsaioi/epoch_2",
10
  "pad_token": "<pad>",
11
  "sep_token": "</s>",
12
  "special_tokens_map_file": null,
trainer_config.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"dataset_path": "lmqg/qg_tweetqa", "dataset_name": "default", "input_types": ["paragraph_question"], "output_types": ["answer"], "prefix_types": null, "model": "facebook/bart-base", "max_length": 512, "max_length_output": 32, "epoch": 3, "batch": 32, "lr": 0.0001, "fp16": false, "random_seed": 1, "gradient_accumulation_steps": 2, "label_smoothing": 0.15}