CCB commited on
Commit
26f6d47
·
verified ·
1 Parent(s): e4abc03

Upload folder using huggingface_hub

Browse files
Files changed (7) hide show
  1. README.md +207 -0
  2. biomedical_test.csv +290 -0
  3. news_test.csv +1814 -0
  4. ngram_counts.txt.gz +3 -0
  5. test.csv +0 -0
  6. train.csv +0 -0
  7. validation.csv +0 -0
README.md ADDED
@@ -0,0 +1,207 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ license: cc-by-4.0
5
+ task_categories:
6
+ - text-classification
7
+ task_ids:
8
+ - binary-classification
9
+ pretty_name: Complex Word Identification
10
+ size_categories:
11
+ - 1K<n<10K
12
+ tags:
13
+ - text-simplification
14
+ - lexical-complexity
15
+ - cwi
16
+ - nlp-course
17
+ configs:
18
+ - config_name: default
19
+ data_files:
20
+ - split: train
21
+ path: train.csv
22
+ - split: validation
23
+ path: validation.csv
24
+ - split: test
25
+ path: test.csv
26
+ - config_name: biomedical
27
+ data_files:
28
+ - split: test
29
+ path: biomedical_test.csv
30
+ - config_name: news
31
+ data_files:
32
+ - split: test
33
+ path: news_test.csv
34
+ dataset_info:
35
+ - config_name: default
36
+ features:
37
+ - name: word
38
+ dtype: string
39
+ - name: label
40
+ dtype:
41
+ class_label:
42
+ names:
43
+ '0': simple
44
+ '1': complex
45
+ - name: annotators
46
+ dtype: int64
47
+ - name: sentence
48
+ dtype: string
49
+ - name: sentence_index
50
+ dtype: int64
51
+ splits:
52
+ - name: train
53
+ num_examples: 4000
54
+ - name: validation
55
+ num_examples: 1000
56
+ - name: test
57
+ num_examples: 922
58
+ - config_name: biomedical
59
+ features:
60
+ - name: word
61
+ dtype: string
62
+ - name: complexity_score
63
+ dtype: float64
64
+ - name: label
65
+ dtype:
66
+ class_label:
67
+ names:
68
+ '0': simple
69
+ '1': complex
70
+ splits:
71
+ - name: test
72
+ num_examples: 289
73
+ - config_name: news
74
+ features:
75
+ - name: word
76
+ dtype: string
77
+ - name: complexity_score
78
+ dtype: float64
79
+ - name: label
80
+ dtype:
81
+ class_label:
82
+ names:
83
+ '0': simple
84
+ '1': complex
85
+ splits:
86
+ - name: test
87
+ num_examples: 1813
88
+ ---
89
+
90
+ # Complex Word Identification (CIS 5300)
91
+
92
+ ## Dataset Description
93
+
94
+ This dataset supports the **Complex Word Identification (CWI)** task: given a word in context, predict whether it is *complex* (likely to be difficult for non-native speakers, children, or people with reading disabilities) or *simple*.
95
+
96
+ CWI is the first step in **lexical simplification** — the task of rewriting text to make it more accessible. Before you can simplify a word, you need to identify which words need simplification.
97
+
98
+ ### Task
99
+
100
+ - **Input**: A word and the sentence it appears in
101
+ - **Output**: Binary label — `0` (simple) or `1` (complex)
102
+ - **Example**: In the sentence *"The beleaguered director resigned Wednesday"*, the word *beleaguered* is complex (label=1) while *director* is simple (label=0).
103
+
104
+ ## Dataset Structure
105
+
106
+ ### Default Configuration (Main Task)
107
+
108
+ ```python
109
+ from datasets import load_dataset
110
+
111
+ dataset = load_dataset("CCB/cis5300-text-classification")
112
+
113
+ # Splits: train (4,000), validation (1,000), test (922)
114
+ print(dataset["train"][0])
115
+ # {'word': 'string', 'label': 0, 'annotators': 0, 'sentence': 'WASHINGTON -- The beleaguered...', 'sentence_index': 27}
116
+ ```
117
+
118
+ | Split | Examples | Labels |
119
+ |-------|----------|--------|
120
+ | train | 4,000 | Yes |
121
+ | validation | 1,000 | Yes |
122
+ | test | 922 | No (held out for evaluation) |
123
+
124
+ **Fields:**
125
+
126
+ | Field | Type | Description |
127
+ |-------|------|-------------|
128
+ | `word` | string | The target word to classify |
129
+ | `label` | ClassLabel (simple/complex) | 0 = simple, 1 = complex |
130
+ | `annotators` | int | Number of annotators who labeled the word as complex |
131
+ | `sentence` | string | The full sentence containing the target word |
132
+ | `sentence_index` | int | Token position of the target word in the sentence |
133
+
134
+ ### Domain Generalization Configs
135
+
136
+ Two additional test sets from different domains for evaluating how well models generalize:
137
+
138
+ ```python
139
+ # Biomedical domain (PubMed abstracts)
140
+ bio = load_dataset("CCB/cis5300-text-classification", "biomedical")
141
+
142
+ # News domain (from CWI 2018 shared task)
143
+ news = load_dataset("CCB/cis5300-text-classification", "news")
144
+ ```
145
+
146
+ | Config | Domain | Examples | Source |
147
+ |--------|--------|----------|--------|
148
+ | `biomedical` | PubMed abstracts | 289 | CompLex (Shardlow et al., 2020) |
149
+ | `news` | News articles | 1,813 | CWI 2018 Shared Task (Yimam et al., 2018) |
150
+
151
+ ### Supplementary Data
152
+
153
+ The file `ngram_counts.txt.gz` contains word frequency counts from Google Books N-grams (~8.7M entries). This is useful as a feature for classification but is not a structured dataset. Download it separately:
154
+
155
+ ```python
156
+ from huggingface_hub import hf_hub_download
157
+ path = hf_hub_download("CCB/cis5300-text-classification", "ngram_counts.txt.gz", repo_type="dataset")
158
+
159
+ import gzip
160
+ ngram_counts = {}
161
+ with gzip.open(path, 'rt', encoding='utf-8') as f:
162
+ for line in f:
163
+ parts = line.strip().split('\t')
164
+ if len(parts) == 2:
165
+ ngram_counts[parts[0]] = int(parts[1])
166
+ ```
167
+
168
+ ## Source
169
+
170
+ The core dataset was introduced in:
171
+
172
+ > **Simplification Using Paraphrases and Context-Based Lexical Substitution**
173
+ > Reno Kriz, Eleni Miltsakaki, Marianna Apidianaki, Chris Callison-Burch
174
+ > *Proceedings of NAACL-HLT 2018*, pages 207–217
175
+ > [https://aclanthology.org/N18-1019/](https://aclanthology.org/N18-1019/)
176
+
177
+ The words are drawn from news articles and annotated by 20 non-native English speakers who indicated which words they found difficult to understand.
178
+
179
+ ### Domain generalization sources
180
+
181
+ - **Biomedical**: From the CompLex dataset (Shardlow et al., 2020) — words from biomedical abstracts with continuous complexity scores binarized at threshold 0.5.
182
+ - **News**: From the CWI 2018 Shared Task (Yimam et al., 2018) — words from news articles annotated for complexity.
183
+
184
+ ## Intended Use
185
+
186
+ This dataset is used for **Homework 1** in [CIS 5300: Natural Language Processing](https://www.seas.upenn.edu/~cis5300/) at the University of Pennsylvania. Students build progressively more sophisticated classifiers:
187
+
188
+ 1. **Baselines**: Word length and word frequency thresholds
189
+ 2. **Machine learning**: Naive Bayes and Logistic Regression with engineered features
190
+ 3. **Custom models**: Additional features with error analysis
191
+ 4. **Domain generalization**: Evaluate on biomedical and news text
192
+
193
+ ## Citation
194
+
195
+ ```bibtex
196
+ @inproceedings{kriz-etal-2018-simplification,
197
+ title = "Simplification Using Paraphrases and Context-Based Lexical Substitution",
198
+ author = "Kriz, Reno and Miltsakaki, Eleni and Apidianaki, Marianna and Callison-Burch, Chris",
199
+ booktitle = "Proceedings of the 2018 Conference of the North American Chapter of the Association for Computational Linguistics: Human Language Technologies",
200
+ year = "2018",
201
+ address = "New Orleans, Louisiana",
202
+ publisher = "Association for Computational Linguistics",
203
+ url = "https://aclanthology.org/N18-1019",
204
+ doi = "10.18653/v1/N18-1019",
205
+ pages = "207--217",
206
+ }
207
+ ```
biomedical_test.csv ADDED
@@ -0,0 +1,290 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ word,complexity_score,label
2
+ role,0.0000,0
3
+ role,0.2031,0
4
+ role,0.2059,0
5
+ role,0.2333,0
6
+ role,0.2344,0
7
+ size,0.1250,0
8
+ size,0.2000,0
9
+ size,0.2143,0
10
+ size,0.2188,0
11
+ cost,0.0278,0
12
+ body,0.0500,0
13
+ body,0.2262,0
14
+ body,0.3173,1
15
+ body,0.3173,1
16
+ level,0.0750,0
17
+ level,0.2344,0
18
+ sum,0.0750,0
19
+ finding,0.0750,0
20
+ finding,0.1765,0
21
+ finding,0.1833,0
22
+ finding,0.2188,0
23
+ finding,0.3300,1
24
+ differences,0.0833,0
25
+ differences,0.1250,0
26
+ differences,0.1912,0
27
+ differences,0.2059,0
28
+ differences,0.2381,0
29
+ care,0.0893,0
30
+ care,0.1833,0
31
+ collection,0.1000,0
32
+ problems,0.2656,0
33
+ families,0.1029,0
34
+ arrows,0.1042,0
35
+ lung,0.1071,0
36
+ lung,0.1944,0
37
+ lung,0.2059,0
38
+ lung,0.2500,0
39
+ lung,0.3333,1
40
+ top,0.1111,0
41
+ ears,0.1111,0
42
+ history,0.1154,0
43
+ history,0.1705,0
44
+ history,0.1974,0
45
+ features,0.1250,0
46
+ features,0.1250,0
47
+ features,0.1500,0
48
+ features,0.2333,0
49
+ features,0.3333,1
50
+ disease,0.1250,0
51
+ note,0.1333,0
52
+ note,0.2647,0
53
+ stages,0.1389,0
54
+ stages,0.2361,0
55
+ stages,0.2500,0
56
+ stages,0.2500,0
57
+ stages,0.2917,0
58
+ death,0.1406,0
59
+ project,0.1429,0
60
+ project,0.2206,0
61
+ concept,0.3382,1
62
+ repair,0.1500,0
63
+ repair,0.1667,0
64
+ repair,0.1750,0
65
+ repair,0.2619,0
66
+ repair,0.2656,0
67
+ process,0.1719,0
68
+ process,0.2500,0
69
+ none,0.1562,0
70
+ none,0.2222,0
71
+ bones,0.1562,0
72
+ bones,0.2115,0
73
+ bones,0.2500,0
74
+ type,0.1607,0
75
+ type,0.2375,0
76
+ vision,0.1607,0
77
+ value,0.2344,0
78
+ value,0.3625,1
79
+ transfer,0.1667,0
80
+ transfer,0.2188,0
81
+ volume,0.1667,0
82
+ design,0.1719,0
83
+ design,0.2031,0
84
+ design,0.3036,1
85
+ design,0.3382,1
86
+ type,0.1750,0
87
+ type,0.2031,0
88
+ type,0.2500,0
89
+ type,0.2794,0
90
+ type,0.2812,0
91
+ male,0.1765,0
92
+ male,0.1875,0
93
+ row,0.1765,0
94
+ female,0.1786,0
95
+ behavior,0.1833,0
96
+ behavior,0.2167,0
97
+ behavior,0.2206,0
98
+ behavior,0.3088,1
99
+ choice,0.1875,0
100
+ plug,0.1875,0
101
+ makes,0.1875,0
102
+ joint,0.1912,0
103
+ motor,0.1912,0
104
+ motor,0.2500,0
105
+ motor,0.3125,1
106
+ motor,0.3854,1
107
+ interactions,0.1912,0
108
+ interactions,0.2206,0
109
+ interactions,0.2222,0
110
+ interactions,0.2344,0
111
+ interactions,0.3971,1
112
+ smokers,0.1923,0
113
+ animal,0.1964,0
114
+ series,0.1964,0
115
+ severity,0.2000,0
116
+ severity,0.3056,1
117
+ severity,0.3462,1
118
+ guidance,0.2000,0
119
+ guidance,0.2955,0
120
+ beginning,0.2308,0
121
+ administration,0.2000,0
122
+ administration,0.3056,1
123
+ escape,0.2000,0
124
+ therapies,0.2000,0
125
+ therapies,0.2321,0
126
+ therapies,0.4062,1
127
+ approaches,0.2031,0
128
+ amount,0.2031,0
129
+ amount,0.2174,0
130
+ amount,0.2206,0
131
+ amount,0.2375,0
132
+ resources,0.2368,0
133
+ interest,0.2794,0
134
+ behavioural,0.2143,0
135
+ wall,0.3667,1
136
+ replacement,0.2237,0
137
+ replacement,0.3095,1
138
+ chromosome,0.2237,0
139
+ chromosome,0.2969,0
140
+ chromosome,0.3194,1
141
+ clip,0.2250,0
142
+ limitations,0.2333,0
143
+ trials,0.2344,0
144
+ decrease,0.2368,0
145
+ identity,0.2386,0
146
+ hypotheses,0.2500,0
147
+ hypotheses,0.2679,0
148
+ hypotheses,0.3269,1
149
+ mouse,0.2500,0
150
+ smell,0.2500,0
151
+ rounds,0.2500,0
152
+ transcript,0.2500,0
153
+ transcript,0.2875,0
154
+ transcript,0.3400,1
155
+ transcript,0.3500,1
156
+ transcript,0.3571,1
157
+ dose,0.2500,0
158
+ assembly,0.3333,1
159
+ donor,0.2500,0
160
+ alertness,0.2614,0
161
+ success,0.2614,0
162
+ disruption,0.2679,0
163
+ disruption,0.2708,0
164
+ disruption,0.2969,0
165
+ disruption,0.3125,1
166
+ manuscript,0.2717,0
167
+ manuscript,0.2895,0
168
+ manuscript,0.3095,1
169
+ contrast,0.2738,0
170
+ contrast,0.2941,0
171
+ contrast,0.3281,1
172
+ contrast,0.3295,1
173
+ chain,0.2750,0
174
+ count,0.2778,0
175
+ turnover,0.2794,0
176
+ snail,0.2833,0
177
+ fork,0.2857,0
178
+ reaction,0.2969,0
179
+ reaction,0.4833,1
180
+ secretion,0.2969,0
181
+ secretion,0.3500,1
182
+ secretion,0.4412,1
183
+ secretion,0.4500,1
184
+ secretion,0.4531,1
185
+ sperm,0.2976,0
186
+ sperm,0.4091,1
187
+ retina,0.3000,1
188
+ retina,0.3036,1
189
+ retina,0.3382,1
190
+ retina,0.3611,1
191
+ retina,0.4559,1
192
+ staining,0.3000,1
193
+ staining,0.3250,1
194
+ staining,0.3382,1
195
+ staining,0.3750,1
196
+ staining,0.4000,1
197
+ neutrality,0.3000,1
198
+ variant,0.3036,1
199
+ variant,0.3611,1
200
+ measure,0.3056,1
201
+ tremor,0.3088,1
202
+ dopamine,0.3125,1
203
+ dopamine,0.3875,1
204
+ dopamine,0.4500,1
205
+ abbreviations,0.3125,1
206
+ pedigrees,0.3125,1
207
+ marks,0.3158,1
208
+ marks,0.3409,1
209
+ resolution,0.3235,1
210
+ resemblance,0.3167,1
211
+ neurosurgery,0.3167,1
212
+ sharon,0.5000,1
213
+ compartment,0.3333,1
214
+ streak,0.3370,1
215
+ distribution,0.3382,1
216
+ distribution,0.4286,1
217
+ silvers,0.3438,1
218
+ silvers,0.3500,1
219
+ western,0.3452,1
220
+ mammals,0.3594,1
221
+ excretion,0.3611,1
222
+ excretion,0.3833,1
223
+ axel,0.3667,1
224
+ disorders,0.3676,1
225
+ acquisition,0.3750,1
226
+ inbreeding,0.3750,1
227
+ spindle,0.3824,1
228
+ spindle,0.3906,1
229
+ spindle,0.5147,1
230
+ capsule,0.4000,1
231
+ plaques,0.4000,1
232
+ plaques,0.4333,1
233
+ plaques,0.4853,1
234
+ plaques,0.5000,1
235
+ plaques,0.5000,1
236
+ retention,0.4062,1
237
+ lineage,0.4062,1
238
+ lineage,0.4500,1
239
+ p,0.4118,1
240
+ p,0.4667,1
241
+ p,0.5156,1
242
+ p,0.5333,1
243
+ p,0.7500,1
244
+ antagonists,0.4265,1
245
+ antagonists,0.4667,1
246
+ antagonists,0.5147,1
247
+ antagonists,0.5385,1
248
+ antagonists,0.5441,1
249
+ goiter,0.4318,1
250
+ goiter,0.4667,1
251
+ synapses,0.4500,1
252
+ synapses,0.5132,1
253
+ cataracts,0.4643,1
254
+ vectors,0.4667,1
255
+ es,0.5952,1
256
+ es,0.6111,1
257
+ es,0.6944,1
258
+ matrix,0.4750,1
259
+ matrix,0.5333,1
260
+ perturbation,0.4844,1
261
+ perturbation,0.5179,1
262
+ perturbation,0.6154,1
263
+ chromosomes,0.5000,1
264
+ histology,0.5000,1
265
+ histology,0.5156,1
266
+ allele,0.5156,1
267
+ allele,0.5312,1
268
+ allele,0.5469,1
269
+ allele,0.5781,1
270
+ allele,0.7031,1
271
+ tg,0.5250,1
272
+ ph,0.5278,1
273
+ hg,0.5278,1
274
+ hg,0.5312,1
275
+ hg,0.5455,1
276
+ hg,0.5667,1
277
+ hg,0.7500,1
278
+ neuropathy,0.5536,1
279
+ vesicles,0.5588,1
280
+ vesicles,0.5750,1
281
+ vesicles,0.5833,1
282
+ adams,0.5882,1
283
+ adams,0.6250,1
284
+ maxima,0.6094,1
285
+ phagocytes,0.6429,1
286
+ quinine,0.6750,1
287
+ rt,0.6765,1
288
+ thrombus,0.7250,1
289
+ gametes,0.7500,1
290
+ va,0.7778,1
news_test.csv ADDED
@@ -0,0 +1,1814 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ word,complexity_score,label
2
+ teenage,0.0000,0
3
+ londonderry,0.0500,1
4
+ girl,0.0000,0
5
+ shot,0.0000,0
6
+ dead,0.0000,0
7
+ bellaghy,0.0000,0
8
+ county,0.0000,0
9
+ saturday,0.0000,0
10
+ morning,0.0000,0
11
+ lauren,0.0000,0
12
+ o'neill,0.0000,0
13
+ critical,0.2500,1
14
+ sister,0.0000,0
15
+ brenda,0.0000,0
16
+ remains,0.0000,0
17
+ condition,0.0000,0
18
+ royal,0.0000,0
19
+ victoria,0.0000,0
20
+ hospital,0.0000,0
21
+ belfast,0.0000,0
22
+ parish,0.3000,1
23
+ bellaghy,0.0000,0
24
+ protect,0.0500,1
25
+ priest,0.0000,0
26
+ fr,0.0000,0
27
+ andy,0.0000,0
28
+ dolan,0.0000,0
29
+ teenager,0.0000,0
30
+ died,0.0000,0
31
+ sister,0.0000,0
32
+ shot,0.0000,0
33
+ house,0.0000,0
34
+ william,0.0000,0
35
+ court,0.0000,0
36
+ continuing,0.1500,1
37
+ police,0.0000,0
38
+ question,0.0000,0
39
+ man,0.0000,0
40
+ connection,0.2500,1
41
+ incident,0.6000,1
42
+ fr,0.0000,0
43
+ dolan,0.0000,0
44
+ told,0.0000,0
45
+ bbc,0.0000,0
46
+ radio,0.0000,0
47
+ ulster,0.0000,0
48
+ brenda,0.0000,0
49
+ dived,0.3000,1
50
+ attack,0.0000,0
51
+ lauren,0.0000,0
52
+ process,0.1500,1
53
+ save,0.0000,0
54
+ lost,0.0000,0
55
+ life,0.0000,0
56
+ close,0.0000,0
57
+ life,0.0000,0
58
+ death,0.0000,0
59
+ n't,0.0000,0
60
+ questioned,0.0500,1
61
+ man,0.0000,0
62
+ woman,0.0000,0
63
+ suspicion,0.9500,1
64
+ assisting,0.3500,1
65
+ offender,0.5000,1
66
+ released,0.2000,1
67
+ skype,0.0500,1
68
+ speaking,0.0000,0
69
+ activist,0.3500,1
70
+ hama,0.0000,0
71
+ mousab,0.0000,0
72
+ alhamadee,0.0000,0
73
+ rebel,0.1500,1
74
+ local,0.0000,0
75
+ alongside,0.2500,1
76
+ leader,0.0000,0
77
+ killed,0.0000,0
78
+ civilians,0.3000,1
79
+ defend,0.1500,1
80
+ hero,0.0000,0
81
+ free,0.0000,0
82
+ syrian,0.0000,0
83
+ army,0.0000,0
84
+ civilians,0.0500,1
85
+ referring,0.2500,1
86
+ umbrella,0.0500,1
87
+ anti-regime,0.3500,1
88
+ group,0.0000,0
89
+ local,0.0000,0
90
+ militias,0.4500,1
91
+ amateur,0.7500,1
92
+ video,0.0000,0
93
+ posted,0.0000,0
94
+ online,0.0000,0
95
+ sunday,0.0000,0
96
+ showed,0.0000,0
97
+ men,0.0000,0
98
+ carrying,0.0000,0
99
+ dead,0.0000,0
100
+ body,0.0000,0
101
+ woman,0.0000,0
102
+ house,0.0000,0
103
+ mosque,0.2500,1
104
+ video,0.0000,0
105
+ showed,0.0000,0
106
+ men,0.0000,0
107
+ coffins,0.2000,1
108
+ praying,0.0000,0
109
+ piled,0.1500,1
110
+ open,0.0000,0
111
+ flowers,0.0000,0
112
+ wrapped,0.2000,1
113
+ bodies,0.0000,0
114
+ cloth,0.0000,0
115
+ white,0.0000,0
116
+ area,0.0000,0
117
+ farmland,0.0000,0
118
+ plain,0.0000,0
119
+ dotted,0.3000,1
120
+ orontes,0.0000,0
121
+ river,0.0000,0
122
+ alawites,0.0500,1
123
+ villages,0.0000,0
124
+ christians,0.0000,0
125
+ sunni,0.0000,0
126
+ muslims,0.0000,0
127
+ offshoot,0.3000,1
128
+ sect,0.1000,1
129
+ shiite,0.1000,1
130
+ islam,0.0000,0
131
+ assad,0.0000,0
132
+ belongs,0.0000,0
133
+ alhamadee,0.0000,0
134
+ sectarian,0.3000,1
135
+ village,0.0000,0
136
+ al-tamana,0.0000,0
137
+ uprising,0.3000,1
138
+ tensions,0.0000,0
139
+ low,0.0000,0
140
+ deteriorated,0.9000,1
141
+ anti-assad,0.0500,1
142
+ sunni,0.0000,0
143
+ villages,0.0000,0
144
+ al-tamana,0.0000,0
145
+ joined,0.0000,0
146
+ uprising,0.2000,1
147
+ updates,0.1500,1
148
+ new,0.0000,0
149
+ better-optimized,0.6500,1
150
+ versions,0.0000,0
151
+ android,0.0500,1
152
+ smartphone,0.0000,0
153
+ directly,0.0000,0
154
+ motorola,0.0000,0
155
+ taking,0.0000,0
156
+ longer,0.0000,0
157
+ reach,0.0000,0
158
+ manufactures,0.1000,1
159
+ defended,0.1500,1
160
+ google,0.0000,0
161
+ intentions,0.5000,1
162
+ giving,0.0000,0
163
+ motorola,0.0000,0
164
+ android-running,0.0500,1
165
+ special,0.0000,0
166
+ treatment,0.0000,0
167
+ oems,0.1000,1
168
+ htc,0.0000,0
169
+ samsung,0.0000,0
170
+ lg,0.0000,0
171
+ apparently,0.3000,1
172
+ argument,0.1500,1
173
+ regulatory,0.2000,1
174
+ google,0.0000,0
175
+ hurdles,0.3500,1
176
+ needed,0.0000,0
177
+ close,0.0000,0
178
+ deal,0.0000,0
179
+ purchasing,0.0500,1
180
+ google,0.0000,0
181
+ interested,0.0000,0
182
+ patents,0.6000,1
183
+ motorola,0.0000,0
184
+ duking,0.6000,1
185
+ now,0.0000,0
186
+ google,0.0000,0
187
+ java-related,0.2000,1
188
+ court,0.0000,0
189
+ oracle,0.0000,0
190
+ patents,0.1000,1
191
+ defend,0.0500,1
192
+ 's,0.0000,0
193
+ important,0.0000,0
194
+ google,0.0000,0
195
+ lawsuits,0.5000,1
196
+ future,0.0000,0
197
+ android,0.0000,0
198
+ vb,0.0500,1
199
+ detained,0.8000,1
200
+ people,0.0000,0
201
+ protest,0.0500,1
202
+ police,0.0000,0
203
+ downtown,0.1000,1
204
+ included,0.0500,1
205
+ moscow,0.0000,0
206
+ tuesday,0.0000,0
207
+ night,0.0000,0
208
+ flare-type,0.6500,1
209
+ fireworks,0.0500,1
210
+ pro-kremlin,0.1500,1
211
+ thrown,0.0000,0
212
+ group,0.0000,0
213
+ youth,0.0000,0
214
+ hit,0.0500,1
215
+ spain,0.0000,0
216
+ banks,0.0000,0
217
+ euros,0.0500,1
218
+ billions,0.0000,0
219
+ losses,0.0000,0
220
+ bursting,0.5000,1
221
+ decade-long,0.2500,1
222
+ bubble,0.0500,1
223
+ property,0.0000,0
224
+ concerns,0.0500,1
225
+ overspending,0.3500,1
226
+ country,0.0000,0
227
+ regional,0.0500,1
228
+ fanned,0.5000,1
229
+ governments,0.0000,0
230
+ fears,0.0000,0
231
+ euro,0.0000,0
232
+ zone,0.0000,0
233
+ crisis,0.0500,1
234
+ debt,0.0000,0
235
+ toxic,0.0500,1
236
+ assets,0.0500,1
237
+ total,0.0000,0
238
+ euros,0.0000,0
239
+ fear,0.0000,0
240
+ hole,0.0000,0
241
+ bigger,0.0000,0
242
+ successive,0.4000,1
243
+ waves,0.0500,1
244
+ sector,0.0500,1
245
+ bank,0.0000,0
246
+ clean-ups,0.2500,1
247
+ convince,0.1000,1
248
+ failed,0.0000,0
249
+ investors,0.1000,1
250
+ reform,0.1000,1
251
+ package,0.0000,0
252
+ spain,0.0000,0
253
+ convincing,0.1500,1
254
+ troubled,0.0000,0
255
+ banks,0.0000,0
256
+ aimed,0.0000,0
257
+ investors,0.0500,1
258
+ solvent,0.7000,1
259
+ sector,0.0000,0
260
+ strategy,0.2000,1
261
+ country,0.0000,0
262
+ bailout,0.8500,1
263
+ avoid,0.0000,0
264
+ expected,0.0500,1
265
+ released,0.0000,0
266
+ measures,0.0500,1
267
+ government,0.0000,0
268
+ package,0.0000,0
269
+ expected,0.0000,0
270
+ include,0.0000,0
271
+ obliging,0.5000,1
272
+ provisions,0.2500,1
273
+ banks,0.0000,0
274
+ increase,0.0000,0
275
+ entity,0.1500,1
276
+ bad,0.0000,0
277
+ loans,0.0000,0
278
+ possibly,0.0000,0
279
+ plans,0.0000,0
280
+ creation,0.0000,0
281
+ act,0.0000,0
282
+ bad,0.0000,0
283
+ bank,0.0000,0
284
+ reforms,0.5500,1
285
+ spain,0.0000,0
286
+ set,0.0000,0
287
+ present,0.0000,0
288
+ clean-up,0.0500,1
289
+ complete,0.0000,0
290
+ banks,0.0000,0
291
+ difficult,0.0000,0
292
+ last-minute,0.0000,0
293
+ talks,0.0000,0
294
+ lenders,0.3500,1
295
+ government,0.0000,0
296
+ government,0.0000,0
297
+ spanish,0.0000,0
298
+ expected,0.1000,1
299
+ approve,0.0000,0
300
+ plan,0.0000,0
301
+ friday,0.0000,0
302
+ force,0.0000,0
303
+ banks,0.0000,0
304
+ toxic,0.4500,1
305
+ place,0.0000,0
306
+ assets,0.2000,1
307
+ real,0.0000,0
308
+ estate,0.0000,0
309
+ holding,0.0000,0
310
+ companies,0.0000,0
311
+ sell,0.0000,0
312
+ announce,0.0500,1
313
+ government,0.0000,0
314
+ expected,0.0000,0
315
+ demands,0.0000,0
316
+ banks,0.0000,0
317
+ set,0.0000,0
318
+ euros,0.0000,0
319
+ cover,0.0000,0
320
+ loans,0.0500,1
321
+ sound,0.0000,0
322
+ portfolios,0.7000,1
323
+ real,0.0000,0
324
+ estate,0.0000,0
325
+ provisions,0.6000,1
326
+ government,0.0000,0
327
+ forced,0.0000,0
328
+ banks,0.0000,0
329
+ make,0.0000,0
330
+ euros,0.0000,0
331
+ cover,0.0000,0
332
+ assets,0.1000,1
333
+ bad,0.0000,0
334
+ finalised,0.3000,1
335
+ text,0.0000,0
336
+ reuters,0.1000,1
337
+ talks,0.0000,0
338
+ banks,0.0000,0
339
+ government,0.0000,0
340
+ source,0.0000,0
341
+ told,0.0000,0
342
+ news,0.0000,0
343
+ agency,0.0000,0
344
+ adding,0.0000,0
345
+ provisions,0.5500,1
346
+ scheme,0.2500,1
347
+ bad,0.0000,0
348
+ bank,0.0000,0
349
+ approved,0.0500,1
350
+ friday,0.0000,0
351
+ google,0.0000,0
352
+ entrant,0.9000,1
353
+ newest,0.0000,0
354
+ handset,0.2000,1
355
+ announced,0.0500,1
356
+ market,0.0000,0
357
+ acquisition,1.0000,1
358
+ plans,0.0000,0
359
+ bid,0.1000,1
360
+ year,0.0000,0
361
+ valuable,0.0500,1
362
+ secure,0.0000,0
363
+ motorola,0.0000,0
364
+ patents,0.5000,1
365
+ pave,0.0500,1
366
+ pairing,0.0000,0
367
+ google,0.0000,0
368
+ android,0.0000,0
369
+ software,0.0500,1
370
+ mobile,0.0000,0
371
+ handset,0.0500,1
372
+ motorola,0.0000,0
373
+ business,0.0000,0
374
+ regulators,0.3000,1
375
+ european,0.0000,0
376
+ approved,0.0000,0
377
+ deal,0.0000,0
378
+ february,0.0000,0
379
+ leaving,0.0000,0
380
+ regulators,0.1500,1
381
+ chinese,0.0000,0
382
+ potential,0.0000,0
383
+ spoilers,0.4000,1
384
+ stance,0.3500,1
385
+ acquire,0.3000,1
386
+ agreed,0.0000,0
387
+ spokeswoman,0.3000,1
388
+ motorola,0.0000,0
389
+ changed,0.0000,0
390
+ forward,0.0000,0
391
+ closing,0.0000,0
392
+ deal,0.0000,0
393
+ google,0.0000,0
394
+ confirming,0.1000,1
395
+ niki,0.0000,0
396
+ fenwick,0.0000,0
397
+ chinese,0.0000,0
398
+ approved,0.0000,0
399
+ deal,0.0000,0
400
+ urged,0.3000,1
401
+ moscow,0.0000,0
402
+ former,0.0000,0
403
+ soviet,0.0000,0
404
+ leader,0.0000,0
405
+ mikhail,0.0000,0
406
+ gorbachev,0.0000,0
407
+ authorities,0.0000,0
408
+ russian,0.0000,0
409
+ annul,0.7500,1
410
+ scandal-marred,0.8500,1
411
+ results,0.0000,0
412
+ parliamentary,0.1000,1
413
+ interfax,0.0500,1
414
+ election,0.0000,0
415
+ hold,0.0000,0
416
+ vote,0.0000,0
417
+ russia,0.0000,0
418
+ news,0.0000,0
419
+ agency,0.0000,0
420
+ reported,0.0000,0
421
+ wednesday,0.0000,0
422
+ parliamentary,0.4000,1
423
+ sunday,0.0000,0
424
+ suggested,0.1000,1
425
+ vote,0.0000,0
426
+ tiring,0.4500,1
427
+ russians,0.0000,0
428
+ putin,0.0000,0
429
+ united,0.0000,0
430
+ russia,0.0000,0
431
+ party,0.0000,0
432
+ preliminary,0.3500,1
433
+ indicate,0.2500,1
434
+ results,0.0000,0
435
+ steep,0.2000,1
436
+ party,0.0000,0
437
+ won,0.0000,0
438
+ percent,0.0000,0
439
+ votes,0.0000,0
440
+ fall,0.0500,1
441
+ majority,0.1000,1
442
+ earlier,0.0000,0
443
+ opposition,0.0500,1
444
+ international,0.0000,0
445
+ parties,0.0000,0
446
+ observers,0.0500,1
447
+ poll,0.0500,1
448
+ marred,0.6500,1
449
+ widespread,0.2500,1
450
+ allegations,0.6500,1
451
+ reports,0.0000,0
452
+ vote-rigging,0.8000,1
453
+ allegations,0.3500,1
454
+ opposition,0.0500,1
455
+ fired,0.0000,0
456
+ protests,0.0500,1
457
+ long,0.0000,0
458
+ crushed,0.2000,1
459
+ pleas,0.1500,1
460
+ ignored,0.1000,1
461
+ kremlin-dominated,0.2500,1
462
+ media,0.0500,1
463
+ announcing,0.0500,1
464
+ facebook,0.0000,0
465
+ people,0.0000,0
466
+ signed,0.0000,0
467
+ page,0.0000,0
468
+ rally,0.0500,1
469
+ opposition,0.0000,0
470
+ saturday,0.0000,0
471
+ presidency,0.0000,0
472
+ sunday,0.0000,0
473
+ election,0.0000,0
474
+ results,0.0000,0
475
+ signal,0.0000,0
476
+ putin,0.0000,0
477
+ return,0.0000,0
478
+ downplayed,0.9500,1
479
+ march,0.0000,0
480
+ election,0.0000,0
481
+ easy,0.0000,0
482
+ expected,0.0000,0
483
+ reduced,0.0000,0
484
+ majority,0.0000,0
485
+ inevitable,0.2500,1
486
+ voters,0.0000,0
487
+ unhappy,0.0000,0
488
+ party,0.0000,0
489
+ power,0.0000,0
490
+ examined,0.3500,1
491
+ police,0.0000,0
492
+ magherafelt,0.0000,0
493
+ scene,0.0000,0
494
+ house,0.0000,0
495
+ william,0.0000,0
496
+ court,0.0000,0
497
+ bellaghy,0.0000,0
498
+ clues,0.2000,1
499
+ incident,0.3000,1
500
+ stunned,0.7500,1
501
+ community,0.1500,1
502
+ dead,0.0000,0
503
+ girl,0.0000,0
504
+ celebrated,0.0000,0
505
+ birthday,0.0000,0
506
+ weeks,0.0000,0
507
+ older,0.0000,0
508
+ sister,0.0000,0
509
+ aged,0.0000,0
510
+ lived,0.0000,0
511
+ rented,0.0000,0
512
+ house,0.0000,0
513
+ development,0.3000,1
514
+ recently,0.0000,0
515
+ built,0.0000,0
516
+ established,0.4000,1
517
+ back,0.0000,0
518
+ estate,0.0000,0
519
+ housing,0.0000,0
520
+ seriously,0.1000,1
521
+ locals,0.0000,0
522
+ injured,0.0000,0
523
+ woman,0.0000,0
524
+ mother,0.0000,0
525
+ young,0.0000,0
526
+ children,0.0000,0
527
+ believed,0.0500,1
528
+ belfast,0.0500,1
529
+ royal,0.0000,0
530
+ victoria,0.0000,0
531
+ hospital,0.0000,0
532
+ surgery,0.2000,1
533
+ suspicion,0.7500,1
534
+ man,0.0000,0
535
+ woman,0.0000,0
536
+ aged,0.0000,0
537
+ arrested,0.0000,0
538
+ assisting,0.2500,1
539
+ offender,0.5000,1
540
+ detained,0.8000,1
541
+ toome,0.0500,1
542
+ gun,0.0500,1
543
+ miles,0.0000,0
544
+ scene,0.0000,0
545
+ attack,0.0000,0
546
+ emerge,0.8500,1
547
+ decade,0.1500,1
548
+ conflict,0.0500,1
549
+ abroad,0.1000,1
550
+ economic,0.0000,0
551
+ crisis,0.0000,0
552
+ renew,0.1000,1
553
+ home,0.0000,0
554
+ time,0.0000,0
555
+ america,0.0000,0
556
+ obama,0.0000,0
557
+ agreement,0.0500,1
558
+ pledges,0.7500,1
559
+ ongoing,0.1000,1
560
+ combat,0.1000,1
561
+ support,0.0000,0
562
+ afghanistan,0.0000,0
563
+ forces,0.0000,0
564
+ leave,0.0000,0
565
+ pact,0.1000,1
566
+ envisions,0.7500,1
567
+ wide-ranging,0.1500,1
568
+ involvement,0.1000,1
569
+ economic,0.1000,1
570
+ afghan,0.0000,0
571
+ affairs,0.1000,1
572
+ security,0.0000,0
573
+ decade,0.0500,1
574
+ adviser,0.1000,1
575
+ underwriter,0.8500,1
576
+ uneven,0.2000,1
577
+ afghans,0.0000,0
578
+ promise,0.0000,0
579
+ roads,0.0000,0
580
+ schools,0.0000,0
581
+ support,0.0000,0
582
+ afghan,0.0000,0
583
+ fighting,0.0000,0
584
+ forces,0.0000,0
585
+ foothold,0.5500,1
586
+ security,0.0000,0
587
+ bolster,0.7500,1
588
+ country,0.0000,0
589
+ continued,0.0500,1
590
+ afghan,0.0000,0
591
+ forces,0.0000,0
592
+ militants,0.1000,1
593
+ fight,0.0000,0
594
+ taliban-led,0.0000,0
595
+ neighboring,0.0500,1
596
+ al-qaida,0.0000,0
597
+ eye,0.0000,0
598
+ iran,0.0000,0
599
+ emphasis,0.4500,1
600
+ obama,0.0000,0
601
+ commitment,0.0500,1
602
+ long-term,0.0000,0
603
+ lingering,0.8000,1
604
+ afghanistan,0.0000,0
605
+ reflects,0.0000,0
606
+ threat,0.0500,1
607
+ worry,0.0000,0
608
+ resurgence,0.5500,1
609
+ taliban,0.0000,0
610
+ combat,0.0000,0
611
+ nato,0.0000,0
612
+ scheduled,0.0500,1
613
+ forces,0.0000,0
614
+ leave,0.0000,0
615
+ fatally,0.8500,1
616
+ tonya,0.0000,0
617
+ thomas,0.0000,0
618
+ ranged,0.2000,1
619
+ shot,0.0000,0
620
+ children,0.0000,0
621
+ spokesman,0.6000,1
622
+ age,0.0000,0
623
+ tod,0.0000,0
624
+ goodyear,0.0000,0
625
+ sheriff,0.0500,1
626
+ brevard,0.0000,0
627
+ county,0.0000,0
628
+ office,0.0000,0
629
+ dawn,0.3000,1
630
+ children,0.0000,0
631
+ neighbor,0.0000,0
632
+ front,0.0000,0
633
+ door,0.0000,0
634
+ mother,0.0000,0
635
+ shot,0.0000,0
636
+ mother,0.0000,0
637
+ called,0.0000,0
638
+ children,0.0000,0
639
+ back,0.0000,0
640
+ house,0.0000,0
641
+ killed,0.0000,0
642
+ goodyear,0.0000,0
643
+ neighbors,0.1500,1
644
+ calm,0.1000,1
645
+ walked,0.0000,0
646
+ called,0.0000,0
647
+ back,0.0000,0
648
+ turned,0.0000,0
649
+ walked,0.0000,0
650
+ back,0.0000,0
651
+ house,0.0000,0
652
+ goodyear,0.0000,0
653
+ neighbor,0.0500,1
654
+ heard,0.0000,0
655
+ gunshots,0.1500,1
656
+ called,0.0000,0
657
+ neighbor,0.1000,1
658
+ deputies,0.4000,1
659
+ told,0.0000,0
660
+ thomas,0.0000,0
661
+ message,0.0500,1
662
+ text,0.0000,0
663
+ cremated,1.0000,1
664
+ middle,0.0000,0
665
+ night,0.0000,0
666
+ wanted,0.0000,0
667
+ children,0.0000,0
668
+ several,0.0000,0
669
+ israeli,0.0000,0
670
+ delegations,0.9500,1
671
+ security,0.0000,0
672
+ embassy,0.5500,1
673
+ visited,0.0000,0
674
+ egypt,0.0000,0
675
+ past,0.0000,0
676
+ months,0.0000,0
677
+ decide,0.0000,0
678
+ location,0.0500,1
679
+ investigators,0.3500,1
680
+ brevard,0.0000,0
681
+ county,0.0000,0
682
+ sheriff,0.0000,0
683
+ mother,0.0000,0
684
+ lives,0.0000,0
685
+ children,0.0000,0
686
+ confrontation,1.0000,1
687
+ early,0.0000,0
688
+ morning,0.0000,0
689
+ fatally,0.5000,1
690
+ calling,0.0000,0
691
+ back,0.0000,0
692
+ home,0.0000,0
693
+ shoot,0.0000,0
694
+ turning,0.0000,0
695
+ gun,0.0000,0
696
+ enforcement,0.5000,1
697
+ law,0.0000,0
698
+ sources,0.0500,1
699
+ report,0.0000,0
700
+ fla,0.0000,0
701
+ updated,0.0000,0
702
+ et,0.0000,0
703
+ florida,0.0000,0
704
+ mother,0.0000,0
705
+ killed,0.0000,0
706
+ children,0.0000,0
707
+ shot,0.0000,0
708
+ tuesday,0.0000,0
709
+ morning,0.0000,0
710
+ brevard,0.0000,0
711
+ county,0.0000,0
712
+ deputies,0.1000,1
713
+ closed,0.0000,0
714
+ authorities,0.2000,1
715
+ port,0.0000,0
716
+ john,0.0000,0
717
+ home,0.0000,0
718
+ deputies,0.1000,1
719
+ identified,0.2000,1
720
+ mother,0.0000,0
721
+ warning,0.0500,1
722
+ tonya,0.0000,0
723
+ thomas,0.0000,0
724
+ text,0.0500,1
725
+ message,0.0500,1
726
+ shootings,0.0500,1
727
+ friend,0.0000,0
728
+ text,0.1000,1
729
+ friend,0.0000,0
730
+ n't,0.0000,0
731
+ questioned,0.1000,1
732
+ man,0.0000,0
733
+ relation,0.1000,1
734
+ killing,0.0000,0
735
+ woman,0.0000,0
736
+ remains,0.0500,1
737
+ sister,0.0000,0
738
+ critically,0.4500,1
739
+ hospital,0.0000,0
740
+ questioned,0.1000,1
741
+ man,0.0000,0
742
+ woman,0.0000,0
743
+ suspicion,0.8000,1
744
+ assisting,0.2000,1
745
+ offender,0.6500,1
746
+ released,0.1000,1
747
+ arrested,0.1000,1
748
+ police,0.0000,0
749
+ arrested,0.0000,0
750
+ man,0.0000,0
751
+ connection,0.0500,1
752
+ murder,0.0500,1
753
+ jeff,0.0000,0
754
+ burrows,0.0000,0
755
+ norfolk,0.0000,0
756
+ square,0.0000,0
757
+ brighton,0.0000,0
758
+ month,0.0000,0
759
+ issued,0.0500,1
760
+ sussex,0.0000,0
761
+ police,0.0000,0
762
+ statement,0.1500,1
763
+ suspicion,0.2500,1
764
+ morning,0.0000,0
765
+ liverpool,0.0000,0
766
+ arrested,0.0000,0
767
+ city,0.0000,0
768
+ yesterday,0.0000,0
769
+ murder,0.1000,1
770
+ arrived,0.0000,0
771
+ custody,0.6000,1
772
+ sussex,0.0500,1
773
+ night,0.0000,0
774
+ remains,0.0000,0
775
+ custody,0.1500,1
776
+ today,0.0000,0
777
+ stabbed,0.5000,1
778
+ mr,0.0000,0
779
+ burrows,0.0000,0
780
+ flat,0.1500,1
781
+ death,0.0000,0
782
+ sunday,0.0000,0
783
+ april,0.0000,0
784
+ suspicion,0.2000,1
785
+ man,0.0000,0
786
+ arrested,0.0000,0
787
+ monday,0.0000,0
788
+ april,0.0000,0
789
+ released,0.0500,1
790
+ murder,0.0000,0
791
+ bail,0.3000,1
792
+ may,0.0000,0
793
+ police,0.0000,0
794
+ investigating,0.4000,1
795
+ continued,0.0000,0
796
+ episode,0.1500,1
797
+ latest,0.0000,0
798
+ worsening,0.9000,1
799
+ relations,0.0500,1
800
+ policemen,0.0500,1
801
+ egypt,0.0000,0
802
+ israel,0.0000,0
803
+ killing,0.0000,0
804
+ egyptian,0.0000,0
805
+ hunted,0.1500,1
806
+ common,0.0000,0
807
+ border,0.0000,0
808
+ israel,0.0000,0
809
+ militants,0.6500,1
810
+ deadly,0.0500,1
811
+ attack,0.0000,0
812
+ september,0.0000,0
813
+ officials,0.0000,0
814
+ embassy,0.3500,1
815
+ israeli,0.0000,0
816
+ cairo,0.0000,0
817
+ made,0.0000,0
818
+ assess,0.3000,1
819
+ short,0.0000,0
820
+ trip,0.0000,0
821
+ egypt,0.0000,0
822
+ damage,0.0500,1
823
+ mission,0.3000,1
824
+ headquarters,0.2000,1
825
+ sources,0.1000,1
826
+ location,0.0500,1
827
+ trip,0.0000,0
828
+ made,0.0000,0
829
+ find,0.0000,0
830
+ embassy,0.3000,1
831
+ authorities,0.3500,1
832
+ florida,0.0000,0
833
+ woman,0.0000,0
834
+ killed,0.0000,0
835
+ children,0.0000,0
836
+ family,0.0000,0
837
+ home,0.0000,0
838
+ port,0.0000,0
839
+ john,0.0000,0
840
+ tuesday,0.0000,0
841
+ killing,0.0000,0
842
+ spokesman,0.3500,1
843
+ tod,0.0000,0
844
+ goodyear,0.0000,0
845
+ brevard,0.0000,0
846
+ county,0.0000,0
847
+ sheriff,0.0000,0
848
+ office,0.0000,0
849
+ point,0.0000,0
850
+ early,0.0000,0
851
+ morning,0.0000,0
852
+ woman,0.0000,0
853
+ children,0.0000,0
854
+ neighbor,0.0000,0
855
+ house,0.0000,0
856
+ mother,0.0000,0
857
+ shot,0.0000,0
858
+ identity,0.4500,1
859
+ n't,0.0000,0
860
+ seventh,0.0500,1
861
+ person,0.0000,0
862
+ killed,0.0000,0
863
+ interior,0.0500,1
864
+ wounded,0.2500,1
865
+ ministry,0.0000,0
866
+ people,0.0000,0
867
+ afghan,0.0000,0
868
+ children,0.0000,0
869
+ school,0.0000,0
870
+ witness,0.2500,1
871
+ local,0.0000,0
872
+ separate,0.0500,1
873
+ disguised,0.8000,1
874
+ group,0.0000,0
875
+ attackers,0.0000,0
876
+ burqas,0.3500,1
877
+ head-to-toe,0.1000,1
878
+ robes,0.1000,1
879
+ worn,0.0500,1
880
+ conservative,0.5000,1
881
+ storm,0.1000,1
882
+ afghan,0.0000,0
883
+ women,0.0000,0
884
+ compound,0.1500,1
885
+ fierce,0.4000,1
886
+ clashes,0.1000,1
887
+ regime,0.2000,1
888
+ syrian,0.0000,0
889
+ armed,0.0500,1
890
+ forces,0.0000,0
891
+ rebels,0.0000,0
892
+ observatory,0.2500,1
893
+ central,0.0000,0
894
+ city,0.0000,0
895
+ rastan,0.0000,0
896
+ monday,0.0000,0
897
+ left,0.0000,0
898
+ soldiers,0.0000,0
899
+ dead,0.0000,0
900
+ dozens,0.0000,0
901
+ wounded,0.0000,0
902
+ syrian,0.0000,0
903
+ human,0.0000,0
904
+ rights,0.0000,0
905
+ monitoring,0.3000,1
906
+ britain-based,0.0000,0
907
+ initial,0.1000,1
908
+ group,0.0000,0
909
+ indicated,0.1000,1
910
+ reports,0.0000,0
911
+ clashes,0.1000,1
912
+ troop,0.0000,0
913
+ carriers,0.0000,0
914
+ destroyed,0.0000,0
915
+ dawn,0.1000,1
916
+ began,0.0000,0
917
+ outskirts,0.7000,1
918
+ rebel-held,0.1500,1
919
+ province,0.2000,1
920
+ city,0.0000,0
921
+ located,0.0000,0
922
+ homs,0.0000,0
923
+ investigation,0.2000,1
924
+ surround,0.3000,1
925
+ police,0.0000,0
926
+ scene,0.0500,1
927
+ shooting,0.0500,1
928
+ happened,0.0500,1
929
+ county,0.0000,0
930
+ derry,0.0000,0
931
+ deputy,0.1000,1
932
+ saturday,0.0000,0
933
+ morning,0.0000,0
934
+ martin,0.0000,0
935
+ mcguinness,0.0000,0
936
+ northern,0.0000,0
937
+ ireland,0.0000,0
938
+ minister,0.0500,1
939
+ mid-ulster,0.0000,0
940
+ mp,0.0000,0
941
+ tragically,0.7500,1
942
+ heart,0.0000,0
943
+ family,0.0000,0
944
+ girl,0.0000,0
945
+ killed,0.0000,0
946
+ people,0.0000,0
947
+ spoken,0.0000,0
948
+ area,0.0000,0
949
+ morning,0.0000,0
950
+ shock,0.1000,1
951
+ state,0.0000,0
952
+ extend,0.1000,1
953
+ victim,0.2000,1
954
+ thoughts,0.0000,0
955
+ prayers,0.0000,0
956
+ family,0.0000,0
957
+ friends,0.0000,0
958
+ terrible,0.3500,1
959
+ time,0.0000,0
960
+ psni,0.2000,1
961
+ spokesman,0.2000,1
962
+ alerted,0.4500,1
963
+ shortly,0.0500,1
964
+ shooting,0.0000,0
965
+ today,0.0000,0
966
+ arrested,0.0500,1
967
+ added,0.0000,0
968
+ man,0.0000,0
969
+ suspicion,0.8000,1
970
+ murder,0.0500,1
971
+ suspicion,0.3500,1
972
+ male,0.0000,0
973
+ female,0.0000,0
974
+ arrested,0.0000,0
975
+ assisting,0.1500,1
976
+ offender,0.7000,1
977
+ arrested,0.0500,1
978
+ about,0.0000,0
979
+ attempt,0.0500,1
980
+ similar,0.0000,0
981
+ unsanctioned,0.6500,1
982
+ hold,0.0000,0
983
+ rally,0.1500,1
984
+ st,0.0000,0
985
+ petersburg,0.0000,0
986
+ southern,0.0000,0
987
+ city,0.0000,0
988
+ rostov-on-don,0.0000,0
989
+ meanwhile,0.0000,0
990
+ mr,0.0000,0
991
+ putin,0.0000,0
992
+ registered,0.1000,1
993
+ officially,0.0000,0
994
+ presidency,0.0500,1
995
+ run,0.0000,0
996
+ march,0.0000,0
997
+ sustained,0.7000,1
998
+ unusually,0.0000,0
999
+ protests,0.1000,1
1000
+ indignation,1.0000,1
1001
+ past,0.0000,0
1002
+ days,0.0000,0
1003
+ showed,0.0000,0
1004
+ opposition,0.2000,1
1005
+ russian,0.0000,0
1006
+ suggested,0.0000,0
1007
+ drive,0.0500,1
1008
+ retake,0.1000,1
1009
+ job,0.0000,0
1010
+ held,0.0000,0
1011
+ smoothly,0.0500,1
1012
+ expected,0.0500,1
1013
+ killed,0.0000,0
1014
+ gun,0.0000,0
1015
+ attack,0.0000,0
1016
+ william,0.0000,0
1017
+ court,0.0000,0
1018
+ sister,0.0000,0
1019
+ injured,0.0000,0
1020
+ critical,0.2500,1
1021
+ remains,0.0000,0
1022
+ condition,0.0000,0
1023
+ belfast,0.0000,0
1024
+ royal,0.0000,0
1025
+ victoria,0.0000,0
1026
+ hospital,0.0000,0
1027
+ belfast,0.0500,1
1028
+ spokesperson,0.5000,1
1029
+ trust,0.0000,0
1030
+ confirmed,0.1500,1
1031
+ undergone,0.4000,1
1032
+ surgery,0.1000,1
1033
+ saturday,0.0000,0
1034
+ afternoon,0.0000,0
1035
+ believed,0.0000,0
1036
+ mother,0.0000,0
1037
+ young,0.0000,0
1038
+ children,0.0000,0
1039
+ area,0.0000,0
1040
+ shock,0.1000,1
1041
+ total,0.0000,0
1042
+ understand,0.0500,1
1043
+ nobody,0.0000,0
1044
+ happened,0.0500,1
1045
+ everyone,0.0000,0
1046
+ raw,0.4000,1
1047
+ mr,0.0000,0
1048
+ milne,0.0000,0
1049
+ added,0.0000,0
1050
+ thoughts,0.0000,0
1051
+ prayers,0.0000,0
1052
+ family,0.0000,0
1053
+ injured,0.1000,1
1054
+ hope,0.0000,0
1055
+ pray,0.0000,0
1056
+ girl,0.0000,0
1057
+ recovery,0.2500,1
1058
+ make,0.0000,0
1059
+ scene,0.0500,1
1060
+ remained,0.0000,0
1061
+ sealed,0.2000,1
1062
+ examined,0.0500,1
1063
+ forensic,0.6500,1
1064
+ experts,0.0000,0
1065
+ google,0.0000,0
1066
+ saturday,0.0000,0
1067
+ regulators,0.3500,1
1068
+ chinese,0.0000,0
1069
+ deal,0.0500,1
1070
+ approved,0.0000,0
1071
+ mobility,0.1000,1
1072
+ buy,0.0000,0
1073
+ motorola,0.0000,0
1074
+ path,0.0500,1
1075
+ clearing,0.0000,0
1076
+ titan,0.2500,1
1077
+ internet,0.0000,0
1078
+ acquisition,0.9500,1
1079
+ complete,0.0000,0
1080
+ early,0.0000,0
1081
+ week,0.0000,0
1082
+ regulators,0.3000,1
1083
+ us,0.0000,0
1084
+ european,0.0000,0
1085
+ approval,0.1000,1
1086
+ gave,0.0000,0
1087
+ purchase,0.0000,0
1088
+ february,0.0000,0
1089
+ conditions,0.0500,1
1090
+ put,0.0000,0
1091
+ rubber,0.1000,1
1092
+ stamp,0.0500,1
1093
+ included,0.0500,1
1094
+ china,0.0000,0
1095
+ ministry,0.0000,0
1096
+ commerce,0.0000,0
1097
+ software,0.0500,1
1098
+ google,0.0000,0
1099
+ keeping,0.0000,0
1100
+ android,0.0000,0
1101
+ gadgets,0.4000,1
1102
+ smartphones,0.0000,0
1103
+ tablet,0.0000,0
1104
+ computers,0.0000,0
1105
+ free,0.0000,0
1106
+ open,0.0000,0
1107
+ years,0.0000,0
1108
+ cafe,0.0000,0
1109
+ cathair,0.0000,0
1110
+ scullion,0.0000,0
1111
+ local,0.0000,0
1112
+ inseparable,0.9000,1
1113
+ owner,0.0000,0
1114
+ sisters,0.0000,0
1115
+ close,0.0000,0
1116
+ unbelievable,0.2000,1
1117
+ separated,0.0500,1
1118
+ sisters,0.0000,0
1119
+ friends,0.0000,0
1120
+ separated,0.0000,0
1121
+ tragedy,0.6500,1
1122
+ continued,0.0000,0
1123
+ 's,0.0000,0
1124
+ complete,0.0000,0
1125
+ town,0.0000,0
1126
+ deputy,0.0500,1
1127
+ minister,0.0000,0
1128
+ first,0.0000,0
1129
+ victims,0.2500,1
1130
+ martin,0.0000,0
1131
+ mcguinness,0.0000,0
1132
+ visited,0.0000,0
1133
+ family,0.0000,0
1134
+ deeply,0.0000,0
1135
+ family,0.0000,0
1136
+ shocked,0.1000,1
1137
+ traumatised,1.0000,1
1138
+ happened,0.0000,0
1139
+ weekend,0.0000,0
1140
+ murdered,0.1500,1
1141
+ daughter,0.0000,0
1142
+ seriously,0.0500,1
1143
+ daughter,0.0000,0
1144
+ injured,0.0000,0
1145
+ offered,0.1000,1
1146
+ spent,0.0000,0
1147
+ time,0.0000,0
1148
+ family,0.0000,0
1149
+ wider,0.0000,0
1150
+ offered,0.0000,0
1151
+ support,0.0000,0
1152
+ community,0.1000,1
1153
+ time,0.0000,0
1154
+ florida,0.0000,0
1155
+ mother,0.0000,0
1156
+ shot,0.0000,0
1157
+ children,0.0000,0
1158
+ early,0.0000,0
1159
+ tuesday,0.0000,0
1160
+ morning,0.0000,0
1161
+ gun,0.0000,0
1162
+ turning,0.0000,0
1163
+ home,0.0000,0
1164
+ port,0.0000,0
1165
+ john,0.0000,0
1166
+ police,0.0000,0
1167
+ according,0.1000,1
1168
+ lt,0.0500,1
1169
+ sheriff,0.0500,1
1170
+ tod,0.0000,0
1171
+ goodyear,0.0000,0
1172
+ brevard,0.0000,0
1173
+ county,0.0000,0
1174
+ identified,0.2500,1
1175
+ office,0.0000,0
1176
+ mother,0.0000,0
1177
+ tanya,0.0000,0
1178
+ thomas,0.0000,0
1179
+ identified,0.2500,1
1180
+ children,0.0000,0
1181
+ joel,0.0000,0
1182
+ johnson,0.0000,0
1183
+ jazlin,0.0000,0
1184
+ johnson,0.0000,0
1185
+ jaxs,0.0000,0
1186
+ johnson,0.0000,0
1187
+ pebbles,0.0000,0
1188
+ johnson,0.0000,0
1189
+ bit,0.0000,0
1190
+ older,0.0000,0
1191
+ kids,0.0000,0
1192
+ goodyear,0.0000,0
1193
+ remember,0.0000,0
1194
+ kill,0.0000,0
1195
+ n't,0.0000,0
1196
+ time,0.0000,0
1197
+ mom,0.0000,0
1198
+ killed,0.0000,0
1199
+ children,0.0000,0
1200
+ shootings,0.0000,0
1201
+ worst,0.1000,1
1202
+ homicides,0.9500,1
1203
+ place,0.0000,0
1204
+ brevard,0.0000,0
1205
+ county,0.0000,0
1206
+ goodyear,0.0000,0
1207
+ thomas,0.0000,0
1208
+ coworker,0.3500,1
1209
+ text,0.0000,0
1210
+ message,0.0000,0
1211
+ male,0.0000,0
1212
+ cremated,0.9000,1
1213
+ goodyear,0.0000,0
1214
+ tell,0.0000,0
1215
+ mom,0.0000,0
1216
+ happened,0.0000,0
1217
+ children,0.0000,0
1218
+ indication,0.7500,1
1219
+ text,0.0000,0
1220
+ premeditated,1.0000,1
1221
+ goodyear,0.0000,0
1222
+ government,0.0500,1
1223
+ strapped,0.9000,1
1224
+ cash,0.0000,0
1225
+ rescue,0.1000,1
1226
+ room,0.0000,0
1227
+ country,0.0000,0
1228
+ banks,0.0000,0
1229
+ finances,0.0000,0
1230
+ fears,0.0000,0
1231
+ public,0.0000,0
1232
+ overwhelmed,0.7500,1
1233
+ bailing,0.2000,1
1234
+ investors,0.1000,1
1235
+ banks,0.0000,0
1236
+ led,0.0000,0
1237
+ international,0.0500,1
1238
+ spain,0.0000,0
1239
+ european,0.0000,0
1240
+ country,0.0000,0
1241
+ bailout,0.6500,1
1242
+ government,0.0000,0
1243
+ nationalized,0.4000,1
1244
+ week,0.0000,0
1245
+ exposure,0.5000,1
1246
+ bankia,0.0000,0
1247
+ sa,0.0000,0
1248
+ country,0.0000,0
1249
+ fourth-largest,0.0000,0
1250
+ bank,0.0000,0
1251
+ highest,0.0000,0
1252
+ assets,0.0500,1
1253
+ bad,0.0000,0
1254
+ property,0.0000,0
1255
+ loans,0.0000,0
1256
+ crash,0.1000,1
1257
+ construction,0.0000,0
1258
+ sector,0.0500,1
1259
+ estimates,0.1000,1
1260
+ bank,0.0000,0
1261
+ spain,0.0000,0
1262
+ problematic,0.4500,1
1263
+ spanish,0.0000,0
1264
+ banks,0.0000,0
1265
+ sitting,0.0000,0
1266
+ assets,0.0000,0
1267
+ foreclosed,0.7000,1
1268
+ loans,0.0000,0
1269
+ property,0.0000,0
1270
+ estimated,0.0500,1
1271
+ bankia,0.0000,0
1272
+ assets,0.0000,0
1273
+ hold,0.0000,0
1274
+ wednesday,0.0000,0
1275
+ government,0.0000,0
1276
+ converting,0.2000,1
1277
+ taking,0.0000,0
1278
+ control,0.0000,0
1279
+ bankia,0.0000,0
1280
+ entity,0.3500,1
1281
+ shares,0.0000,0
1282
+ loans,0.0000,0
1283
+ gave,0.0000,0
1284
+ creation,0.1000,1
1285
+ fund,0.0000,0
1286
+ merger,0.7500,1
1287
+ regional,0.0000,0
1288
+ savings,0.0000,0
1289
+ banks,0.0000,0
1290
+ interfax,0.1000,1
1291
+ gorbachev,0.0000,0
1292
+ spoke,0.0000,0
1293
+ news,0.0000,0
1294
+ agency,0.0000,0
1295
+ indignation,0.8000,1
1296
+ public,0.0000,0
1297
+ rising,0.0500,1
1298
+ reported,0.0500,1
1299
+ fraud,0.1500,1
1300
+ election,0.0000,0
1301
+ sunday,0.0000,0
1302
+ election,0.0000,0
1303
+ pro-kremlin,0.0500,1
1304
+ steep,0.1000,1
1305
+ united,0.0000,0
1306
+ russia,0.0000,0
1307
+ party,0.0000,0
1308
+ won,0.0000,0
1309
+ cent,0.0000,0
1310
+ vote,0.0000,0
1311
+ majority,0.2000,1
1312
+ fall,0.0000,0
1313
+ earlier,0.0000,0
1314
+ according,0.0500,1
1315
+ preliminary,0.9000,1
1316
+ results,0.0000,0
1317
+ opposition,0.2000,1
1318
+ international,0.0500,1
1319
+ parties,0.0000,0
1320
+ marred,0.7000,1
1321
+ observers,0.0000,0
1322
+ vote,0.0000,0
1323
+ widespread,0.1000,1
1324
+ vote-rigging,0.8500,1
1325
+ reports,0.0000,0
1326
+ thousands,0.0000,0
1327
+ roamed,0.5000,1
1328
+ security,0.0000,0
1329
+ forces,0.0000,0
1330
+ russian,0.0000,0
1331
+ capital,0.0000,0
1332
+ helicopters,0.0000,0
1333
+ sky,0.0000,0
1334
+ wednesday,0.0000,0
1335
+ following,0.0500,1
1336
+ show,0.0000,0
1337
+ force,0.0000,0
1338
+ protests,0.1500,1
1339
+ scandal-marred,0.9000,1
1340
+ struggle,0.1500,1
1341
+ elections,0.0000,0
1342
+ prime,0.0000,0
1343
+ minister,0.0000,0
1344
+ vladimir,0.0000,0
1345
+ putin,0.0000,0
1346
+ party,0.0000,0
1347
+ majority,0.0500,1
1348
+ registered,0.1000,1
1349
+ putin,0.0000,0
1350
+ officially,0.0000,0
1351
+ presidency,0.0500,1
1352
+ wednesday,0.0000,0
1353
+ run,0.0000,0
1354
+ march,0.0000,0
1355
+ sustained,0.5500,1
1356
+ unusually,0.0000,0
1357
+ indignation,0.7500,1
1358
+ protests,0.0000,0
1359
+ past,0.0000,0
1360
+ days,0.0000,0
1361
+ showed,0.0000,0
1362
+ opposition,0.1000,1
1363
+ russian,0.0000,0
1364
+ held,0.0000,0
1365
+ suggested,0.0000,0
1366
+ drive,0.0000,0
1367
+ retake,0.0000,0
1368
+ job,0.0000,0
1369
+ smoothly,0.0500,1
1370
+ expected,0.0000,0
1371
+ police,0.0000,0
1372
+ mother,0.0000,0
1373
+ shot,0.0000,0
1374
+ children,0.0000,0
1375
+ port,0.0000,0
1376
+ john,0.0000,0
1377
+ home,0.0000,0
1378
+ early,0.0000,0
1379
+ tuesday,0.0000,0
1380
+ next-door,0.1000,1
1381
+ neighbor,0.2500,1
1382
+ awoke,0.3000,1
1383
+ gunshots,0.1500,1
1384
+ sound,0.0000,0
1385
+ followed,0.0000,0
1386
+ knock,0.0000,0
1387
+ door,0.0000,0
1388
+ neighbor,0.0500,1
1389
+ opened,0.0000,0
1390
+ door,0.0000,0
1391
+ find,0.0000,0
1392
+ children,0.0000,0
1393
+ shot,0.0000,0
1394
+ neighbor,0.0500,1
1395
+ towel,0.0500,1
1396
+ gave,0.0000,0
1397
+ injuries,0.2000,1
1398
+ shortly,0.0500,1
1399
+ mother,0.0000,0
1400
+ called,0.0000,0
1401
+ children,0.0000,0
1402
+ home,0.0000,0
1403
+ neighbor,0.0500,1
1404
+ left,0.0000,0
1405
+ gunshots,0.0500,1
1406
+ heard,0.0000,0
1407
+ brevard,0.0000,0
1408
+ house,0.0000,0
1409
+ called,0.0000,0
1410
+ reported,0.1000,1
1411
+ times,0.0000,0
1412
+ sheriff,0.0000,0
1413
+ deputies,0.4000,1
1414
+ scene,0.1000,1
1415
+ arrived,0.0000,0
1416
+ pebbles,0.1000,1
1417
+ find,0.0000,0
1418
+ lying,0.1000,1
1419
+ johnson,0.0000,0
1420
+ lawn,0.2500,1
1421
+ front,0.0000,0
1422
+ safety,0.0500,1
1423
+ treated,0.0500,1
1424
+ died,0.0000,0
1425
+ shortly,0.0000,0
1426
+ emergency,0.1000,1
1427
+ personnel,0.2000,1
1428
+ swat,0.2000,1
1429
+ self-inflicted,0.9500,1
1430
+ team,0.0000,0
1431
+ entered,0.0000,0
1432
+ home,0.0000,0
1433
+ found,0.0000,0
1434
+ thomas,0.0000,0
1435
+ dead,0.0000,0
1436
+ gunshot,0.0500,1
1437
+ wound,0.0000,0
1438
+ children,0.0000,0
1439
+ dead,0.0000,0
1440
+ pebbles,0.0000,0
1441
+ victims,0.2500,1
1442
+ johnson,0.0000,0
1443
+ young,0.0000,0
1444
+ identified,0.2000,1
1445
+ joel,0.0000,0
1446
+ johnson,0.0000,0
1447
+ jazlin,0.0000,0
1448
+ johnson,0.0000,0
1449
+ jaxs,0.0000,0
1450
+ johnson,0.0000,0
1451
+ motive,0.6500,1
1452
+ killings,0.0000,0
1453
+ witness,0.2500,1
1454
+ described,0.0500,1
1455
+ received,0.1000,1
1456
+ friend,0.0000,0
1457
+ thomas,0.0000,0
1458
+ told,0.0000,0
1459
+ police,0.0000,0
1460
+ indicating,0.5500,1
1461
+ text,0.0000,0
1462
+ message,0.0000,0
1463
+ cremated,0.9500,1
1464
+ wanted,0.0000,0
1465
+ children,0.0000,0
1466
+ note,0.0000,0
1467
+ found,0.0000,0
1468
+ scene,0.0000,0
1469
+ previously,0.2000,1
1470
+ police,0.0000,0
1471
+ domestic,0.0500,1
1472
+ called,0.0000,0
1473
+ home,0.0000,0
1474
+ disturbances,0.2500,1
1475
+ easter,0.0500,1
1476
+ lt,0.0000,0
1477
+ goodyear,0.0000,0
1478
+ recently,0.0000,0
1479
+ arrested,0.1000,1
1480
+ jaxs,0.0000,0
1481
+ johnson,0.0000,0
1482
+ domestic,0.1000,1
1483
+ april,0.0000,0
1484
+ incident,0.1000,1
1485
+ involving,0.0500,1
1486
+ incident,0.3500,1
1487
+ mother,0.0000,0
1488
+ details,0.0000,0
1489
+ immediately,0.3000,1
1490
+ charged,0.3000,1
1491
+ man,0.0000,0
1492
+ joel,0.0000,0
1493
+ elliott,0.0000,0
1494
+ north,0.0000,0
1495
+ road,0.0000,0
1496
+ brighton,0.0000,0
1497
+ murder,0.2500,1
1498
+ thursday,0.0000,0
1499
+ may,0.0000,0
1500
+ deputies,0.3500,1
1501
+ brevard,0.0000,0
1502
+ county,0.0000,0
1503
+ sheriff,0.0000,0
1504
+ ranged,0.1000,1
1505
+ tanya,0.0000,0
1506
+ thomas,0.0000,0
1507
+ shot,0.0000,0
1508
+ killed,0.0000,0
1509
+ children,0.0000,0
1510
+ fatally,0.7000,1
1511
+ age,0.0000,0
1512
+ florida,0.0000,0
1513
+ mother,0.0000,0
1514
+ sought,0.6500,1
1515
+ shot,0.0000,0
1516
+ children,0.0000,0
1517
+ killing,0.0000,0
1518
+ tuesday,0.0000,0
1519
+ called,0.0000,0
1520
+ kids,0.0000,0
1521
+ neighbor,0.3000,1
1522
+ fatal,0.2000,1
1523
+ back,0.0000,0
1524
+ house,0.0000,0
1525
+ firing,0.0000,0
1526
+ authorities,0.4000,1
1527
+ shots,0.0000,0
1528
+ dawn,0.4500,1
1529
+ tonya,0.0000,0
1530
+ thomas,0.0000,0
1531
+ children,0.0000,0
1532
+ neighbor,0.0000,0
1533
+ front,0.0000,0
1534
+ door,0.0000,0
1535
+ spokesman,0.7000,1
1536
+ mother,0.0000,0
1537
+ shot,0.0000,0
1538
+ tod,0.0000,0
1539
+ goodyear,0.0000,0
1540
+ brevard,0.0000,0
1541
+ county,0.0000,0
1542
+ sheriff,0.0000,0
1543
+ office,0.0000,0
1544
+ killed,0.0500,1
1545
+ called,0.0000,0
1546
+ children,0.0000,0
1547
+ back,0.0000,0
1548
+ house,0.0000,0
1549
+ goodyear,0.0000,0
1550
+ outgoing,0.1500,1
1551
+ israel,0.0000,0
1552
+ ambassador,0.1500,1
1553
+ embassy,0.1500,1
1554
+ egypt,0.0000,0
1555
+ returned,0.0000,0
1556
+ cairo,0.0000,0
1557
+ sunday,0.0000,0
1558
+ short,0.0000,0
1559
+ visit,0.0000,0
1560
+ months,0.0000,0
1561
+ staffers,0.2500,1
1562
+ fled,0.1500,1
1563
+ military,0.0500,1
1564
+ crowd,0.1000,1
1565
+ planes,0.0000,0
1566
+ attacked,0.1000,1
1567
+ building,0.0000,0
1568
+ egyptian,0.0000,0
1569
+ briefly,0.2000,1
1570
+ foreign,0.0000,0
1571
+ ministry,0.0000,0
1572
+ official,0.0000,0
1573
+ yitzhak,0.0000,0
1574
+ levanon,0.0000,0
1575
+ met,0.0000,0
1576
+ foreign,0.0000,0
1577
+ minister,0.0000,0
1578
+ mohammed,0.0000,0
1579
+ amr,0.0000,0
1580
+ condition,0.0500,1
1581
+ official,0.0000,0
1582
+ spoke,0.0000,0
1583
+ anonymity,0.8500,1
1584
+ authorized,0.4500,1
1585
+ speak,0.0000,0
1586
+ press,0.0000,0
1587
+ israel,0.0000,0
1588
+ foreign,0.0000,0
1589
+ ministry,0.0000,0
1590
+ levanon,0.0000,0
1591
+ slated,0.6000,1
1592
+ shortly,0.0000,0
1593
+ retire,0.0000,0
1594
+ merely,0.3000,1
1595
+ visit,0.0000,0
1596
+ farewell,0.3500,1
1597
+ immediate,0.2500,1
1598
+ ambassador,0.2000,1
1599
+ plans,0.0000,0
1600
+ return,0.0000,0
1601
+ rioters,0.5500,1
1602
+ egyptian,0.0000,0
1603
+ embassy,0.1000,1
1604
+ broke,0.0000,0
1605
+ israeli,0.0000,0
1606
+ pursued,0.5000,1
1607
+ killing,0.0000,0
1608
+ egyptian,0.0000,0
1609
+ soldiers,0.0000,0
1610
+ sinai,0.0000,0
1611
+ israel,0.0000,0
1612
+ militants,0.3000,1
1613
+ palestinian,0.0000,0
1614
+ infiltrated,0.8500,1
1615
+ border,0.0000,0
1616
+ gorbachev,0.0000,0
1617
+ interfax,0.0000,0
1618
+ spoke,0.0000,0
1619
+ public,0.0500,1
1620
+ news,0.0000,0
1621
+ agency,0.0000,0
1622
+ indignation,0.6000,1
1623
+ rising,0.0000,0
1624
+ reported,0.0000,0
1625
+ fraud,0.2500,1
1626
+ election,0.0000,0
1627
+ sunday,0.0000,0
1628
+ election,0.0000,0
1629
+ pro-kremlin,0.1000,1
1630
+ steep,0.1500,1
1631
+ united,0.0000,0
1632
+ russia,0.0000,0
1633
+ party,0.0000,0
1634
+ won,0.0000,0
1635
+ cent,0.0000,0
1636
+ vote,0.0000,0
1637
+ fall,0.0000,0
1638
+ majority,0.0500,1
1639
+ earlier,0.0000,0
1640
+ preliminary,0.6500,1
1641
+ results,0.0000,0
1642
+ opposition,0.1000,1
1643
+ parties,0.0000,0
1644
+ observers,0.1500,1
1645
+ international,0.0000,0
1646
+ marred,0.7500,1
1647
+ vote,0.0000,0
1648
+ widespread,0.1500,1
1649
+ vote-rigging,0.8000,1
1650
+ reports,0.0000,0
1651
+ thousands,0.0000,0
1652
+ rallied,0.2000,1
1653
+ russians,0.0000,0
1654
+ week,0.0000,0
1655
+ moscow,0.0000,0
1656
+ petersburg,0.0000,0
1657
+ interior,0.0000,0
1658
+ facing,0.0000,0
1659
+ police,0.0000,0
1660
+ ministry,0.0000,0
1661
+ troops,0.0000,0
1662
+ detained,0.7500,1
1663
+ hundreds,0.0000,0
1664
+ beaten,0.0000,0
1665
+ soviet,0.0000,0
1666
+ former,0.0000,0
1667
+ unrest,0.2500,1
1668
+ president,0.0000,0
1669
+ kremlin,0.0000,0
1670
+ send,0.0000,0
1671
+ people,0.0000,0
1672
+ polls,0.0000,0
1673
+ face,0.0000,0
1674
+ long-term,0.0000,0
1675
+ alleged,0.5000,1
1676
+ fraud,0.1000,1
1677
+ voting,0.0000,0
1678
+ annul,0.6500,1
1679
+ russian,0.0000,0
1680
+ authorities,0.0000,0
1681
+ parliamentary,0.4000,1
1682
+ gorbachev,0.0000,0
1683
+ vote,0.0000,0
1684
+ results,0.0000,0
1685
+ hold,0.0000,0
1686
+ election,0.0000,0
1687
+ ex-soviet,0.0000,0
1688
+ leader,0.0000,0
1689
+ mikhail,0.0000,0
1690
+ urged,0.2000,1
1691
+ indignation,0.4000,1
1692
+ popular,0.0000,0
1693
+ alleged,0.2500,1
1694
+ grows,0.0000,0
1695
+ election,0.0000,0
1696
+ fraud,0.0000,0
1697
+ authorities,0.3000,1
1698
+ emergency,0.0500,1
1699
+ quickly,0.0000,0
1700
+ moved,0.0000,0
1701
+ breached,0.9500,1
1702
+ service,0.0000,0
1703
+ back,0.0000,0
1704
+ door,0.0000,0
1705
+ gruesome,0.9000,1
1706
+ found,0.0000,0
1707
+ scene,0.0000,0
1708
+ thomas,0.0000,0
1709
+ children,0.0000,0
1710
+ found,0.0000,0
1711
+ dead,0.0000,0
1712
+ house,0.0000,0
1713
+ wounds,0.0500,1
1714
+ gunshot,0.0000,0
1715
+ presumable,0.9500,1
1716
+ delivered,0.0500,1
1717
+ thomas,0.0000,0
1718
+ motive,0.4500,1
1719
+ idea,0.0000,0
1720
+ goodyear,0.0000,0
1721
+ crime,0.0500,1
1722
+ goodyear,0.0000,0
1723
+ gun,0.0000,0
1724
+ found,0.0000,0
1725
+ scene,0.0000,0
1726
+ victims,0.1000,1
1727
+ identified,0.1500,1
1728
+ joel,0.0000,0
1729
+ johnson,0.0000,0
1730
+ jazlin,0.0000,0
1731
+ johnson,0.0000,0
1732
+ jaxs,0.0000,0
1733
+ johnson,0.0000,0
1734
+ pebbles,0.0000,0
1735
+ johnson,0.0000,0
1736
+ reported,0.0000,0
1737
+ wftv,0.0000,0
1738
+ police,0.0000,0
1739
+ witness,0.1000,1
1740
+ informed,0.2500,1
1741
+ deputies,0.2500,1
1742
+ received,0.0000,0
1743
+ text,0.0000,0
1744
+ thomas,0.0000,0
1745
+ text,0.0500,1
1746
+ ominous,0.9500,1
1747
+ cremated,0.9000,1
1748
+ wanted,0.0000,0
1749
+ children,0.0000,0
1750
+ neighbor,0.0500,1
1751
+ however,0.0000,0
1752
+ incident,0.3500,1
1753
+ text,0.0000,0
1754
+ reported,0.0000,0
1755
+ wftv,0.0000,0
1756
+ marine,0.1000,1
1757
+ chinese,0.0000,0
1758
+ surveillance,0.9000,1
1759
+ fulfilling,0.4500,1
1760
+ ships,0.0000,0
1761
+ area,0.0000,0
1762
+ duties,0.0000,0
1763
+ safeguarding,0.7500,1
1764
+ maritime,0.6000,1
1765
+ chinese,0.0000,0
1766
+ statement,0.0000,0
1767
+ rights,0.0000,0
1768
+ interests,0.0000,0
1769
+ fatally,0.4000,1
1770
+ florida,0.0000,0
1771
+ mother,0.0000,0
1772
+ shot,0.0000,0
1773
+ children,0.0000,0
1774
+ killing,0.0000,0
1775
+ tuesday,0.0000,0
1776
+ called,0.0000,0
1777
+ kids,0.0000,0
1778
+ sought,0.3000,1
1779
+ neighbor,0.0000,0
1780
+ back,0.0000,0
1781
+ house,0.0000,0
1782
+ fatal,0.0500,1
1783
+ firing,0.0000,0
1784
+ authorities,0.2500,1
1785
+ shots,0.0000,0
1786
+ fatally,0.1000,1
1787
+ thirty-three-year-old,0.0000,0
1788
+ tonya,0.0000,0
1789
+ thomas,0.0000,0
1790
+ ranged,0.2500,1
1791
+ shot,0.0000,0
1792
+ children,0.0000,0
1793
+ spokesman,0.4500,1
1794
+ age,0.0000,0
1795
+ tod,0.0000,0
1796
+ goodyear,0.0000,0
1797
+ county,0.0000,0
1798
+ brevard,0.0000,0
1799
+ sheriff,0.0000,0
1800
+ office,0.0000,0
1801
+ dawn,0.3000,1
1802
+ children,0.0000,0
1803
+ neighbor,0.0000,0
1804
+ front,0.0000,0
1805
+ door,0.0000,0
1806
+ mother,0.0000,0
1807
+ shot,0.0000,0
1808
+ mother,0.0000,0
1809
+ called,0.0000,0
1810
+ children,0.0000,0
1811
+ back,0.0000,0
1812
+ house,0.0000,0
1813
+ killed,0.0000,0
1814
+ goodyear,0.0000,0
ngram_counts.txt.gz ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ccec76f28b5ffa60684f06f96dfa58eec7df4d1987287e7091b91a961426c74d
3
+ size 44499414
test.csv ADDED
The diff for this file is too large to render. See raw diff
 
train.csv ADDED
The diff for this file is too large to render. See raw diff
 
validation.csv ADDED
The diff for this file is too large to render. See raw diff