asahi417 commited on
Commit
2040a68
1 Parent(s): 5fbd0cf

model update

Browse files
README.md ADDED
@@ -0,0 +1,146 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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/t5-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: 0.33315782056958804
35
+ - name: ROUGE-L
36
+ type: rouge-l
37
+ value: 0.6223954899626488
38
+ - name: METEOR
39
+ type: meteor
40
+ value: 0.35426819977024687
41
+ - name: BERTScore
42
+ type: bertscore
43
+ value: 0.9458259980280204
44
+ - name: MoverScore
45
+ type: moverscore
46
+ value: 0.8006984647429997
47
+ - name: AnswerF1Score (Question Answering)
48
+ type: answer_f1_score_question_answering
49
+ value: 69.3966081647612
50
+ - name: AnswerExactMatch (Question Answering)
51
+ type: answer_exact_match_question_answering
52
+ value: 52.28595178719867
53
+ ---
54
+
55
+ # Model Card of `lmqg/t5-base-tweetqa-question-answering`
56
+ This model is fine-tuned version of [t5-base](https://huggingface.co/t5-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:** [t5-base](https://huggingface.co/t5-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
+
71
+ from lmqg import TransformersQG
72
+
73
+ # initialize model
74
+ model = TransformersQG(language='en', model='lmqg/t5-base-tweetqa-question-answering')
75
+
76
+ # model prediction
77
+ 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.")
78
+
79
+ ```
80
+
81
+ - With `transformers`
82
+ ```python
83
+
84
+ from transformers import pipeline
85
+
86
+ pipe = pipeline("text2text-generation", 'lmqg/t5-base-tweetqa-question-answering')
87
+ 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.')
88
+
89
+ ```
90
+
91
+ ## Evaluation Metrics
92
+
93
+
94
+ ### Metric (Question Answering)
95
+
96
+ | | Score | Type | Dataset | Link |
97
+ |:-----------------|----------:|:--------|:-------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------|
98
+ | AnswerExactMatch | 52.286 | default | [lmqg/qg_tweetqa](https://huggingface.co/datasets/lmqg/qg_tweetqa) | https://huggingface.co/lmqg/t5-base-tweetqa-question-answering/raw/main/eval/metric.first.answer.paragraph_question.answer.lmqg_qg_tweetqa.default.json |
99
+ | AnswerF1Score | 69.3966 | default | [lmqg/qg_tweetqa](https://huggingface.co/datasets/lmqg/qg_tweetqa) | https://huggingface.co/lmqg/t5-base-tweetqa-question-answering/raw/main/eval/metric.first.answer.paragraph_question.answer.lmqg_qg_tweetqa.default.json |
100
+ | BERTScore | 0.945826 | default | [lmqg/qg_tweetqa](https://huggingface.co/datasets/lmqg/qg_tweetqa) | https://huggingface.co/lmqg/t5-base-tweetqa-question-answering/raw/main/eval/metric.first.answer.paragraph_question.answer.lmqg_qg_tweetqa.default.json |
101
+ | Bleu_1 | 0.570705 | default | [lmqg/qg_tweetqa](https://huggingface.co/datasets/lmqg/qg_tweetqa) | https://huggingface.co/lmqg/t5-base-tweetqa-question-answering/raw/main/eval/metric.first.answer.paragraph_question.answer.lmqg_qg_tweetqa.default.json |
102
+ | Bleu_2 | 0.481677 | default | [lmqg/qg_tweetqa](https://huggingface.co/datasets/lmqg/qg_tweetqa) | https://huggingface.co/lmqg/t5-base-tweetqa-question-answering/raw/main/eval/metric.first.answer.paragraph_question.answer.lmqg_qg_tweetqa.default.json |
103
+ | Bleu_3 | 0.397816 | default | [lmqg/qg_tweetqa](https://huggingface.co/datasets/lmqg/qg_tweetqa) | https://huggingface.co/lmqg/t5-base-tweetqa-question-answering/raw/main/eval/metric.first.answer.paragraph_question.answer.lmqg_qg_tweetqa.default.json |
104
+ | Bleu_4 | 0.333158 | default | [lmqg/qg_tweetqa](https://huggingface.co/datasets/lmqg/qg_tweetqa) | https://huggingface.co/lmqg/t5-base-tweetqa-question-answering/raw/main/eval/metric.first.answer.paragraph_question.answer.lmqg_qg_tweetqa.default.json |
105
+ | METEOR | 0.354268 | default | [lmqg/qg_tweetqa](https://huggingface.co/datasets/lmqg/qg_tweetqa) | https://huggingface.co/lmqg/t5-base-tweetqa-question-answering/raw/main/eval/metric.first.answer.paragraph_question.answer.lmqg_qg_tweetqa.default.json |
106
+ | MoverScore | 0.800698 | default | [lmqg/qg_tweetqa](https://huggingface.co/datasets/lmqg/qg_tweetqa) | https://huggingface.co/lmqg/t5-base-tweetqa-question-answering/raw/main/eval/metric.first.answer.paragraph_question.answer.lmqg_qg_tweetqa.default.json |
107
+ | ROUGE_L | 0.622395 | default | [lmqg/qg_tweetqa](https://huggingface.co/datasets/lmqg/qg_tweetqa) | https://huggingface.co/lmqg/t5-base-tweetqa-question-answering/raw/main/eval/metric.first.answer.paragraph_question.answer.lmqg_qg_tweetqa.default.json |
108
+
109
+
110
+ ## Training hyperparameters
111
+
112
+ The following hyperparameters were used during fine-tuning:
113
+ - dataset_path: lmqg/qg_tweetqa
114
+ - dataset_name: default
115
+ - input_types: ['paragraph_question']
116
+ - output_types: ['answer']
117
+ - prefix_types: None
118
+ - model: t5-base
119
+ - max_length: 512
120
+ - max_length_output: 32
121
+ - epoch: 10
122
+ - batch: 32
123
+ - lr: 0.0001
124
+ - fp16: False
125
+ - random_seed: 1
126
+ - gradient_accumulation_steps: 2
127
+ - label_smoothing: 0.15
128
+
129
+ The full configuration can be found at [fine-tuning config file](https://huggingface.co/lmqg/t5-base-tweetqa-question-answering/raw/main/trainer_config.json).
130
+
131
+ ## Citation
132
+ ```
133
+
134
+ @inproceedings{ushio-etal-2022-generative,
135
+ title = "{G}enerative {L}anguage {M}odels for {P}aragraph-{L}evel {Q}uestion {G}eneration",
136
+ author = "Ushio, Asahi and
137
+ Alva-Manchego, Fernando and
138
+ Camacho-Collados, Jose",
139
+ booktitle = "Proceedings of the 2022 Conference on Empirical Methods in Natural Language Processing",
140
+ month = dec,
141
+ year = "2022",
142
+ address = "Abu Dhabi, U.A.E.",
143
+ publisher = "Association for Computational Linguistics",
144
+ }
145
+
146
+ ```
config.json CHANGED
@@ -1,5 +1,5 @@
1
  {
2
- "_name_or_path": "lmqg_output/t5-base-tweetqa-question-answering/best_model",
3
  "add_prefix": false,
4
  "architectures": [
5
  "T5ForConditionalGeneration"
 
1
  {
2
+ "_name_or_path": "lmqg_output/t5-base-tweetqa-question-answering/model_eszyci/epoch_9",
3
  "add_prefix": false,
4
  "architectures": [
5
  "T5ForConditionalGeneration"
eval/metric.first.answer.paragraph_question.answer.lmqg_qg_tweetqa.default.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"validation": {"Bleu_1": 0.6006749156353204, "Bleu_2": 0.5067889780685119, "Bleu_3": 0.41355045314602085, "Bleu_4": 0.33109963248204377, "METEOR": 0.3663658174199703, "ROUGE_L": 0.6397146219955299, "BERTScore": 0.9446793037773715, "MoverScore": 0.805677897707128, "AnswerF1Score": 71.20458552088378, "AnswerExactMatch": 55.34069981583794}, "test": {"Bleu_1": 0.570705472951417, "Bleu_2": 0.4816773321774158, "Bleu_3": 0.3978157578330595, "Bleu_4": 0.33315782056958804, "METEOR": 0.35426819977024687, "ROUGE_L": 0.6223954899626488, "BERTScore": 0.9458259980280204, "MoverScore": 0.8006984647429997, "AnswerF1Score": 69.3966081647612, "AnswerExactMatch": 52.28595178719867}}
eval/samples.test.hyp.paragraph_question.answer.lmqg_qg_tweetqa.default.txt ADDED
@@ -0,0 +1,1203 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ http://www.amazon.com
2
+ 5
3
+ 5
4
+ 5 years in 5 seconds
5
+ southwest airlines
6
+ a select number of aircraft have been removed from service for maintenance checks
7
+ crying
8
+ real teARS
9
+ blank space
10
+ taylor
11
+ tomorrow
12
+ 37500
13
+ zach lowe
14
+ a straight face
15
+ ebola
16
+ before and after the flight
17
+ 5%
18
+ 25%
19
+ uccs
20
+ Portland
21
+ the washington post
22
+ poll numbers
23
+ jeff gordon
24
+ sideburns, a mullet & a taxi cab
25
+ tweet is not visible
26
+ tweet is not visible
27
+ snl
28
+ donald trump
29
+ south carolina
30
+ picking cotton
31
+ china
32
+ the winner's room
33
+ the top of a staircase
34
+ saunders
35
+ ticket refunds
36
+ Entertainment Weekly
37
+ 16
38
+ an adult day care center
39
+ the white house
40
+ migrants and refugees
41
+ serbia-croatia
42
+ lauren hill
43
+ st. louis county pd
44
+ expression of regret
45
+ not being able to do something
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
+ her girls
62
+ chris rock
63
+ the oscars
64
+ burt Lauten
65
+ steelers
66
+ put her face on a shirt
67
+ paul walker and mary j. blige
68
+ he died
69
+ talent
70
+ it was a tragic one.
71
+ he was a beautiful person.
72
+ if they know people are praying every day
73
+ that they make the right choices in their stressful jobs
74
+ a sandwich
75
+ a broomstick
76
+ megyn kelly
77
+ @italy2320
78
+ robert rees
79
+ actor, dear friend and colleague
80
+ it will happen here
81
+ the internet
82
+ kkk jokes
83
+ khloe kardashian
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
+ it is disgusting
93
+ ny times
94
+ #askacop
95
+ 2 hands
96
+ potus
97
+ led and served our country
98
+ she is trending
99
+ eric the actor
100
+ eric the actor
101
+ the democrats
102
+ that so many obama democrats voted for him
103
+ years
104
+ michigan, ohio, penn and a second term
105
+ the daily show
106
+ UEFA
107
+ group b
108
+ 6:20 pm
109
+ group b
110
+ another Spider-Man movie reboot
111
+ amber leeann secrest and josh peck
112
+ josh peck got married
113
+ philly
114
+ 1,000
115
+ jacob lescenskii
116
+ he is a fan of jacob lescenskii.
117
+ beyonce
118
+ beyonce's slurpee up
119
+ 0
120
+ 90 percent
121
+ fighting in mosul
122
+ kurdistan
123
+ haradh hospital
124
+ 15
125
+ every moment I exist is agony
126
+ katy
127
+ her son
128
+ presents
129
+ presents
130
+ new owners and a new management team
131
+ here
132
+ caterham
133
+ he is questioning himself about himself.
134
+ john Heilemann
135
+ yvette d. Clarke
136
+ @repjohnlewis
137
+ potus
138
+ for statement on north korea nukes
139
+ spend less time voting
140
+ to spend less time voting
141
+ they said what so many of us want to say
142
+ the khan's
143
+ presidential bling
144
+ 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 more
156
+ wilmariel and jason
157
+ orlando
158
+ the family
159
+ r.i.p.
160
+ proper eyewear
161
+ the solar eclipse
162
+ make it rich again
163
+ inauguration
164
+ cleveland
165
+ tara the hero cat and family
166
+ BOGO offer
167
+ lebron james
168
+ colombia game
169
+ 2018
170
+ democrats
171
+ a muslim
172
+ in mosques
173
+ anyone
174
+ this for perspective
175
+ 3 feet
176
+ the fcc
177
+ a loss
178
+ senzo meyiwa
179
+ jamesgunn
180
+ guardians of the galaxy
181
+ the city
182
+ donald trump
183
+ and then what?
184
+ good
185
+ iowa
186
+ winter
187
+ miss cleo
188
+ my mom
189
+ domino
190
+ deadpool
191
+ a toy story
192
+ a toy story
193
+ michelle obama
194
+ to get a diplomatic resolution
195
+ sanctions
196
+ beyonce
197
+ solar
198
+ climate action
199
+ COP22
200
+ paris agreement and climate action
201
+ iraqi command
202
+ work to reclaim their territory from iSIL.
203
+ kanye
204
+ kanye and staff
205
+ super bowl
206
+ beyonce falls on beat
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
+ emmys
218
+ nytimes critic
219
+ shonda rhimes
220
+ it's a tweet
221
+ charlotte
222
+ a flower
223
+ because he really do feel that we are all one
224
+ ijesse williams
225
+ @jonathanbennett
226
+ all of you
227
+ tomorrow morning
228
+ being honored in the kenny center
229
+ the pioniers
230
+ 2015
231
+ boston
232
+ hillary clinton
233
+ philly
234
+ david burtka
235
+ italy
236
+ getting married
237
+ italy
238
+ reds to braves
239
+ $14m
240
+ arkansas
241
+ august 4, 2014
242
+ 4
243
+ the real camelot
244
+ obama
245
+ she's a fan of cmoore.
246
+ youtube
247
+ night
248
+ crickets
249
+ democrat congresswoman
250
+ zachary hammond
251
+ in the light
252
+ having the opportunity to meet him
253
+ gordie howe
254
+ peas in guac
255
+ the nyt
256
+ her country
257
+ bed
258
+ this morning
259
+ bexley rd
260
+ uk
261
+ mcdonald's uk
262
+ uk
263
+ 7:21 pm
264
+ the secret menu at mcdonald's
265
+ the secret menu
266
+ mcdonald's had a secret menu.
267
+ the culture
268
+ tucker carlson and steve hiltonx
269
+ blue
270
+ nicoles pag
271
+ true blood
272
+ museum modern art
273
+ big bird and baby bear
274
+ mayor mark
275
+ her face
276
+ gwen stefani
277
+ lesean mccoy
278
+ restaurant receipt
279
+ fidel Castro
280
+ at 3 minutes to midnight
281
+ executive director and publisher of the bulletin
282
+ 20 week abortion bans
283
+ unpopular and unconstitutional
284
+ kept it
285
+ divine right to live
286
+ justin kirkland
287
+ dolores
288
+ cheese dust
289
+ michelle obama
290
+ comparing and reminding are the same
291
+ oranges
292
+ pistons
293
+ reggie jackson
294
+ millions march
295
+ union square
296
+ be silenced
297
+ to take nisa home to palembang
298
+ home to palembang
299
+ creeped out
300
+ faceID
301
+ atlanta
302
+ errol cnn and google africa
303
+ atlanta
304
+ a stair master in hell
305
+ hell
306
+ a stair master
307
+ backup qbs
308
+ ap nfl patriots
309
+ black protester
310
+ 4
311
+ parents
312
+ many years
313
+ a significant milestone
314
+ the bEAM program
315
+ andre iguodala
316
+ kurt helin
317
+ facebook and twitter
318
+ russell crowe
319
+ prime minister nawaz sharif
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
333
+ loading this beast
334
+ emma watson
335
+ marchers
336
+ scared
337
+ tweet does not exist
338
+ tweet does not exist
339
+ natural gas
340
+ if we could see natural gas leaks
341
+ an elephant
342
+ me
343
+ a nap
344
+ a pillow and blanket
345
+ julia louis-dreyfus
346
+ julia louis-dreyfus
347
+ he witnessed the most unimaginable event tonight.
348
+ everyone
349
+ bloody republican lefties
350
+ on their money
351
+ eng
352
+ his organization
353
+ league apology
354
+ ballon d'or
355
+ two
356
+ syria
357
+ syria
358
+ rest in peace
359
+ porto alegre
360
+ they were in a full house.
361
+ slanderous
362
+ pOWs
363
+ kobani
364
+ beseiged fortress
365
+ cops
366
+ luck
367
+ luck
368
+ cops
369
+ nazis
370
+ swastika
371
+ uninvited guests
372
+ restaurants there to serve us
373
+ dr pepper
374
+ for u right now
375
+ coke
376
+ immigrants
377
+ sitting with her family
378
+ month year decade century
379
+ ur show
380
+ was too busy pulling out pages on evolution in my kids' biology textbooks
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 romney
387
+ one
388
+ romney
389
+ romney
390
+ romney
391
+ romney
392
+ something back
393
+ luis Figo
394
+ tony awards
395
+ patti luPone
396
+ mourning
397
+ that we welcome the best and brightest in the world
398
+ the president
399
+ prince
400
+ prince
401
+ the patriots
402
+ the nfl
403
+ rachel nichols
404
+ an apology
405
+ wind gusts
406
+ kenting
407
+ israel
408
+ ivanka trump and israel
409
+ the wall
410
+ continue working on outstanding issues
411
+ thanksgiving
412
+ a father
413
+ two
414
+ start his holiday
415
+ a certain cat is out of a certain bag
416
+ very happy
417
+ andrew garfield
418
+ Asian
419
+ a warm wind
420
+ 42 degrees celsius
421
+ yorktown
422
+ hamilton
423
+ daniel granger and josh mcroberts
424
+ lebron james
425
+ google glass is being retooled.
426
+ it's a transparent glass.
427
+ cesare prandelli
428
+ american horror story
429
+ kill me
430
+ trying to kill him
431
+ lfc
432
+ saturday
433
+ anfield
434
+ lfc
435
+ saturday
436
+ shoreham
437
+ shoreham
438
+ liberty island
439
+ civilians
440
+ solange
441
+ upload the audio
442
+ fergie's
443
+ milif money
444
+ john glenn and annie
445
+ john glenn
446
+ ariannahuff
447
+ because she is a dog
448
+ there's been tremendous pressure within Durant's inner-circle
449
+ make dramatic move, to ride endorsement wave of change
450
+ it is being accused of deleting its own tweets promoting an ad.
451
+ shameful
452
+ tweets promoting an ad
453
+ tHC
454
+ 2.71 inches
455
+ almost 3 inches
456
+ as soon as tuesday
457
+ vegas
458
+ 2 hours
459
+ Trafalgar Square bookstore
460
+ mars
461
+ a man with no legs
462
+ legs
463
+ pac
464
+ she loves him
465
+ he came out as gay.
466
+ lukas Podolski
467
+ mlb
468
+ too soon
469
+ the mlb
470
+ he has a tattoo.
471
+ the trailer
472
+ a big screen
473
+ $125
474
+ their family's initials
475
+ a veterinarian
476
+ germany
477
+ barf bag
478
+ kim kardashian
479
+ the og crew
480
+ some
481
+ in honor of leonard nimoy
482
+ generations of scientists and engineers
483
+ his first nhl contract
484
+ the flapanthers
485
+ one's heart
486
+ mixed
487
+ it's hot.
488
+ snow
489
+ evacuated passengers
490
+ travelers beach hotel
491
+ travelers beach hotel
492
+ the evacuated passengers
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 money
501
+ us embassy in france
502
+ je suis charlie
503
+ cpd
504
+ 970
505
+ hillary clinton's gold and white logo
506
+ april 12, 2015
507
+ mtv
508
+ 2015
509
+ mtv
510
+ you never monkey with 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 died
520
+ @sonypictures
521
+ steve israel
522
+ a new type enter a us fleet
523
+ the 787
524
+ bachelor finale
525
+ bachelor finale
526
+ amazon and icloud
527
+ fans
528
+ beyonce
529
+ twins
530
+ 20
531
+ the notorious b.i.g.
532
+ always
533
+ she's still gonna be pretty private
534
+ democrats
535
+ shutdown
536
+ at a time we need it most
537
+ day
538
+ #homesweethome
539
+ bullying
540
+ laverne cox
541
+ jeff flake
542
+ stan freberg
543
+ stan freberg
544
+ 269
545
+ fc barcelona
546
+ kris jenner
547
+ kris jenner
548
+ apple
549
+ make the biggest, coolest, sexiest, funnest movie ever
550
+ gwen stefani
551
+ whoever did your face
552
+ they lost contact of mh17.
553
+ over ukraine airspace
554
+ us presidents
555
+ three
556
+ go black and never go back
557
+ dean
558
+ posting extra hard on instagram
559
+ posting extra hard on instagram
560
+ shooting
561
+ charlotte
562
+ oprah
563
+ cars
564
+ they can't afford a day off
565
+ their privilege
566
+ barbie
567
+ buy her daughter a barbie
568
+ @katgraham and @dshippjr
569
+ code
570
+ STEM
571
+ like a king
572
+ justin bieber
573
+ checked the forecast
574
+ ky
575
+ rakim kendrick
576
+ all the people that have inspired him
577
+ the buzzfeed team
578
+ the buzzfeed team
579
+ Buzzfeed
580
+ an amazing November
581
+ delusion
582
+ ted cruz
583
+ passive aggressiveness
584
+ her daughter
585
+ vegas
586
+ dwyane wade
587
+ VFWMane event
588
+ vfmane event
589
+ before
590
+ #VFWManevent
591
+ disappointed
592
+ rickie fowler
593
+ cannot conclude bc you saw a gun at residence
594
+ she saw a gun at residence.
595
+ the tony awards press room
596
+ thanking people
597
+ twice as good
598
+ half as much
599
+ with tears in her eyes
600
+ george
601
+ super bowl
602
+ 47
603
+ acoustic
604
+ lady gaga
605
+ its core mission
606
+ today
607
+ sEC championship game
608
+ jim mcelwain
609
+ washington wizards
610
+ the bulls
611
+ bulls fans
612
+ st louis blues camp
613
+ a st. louis cup
614
+ he passed away.
615
+ jack gcassidy
616
+ to win the arc
617
+ yuichi fukunaga
618
+ yuichi fukunaga
619
+ kuzma
620
+ vote their conscience
621
+ your conscience
622
+ amped up
623
+ a pep talk from the hanson brothers
624
+ the hanson brothers
625
+ johnstown, pa
626
+ tsarnaev
627
+ rolling stone
628
+ nepal
629
+ reach out to those affected
630
+ marcus morris
631
+ aaron gordon
632
+ kaley cuoco
633
+ long ago
634
+ president of ukraine noc
635
+ scenes in kiev
636
+ bringing a son into this world
637
+ about bringing a son into this world
638
+ pink
639
+ hulk
640
+ bill murray's victory
641
+ x's victory
642
+ x
643
+ bill murray
644
+ trump's jock
645
+ mccain's or kasich's socks
646
+ chiraq
647
+ sexualizing and making a comedy out of chicago's gun violence
648
+ leslie jones
649
+ he needs to be arrested and prosecuted
650
+ all of us
651
+ a young man's death
652
+ 40 pounds
653
+ 207
654
+ chris martin
655
+ getting divorced
656
+ insufferable similarities
657
+ 10 minutes
658
+ the Bachelorette Finale
659
+ tuesday
660
+ midnight
661
+ president
662
+ russia
663
+ russia
664
+ #raiseyourpencilforfreedom
665
+ andrew lesnie
666
+ humor and love
667
+ coaches in major college or pro sports
668
+ geno auriemma
669
+ dunkin donuts
670
+ starbucks
671
+ hassan rouhani
672
+ second
673
+ @evalongoria
674
+ a cheese baby
675
+ pregnancy
676
+ ia
677
+ a van
678
+ the heat
679
+ model
680
+ california
681
+ change
682
+ it would benefit the wealthy over the middle-class
683
+ hawaii
684
+ the law will take effect in hawaii.
685
+ by reporting them
686
+ rape
687
+ best designer
688
+ best designer
689
+ 4-3-3
690
+ 4-3-3
691
+ j klinsmann
692
+ j klinsmann
693
+ his district
694
+ john lewis
695
+ mike munchak
696
+ 5 hours
697
+ copper breaks
698
+ grasshoppers and beetles
699
+ justin kirkland
700
+ raven gates
701
+ subway rides to bowling alley
702
+ ebola patient's footseps
703
+ ideologies 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
+ the prince of wales
712
+ william and harry
713
+ police "don't ask if you're black or white. They just come to save you"
714
+ they came to save you.
715
+ himself and obama
716
+ racial animus
717
+ it was a squawk.
718
+ ethiopian airlines flight 702
719
+ a legend
720
+ ron howard
721
+ luis garcia abad
722
+ lunch time
723
+ the skin of the person who killed me
724
+ under my fingernails
725
+ crying
726
+ tear gas and water canons
727
+ nazem kadri
728
+ cross-check
729
+ hungarian
730
+ tom and jerry
731
+ charlottesville
732
+ unite the country
733
+ good sex
734
+ she was sorry
735
+ everything works out in the end
736
+ pittsburg
737
+ new york s Slough
738
+ goalless
739
+ fc bayern
740
+ on the phone
741
+ july
742
+ not
743
+ dACA
744
+ wall
745
+ hov has been pregnant with beyonce.
746
+ sweetie
747
+ movie going experience
748
+ amc
749
+ as much as poss.
750
+ meaningful things
751
+ emotional
752
+ raising them
753
+ hectoring and yelling
754
+ syrian envoy to the unsc
755
+ fallujah, iraq
756
+ iraqi pmu
757
+ fallujah, iraq
758
+ ibekwe
759
+ in a movie
760
+ paid
761
+ paid maternity leave
762
+ mama june
763
+ introducing the new me
764
+ raise your hand
765
+ academia
766
+ i do
767
+ the sands hotel in vegas
768
+ they could use a little more compassion.
769
+ 3 republicans and 48 democrats
770
+ joe biden
771
+ paul ryan's
772
+ adidas
773
+ #photooftheday
774
+ 1.5m
775
+ obese
776
+ addicts to drugs and alcohol
777
+ the Beatles
778
+ the premiere
779
+ the intro
780
+ janet mock
781
+ grace lee whitney
782
+ grace lee 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
+ new york rangers
794
+ tbay on st louis
795
+ a gym
796
+ motion
797
+ senator john mccain
798
+ senator john mccain
799
+ @gabyamarantos @tottustu
800
+ @gabyamarantos and @tottustu
801
+ ciara
802
+ baby future
803
+ loss of life
804
+ attack this morning on @un in #garowe.
805
+ zordon
806
+ power rangers
807
+ justin
808
+ for his and many others safety
809
+ nigerians and people around the world
810
+ #bringbackourgirls
811
+ tweeting
812
+ tweets
813
+ fake news
814
+ assad
815
+ great
816
+ in a beautiful picture
817
+ mohammed bin zayed
818
+ ministers
819
+ with a spirit of change and progress
820
+ the new ministers
821
+ lakers
822
+ 2018 free agency
823
+ la
824
+ basketball
825
+ pacers and clippers
826
+ lorde
827
+ snl
828
+ an awesome compliment
829
+ alan rickman
830
+ funny and engaging
831
+ dana harper
832
+ season 11
833
+ greg schiano
834
+ 3
835
+ death row records
836
+ beats by dre
837
+ beats by dre
838
+ michael jackson
839
+ idris
840
+ this is where the trump budget belongs.
841
+ the house of representatives
842
+ 66-57
843
+ flint
844
+ political statements and finger pointing from political candidates
845
+ long shirts
846
+ find her
847
+ mama
848
+ tapping
849
+ tapping
850
+ aaron schwarzenegger
851
+ swamped
852
+ 6 months
853
+ legalize dACA
854
+ beyonce
855
+ usc
856
+ black
857
+ american
858
+ how to sit like a lady
859
+ miss america
860
+ south Korean president moon jae-in
861
+ #pyeongchang2018
862
+ emma
863
+ bring a flask to the emma
864
+ sad
865
+ exclamation points
866
+ strongly
867
+ twitter
868
+ in heaven
869
+ little james dickens
870
+ picking and grinnin
871
+ in heaven
872
+ unqualified
873
+ coal country
874
+ oliver sacks
875
+ beautiful minerals
876
+ bearcam
877
+ bearcam
878
+ exploreorg
879
+ music
880
+ the voice
881
+ cavs
882
+ hidden fences
883
+ hidden fences
884
+ fort made public affairs
885
+ donald trump
886
+ confidence
887
+ sorry beliebers and onedirectionallday
888
+ van gaal
889
+ united
890
+ arsene wenger
891
+ this summer
892
+ VOTER FRAUD
893
+ VOTER FRAUD
894
+ incredible progress
895
+ nbcsnl
896
+ google maps
897
+ pacman
898
+ cnn
899
+ who is or was your bestie on tour
900
+ her/him
901
+ 5 minutes
902
+ soccer
903
+ soccer
904
+ 5 minutes
905
+ ed sheeran
906
+ game of thrones
907
+ the shark
908
+ ed sheeran
909
+ hats
910
+ pharrell's hat
911
+ alex gavan
912
+ victims
913
+ he was golden.
914
+ rippaulwalker
915
+ being so effortlessly golden
916
+ effortlessly golden
917
+ rippaul walker
918
+ golden
919
+ florida gators
920
+ niece and nephew
921
+ measured and inclusive
922
+ michael chertoff
923
+ measured and inclusive
924
+ michael chertoff
925
+ 2:30am edt
926
+ jfk
927
+ every article I've read
928
+ 8:45 pm
929
+ being shocked he won
930
+ every article he's read about it said it was surprising.
931
+ a hundred and fifty people liked it.
932
+ under a boulder
933
+ philae
934
+ chris bennington's passing
935
+ chester bennington
936
+ cousins
937
+ 4 boys, cousins ages ranging from 9 to 11, killed in israeli strike
938
+ aza beach
939
+ she loves the pictures
940
+ si_ swimsuit
941
+ messian
942
+ messian
943
+ an interview and a major photo shoot
944
+ chapter 2
945
+ bruce jenner
946
+ luis Figo
947
+ fifa president
948
+ joseph fiennes
949
+ justin bieber
950
+ selena gomez
951
+ lavar ball
952
+ charles barkley
953
+ religion
954
+ @yayatoure
955
+ eric garner died
956
+ selling cigs by the single
957
+ rsd julienblanc
958
+ julienblanc
959
+ scenes out of the book
960
+ 50 shades
961
+ earthquake
962
+ october 30th
963
+ rockefeller center is pacworld.
964
+ pacman
965
+ on the highway
966
+ the hwy btwn Bonnieville and etown
967
+ he started to run for potus.
968
+ cruz
969
+ section 5 public order act
970
+ Brighton magistrates court
971
+ colin Kazim-Richards
972
+ section 5 public order act
973
+ #Marcherepublicaine #jesuischarlie #jesuisfrancaise
974
+ marche republicaine
975
+ houston
976
+ $500,000
977
+ the brain
978
+ human rights issues
979
+ p!nk's face during christina aguilera's whitney houston tribute
980
+ christina aguilera
981
+ will smith
982
+ new orleans
983
+ pesky products on high shelves
984
+ bouncy isles
985
+ superior ct 121 elm st.
986
+ for removing pane of slaves picking cotton
987
+ germany and ghana
988
+ rand paul
989
+ for the good of the party
990
+ tens of thousands of people.
991
+ 2022
992
+ 2022
993
+ late-november/late-december
994
+ late-november/late-december
995
+ 2022
996
+ 97
997
+ "you don't drink do you?"
998
+ the cops
999
+ the cops
1000
+ fabricating
1001
+ his humor, his talent, and his capacity to love
1002
+ a brother
1003
+ listens to the concerns of the people
1004
+ the annulment process
1005
+ francis
1006
+ made his own
1007
+ it's okay
1008
+ in a bowling alley
1009
+ what angle she is taking
1010
+ mel tillis
1011
+ good luck with this guys
1012
+ cantor
1013
+ the knicks
1014
+ center
1015
+ germany
1016
+ underpants
1017
+ iggy's hair looks like a blonde.
1018
+ university of washington
1019
+ anakocovic
1020
+ people
1021
+ weather
1022
+ they are throwing a pizza party.
1023
+ anti-racist with humour
1024
+ Mario
1025
+ ethnic and religious
1026
+ true detective is a tv show.
1027
+ she had an abortion.
1028
+ being openly heterosexual
1029
+ matt damon
1030
+ pence
1031
+ it isn't actually feasible
1032
+ pin
1033
+ james franklin
1034
+ making a mistake
1035
+ he thinks it's classy.
1036
+ #RupertsFault
1037
+ christian
1038
+ 10pm
1039
+ fake news
1040
+ press the wrong button
1041
+ man
1042
+ january 15, 2015
1043
+ mike porcaro
1044
+ it's OK
1045
+ power
1046
+ meryl
1047
+ take her seat
1048
+ anyone's spouse or kids
1049
+ ted cruz
1050
+ it's not acceptable to attack anyone's spouse or anyone's kids
1051
+ since 2007
1052
+ letterman
1053
+ the dial
1054
+ take over
1055
+ the twizzler challenge
1056
+ 2 black holes merging into 1
1057
+ a cybersec challenge took place.
1058
+ orange
1059
+ white supremacists
1060
+ the president
1061
+ before they die
1062
+ ass reporters
1063
+ memes
1064
+ lady gaga's oscars look
1065
+ my children
1066
+ venomous and vicious
1067
+ fia16
1068
+ a380
1069
+ do exactly what they say
1070
+ terrorists
1071
+ irefox
1072
+ the finale
1073
+ stay safe and warm
1074
+ tomorrow
1075
+ everybody
1076
+ he would have to consciously think of it.
1077
+ mcilroyrory Rory
1078
+ mcconnell
1079
+ 7yrs
1080
+ @cindymannings
1081
+ Rahman suspects
1082
+ facebook
1083
+ facebook down
1084
+ a healthcare plan
1085
+ a great healthcare plan
1086
+ worry
1087
+ the toffs
1088
+ transparency
1089
+ there is not a tweet here
1090
+ nypd
1091
+ officer brian moore
1092
+ nearly 200
1093
+ act on climate
1094
+ leonard
1095
+ millions
1096
+ lebron james
1097
+ chris broussard
1098
+ english and spanish
1099
+ sophie cruz
1100
+ a dog
1101
+ betty willis
1102
+ las vegas' visual fabric
1103
+ promoting
1104
+ media attention
1105
+ jessica lange
1106
+ caitlyn jenner
1107
+ across the globe
1108
+ laughter
1109
+ get out and vote
1110
+ he learned that jon ossoff doesn't even live in the district.
1111
+ facebook
1112
+ #facebookdown
1113
+ sorority
1114
+ she is amazed at how affordable it is.
1115
+ ted cruz
1116
+ donald trump
1117
+ worrying about the controllers strike
1118
+ the airport
1119
+ netanyahu's
1120
+ for his speech to congress
1121
+ they started baking.
1122
+ grilled vegetables.
1123
+ they are baking bread.
1124
+ saturday
1125
+ nine matches
1126
+ four months
1127
+ beta awards
1128
+ during the jay z and beyonce clip
1129
+ pakistan
1130
+ navy SEALS
1131
+ 15 years
1132
+ the united states
1133
+ kellan lutz and anna kendrick
1134
+ ship them
1135
+ sam Tageson
1136
+ what you have
1137
+ his loved ones
1138
+ messages of support, love and encouragement
1139
+ justin kroll
1140
+ spielberg
1141
+ a partisan
1142
+ a grand slam
1143
+ nfl
1144
+ how to get away with murder
1145
+ dallas
1146
+ obama
1147
+ katie holmes' golden pants
1148
+ katie holmes
1149
+ Corey menafee
1150
+ Corey menafee
1151
+ the us chamber
1152
+ better and stronger trade deals
1153
+ flint
1154
+ flint
1155
+ january
1156
+ a shark
1157
+ the bachelor producers
1158
+ dem
1159
+ a jackass
1160
+ my rapist
1161
+ hollywood/media
1162
+ tomi lahren
1163
+ obamacare
1164
+ a woman
1165
+ female
1166
+ why we have cup holders in movie theater seats
1167
+ movie theater and airplane
1168
+ impeachment of donald trump
1169
+ plays racist calls
1170
+ Murray
1171
+ dimitrov
1172
+ paul walker fdn
1173
+ paul walker fdn
1174
+ ebola
1175
+ wilson bsl4 lab
1176
+ kampala serena
1177
+ it is solar.
1178
+ khayoola serena
1179
+ @patsajak
1180
+ the wheel of fortune
1181
+ another plane
1182
+ vanished
1183
+ it's crazy.
1184
+ people
1185
+ a hard but liberating day
1186
+ watch the evening news
1187
+ south africa
1188
+ every praise
1189
+ michael brown
1190
+ movement house
1191
+ farmers
1192
+ plowing up dirt
1193
+ not to eat them.
1194
+ kim kardashian pierced her daughters ears
1195
+ kim kardashian
1196
+ justin bieber
1197
+ myspace
1198
+ margot
1199
+ @hitchbot is doing this.
1200
+ the national weather service map
1201
+ serving something more important than himself
1202
+ john mccain
1203
+ a bit player in the story of america
eval/samples.validation.hyp.paragraph_question.answer.lmqg_qg_tweetqa.default.txt ADDED
@@ -0,0 +1,1086 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ megyn kelly
2
+ her hidden agenda
3
+ a lot of people
4
+ coachella
5
+ a very good role model
6
+ very good
7
+ natalie portman
8
+ saturday night live
9
+ himself
10
+ trump's
11
+ full of spice
12
+ in the shower
13
+ saturday night live
14
+ 3-years
15
+ who he is
16
+ trump
17
+ news for kanye west
18
+ freedom
19
+ 5 years
20
+ the bachelor
21
+ nets
22
+ we win
23
+ thoughtful, committed
24
+ small
25
+ to love
26
+ hate
27
+ ryan
28
+ jazz
29
+ "stay in your seat, kanye"
30
+ revisiting watson's world in 2015
31
+ dad
32
+ his first Celtics jersey
33
+ the children
34
+ heteronormative
35
+ barack obama
36
+ obama day
37
+ the candle
38
+ a peach candle
39
+ neil portnow
40
+ women
41
+ abuse of power
42
+ baton rouge
43
+ black panther
44
+ memorable
45
+ 'hidden figures'
46
+ michael keaton
47
+ $1
48
+ smosh
49
+ spidermable
50
+ black cat
51
+ nate
52
+ 14
53
+ elton john's words appear sarcastic.
54
+ sunset strip
55
+ keegan allen won't tell his mom
56
+ verizon
57
+ boston
58
+ martin luther king
59
+ it's a play about a child.
60
+ excited
61
+ two
62
+ bodega
63
+ a no-move clause
64
+ three
65
+ magazine
66
+ his shirt
67
+ election
68
+ apology
69
+ zero
70
+ cnn
71
+ pizza
72
+ classy move
73
+ classy move
74
+ panel
75
+ every poll of the debate
76
+ jacoby ellsbury
77
+ 1st
78
+ michelle obama
79
+ women in film
80
+ mr drew scott
81
+ vote
82
+ simone biles
83
+ bar routine
84
+ alessiacara
85
+ crowd
86
+ @dove
87
+ #outofthisworld
88
+ #outofthisworld
89
+ egypt
90
+ abuse
91
+ a copy
92
+ donald trump
93
+ lisa kudrow
94
+ smelly cat
95
+ it takes a village
96
+ 2018
97
+ the Arena
98
+ in vancouver
99
+ what akers saw in the sky.
100
+ akers reaction
101
+ 61 years
102
+ europe
103
+ the word.
104
+ in the movie
105
+ david levitz
106
+ stick together
107
+ @ellingyelling
108
+ stunts
109
+ until we are old enough
110
+ mayor mark
111
+ white house
112
+ @nscpress
113
+ more than 6,000
114
+ black
115
+ chicago
116
+ hispanics
117
+ 2
118
+ 2 b
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 provided nationally to our police force
124
+ police force
125
+ @usatopinion @usatoday
126
+ he wasn't surprised
127
+ cellphones
128
+ patrols
129
+ chrisrock
130
+ chrisrock
131
+ iroquois high school
132
+ grace aroune
133
+ discovery
134
+ kevloria
135
+ chris hemsworth
136
+ a sweet viennese waltz
137
+ the golden ticket
138
+ james comey
139
+ the press
140
+ serena williams
141
+ to see you
142
+ kerry washington
143
+ RED
144
+ a jury
145
+ he was murdered.
146
+ MAN OF STEEL
147
+ a prequel
148
+ paul george
149
+ tmobile
150
+ golden globes
151
+ Cathy lanier
152
+ 10 years
153
+ paris
154
+ u2
155
+ buckingham palace
156
+ royal air force
157
+ the fbi
158
+ amazing
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
+ worse
167
+ the media
168
+ dc comics
169
+ they've been out for 12 months.
170
+ anthony mackie
171
+ a bright, brilliant talent und
172
+ he died
173
+ nton yelchin
174
+ charlie bartlett and house of d
175
+ 10,000
176
+ buffalo sabres
177
+ president
178
+ 1000s
179
+ his home rink
180
+ top selling car
181
+ apple
182
+ the dunkirk
183
+ are u going to die in the dunkirk?
184
+ @sengillibrand
185
+ sen gillibrand
186
+ a sad story
187
+ arie
188
+ 17 hours
189
+ power
190
+ oprah
191
+ juggle it all with two hands
192
+ 7
193
+ mayor of london
194
+ wmu football
195
+ bb
196
+ a thousand notes
197
+ breaking bad and the fire
198
+ 2008-13
199
+ the mcnugga
200
+ mcnugga
201
+ five
202
+ coldplay
203
+ a secret
204
+ getting better and better
205
+ 32 miles
206
+ helicopter pilot
207
+ best day of our lives
208
+ their kind words
209
+ purple
210
+ katie gosselin
211
+ rock the casbah
212
+ bill murray
213
+ impassioned
214
+ players at the texans
215
+ billboard
216
+ break free
217
+ everybody must vote
218
+ alabama
219
+ build the wall
220
+ summer
221
+ wonder-babe zendaya
222
+ mrs. michael
223
+ pink ring
224
+ more shootings and more death
225
+ they want them to stop.
226
+ swiss army man
227
+ switzerland
228
+ thinkpieces
229
+ fryre festival
230
+ gov. jay nixon
231
+ to visit north stl county
232
+ steve bannon
233
+ darkening Zoe Saldana's skin
234
+ zoe saldana
235
+ gold
236
+ charlie coyle
237
+ charlie coyle
238
+ during the 1st intermission
239
+ the new addition to thePEEPS
240
+ donald trump
241
+ pizza rat
242
+ bylsma
243
+ malkin and crosby
244
+ when does beyonce get here?
245
+ lagalaxy
246
+ lagalaxy
247
+ dershowitz
248
+ cassell
249
+ he is living his best Super Bowl EVER
250
+ dancing
251
+ martin luther king jr
252
+ darkness
253
+ planned Parenthood and ocare
254
+ in d.c.
255
+ 4th of july
256
+ taylor swift
257
+ muslim
258
+ trump supporters
259
+ sam bee
260
+ conan obrien
261
+ bb-8
262
+ starwars cast
263
+ obamas
264
+ the nicest family on earth
265
+ trying to undermine democracies
266
+ s Sherlock Holmes
267
+ doris roberts
268
+ death
269
+ london
270
+ no frauds
271
+ lebron
272
+ Carlton
273
+ hotline bling
274
+ 657
275
+ with "k."
276
+ westgate
277
+ westgate
278
+ the duchess of cambridge
279
+ love it
280
+ ed sheeran
281
+ the riverlands
282
+ ed sheeran
283
+ game of thrones
284
+ anxiety
285
+ she is trying to come to terms with it and her faith.
286
+ 1903
287
+ 1883
288
+ isaac h_wright
289
+ isaac h_wright
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
+ midfield
300
+ sen rand paul
301
+ 4/25
302
+ two
303
+ sharks
304
+ the national anthem
305
+ houston
306
+ excitement
307
+ in bio
308
+ y'all
309
+ corinne foxx
310
+ miss golden globes 2016
311
+ a meme
312
+ driving students around for surewalk
313
+ around
314
+ michael phelps
315
+ kdtrey5 and deandre jordan6
316
+ james harden
317
+ the browns win or the end of the season
318
+ for clarification
319
+ nail polish
320
+ the shoe
321
+ they are wrapped in a circle of paranoia.
322
+ former ice cream store, now a cafe
323
+ local
324
+ rogers
325
+ pat Quinn Way & Griffiths Way
326
+ tick "white british"
327
+ when applying for a job
328
+ ciara and russ
329
+ kids
330
+ the 15th
331
+ 174 yards
332
+ god morning rupaul's drag race
333
+ gaga
334
+ floored
335
+ flats
336
+ gal gadot
337
+ martin
338
+ goals
339
+ jsyk
340
+ 1032am
341
+ obama
342
+ how good they had it
343
+ michael eRUZIONE
344
+ gordon hayward
345
+ l.a.
346
+ @preacherlawson
347
+ tyrabanks
348
+ @gregcosell and @gregcosell
349
+ football
350
+ sacramento
351
+ the radio station
352
+ drama
353
+ justin party
354
+ he is risen
355
+ a candy egg delivering plushy bunny
356
+ tuesday
357
+ undercover robots
358
+ he has a daughter.
359
+ liam payne
360
+ artists
361
+ hate speech
362
+ king hall
363
+ van canucks
364
+ pat Quinn
365
+ mlk
366
+ mlk day
367
+ hard times in my life
368
+ tn
369
+ the Maks
370
+ maksim
371
+ section 104
372
+ hemsworth
373
+ ruffalo
374
+ he is an auctioneer at hilarity for charity.
375
+ halloween
376
+ harden
377
+ two
378
+ gal gadot
379
+ @chrishemsworth
380
+ nick kroll and stephen at home
381
+ david letterman
382
+ fred armisen
383
+ difficult people
384
+ 160 characters
385
+ over 200
386
+ @jimmykimmel
387
+ for the effort
388
+ grace van der Waal
389
+ made her famous
390
+ mr. alcohol
391
+ emilia Clarke
392
+ eyes
393
+ a dream
394
+ police man
395
+ right now
396
+ hurricane harvey
397
+ mike nichols
398
+ comedy albums
399
+ two scarves and a jacket
400
+ june
401
+ shia labeouf
402
+ how they can be manipulated and orchestrated
403
+ louise
404
+ hopeful
405
+ kermit the frog
406
+ a song to release on christmas
407
+ violence
408
+ the short skirt
409
+ christine teigen
410
+ it is a song by kim kardashian
411
+ dolores oriordan
412
+ island records and a love for music
413
+ dylan
414
+ rumors
415
+ paul mccartney
416
+ a career
417
+ contempt
418
+ billionaire class
419
+ donald glover
420
+ han solo
421
+ ed sheeran
422
+ ask sheev
423
+ the olympics
424
+ the olympics
425
+ in nola
426
+ joel Embiid
427
+ the covfefe of strangers
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
+ sport
442
+ george r.r. martin
443
+ a heart attack
444
+ larry
445
+ make this about larreh
446
+ trump
447
+ mr burns
448
+ megyn kelly
449
+ lightweight reporter
450
+ to speak in vague but bombastic generalities
451
+ vague but bombastic
452
+ patrick arquette
453
+ half
454
+ ceelo
455
+ an mk purse
456
+ sdcc 2
457
+ starwars
458
+ eagles fans
459
+ over 80
460
+ everything they could grab from ivy park
461
+ ivy park
462
+ Logic301@thegreatkhalid and @alessiacara
463
+ blakelively
464
+ wish she looked like @blakelively
465
+ christine teigen
466
+ 150
467
+ henry cavall's mustache
468
+ henry camill
469
+ trevor story
470
+ the rockies
471
+ donna the elephant
472
+ nervous
473
+ luke donald
474
+ wine
475
+ she feels she can't f'ing wait
476
+ writing raps
477
+ la
478
+ john will film his reaction.
479
+ an airport
480
+ listen to beyonce
481
+ larry
482
+ harry
483
+ tweet did not show
484
+ tweet did not show
485
+ punch Chandler
486
+ @matthewperry
487
+ a year and a half
488
+ making a 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 execs
498
+ screaming at each other
499
+ luke skywalker
500
+ the character work
501
+ 1997
502
+ HIV/AIDS
503
+ nhl management
504
+ 'st. tom','santa Claus' and 'cheese Pasta'
505
+ custom-painted aircraft
506
+ Disney's frozen
507
+ do ya think i'm sexy
508
+ @republicrecords
509
+ @fxnleisure
510
+ @fxnleisure
511
+ donald trump
512
+ 2
513
+ istanbul
514
+ turkey and greece
515
+ sanders
516
+ 94 crime bill
517
+ halftime show
518
+ lady gaga
519
+ south Carolina, south Dakota and utah
520
+ idaho
521
+ marie mcfly
522
+ all-female
523
+ alice oswalt
524
+ in the universe
525
+ timberlake
526
+ country
527
+ hbo is done with the nhl
528
+ 24/7 Series
529
+ in a wheelchair
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
+ he will play on the trip.
542
+ joss whedon
543
+ batgirl
544
+ bryzgalov
545
+ nhll star
546
+ the words
547
+ their future VPOTUS
548
+ john legend
549
+ because of john legend.
550
+ ariana
551
+ gay men
552
+ we haven't used aim in years
553
+ amanda berry
554
+ cleveland
555
+ ann coulter
556
+ delta
557
+ johnny depp's
558
+ an outfit he found in Johnny Depp's goodwill donation bag
559
+ kellyanne conway
560
+ the warriors
561
+ james buss
562
+ kobe Bryant
563
+ john williams
564
+ come swim
565
+ kristen stewart
566
+ mdsg
567
+ lacey holsworth and her family
568
+ cavs
569
+ lebron james
570
+ lebron james
571
+ lebron james and michael jordan
572
+ lebron
573
+ sad
574
+ to spend more time with his pets
575
+ left wing
576
+ culture of violence
577
+ beyonce
578
+ lemonade
579
+ leslie jones
580
+ 2 weeks
581
+ introduce you to harry, Ginny and albus
582
+ harry, Ginny and albus potter
583
+ houston and brown
584
+ tom hiddleston
585
+ seven minutes
586
+ the penguins locker room
587
+ live look in
588
+ mouths
589
+ prayers and hymns
590
+ hanzal
591
+ boedker
592
+ louis
593
+ katie bentuan
594
+ ming xi
595
+ leslie odom, Jr.
596
+ liberation station
597
+ wiggins
598
+ 106-106
599
+ 106-106
600
+ kemba
601
+ macedonian
602
+ for taking this photo
603
+ madonna
604
+ malia obama
605
+ malia obama
606
+ malkin
607
+ MRI
608
+ facebook
609
+ u.s.
610
+ marc jacobs
611
+ hillary
612
+ mary j blige
613
+ @rianjohnson
614
+ matilda and gyffindor
615
+ gryffindor and ravenclaw
616
+ madbluetooth
617
+ rihanna has a tattoo.
618
+ the harlots
619
+ romphim
620
+ Raven
621
+ donald gets things done
622
+ melania trump
623
+ the canadian anthem
624
+ held the "all lives Matter" card up
625
+ anyone a winner
626
+ you're messing with me
627
+ michael dal colle
628
+ sonny Milano
629
+ trump
630
+ possession of controlled substance
631
+ canada
632
+ $250k
633
+ nashville
634
+ taylor
635
+ white
636
+ because of race
637
+ kukkatori
638
+ kukkatori print
639
+ Residente's verse on immigrants
640
+ his Wrote my way out verse
641
+ david Cassidy
642
+ proud and honored
643
+ maya angelou
644
+ a caged bird
645
+ less than one year old
646
+ slow it down
647
+ sweden
648
+ FoxNews
649
+ gilmore girls
650
+ gilmore girls
651
+ she refuses
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
+ cops
661
+ they harassed him.
662
+ she got beat up
663
+ outside
664
+ say anything negative about curry.
665
+ Shutup and enjoy the show
666
+ golden globes
667
+ black
668
+ abc making arie the next bachelor
669
+ arie
670
+ justin bieber
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 walker
683
+ an accident
684
+ @criticalschoice#deaththreats
685
+ 9460 wilshire blvd
686
+ screenshot this
687
+ the bachelor
688
+ olivia
689
+ steal people's boyfriends
690
+ she ruined it.
691
+ a blister
692
+ kotex
693
+ his family
694
+ he spent yesterday with his family
695
+ casino boat
696
+ 50 people
697
+ troops
698
+ proudly
699
+ her ass is 2 inches.
700
+ kim kardashian's
701
+ lions
702
+ paul, noma and cherrelle
703
+ harry potter play
704
+ hugh jackman
705
+ gap toothed
706
+ escape
707
+ they cut a hole in the wall.
708
+ every word said
709
+ in the pro-am
710
+ tim tebow
711
+ empathy
712
+ everyone
713
+ his PR team
714
+ zayn
715
+ pm trudeau
716
+ canada
717
+ jules
718
+ a friend
719
+ rally4peace
720
+ those who lost loved ones
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
+ colors
734
+ usc Trojans
735
+ rain and storms
736
+ central and eastern
737
+ benetton
738
+ haley
739
+ a kia
740
+ 8 straight
741
+ straight spags
742
+ rihanna fans
743
+ john lewis
744
+ what martin luther king Jr. would have done
745
+ russian officials
746
+ negative
747
+ this is what the truth feels like
748
+ dates and RSVP
749
+ elliegoulding
750
+ 3/15
751
+ justin bieber is here
752
+ justin bieber's set
753
+ this nonsense
754
+ dallas
755
+ kim kardashian
756
+ gq magazine
757
+ purple
758
+ a black panther
759
+ IGGY AZALEA
760
+ enjoying the holiday season
761
+ call me and say "son I miss my husband and children"
762
+ in heaven
763
+ an official statement
764
+ shocked and heartbroken
765
+ show your best office mugshot
766
+ a sweet coffee prize pack
767
+ donald trump
768
+ on a great speech
769
+ alabama
770
+ 20
771
+ beauty and the Beast
772
+ emma watson
773
+ friends
774
+ with a black cast
775
+ malcolm young
776
+ ac/dc
777
+ kane
778
+ he played in the piranhas3dpuck game.
779
+ tom hanks
780
+ 2017
781
+ anne hathaway
782
+ anne hathaway
783
+ women at the march syncing periods
784
+ beat him to it
785
+ rant over
786
+ violence
787
+ jeremy
788
+ 3 pm
789
+ lester and lackey
790
+ lester and lackey
791
+ kentucky
792
+ wallstar
793
+ speeches like this
794
+ an american
795
+ line with chara
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
+ right
810
+ black Panther
811
+ a wealthy nation
812
+ august
813
+ into august
814
+ ronald 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
+ mrs. who
825
+ mrs. who
826
+ colon cancer
827
+ a hundred and fifty-seven.
828
+ warm thoughts and well wishes
829
+ getting back to work
830
+ jsu bus
831
+ nrj awards
832
+ a great time
833
+ to be in the rock hall
834
+ votes, posts, and videos
835
+ kissed.
836
+ a 10
837
+ @money23green
838
+ 3
839
+ disney
840
+ time of beastiliaty
841
+ it
842
+ #endangeredriver
843
+ 3
844
+ 2:19
845
+ your grandmother
846
+ twenty dollars
847
+ the duchess of cambridge
848
+ kensington palace
849
+ the duchess
850
+ flight simulator
851
+ the mayor of san jose
852
+ democrats
853
+ for his resignation
854
+ the nbc
855
+ mike green
856
+ mike green
857
+ emotions
858
+ like you have multiple offers
859
+ regina george
860
+ election day
861
+ colonel sanders
862
+ a timesup rose
863
+ free and open to all
864
+ net neutrality
865
+ grease
866
+ on her scalp
867
+ the area
868
+ black
869
+ president's motorcade
870
+ to be a las vegas girl
871
+ portia and ellen
872
+ ellentube
873
+ run to each other
874
+ the way they run to each other
875
+ hero
876
+ a movie that delivers
877
+ make running up to ppl's homes a thing
878
+ it's dangerous
879
+ a free pair of limited-edition @GeorgeHW Bush socks
880
+ george hw bush
881
+ her id
882
+ the white house
883
+ hamburg
884
+ hurt
885
+ gilmore girls
886
+ given her new life
887
+ russian
888
+ james harbaugh
889
+ the national anthem
890
+ w nj
891
+ this forecast
892
+ black
893
+ work
894
+ dl champlin
895
+ after everything I've done for you
896
+ donald trump
897
+ reprehensible, prejudiced and divisive
898
+ it's the right decision.
899
+ the right coach
900
+ the giant herd of starwars concert attendees
901
+ making their way to show
902
+ hockey
903
+ his gordie howe hat trick
904
+ police
905
+ mjolnir
906
+ steve
907
+ protect their homes.
908
+ the family of seth thomas
909
+ seth thomas
910
+ Gig Harbor
911
+ narrows airport in Gig Harbor
912
+ tina fey
913
+ Felicity jones
914
+ december 7, 2017
915
+ prince of Wales
916
+ @usher, @jimmyfallon, and @hamiltonmusical cast
917
+ nypd hats
918
+ officer more
919
+ tom hiddleston
920
+ red
921
+ gold
922
+ katieledecky
923
+ tsonga
924
+ his first match in the davis cup final.
925
+ greece
926
+ turkish
927
+ hit by a pitch
928
+ birmingham
929
+ birmingham
930
+ hailey baldwin
931
+ v magazine
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
+ the hospital
944
+ ethan
945
+ global
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 grandde
953
+ the uk
954
+ antarctica
955
+ penguin
956
+ a photo of drake
957
+ 3 legs
958
+ oprah
959
+ terling krown
960
+ proud
961
+ the indians
962
+ 22
963
+ don graham's farewell party
964
+ an honor
965
+ donald trump
966
+ donald trump would get very mad about it
967
+ jjwatt
968
+ a gift
969
+ @stephencurry30
970
+ when they grow up
971
+ his neighbor/genius quiara
972
+ sia weaponizes vowels
973
+ breezy
974
+ surewalk
975
+ elizabeth
976
+ the bachelor
977
+ thugs
978
+ white
979
+ jennifer aniston
980
+ with this faith
981
+ mountain of despair
982
+ she gets headache a block from school
983
+ oscar nom
984
+ #mets
985
+ get my #mets tattoo
986
+ knight_mtv
987
+ because of the connection she shared
988
+ a trophy
989
+ saturday
990
+ the light
991
+ the light has sold out.
992
+ chris stapleton
993
+ chris stapleton
994
+ a bill
995
+ martin heinrich
996
+ cattie
997
+ bathroom counter
998
+ oscars
999
+ 1am
1000
+ leaked nudes
1001
+ leaked
1002
+ 17's
1003
+ yogi ferrell
1004
+ the cauldron
1005
+ wayne's world
1006
+ the juggalo march
1007
+ america
1008
+ anti-lgbtq+ presidential ticket
1009
+ they mean nothing
1010
+ lee
1011
+ if he ever thought, "wow, you look familiar."
1012
+ zazie
1013
+ domino
1014
+ the beach
1015
+ aim
1016
+ the app
1017
+ the glory of the Lord
1018
+ all flesh
1019
+ sjp's
1020
+ sarah jennifer Parker and george malkemus
1021
+ kanye
1022
+ dark
1023
+ kyle chandler
1024
+ comey
1025
+ zac efron
1026
+ on the cheek
1027
+ nudes
1028
+ @bettemidler
1029
+ kanye
1030
+ 50 mins
1031
+ slaughter the competition
1032
+ metagala
1033
+ that america is trash
1034
+ 20
1035
+ new isles
1036
+ fast
1037
+ champagne
1038
+ autotune
1039
+ sounds like autotune
1040
+ a free pass to laugh
1041
+ someone's horrible misfortune
1042
+ kissed her
1043
+ 2016
1044
+ security guy
1045
+ lose it
1046
+ they want to brunch
1047
+ the means of production
1048
+ dua lipa
1049
+ the third
1050
+ @thecampaignbook
1051
+ singapore
1052
+ hope
1053
+ someone gives her hope.
1054
+ kim kardashian
1055
+ cashing her 80 million video game check
1056
+ spotify
1057
+ releasing her album
1058
+ benedict cumberbatch and a nice chap who plays tennis
1059
+ plays tennis
1060
+ alarming
1061
+ texted
1062
+ @dunderswiftlin
1063
+ yepls
1064
+ michelle rodriguez
1065
+ matt bomer
1066
+ b marshall
1067
+ it's negative.
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 about things that matter
1078
+ mlk
1079
+ red cross
1080
+ the people
1081
+ restaurant menu print business
1082
+ restaurant menu print business
1083
+ the airwaves
1084
+ write a book or start a podcast
1085
+ young pope
1086
+ night
pytorch_model.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:507ff75c34f5ca9b2a3ab171d05d7c573afdc8dbecfb71a3d48280b1940579cf
3
- size 891614207
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3d9af18f30d344085a0c0eb5fce63dbe9354c80444d241743054f9bc72089d2f
3
+ size 891617855
tokenizer_config.json CHANGED
@@ -104,7 +104,7 @@
104
  "eos_token": "</s>",
105
  "extra_ids": 100,
106
  "model_max_length": 512,
107
- "name_or_path": "lmqg_output/t5-base-tweetqa-question-answering/best_model",
108
  "pad_token": "<pad>",
109
  "special_tokens_map_file": null,
110
  "tokenizer_class": "T5Tokenizer",
 
104
  "eos_token": "</s>",
105
  "extra_ids": 100,
106
  "model_max_length": 512,
107
+ "name_or_path": "lmqg_output/t5-base-tweetqa-question-answering/model_eszyci/epoch_9",
108
  "pad_token": "<pad>",
109
  "special_tokens_map_file": null,
110
  "tokenizer_class": "T5Tokenizer",
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": "t5-base", "max_length": 512, "max_length_output": 32, "epoch": 10, "batch": 32, "lr": 0.0001, "fp16": false, "random_seed": 1, "gradient_accumulation_steps": 2, "label_smoothing": 0.15}