Alon commited on
Commit
18c49d5
1 Parent(s): 5dca84c

Initial commit

Browse files
.gitattributes CHANGED
@@ -52,3 +52,15 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
52
  *.jpg filter=lfs diff=lfs merge=lfs -text
53
  *.jpeg filter=lfs diff=lfs merge=lfs -text
54
  *.webp filter=lfs diff=lfs merge=lfs -text
 
 
 
 
 
 
 
 
 
 
 
 
 
52
  *.jpg filter=lfs diff=lfs merge=lfs -text
53
  *.jpeg filter=lfs diff=lfs merge=lfs -text
54
  *.webp filter=lfs diff=lfs merge=lfs -text
55
+ clean/Dev_passages_min_span.json filter=lfs diff=lfs merge=lfs -text
56
+ clean/Test_passages_min_span.json filter=lfs diff=lfs merge=lfs -text
57
+ clean/Train_passages_min_span.json filter=lfs diff=lfs merge=lfs -text
58
+ dpr/Dev.json filter=lfs diff=lfs merge=lfs -text
59
+ dpr/Test.json filter=lfs diff=lfs merge=lfs -text
60
+ dpr/Train.json filter=lfs diff=lfs merge=lfs -text
61
+ squad/Dev_squad_format_1pos_23neg.json filter=lfs diff=lfs merge=lfs -text
62
+ squad/Test_squad_format_1pos_23neg.json filter=lfs diff=lfs merge=lfs -text
63
+ squad/Train_squad_format_1pos_23neg.json filter=lfs diff=lfs merge=lfs -text
64
+ train/Dev_passages_min_span.json filter=lfs diff=lfs merge=lfs -text
65
+ train/Test_passages_min_span.json filter=lfs diff=lfs merge=lfs -text
66
+ train/Train_passages_min_span.json filter=lfs diff=lfs merge=lfs -text
README.md CHANGED
@@ -1,3 +1,95 @@
1
- ---
2
- license: cc-by-sa-3.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # The CoreSearch Dataset
2
+ A cleaner version of the CoreSearch dataset</br>
3
+
4
+ ## Cleaning done in this version
5
+ Below examples of fixes done in this dataset version
6
+
7
+ ### Fix event mention spans
8
+ | Before Span Fix | After Span Fix |
9
+ | :------ | :----- |
10
+ | Academy Awards 65th ceremony | Academy Awards |
11
+ | 65th Annual Academy Awards | Annual Academy Awards |
12
+ | 2015 Southland Conference Women's Basketball Tournament | Southland Conference Women's Basketball Tournament |
13
+ | 2010 Austin suicide attack | attack |
14
+ | an earthquake in 1948 | earthquake |
15
+ | tragic plane crash | crash |
16
+ | Lokomotiv Yaroslavl plane tragedy | tragedy |
17
+ | just been shot | shot |
18
+ | wounded by gunfire | wounded |
19
+ | Kennedy's assassination in Los Angeles | assassination |
20
+ | Arab League summit in Cairo | summit |
21
+ | plane crash on 4 July 1943 | crash |
22
+
23
+ ### Resolve cases of two events in a single span
24
+ | Before Span Fix | After Span Fix |
25
+ | :------ | :----- |
26
+ | killing or abduction of several hundred villagers | killing |
27
+ | kidnapping and murder of Aldo Moro | kidnapping |
28
+
29
+
30
+ ### Remove erroneous event mentions (Entities)
31
+ | Mention Removed | Reason (not event) |
32
+ | :------ | :----- |
33
+ | I Want Your Love | Song name |
34
+ | 2006 Screen Actors Guild Award for Best Ensemble | Award name |
35
+ | in 1896 | Year |
36
+
37
+
38
+ - **Paper:** [Cross-document Event Coreference Search: Task, Dataset and Modeling](https://arxiv.org/abs/2210.12654)
39
+
40
+ ### Languages
41
+
42
+ English
43
+
44
+ ## Load Dataset
45
+ You can read/download the dataset files following Huggingface Hub instructions.</br>
46
+ For example, below code will load CoreSearch DPR folder:
47
+
48
+ ```python
49
+ from huggingface_hub import hf_hub_url, cached_download
50
+ import json
51
+ REPO_ID = "datasets/Intel/CoreSearchV2"
52
+ DPR_FILES = "/dpr/"
53
+
54
+ dpr_files = ["dpr/Dev.json", "dpr/Train.json", "dpr/Test.json"]
55
+
56
+ dpr_jsons = list()
57
+ for _file in dpr_files:
58
+ dpr_jsons.append(json.load(open(cached_download(
59
+ hf_hub_url(REPO_ID, _file)), "r")))
60
+ ```
61
+
62
+ ### Data Splits
63
+ - **Final version of the CD event coreference search dataset**<br>
64
+ | | Train | Valid | Test | Total |
65
+ | ----- | ------ | ----- | ---- | ---- |
66
+ | WEC-Eng Validated Data | | | | |
67
+ | &nbsp;&nbsp;&nbsp;&nbsp;# Clusters | 229 | 48 | 226 | 503 |
68
+ | &nbsp;&nbsp;&nbsp;&nbsp;# Passages (with Mentions) | 1,429 | 335 | 1,206 | 2,970 |
69
+ | # Added Destructor Passages | 922,736 | 923,376 | 923,746 | 2,769,858 |
70
+ | # Total Passages | 924,239 | 923,717 | 925,012 | 2,772,968 |
71
+
72
+ ## Citation
73
+ ```
74
+ @inproceedings{eirew-etal-2022-cross,
75
+ title = "Cross-document Event Coreference Search: Task, Dataset and Modeling",
76
+ author = "Eirew, Alon and
77
+ Caciularu, Avi and
78
+ Dagan, Ido",
79
+ booktitle = "Proceedings of the 2022 Conference on Empirical Methods in Natural Language Processing",
80
+ month = dec,
81
+ year = "2022",
82
+ address = "Abu Dhabi, United Arab Emirates",
83
+ publisher = "Association for Computational Linguistics",
84
+ url = "https://aclanthology.org/2022.emnlp-main.58",
85
+ pages = "900--913",
86
+ abstract = "The task of Cross-document Coreference Resolution has been traditionally formulated as requiring to identify all coreference links across a given set of documents. We propose an appealing, and often more applicable, complementary set up for the task {--} Cross-document Coreference Search, focusing in this paper on event coreference. Concretely, given a mention in context of an event of interest, considered as a query, the task is to find all coreferring mentions for the query event in a large document collection. To support research on this task, we create a corresponding dataset, which is derived from Wikipedia while leveraging annotations in the available Wikipedia Event Coreferecene dataset (WEC-Eng). Observing that the coreference search setup is largely analogous to the setting of Open Domain Question Answering, we adapt the prominent Deep Passage Retrieval (DPR) model to our setting, as an appealing baseline. Finally, we present a novel model that integrates a powerful coreference scoring scheme into the DPR architecture, yielding improved performance.",
87
+ }
88
+ ```
89
+
90
+
91
+ ## License
92
+ We provide the following data sets under a <a href="https://creativecommons.org/licenses/by-sa/3.0/deed.en_US">Creative Commons Attribution-ShareAlike 3.0 Unported License</a>. It is based on content extracted from Wikipedia that is licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License
93
+
94
+ ## Contact
95
+ If you have any questions please create a Github issue at <a href="https://github.com/AlonEirew/CoreSearch">https://github.com/AlonEirew/CoreSearch</a>.
clean/Dev_gold_clusters_min_span.json ADDED
@@ -0,0 +1,625 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "clusterId": 2989612,
4
+ "clusterTitle": "Johnstown flood of 1977",
5
+ "mentionIds": [
6
+ 114977,
7
+ 114978,
8
+ 114979,
9
+ 114980
10
+ ]
11
+ },
12
+ {
13
+ "clusterId": 717321,
14
+ "clusterTitle": "2014 Libertarian National Convention",
15
+ "mentionIds": [
16
+ 76810,
17
+ 76811
18
+ ]
19
+ },
20
+ {
21
+ "clusterId": 2892840,
22
+ "clusterTitle": "T in the Park 2012",
23
+ "mentionIds": [
24
+ 113117,
25
+ 113118,
26
+ 113119,
27
+ 113120,
28
+ 113121
29
+ ]
30
+ },
31
+ {
32
+ "clusterId": 4297796,
33
+ "clusterTitle": "2006 Dahab bombings",
34
+ "mentionIds": [
35
+ 122657,
36
+ 122658,
37
+ 122660,
38
+ 122661,
39
+ 122663,
40
+ 122664,
41
+ 122665
42
+ ]
43
+ },
44
+ {
45
+ "clusterId": 2173988,
46
+ "clusterTitle": "Miss Russia 2017",
47
+ "mentionIds": [
48
+ 107283,
49
+ 107284,
50
+ 107285,
51
+ 107286
52
+ ]
53
+ },
54
+ {
55
+ "clusterId": 2326058,
56
+ "clusterTitle": "2010 China floods",
57
+ "mentionIds": [
58
+ 108417,
59
+ 108418,
60
+ 108419,
61
+ 108420
62
+ ]
63
+ },
64
+ {
65
+ "clusterId": 54794,
66
+ "clusterTitle": "76th Academy Awards",
67
+ "mentionIds": [
68
+ 20435,
69
+ 20436,
70
+ 20450,
71
+ 20451,
72
+ 20455,
73
+ 20460,
74
+ 20470,
75
+ 20473,
76
+ 20485,
77
+ 20492,
78
+ 20496
79
+ ]
80
+ },
81
+ {
82
+ "clusterId": 915975,
83
+ "clusterTitle": "2010 Yushu earthquake",
84
+ "mentionIds": [
85
+ 84851,
86
+ 84853,
87
+ 84855,
88
+ 84856,
89
+ 84857,
90
+ 84861,
91
+ 84862,
92
+ 84864,
93
+ 84867
94
+ ]
95
+ },
96
+ {
97
+ "clusterId": 947717,
98
+ "clusterTitle": "Massacre of the Acqui Division",
99
+ "mentionIds": [
100
+ 85928,
101
+ 85932,
102
+ 85934,
103
+ 85935,
104
+ 85936,
105
+ 85938,
106
+ 85940,
107
+ 85941,
108
+ 85943,
109
+ 85944,
110
+ 85946
111
+ ]
112
+ },
113
+ {
114
+ "clusterId": 209422,
115
+ "clusterTitle": "1556 Shaanxi earthquake",
116
+ "mentionIds": [
117
+ 39490,
118
+ 39493,
119
+ 39496,
120
+ 39497,
121
+ 39500,
122
+ 39501,
123
+ 39505,
124
+ 39506,
125
+ 39507,
126
+ 39509
127
+ ]
128
+ },
129
+ {
130
+ "clusterId": 4429902,
131
+ "clusterTitle": "2001 Netanya bombing",
132
+ "mentionIds": [
133
+ 122929,
134
+ 122930
135
+ ]
136
+ },
137
+ {
138
+ "clusterId": 3133474,
139
+ "clusterTitle": "2012 West Coast Conference Men's Basketball Tournament",
140
+ "mentionIds": [
141
+ 117047,
142
+ 117048,
143
+ 117049,
144
+ 117050,
145
+ 117052,
146
+ 117053,
147
+ 117056
148
+ ]
149
+ },
150
+ {
151
+ "clusterId": 43022,
152
+ "clusterTitle": "48th Berlin International Film Festival",
153
+ "mentionIds": [
154
+ 17983,
155
+ 17985,
156
+ 17992,
157
+ 17995,
158
+ 18008
159
+ ]
160
+ },
161
+ {
162
+ "clusterId": 2109487,
163
+ "clusterTitle": "2011 Sikkim earthquake",
164
+ "mentionIds": [
165
+ 106810,
166
+ 106811,
167
+ 106812,
168
+ 106813,
169
+ 106816,
170
+ 106817,
171
+ 106818
172
+ ]
173
+ },
174
+ {
175
+ "clusterId": 3689527,
176
+ "clusterTitle": "Melodifestivalen 1995",
177
+ "mentionIds": [
178
+ 120602,
179
+ 120604,
180
+ 120605,
181
+ 120606
182
+ ]
183
+ },
184
+ {
185
+ "clusterId": 2111025,
186
+ "clusterTitle": "39th International Film Festival of India",
187
+ "mentionIds": [
188
+ 106867,
189
+ 106868
190
+ ]
191
+ },
192
+ {
193
+ "clusterId": 906780,
194
+ "clusterTitle": "1988 Metro Manila Film Festival",
195
+ "mentionIds": [
196
+ 84554,
197
+ 84555,
198
+ 84556
199
+ ]
200
+ },
201
+ {
202
+ "clusterId": 578075,
203
+ "clusterTitle": "Eurovision Song Contest 2007",
204
+ "mentionIds": [
205
+ 69210,
206
+ 69224,
207
+ 69227,
208
+ 69231,
209
+ 69239,
210
+ 69246,
211
+ 69252,
212
+ 69274,
213
+ 69277,
214
+ 69319,
215
+ 69330,
216
+ 69346,
217
+ 69379,
218
+ 69386,
219
+ 69392,
220
+ 69398,
221
+ 69413,
222
+ 69414,
223
+ 69417,
224
+ 69429,
225
+ 69455,
226
+ 69461,
227
+ 69463,
228
+ 69487
229
+ ]
230
+ },
231
+ {
232
+ "clusterId": 2059276,
233
+ "clusterTitle": "Kidnapping of Elizabeth Smart",
234
+ "mentionIds": [
235
+ 106434,
236
+ 106436,
237
+ 106437,
238
+ 106438,
239
+ 106439,
240
+ 106441
241
+ ]
242
+ },
243
+ {
244
+ "clusterId": 1733123,
245
+ "clusterTitle": "Atlanta International Pop Festival (1970)",
246
+ "mentionIds": [
247
+ 102943,
248
+ 102945,
249
+ 102948,
250
+ 102951,
251
+ 102952,
252
+ 102954,
253
+ 102955,
254
+ 102956,
255
+ 102959,
256
+ 102961,
257
+ 102962
258
+ ]
259
+ },
260
+ {
261
+ "clusterId": 2690100,
262
+ "clusterTitle": "2011 Pacific-10 Conference Men's Basketball Tournament",
263
+ "mentionIds": [
264
+ 111624,
265
+ 111625,
266
+ 111626,
267
+ 111627,
268
+ 111629,
269
+ 111631,
270
+ 111632
271
+ ]
272
+ },
273
+ {
274
+ "clusterId": 506406,
275
+ "clusterTitle": "American Music Awards of 2014",
276
+ "mentionIds": [
277
+ 64453,
278
+ 64454,
279
+ 64458,
280
+ 64461,
281
+ 64462,
282
+ 64465,
283
+ 64467,
284
+ 64470,
285
+ 64472,
286
+ 64473,
287
+ 64474,
288
+ 64480,
289
+ 64483,
290
+ 64485,
291
+ 64486
292
+ ]
293
+ },
294
+ {
295
+ "clusterId": 1090615,
296
+ "clusterTitle": "2013 MAAC Men's Basketball Tournament",
297
+ "mentionIds": [
298
+ 90308,
299
+ 90310,
300
+ 90311,
301
+ 90312,
302
+ 90316
303
+ ]
304
+ },
305
+ {
306
+ "clusterId": 2850816,
307
+ "clusterTitle": "Caltavuturo massacre",
308
+ "mentionIds": [
309
+ 112800,
310
+ 112801,
311
+ 112802,
312
+ 112803
313
+ ]
314
+ },
315
+ {
316
+ "clusterId": 500231,
317
+ "clusterTitle": "2014 Big Sky Conference Men's Basketball Tournament",
318
+ "mentionIds": [
319
+ 63960,
320
+ 63961,
321
+ 63962
322
+ ]
323
+ },
324
+ {
325
+ "clusterId": 947722,
326
+ "clusterTitle": "Massacre of Kalavryta",
327
+ "mentionIds": [
328
+ 85947,
329
+ 85950,
330
+ 85951,
331
+ 85953,
332
+ 85958,
333
+ 85960
334
+ ]
335
+ },
336
+ {
337
+ "clusterId": 219654,
338
+ "clusterTitle": "59th Primetime Emmy Awards",
339
+ "mentionIds": [
340
+ 40409,
341
+ 40415,
342
+ 40424,
343
+ 40435,
344
+ 40444,
345
+ 40448,
346
+ 40449,
347
+ 40462,
348
+ 40464,
349
+ 40466,
350
+ 40483,
351
+ 40488,
352
+ 40504,
353
+ 40505,
354
+ 40508,
355
+ 40517
356
+ ]
357
+ },
358
+ {
359
+ "clusterId": 330240,
360
+ "clusterTitle": "1856 Republican National Convention",
361
+ "mentionIds": [
362
+ 50839,
363
+ 50842,
364
+ 50845,
365
+ 50846,
366
+ 50848,
367
+ 50849,
368
+ 50850,
369
+ 50851,
370
+ 50852,
371
+ 50859,
372
+ 50861,
373
+ 50862,
374
+ 50865,
375
+ 50868,
376
+ 50869,
377
+ 50870,
378
+ 50878,
379
+ 50881
380
+ ]
381
+ },
382
+ {
383
+ "clusterId": 1677343,
384
+ "clusterTitle": "2010 AFL Rising Star",
385
+ "mentionIds": [
386
+ 102059,
387
+ 102061,
388
+ 102063,
389
+ 102064,
390
+ 102065,
391
+ 102066,
392
+ 102067,
393
+ 102068
394
+ ]
395
+ },
396
+ {
397
+ "clusterId": 605198,
398
+ "clusterTitle": "2015 Laurence Olivier Awards",
399
+ "mentionIds": [
400
+ 71175,
401
+ 71176,
402
+ 71178,
403
+ 71179,
404
+ 71180
405
+ ]
406
+ },
407
+ {
408
+ "clusterId": 2702884,
409
+ "clusterTitle": "North American Tour 2013",
410
+ "mentionIds": [
411
+ 111782,
412
+ 111783,
413
+ 111784,
414
+ 111785
415
+ ]
416
+ },
417
+ {
418
+ "clusterId": 4409939,
419
+ "clusterTitle": "2011 Soul Train Music Awards",
420
+ "mentionIds": [
421
+ 122913,
422
+ 122914,
423
+ 122915,
424
+ 122916
425
+ ]
426
+ },
427
+ {
428
+ "clusterId": 6705781,
429
+ "clusterTitle": "2015 Zasyadko mine disaster",
430
+ "mentionIds": [
431
+ 126035,
432
+ 126036
433
+ ]
434
+ },
435
+ {
436
+ "clusterId": 565276,
437
+ "clusterTitle": "Miss Universe 2016",
438
+ "mentionIds": [
439
+ 68648,
440
+ 68651,
441
+ 68652,
442
+ 68653
443
+ ]
444
+ },
445
+ {
446
+ "clusterId": 2856499,
447
+ "clusterTitle": "1969 Portugal earthquake",
448
+ "mentionIds": [
449
+ 112838,
450
+ 112839,
451
+ 112840,
452
+ 112841
453
+ ]
454
+ },
455
+ {
456
+ "clusterId": 863252,
457
+ "clusterTitle": "Mudan incident",
458
+ "mentionIds": [
459
+ 83112,
460
+ 83115,
461
+ 83116
462
+ ]
463
+ },
464
+ {
465
+ "clusterId": 4628058,
466
+ "clusterTitle": "2018 Teen Choice Awards",
467
+ "mentionIds": [
468
+ 123646,
469
+ 123647,
470
+ 123648,
471
+ 123650
472
+ ]
473
+ },
474
+ {
475
+ "clusterId": 1176077,
476
+ "clusterTitle": "PSA Flight 182",
477
+ "mentionIds": [
478
+ 92460,
479
+ 92464,
480
+ 92465
481
+ ]
482
+ },
483
+ {
484
+ "clusterId": 5537352,
485
+ "clusterTitle": "Tezno massacre",
486
+ "mentionIds": [
487
+ 125094,
488
+ 125095,
489
+ 125096,
490
+ 125097,
491
+ 125098
492
+ ]
493
+ },
494
+ {
495
+ "clusterId": 813072,
496
+ "clusterTitle": "2015 Big East Men's Basketball Tournament",
497
+ "mentionIds": [
498
+ 80973,
499
+ 80976,
500
+ 80981,
501
+ 80983,
502
+ 80985,
503
+ 80987
504
+ ]
505
+ },
506
+ {
507
+ "clusterId": 80412,
508
+ "clusterTitle": "BET Awards 2013",
509
+ "mentionIds": [
510
+ 22821,
511
+ 22822,
512
+ 22824,
513
+ 22827,
514
+ 22832,
515
+ 22834,
516
+ 22835,
517
+ 22836,
518
+ 22837,
519
+ 22839,
520
+ 22842,
521
+ 22843
522
+ ]
523
+ },
524
+ {
525
+ "clusterId": 2105405,
526
+ "clusterTitle": "35th Primetime Emmy Awards",
527
+ "mentionIds": [
528
+ 106745,
529
+ 106747,
530
+ 106748,
531
+ 106749,
532
+ 106750,
533
+ 106751,
534
+ 106752,
535
+ 106753
536
+ ]
537
+ },
538
+ {
539
+ "clusterId": 1204748,
540
+ "clusterTitle": "D'eux Tour",
541
+ "mentionIds": [
542
+ 93242,
543
+ 93249,
544
+ 93251,
545
+ 93252
546
+ ]
547
+ },
548
+ {
549
+ "clusterId": 3540520,
550
+ "clusterTitle": "Sanremo Music Festival 2009",
551
+ "mentionIds": [
552
+ 120062,
553
+ 120064,
554
+ 120065,
555
+ 120066,
556
+ 120068,
557
+ 120069,
558
+ 120070,
559
+ 120072,
560
+ 120073
561
+ ]
562
+ },
563
+ {
564
+ "clusterId": 225323,
565
+ "clusterTitle": "Lokomotiv Yaroslavl plane crash",
566
+ "mentionIds": [
567
+ 41578,
568
+ 41583,
569
+ 41584,
570
+ 41587,
571
+ 41596,
572
+ 41600,
573
+ 41603,
574
+ 41607,
575
+ 41608,
576
+ 41611,
577
+ 41614,
578
+ 41616,
579
+ 41626,
580
+ 41630,
581
+ 41632,
582
+ 41633,
583
+ 41635,
584
+ 41640
585
+ ]
586
+ },
587
+ {
588
+ "clusterId": 2438671,
589
+ "clusterTitle": "1935 Timiskaming earthquake",
590
+ "mentionIds": [
591
+ 109617,
592
+ 109618,
593
+ 109619,
594
+ 109620,
595
+ 109621
596
+ ]
597
+ },
598
+ {
599
+ "clusterId": 1673266,
600
+ "clusterTitle": "2009 Nazran bombing",
601
+ "mentionIds": [
602
+ 102001,
603
+ 102002,
604
+ 102003
605
+ ]
606
+ },
607
+ {
608
+ "clusterId": 132137,
609
+ "clusterTitle": "2012 Cannes Film Festival",
610
+ "mentionIds": [
611
+ 28372,
612
+ 28377,
613
+ 28383,
614
+ 28401,
615
+ 28404,
616
+ 28439,
617
+ 28454,
618
+ 28492,
619
+ 28495,
620
+ 28536,
621
+ 28545,
622
+ 28553
623
+ ]
624
+ }
625
+ ]
clean/Dev_passages_min_span.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:50504ea34f4ef2359ae1ef24f5a4dc27c1ed34b910133e12fc594a56bfb30f03
3
+ size 1213656620
clean/Dev_queries_min_span.json ADDED
The diff for this file is too large to render. See raw diff
 
clean/Test_gold_clusters_min_span.json ADDED
@@ -0,0 +1,2564 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "clusterId": 8238,
4
+ "clusterTitle": "Pontianak incidents",
5
+ "mentionIds": [
6
+ 9616,
7
+ 9620,
8
+ 9623,
9
+ 9624
10
+ ]
11
+ },
12
+ {
13
+ "clusterId": 2970626,
14
+ "clusterTitle": "All Lights India International Film Festival",
15
+ "mentionIds": [
16
+ 114372,
17
+ 114373
18
+ ]
19
+ },
20
+ {
21
+ "clusterId": 739387,
22
+ "clusterTitle": "2012 Big East Men's Basketball Tournament",
23
+ "mentionIds": [
24
+ 77730,
25
+ 77731,
26
+ 77733,
27
+ 77734,
28
+ 77736,
29
+ 77738
30
+ ]
31
+ },
32
+ {
33
+ "clusterId": 6832728,
34
+ "clusterTitle": "TAP Air Portugal Flight 425",
35
+ "mentionIds": [
36
+ 126071,
37
+ 126072
38
+ ]
39
+ },
40
+ {
41
+ "clusterId": 2251795,
42
+ "clusterTitle": "1995 Palo Verde, Arizona derailment",
43
+ "mentionIds": [
44
+ 107778,
45
+ 107779,
46
+ 107780
47
+ ]
48
+ },
49
+ {
50
+ "clusterId": 986682,
51
+ "clusterTitle": "2016 MTV Europe Music Awards",
52
+ "mentionIds": [
53
+ 86846,
54
+ 86847,
55
+ 86851,
56
+ 86852,
57
+ 86856,
58
+ 86859
59
+ ]
60
+ },
61
+ {
62
+ "clusterId": 2393106,
63
+ "clusterTitle": "44th G7 summit",
64
+ "mentionIds": [
65
+ 109114,
66
+ 109116,
67
+ 109118,
68
+ 109119,
69
+ 109120,
70
+ 109121,
71
+ 109122,
72
+ 109124,
73
+ 109125
74
+ ]
75
+ },
76
+ {
77
+ "clusterId": 2259995,
78
+ "clusterTitle": "2007 Ankara bombing",
79
+ "mentionIds": [
80
+ 107919,
81
+ 107920
82
+ ]
83
+ },
84
+ {
85
+ "clusterId": 4240506,
86
+ "clusterTitle": "34th Cairo International Film Festival",
87
+ "mentionIds": [
88
+ 122475,
89
+ 122476,
90
+ 122477,
91
+ 122478
92
+ ]
93
+ },
94
+ {
95
+ "clusterId": 383033,
96
+ "clusterTitle": "Lake Bodom murders",
97
+ "mentionIds": [
98
+ 54293,
99
+ 54295,
100
+ 54296,
101
+ 54298
102
+ ]
103
+ },
104
+ {
105
+ "clusterId": 4996108,
106
+ "clusterTitle": "MTV Asia Awards 2008",
107
+ "mentionIds": [
108
+ 124340,
109
+ 124341,
110
+ 124343,
111
+ 124344,
112
+ 124345
113
+ ]
114
+ },
115
+ {
116
+ "clusterId": 11842,
117
+ "clusterTitle": "Eurovision Young Dancers 1985",
118
+ "mentionIds": [
119
+ 9874,
120
+ 9875,
121
+ 9876
122
+ ]
123
+ },
124
+ {
125
+ "clusterId": 715848,
126
+ "clusterTitle": "68th Venice International Film Festival",
127
+ "mentionIds": [
128
+ 76718,
129
+ 76727,
130
+ 76746,
131
+ 76770,
132
+ 76780,
133
+ 76786
134
+ ]
135
+ },
136
+ {
137
+ "clusterId": 1864792,
138
+ "clusterTitle": "Jewish Museum of Belgium shooting",
139
+ "mentionIds": [
140
+ 104163,
141
+ 104164,
142
+ 104165,
143
+ 104166,
144
+ 104167,
145
+ 104168,
146
+ 104169,
147
+ 104170,
148
+ 104171
149
+ ]
150
+ },
151
+ {
152
+ "clusterId": 3109994,
153
+ "clusterTitle": "2017 Sehwan suicide bombing",
154
+ "mentionIds": [
155
+ 116910,
156
+ 116911,
157
+ 116912,
158
+ 116913
159
+ ]
160
+ },
161
+ {
162
+ "clusterId": 2752108,
163
+ "clusterTitle": "Led Zeppelin North American Tour Spring 1970",
164
+ "mentionIds": [
165
+ 112108,
166
+ 112112,
167
+ 112113
168
+ ]
169
+ },
170
+ {
171
+ "clusterId": 179781,
172
+ "clusterTitle": "Scilly naval disaster of 1707",
173
+ "mentionIds": [
174
+ 35035,
175
+ 35038,
176
+ 35042,
177
+ 35043,
178
+ 35044,
179
+ 35047,
180
+ 35049,
181
+ 35050,
182
+ 35051,
183
+ 35053,
184
+ 35054,
185
+ 35055,
186
+ 35056,
187
+ 35060,
188
+ 35062,
189
+ 35063,
190
+ 35064,
191
+ 35066,
192
+ 35067,
193
+ 35068,
194
+ 35071,
195
+ 35073,
196
+ 35075
197
+ ]
198
+ },
199
+ {
200
+ "clusterId": 1654867,
201
+ "clusterTitle": "19th Primetime Emmy Awards",
202
+ "mentionIds": [
203
+ 101722,
204
+ 101723,
205
+ 101724
206
+ ]
207
+ },
208
+ {
209
+ "clusterId": 1526362,
210
+ "clusterTitle": "2010 Big East Men's Basketball Tournament",
211
+ "mentionIds": [
212
+ 99936,
213
+ 99943,
214
+ 99947,
215
+ 99948
216
+ ]
217
+ },
218
+ {
219
+ "clusterId": 1379910,
220
+ "clusterTitle": "Miss Universe 1960",
221
+ "mentionIds": [
222
+ 97189,
223
+ 97190
224
+ ]
225
+ },
226
+ {
227
+ "clusterId": 1188417,
228
+ "clusterTitle": "2002 Metro Manila Film Festival",
229
+ "mentionIds": [
230
+ 92869,
231
+ 92870,
232
+ 92871
233
+ ]
234
+ },
235
+ {
236
+ "clusterId": 674910,
237
+ "clusterTitle": "1943 Gibraltar B-24 crash",
238
+ "mentionIds": [
239
+ 74994,
240
+ 74995,
241
+ 74997,
242
+ 74998,
243
+ 75000,
244
+ 75003,
245
+ 75004,
246
+ 75010
247
+ ]
248
+ },
249
+ {
250
+ "clusterId": 1772110,
251
+ "clusterTitle": "2017 MTV Movie & TV Awards",
252
+ "mentionIds": [
253
+ 103309,
254
+ 103310,
255
+ 103315,
256
+ 103317,
257
+ 103318
258
+ ]
259
+ },
260
+ {
261
+ "clusterId": 394323,
262
+ "clusterTitle": "Wonderland murders",
263
+ "mentionIds": [
264
+ 54873,
265
+ 54874,
266
+ 54876,
267
+ 54877,
268
+ 54879,
269
+ 54880
270
+ ]
271
+ },
272
+ {
273
+ "clusterId": 493151,
274
+ "clusterTitle": "1984 Soviet nuclear tests",
275
+ "mentionIds": [
276
+ 63620,
277
+ 63621
278
+ ]
279
+ },
280
+ {
281
+ "clusterId": 566354,
282
+ "clusterTitle": "BET Awards 2014",
283
+ "mentionIds": [
284
+ 68761,
285
+ 68764,
286
+ 68766,
287
+ 68767,
288
+ 68769,
289
+ 68770,
290
+ 68772,
291
+ 68773,
292
+ 68774
293
+ ]
294
+ },
295
+ {
296
+ "clusterId": 1105996,
297
+ "clusterTitle": "Lufthansa Flight 615",
298
+ "mentionIds": [
299
+ 90483,
300
+ 90484
301
+ ]
302
+ },
303
+ {
304
+ "clusterId": 707668,
305
+ "clusterTitle": "2009 MBC Drama Awards",
306
+ "mentionIds": [
307
+ 76294,
308
+ 76295,
309
+ 76296,
310
+ 76297
311
+ ]
312
+ },
313
+ {
314
+ "clusterId": 15969,
315
+ "clusterTitle": "2007 London car bombs",
316
+ "mentionIds": [
317
+ 12469,
318
+ 12470,
319
+ 12477,
320
+ 12481,
321
+ 12482,
322
+ 12485
323
+ ]
324
+ },
325
+ {
326
+ "clusterId": 1250930,
327
+ "clusterTitle": "1962 Cannes Film Festival",
328
+ "mentionIds": [
329
+ 94416,
330
+ 94428,
331
+ 94434,
332
+ 94449,
333
+ 94454
334
+ ]
335
+ },
336
+ {
337
+ "clusterId": 207969,
338
+ "clusterTitle": "Eurovision Song Contest 1980",
339
+ "mentionIds": [
340
+ 38382,
341
+ 38383,
342
+ 38397,
343
+ 38398,
344
+ 38400,
345
+ 38405,
346
+ 38406,
347
+ 38407,
348
+ 38419,
349
+ 38422,
350
+ 38423,
351
+ 38425,
352
+ 38434,
353
+ 38435,
354
+ 38439,
355
+ 38444,
356
+ 38445,
357
+ 38449,
358
+ 38452,
359
+ 38459
360
+ ]
361
+ },
362
+ {
363
+ "clusterId": 2712650,
364
+ "clusterTitle": "2000 Big Ten Conference Men's Basketball Tournament",
365
+ "mentionIds": [
366
+ 111843,
367
+ 111844,
368
+ 111845,
369
+ 111846,
370
+ 111848
371
+ ]
372
+ },
373
+ {
374
+ "clusterId": 850536,
375
+ "clusterTitle": "Miss USA 2017",
376
+ "mentionIds": [
377
+ 82328,
378
+ 82329,
379
+ 82330,
380
+ 82331,
381
+ 82333
382
+ ]
383
+ },
384
+ {
385
+ "clusterId": 2893893,
386
+ "clusterTitle": "2018 Northeast Conference Women's Basketball Tournament",
387
+ "mentionIds": [
388
+ 113128,
389
+ 113129
390
+ ]
391
+ },
392
+ {
393
+ "clusterId": 329836,
394
+ "clusterTitle": "1924 Democratic National Convention",
395
+ "mentionIds": [
396
+ 50623,
397
+ 50624,
398
+ 50625,
399
+ 50640,
400
+ 50642,
401
+ 50645,
402
+ 50653,
403
+ 50661,
404
+ 50662,
405
+ 50663,
406
+ 50677,
407
+ 50685,
408
+ 50690
409
+ ]
410
+ },
411
+ {
412
+ "clusterId": 1135229,
413
+ "clusterTitle": "Whitney: The Concert for a New South Africa",
414
+ "mentionIds": [
415
+ 91023,
416
+ 91025,
417
+ 91031
418
+ ]
419
+ },
420
+ {
421
+ "clusterId": 4561448,
422
+ "clusterTitle": "Project Gasbuggy",
423
+ "mentionIds": [
424
+ 123352,
425
+ 123353,
426
+ 123354,
427
+ 123356
428
+ ]
429
+ },
430
+ {
431
+ "clusterId": 837756,
432
+ "clusterTitle": "Bob Dylan World Tour 1966",
433
+ "mentionIds": [
434
+ 81897,
435
+ 81898,
436
+ 81900,
437
+ 81903,
438
+ 81905,
439
+ 81906,
440
+ 81907,
441
+ 81908,
442
+ 81909,
443
+ 81910,
444
+ 81911,
445
+ 81912,
446
+ 81913
447
+ ]
448
+ },
449
+ {
450
+ "clusterId": 5495328,
451
+ "clusterTitle": "2008 Market Rasen earthquake",
452
+ "mentionIds": [
453
+ 125054,
454
+ 125055
455
+ ]
456
+ },
457
+ {
458
+ "clusterId": 1064037,
459
+ "clusterTitle": "26th Golden Melody Awards",
460
+ "mentionIds": [
461
+ 89445,
462
+ 89450,
463
+ 89451,
464
+ 89452
465
+ ]
466
+ },
467
+ {
468
+ "clusterId": 746109,
469
+ "clusterTitle": "Azerbaijan in the Eurovision Song Contest 2008",
470
+ "mentionIds": [
471
+ 78049,
472
+ 78050
473
+ ]
474
+ },
475
+ {
476
+ "clusterId": 2148951,
477
+ "clusterTitle": "2017 Saint Petersburg Metro bombing",
478
+ "mentionIds": [
479
+ 107161,
480
+ 107162,
481
+ 107163,
482
+ 107164
483
+ ]
484
+ },
485
+ {
486
+ "clusterId": 454780,
487
+ "clusterTitle": "American Music Awards of 2010",
488
+ "mentionIds": [
489
+ 60556,
490
+ 60559,
491
+ 60562,
492
+ 60563,
493
+ 60565,
494
+ 60566,
495
+ 60567,
496
+ 60570,
497
+ 60571,
498
+ 60572,
499
+ 60573,
500
+ 60580,
501
+ 60581,
502
+ 60583,
503
+ 60586,
504
+ 60587
505
+ ]
506
+ },
507
+ {
508
+ "clusterId": 179324,
509
+ "clusterTitle": "1812 Caracas earthquake",
510
+ "mentionIds": [
511
+ 35012,
512
+ 35013,
513
+ 35014,
514
+ 35015,
515
+ 35017,
516
+ 35018,
517
+ 35019,
518
+ 35020,
519
+ 35021,
520
+ 35023,
521
+ 35024,
522
+ 35026,
523
+ 35027,
524
+ 35028
525
+ ]
526
+ },
527
+ {
528
+ "clusterId": 970352,
529
+ "clusterTitle": "2010 Baghdad church massacre",
530
+ "mentionIds": [
531
+ 86429,
532
+ 86430,
533
+ 86431
534
+ ]
535
+ },
536
+ {
537
+ "clusterId": 776331,
538
+ "clusterTitle": "37th Berlin International Film Festival",
539
+ "mentionIds": [
540
+ 79382,
541
+ 79399,
542
+ 79409,
543
+ 79411
544
+ ]
545
+ },
546
+ {
547
+ "clusterId": 1265302,
548
+ "clusterTitle": "Norco shootout",
549
+ "mentionIds": [
550
+ 94834,
551
+ 94835,
552
+ 94836,
553
+ 94837
554
+ ]
555
+ },
556
+ {
557
+ "clusterId": 549006,
558
+ "clusterTitle": "Assassination of George Tiller",
559
+ "mentionIds": [
560
+ 67653,
561
+ 67654,
562
+ 67656,
563
+ 67657,
564
+ 67661,
565
+ 67662
566
+ ]
567
+ },
568
+ {
569
+ "clusterId": 3165367,
570
+ "clusterTitle": "2019 Ohio Valley Conference Men's Basketball Tournament",
571
+ "mentionIds": [
572
+ 117602,
573
+ 117603,
574
+ 117605
575
+ ]
576
+ },
577
+ {
578
+ "clusterId": 425089,
579
+ "clusterTitle": "1997 Israeli helicopter disaster",
580
+ "mentionIds": [
581
+ 57837,
582
+ 57838,
583
+ 57839,
584
+ 57840,
585
+ 57841,
586
+ 57842,
587
+ 57843,
588
+ 57845,
589
+ 57846,
590
+ 57847,
591
+ 57848
592
+ ]
593
+ },
594
+ {
595
+ "clusterId": 844420,
596
+ "clusterTitle": "1999 MTV Europe Music Awards",
597
+ "mentionIds": [
598
+ 82134,
599
+ 82136,
600
+ 82137,
601
+ 82138,
602
+ 82139,
603
+ 82140,
604
+ 82141,
605
+ 82142,
606
+ 82143
607
+ ]
608
+ },
609
+ {
610
+ "clusterId": 3163320,
611
+ "clusterTitle": "2019 Atlantic Sun Men's Basketball Tournament",
612
+ "mentionIds": [
613
+ 117541,
614
+ 117542
615
+ ]
616
+ },
617
+ {
618
+ "clusterId": 146578,
619
+ "clusterTitle": "1952 Democratic National Convention",
620
+ "mentionIds": [
621
+ 30444,
622
+ 30456,
623
+ 30462,
624
+ 30488
625
+ ]
626
+ },
627
+ {
628
+ "clusterId": 404628,
629
+ "clusterTitle": "86th Academy Awards",
630
+ "mentionIds": [
631
+ 55415,
632
+ 55425,
633
+ 55429,
634
+ 55470,
635
+ 55483,
636
+ 55502,
637
+ 55507,
638
+ 55513,
639
+ 55530,
640
+ 55606,
641
+ 55622,
642
+ 55643
643
+ ]
644
+ },
645
+ {
646
+ "clusterId": 2466995,
647
+ "clusterTitle": "2010 Newry car bombing",
648
+ "mentionIds": [
649
+ 109802,
650
+ 109803
651
+ ]
652
+ },
653
+ {
654
+ "clusterId": 595614,
655
+ "clusterTitle": "NATO bombing of the Radio Television of Serbia headquarters",
656
+ "mentionIds": [
657
+ 70459,
658
+ 70462,
659
+ 70464,
660
+ 70465
661
+ ]
662
+ },
663
+ {
664
+ "clusterId": 440986,
665
+ "clusterTitle": "1986 Big East Men's Basketball Tournament",
666
+ "mentionIds": [
667
+ 59109,
668
+ 59110
669
+ ]
670
+ },
671
+ {
672
+ "clusterId": 3098289,
673
+ "clusterTitle": "2008 Istanbul bombings",
674
+ "mentionIds": [
675
+ 116486,
676
+ 116487
677
+ ]
678
+ },
679
+ {
680
+ "clusterId": 464024,
681
+ "clusterTitle": "29th Hong Kong Film Awards",
682
+ "mentionIds": [
683
+ 61961,
684
+ 61962,
685
+ 61968,
686
+ 61971
687
+ ]
688
+ },
689
+ {
690
+ "clusterId": 308901,
691
+ "clusterTitle": "1908 Messina earthquake",
692
+ "mentionIds": [
693
+ 48671,
694
+ 48672,
695
+ 48673,
696
+ 48676,
697
+ 48678,
698
+ 48680,
699
+ 48684,
700
+ 48685,
701
+ 48689,
702
+ 48690,
703
+ 48691,
704
+ 48693,
705
+ 48694,
706
+ 48699,
707
+ 48703,
708
+ 48704,
709
+ 48706,
710
+ 48707,
711
+ 48713,
712
+ 48714,
713
+ 48721,
714
+ 48722,
715
+ 48724,
716
+ 48726,
717
+ 48728,
718
+ 48730,
719
+ 48732,
720
+ 48733,
721
+ 48735,
722
+ 48741,
723
+ 48742,
724
+ 48743,
725
+ 48748,
726
+ 48753,
727
+ 48754,
728
+ 48756,
729
+ 48758,
730
+ 48761,
731
+ 48762
732
+ ]
733
+ },
734
+ {
735
+ "clusterId": 2243206,
736
+ "clusterTitle": "Canyon Fire 2",
737
+ "mentionIds": [
738
+ 107729,
739
+ 107730
740
+ ]
741
+ },
742
+ {
743
+ "clusterId": 447648,
744
+ "clusterTitle": "21st Busan International Film Festival",
745
+ "mentionIds": [
746
+ 60043,
747
+ 60048,
748
+ 60049,
749
+ 60050
750
+ ]
751
+ },
752
+ {
753
+ "clusterId": 894635,
754
+ "clusterTitle": "Juno Awards of 2008",
755
+ "mentionIds": [
756
+ 84052,
757
+ 84053,
758
+ 84054,
759
+ 84055,
760
+ 84056,
761
+ 84057,
762
+ 84059,
763
+ 84063,
764
+ 84066,
765
+ 84067,
766
+ 84069
767
+ ]
768
+ },
769
+ {
770
+ "clusterId": 532142,
771
+ "clusterTitle": "2004 Hendrick Motorsports aircraft crash",
772
+ "mentionIds": [
773
+ 66410,
774
+ 66411,
775
+ 66412
776
+ ]
777
+ },
778
+ {
779
+ "clusterId": 559264,
780
+ "clusterTitle": "26th Genie Awards",
781
+ "mentionIds": [
782
+ 68281,
783
+ 68283,
784
+ 68285,
785
+ 68287
786
+ ]
787
+ },
788
+ {
789
+ "clusterId": 4381930,
790
+ "clusterTitle": "4th Berlin International Film Festival",
791
+ "mentionIds": [
792
+ 122858,
793
+ 122859,
794
+ 122860,
795
+ 122863
796
+ ]
797
+ },
798
+ {
799
+ "clusterId": 3850899,
800
+ "clusterTitle": "2016 British Academy Scotland New Talent Awards",
801
+ "mentionIds": [
802
+ 121324,
803
+ 121326,
804
+ 121327,
805
+ 121328
806
+ ]
807
+ },
808
+ {
809
+ "clusterId": 880292,
810
+ "clusterTitle": "Grue Church fire",
811
+ "mentionIds": [
812
+ 83367,
813
+ 83368,
814
+ 83369,
815
+ 83370
816
+ ]
817
+ },
818
+ {
819
+ "clusterId": 882854,
820
+ "clusterTitle": "British Academy Television Awards 2007",
821
+ "mentionIds": [
822
+ 83636,
823
+ 83637,
824
+ 83640,
825
+ 83642,
826
+ 83643,
827
+ 83644,
828
+ 83645,
829
+ 83646,
830
+ 83647
831
+ ]
832
+ },
833
+ {
834
+ "clusterId": 4446445,
835
+ "clusterTitle": "6th AACTA Awards",
836
+ "mentionIds": [
837
+ 122973,
838
+ 122974,
839
+ 122975
840
+ ]
841
+ },
842
+ {
843
+ "clusterId": 266410,
844
+ "clusterTitle": "7th National Television Awards",
845
+ "mentionIds": [
846
+ 45020,
847
+ 45022
848
+ ]
849
+ },
850
+ {
851
+ "clusterId": 1096382,
852
+ "clusterTitle": "2013 Mayflower oil spill",
853
+ "mentionIds": [
854
+ 90409,
855
+ 90410,
856
+ 90411
857
+ ]
858
+ },
859
+ {
860
+ "clusterId": 3005059,
861
+ "clusterTitle": "2010 Zahedan bombings",
862
+ "mentionIds": [
863
+ 115258,
864
+ 115259
865
+ ]
866
+ },
867
+ {
868
+ "clusterId": 4408556,
869
+ "clusterTitle": "47th Grand Bell Awards",
870
+ "mentionIds": [
871
+ 122910,
872
+ 122911,
873
+ 122912
874
+ ]
875
+ },
876
+ {
877
+ "clusterId": 284331,
878
+ "clusterTitle": "16th Moscow International Film Festival",
879
+ "mentionIds": [
880
+ 46624,
881
+ 46631,
882
+ 46635,
883
+ 46652
884
+ ]
885
+ },
886
+ {
887
+ "clusterId": 2952860,
888
+ "clusterTitle": "Khatyn massacre",
889
+ "mentionIds": [
890
+ 113869,
891
+ 113870,
892
+ 113871,
893
+ 113873,
894
+ 113875,
895
+ 113876,
896
+ 113879,
897
+ 113880
898
+ ]
899
+ },
900
+ {
901
+ "clusterId": 2082477,
902
+ "clusterTitle": "12th Hong Kong Film Awards",
903
+ "mentionIds": [
904
+ 106645,
905
+ 106646,
906
+ 106647,
907
+ 106648
908
+ ]
909
+ },
910
+ {
911
+ "clusterId": 2323088,
912
+ "clusterTitle": "Valley Fire",
913
+ "mentionIds": [
914
+ 108347,
915
+ 108351,
916
+ 108356,
917
+ 108357
918
+ ]
919
+ },
920
+ {
921
+ "clusterId": 207541,
922
+ "clusterTitle": "2010 Mentawai earthquake and tsunami",
923
+ "mentionIds": [
924
+ 37912,
925
+ 37913,
926
+ 37914,
927
+ 37915,
928
+ 37916,
929
+ 37918
930
+ ]
931
+ },
932
+ {
933
+ "clusterId": 2236052,
934
+ "clusterTitle": "20th Annual Grammy Awards",
935
+ "mentionIds": [
936
+ 107698,
937
+ 107699,
938
+ 107700,
939
+ 107702,
940
+ 107703,
941
+ 107707
942
+ ]
943
+ },
944
+ {
945
+ "clusterId": 2520209,
946
+ "clusterTitle": "2012 Billboard Music Awards",
947
+ "mentionIds": [
948
+ 110168,
949
+ 110172,
950
+ 110175,
951
+ 110179,
952
+ 110185
953
+ ]
954
+ },
955
+ {
956
+ "clusterId": 1688238,
957
+ "clusterTitle": "Oops!... I Did It Again Tour",
958
+ "mentionIds": [
959
+ 102441,
960
+ 102444,
961
+ 102445,
962
+ 102450
963
+ ]
964
+ },
965
+ {
966
+ "clusterId": 4208379,
967
+ "clusterTitle": "11th Screen Actors Guild Awards",
968
+ "mentionIds": [
969
+ 122388,
970
+ 122389
971
+ ]
972
+ },
973
+ {
974
+ "clusterId": 2203295,
975
+ "clusterTitle": "Van Halen 2007–2008 North American Tour",
976
+ "mentionIds": [
977
+ 107447,
978
+ 107448
979
+ ]
980
+ },
981
+ {
982
+ "clusterId": 920241,
983
+ "clusterTitle": "2014 Northeast Conference Men's Basketball Tournament",
984
+ "mentionIds": [
985
+ 84972,
986
+ 84974,
987
+ 84975,
988
+ 84977,
989
+ 84978,
990
+ 84979,
991
+ 84980
992
+ ]
993
+ },
994
+ {
995
+ "clusterId": 5823719,
996
+ "clusterTitle": "Madame X Tour",
997
+ "mentionIds": [
998
+ 125512,
999
+ 125513,
1000
+ 125514,
1001
+ 125515
1002
+ ]
1003
+ },
1004
+ {
1005
+ "clusterId": 3232398,
1006
+ "clusterTitle": "2019 West Coast Conference Women's Basketball Tournament",
1007
+ "mentionIds": [
1008
+ 118558,
1009
+ 118561,
1010
+ 118562,
1011
+ 118564,
1012
+ 118565
1013
+ ]
1014
+ },
1015
+ {
1016
+ "clusterId": 69822,
1017
+ "clusterTitle": "2012 Libertarian National Convention",
1018
+ "mentionIds": [
1019
+ 21690,
1020
+ 21697,
1021
+ 21698,
1022
+ 21701,
1023
+ 21702,
1024
+ 21707
1025
+ ]
1026
+ },
1027
+ {
1028
+ "clusterId": 661194,
1029
+ "clusterTitle": "13th Moscow International Film Festival",
1030
+ "mentionIds": [
1031
+ 74344,
1032
+ 74354,
1033
+ 74381,
1034
+ 74385
1035
+ ]
1036
+ },
1037
+ {
1038
+ "clusterId": 88257,
1039
+ "clusterTitle": "2000 Summer Olympics closing ceremony",
1040
+ "mentionIds": [
1041
+ 23543,
1042
+ 23544,
1043
+ 23545,
1044
+ 23546,
1045
+ 23549,
1046
+ 23550,
1047
+ 23551,
1048
+ 23552,
1049
+ 23557,
1050
+ 23558
1051
+ ]
1052
+ },
1053
+ {
1054
+ "clusterId": 604360,
1055
+ "clusterTitle": "2015 CAA Women's Basketball Tournament",
1056
+ "mentionIds": [
1057
+ 71118,
1058
+ 71119,
1059
+ 71121,
1060
+ 71123,
1061
+ 71124
1062
+ ]
1063
+ },
1064
+ {
1065
+ "clusterId": 1534677,
1066
+ "clusterTitle": "Jonas Brothers World Tour 2009",
1067
+ "mentionIds": [
1068
+ 100065,
1069
+ 100066,
1070
+ 100067,
1071
+ 100068,
1072
+ 100069,
1073
+ 100070,
1074
+ 100071,
1075
+ 100072,
1076
+ 100074,
1077
+ 100076,
1078
+ 100077,
1079
+ 100078
1080
+ ]
1081
+ },
1082
+ {
1083
+ "clusterId": 5093006,
1084
+ "clusterTitle": "Hello Pappy scandal",
1085
+ "mentionIds": [
1086
+ 124524,
1087
+ 124525,
1088
+ 124526
1089
+ ]
1090
+ },
1091
+ {
1092
+ "clusterId": 6682278,
1093
+ "clusterTitle": "Juventafest",
1094
+ "mentionIds": [
1095
+ 126013,
1096
+ 126014
1097
+ ]
1098
+ },
1099
+ {
1100
+ "clusterId": 742606,
1101
+ "clusterTitle": "Miss World 1981",
1102
+ "mentionIds": [
1103
+ 77906,
1104
+ 77907,
1105
+ 77908,
1106
+ 77910
1107
+ ]
1108
+ },
1109
+ {
1110
+ "clusterId": 2050778,
1111
+ "clusterTitle": "2018 Mountain West Conference Men's Basketball Tournament",
1112
+ "mentionIds": [
1113
+ 106277,
1114
+ 106278,
1115
+ 106281,
1116
+ 106285,
1117
+ 106286,
1118
+ 106287
1119
+ ]
1120
+ },
1121
+ {
1122
+ "clusterId": 3538162,
1123
+ "clusterTitle": "2016 Northeast Conference Men's Soccer Tournament",
1124
+ "mentionIds": [
1125
+ 120043,
1126
+ 120044
1127
+ ]
1128
+ },
1129
+ {
1130
+ "clusterId": 478912,
1131
+ "clusterTitle": "2015 Big South Conference Men's Basketball Tournament",
1132
+ "mentionIds": [
1133
+ 62810,
1134
+ 62811
1135
+ ]
1136
+ },
1137
+ {
1138
+ "clusterId": 435406,
1139
+ "clusterTitle": "6th South Indian International Movie Awards",
1140
+ "mentionIds": [
1141
+ 58410,
1142
+ 58411,
1143
+ 58412,
1144
+ 58415,
1145
+ 58418
1146
+ ]
1147
+ },
1148
+ {
1149
+ "clusterId": 2748131,
1150
+ "clusterTitle": "Miss Indonesia 2007",
1151
+ "mentionIds": [
1152
+ 112088,
1153
+ 112089
1154
+ ]
1155
+ },
1156
+ {
1157
+ "clusterId": 586949,
1158
+ "clusterTitle": "ARIA Music Awards of 1997",
1159
+ "mentionIds": [
1160
+ 70098,
1161
+ 70107,
1162
+ 70108,
1163
+ 70111,
1164
+ 70115,
1165
+ 70116,
1166
+ 70119,
1167
+ 70123,
1168
+ 70127,
1169
+ 70131,
1170
+ 70135
1171
+ ]
1172
+ },
1173
+ {
1174
+ "clusterId": 2658553,
1175
+ "clusterTitle": "11th Lux Style Awards",
1176
+ "mentionIds": [
1177
+ 111302,
1178
+ 111303,
1179
+ 111304,
1180
+ 111307
1181
+ ]
1182
+ },
1183
+ {
1184
+ "clusterId": 1129157,
1185
+ "clusterTitle": "56th British Academy Film Awards",
1186
+ "mentionIds": [
1187
+ 90859,
1188
+ 90860,
1189
+ 90861,
1190
+ 90862
1191
+ ]
1192
+ },
1193
+ {
1194
+ "clusterId": 1153734,
1195
+ "clusterTitle": "2007 MTV Video Music Awards",
1196
+ "mentionIds": [
1197
+ 91799,
1198
+ 91801,
1199
+ 91803,
1200
+ 91815,
1201
+ 91822,
1202
+ 91823,
1203
+ 91826,
1204
+ 91830
1205
+ ]
1206
+ },
1207
+ {
1208
+ "clusterId": 519387,
1209
+ "clusterTitle": "Miss Panamá 2014",
1210
+ "mentionIds": [
1211
+ 65257,
1212
+ 65258,
1213
+ 65259,
1214
+ 65260,
1215
+ 65261
1216
+ ]
1217
+ },
1218
+ {
1219
+ "clusterId": 1441992,
1220
+ "clusterTitle": "Juno Awards of 1989",
1221
+ "mentionIds": [
1222
+ 98012,
1223
+ 98014,
1224
+ 98015,
1225
+ 98016,
1226
+ 98017
1227
+ ]
1228
+ },
1229
+ {
1230
+ "clusterId": 3167957,
1231
+ "clusterTitle": "1930 Salmas earthquake",
1232
+ "mentionIds": [
1233
+ 117623,
1234
+ 117625,
1235
+ 117626,
1236
+ 117628
1237
+ ]
1238
+ },
1239
+ {
1240
+ "clusterId": 4039898,
1241
+ "clusterTitle": "Hawker Hunter Tower Bridge incident",
1242
+ "mentionIds": [
1243
+ 121939,
1244
+ 121941
1245
+ ]
1246
+ },
1247
+ {
1248
+ "clusterId": 940261,
1249
+ "clusterTitle": "16th Berlin International Film Festival",
1250
+ "mentionIds": [
1251
+ 85713,
1252
+ 85735,
1253
+ 85741,
1254
+ 85745
1255
+ ]
1256
+ },
1257
+ {
1258
+ "clusterId": 1560316,
1259
+ "clusterTitle": "Melodifestivalen 1985",
1260
+ "mentionIds": [
1261
+ 100436,
1262
+ 100437,
1263
+ 100438,
1264
+ 100439,
1265
+ 100440
1266
+ ]
1267
+ },
1268
+ {
1269
+ "clusterId": 774887,
1270
+ "clusterTitle": "Santa Cruz massacre",
1271
+ "mentionIds": [
1272
+ 79209,
1273
+ 79210,
1274
+ 79212,
1275
+ 79213,
1276
+ 79216,
1277
+ 79217,
1278
+ 79218
1279
+ ]
1280
+ },
1281
+ {
1282
+ "clusterId": 4251308,
1283
+ "clusterTitle": "56th Filmfare Awards",
1284
+ "mentionIds": [
1285
+ 122502,
1286
+ 122504,
1287
+ 122505,
1288
+ 122508
1289
+ ]
1290
+ },
1291
+ {
1292
+ "clusterId": 2589911,
1293
+ "clusterTitle": "1968 Inangahua earthquake",
1294
+ "mentionIds": [
1295
+ 110774,
1296
+ 110775,
1297
+ 110776,
1298
+ 110777,
1299
+ 110778
1300
+ ]
1301
+ },
1302
+ {
1303
+ "clusterId": 3003613,
1304
+ "clusterTitle": "2015 Summit League Men's Basketball Tournament",
1305
+ "mentionIds": [
1306
+ 115204,
1307
+ 115206
1308
+ ]
1309
+ },
1310
+ {
1311
+ "clusterId": 2121940,
1312
+ "clusterTitle": "Wakefield massacre",
1313
+ "mentionIds": [
1314
+ 106920,
1315
+ 106921
1316
+ ]
1317
+ },
1318
+ {
1319
+ "clusterId": 1894632,
1320
+ "clusterTitle": "1957 San Francisco earthquake",
1321
+ "mentionIds": [
1322
+ 104505,
1323
+ 104506,
1324
+ 104507,
1325
+ 104509,
1326
+ 104510
1327
+ ]
1328
+ },
1329
+ {
1330
+ "clusterId": 3797197,
1331
+ "clusterTitle": "2010 Aksu bombing",
1332
+ "mentionIds": [
1333
+ 121122,
1334
+ 121123,
1335
+ 121124,
1336
+ 121125
1337
+ ]
1338
+ },
1339
+ {
1340
+ "clusterId": 4498620,
1341
+ "clusterTitle": "43rd Antalya Golden Orange Film Festival",
1342
+ "mentionIds": [
1343
+ 123157,
1344
+ 123158,
1345
+ 123159
1346
+ ]
1347
+ },
1348
+ {
1349
+ "clusterId": 5726038,
1350
+ "clusterTitle": "2017 America East Women's Basketball Tournament",
1351
+ "mentionIds": [
1352
+ 125338,
1353
+ 125340,
1354
+ 125341,
1355
+ 125343,
1356
+ 125344
1357
+ ]
1358
+ },
1359
+ {
1360
+ "clusterId": 645899,
1361
+ "clusterTitle": "American Music Awards of 2015",
1362
+ "mentionIds": [
1363
+ 73238,
1364
+ 73239,
1365
+ 73243,
1366
+ 73245,
1367
+ 73249,
1368
+ 73251,
1369
+ 73253,
1370
+ 73254,
1371
+ 73255,
1372
+ 73257,
1373
+ 73259,
1374
+ 73261
1375
+ ]
1376
+ },
1377
+ {
1378
+ "clusterId": 5155661,
1379
+ "clusterTitle": "2003 PBA Invitational Championship",
1380
+ "mentionIds": [
1381
+ 124636,
1382
+ 124637
1383
+ ]
1384
+ },
1385
+ {
1386
+ "clusterId": 1287440,
1387
+ "clusterTitle": "59th British Academy Film Awards",
1388
+ "mentionIds": [
1389
+ 95399,
1390
+ 95400
1391
+ ]
1392
+ },
1393
+ {
1394
+ "clusterId": 2745120,
1395
+ "clusterTitle": "Aztec High School shooting",
1396
+ "mentionIds": [
1397
+ 112068,
1398
+ 112069
1399
+ ]
1400
+ },
1401
+ {
1402
+ "clusterId": 1042181,
1403
+ "clusterTitle": "2013 Saravan earthquake",
1404
+ "mentionIds": [
1405
+ 88890,
1406
+ 88891,
1407
+ 88893,
1408
+ 88894
1409
+ ]
1410
+ },
1411
+ {
1412
+ "clusterId": 2648868,
1413
+ "clusterTitle": "2016 Kids' Choice Awards",
1414
+ "mentionIds": [
1415
+ 111228,
1416
+ 111229,
1417
+ 111232,
1418
+ 111234,
1419
+ 111236
1420
+ ]
1421
+ },
1422
+ {
1423
+ "clusterId": 511243,
1424
+ "clusterTitle": "2015 Tbilisi flood",
1425
+ "mentionIds": [
1426
+ 64785,
1427
+ 64786,
1428
+ 64788,
1429
+ 64789
1430
+ ]
1431
+ },
1432
+ {
1433
+ "clusterId": 2865446,
1434
+ "clusterTitle": "2017–18 PBA Philippine Cup Finals",
1435
+ "mentionIds": [
1436
+ 112952,
1437
+ 112953
1438
+ ]
1439
+ },
1440
+ {
1441
+ "clusterId": 11022,
1442
+ "clusterTitle": "Ivy Mike",
1443
+ "mentionIds": [
1444
+ 9719,
1445
+ 9721,
1446
+ 9729,
1447
+ 9743,
1448
+ 9774,
1449
+ 9779,
1450
+ 9780,
1451
+ 9782,
1452
+ 9783,
1453
+ 9785,
1454
+ 9801
1455
+ ]
1456
+ },
1457
+ {
1458
+ "clusterId": 4710216,
1459
+ "clusterTitle": "14th Canadian Folk Music Awards",
1460
+ "mentionIds": [
1461
+ 123868,
1462
+ 123869,
1463
+ 123870,
1464
+ 123874
1465
+ ]
1466
+ },
1467
+ {
1468
+ "clusterId": 1713930,
1469
+ "clusterTitle": "1967 Cannes Film Festival",
1470
+ "mentionIds": [
1471
+ 102692,
1472
+ 102698,
1473
+ 102702,
1474
+ 102706
1475
+ ]
1476
+ },
1477
+ {
1478
+ "clusterId": 192558,
1479
+ "clusterTitle": "1989 Loma Prieta earthquake",
1480
+ "mentionIds": [
1481
+ 35810,
1482
+ 35813,
1483
+ 35818,
1484
+ 35819,
1485
+ 35825,
1486
+ 35829,
1487
+ 35836,
1488
+ 35837,
1489
+ 35843,
1490
+ 35851,
1491
+ 35853,
1492
+ 35868,
1493
+ 35869,
1494
+ 35883,
1495
+ 35885,
1496
+ 35892,
1497
+ 35893,
1498
+ 35895,
1499
+ 35898,
1500
+ 35902,
1501
+ 35933,
1502
+ 35939,
1503
+ 35957,
1504
+ 35968,
1505
+ 35985,
1506
+ 35990,
1507
+ 35994,
1508
+ 36017,
1509
+ 36037,
1510
+ 36066,
1511
+ 36084,
1512
+ 36088,
1513
+ 36093
1514
+ ]
1515
+ },
1516
+ {
1517
+ "clusterId": 619046,
1518
+ "clusterTitle": "37th National Film Awards",
1519
+ "mentionIds": [
1520
+ 71925,
1521
+ 71927,
1522
+ 71931,
1523
+ 71933,
1524
+ 71935
1525
+ ]
1526
+ },
1527
+ {
1528
+ "clusterId": 2309139,
1529
+ "clusterTitle": "2013 Rialto Channel New Zealand Film Awards",
1530
+ "mentionIds": [
1531
+ 108302,
1532
+ 108303
1533
+ ]
1534
+ },
1535
+ {
1536
+ "clusterId": 5795436,
1537
+ "clusterTitle": "2019 Horizon League Women's Basketball Tournament",
1538
+ "mentionIds": [
1539
+ 125461,
1540
+ 125462,
1541
+ 125463
1542
+ ]
1543
+ },
1544
+ {
1545
+ "clusterId": 5396069,
1546
+ "clusterTitle": "Ozark Air Lines Flight 650",
1547
+ "mentionIds": [
1548
+ 124950,
1549
+ 124951
1550
+ ]
1551
+ },
1552
+ {
1553
+ "clusterId": 4088839,
1554
+ "clusterTitle": "Miss America's Outstanding Teen 2019",
1555
+ "mentionIds": [
1556
+ 122055,
1557
+ 122056,
1558
+ 122057
1559
+ ]
1560
+ },
1561
+ {
1562
+ "clusterId": 98363,
1563
+ "clusterTitle": "Atiak massacre",
1564
+ "mentionIds": [
1565
+ 25037,
1566
+ 25038,
1567
+ 25040,
1568
+ 25041
1569
+ ]
1570
+ },
1571
+ {
1572
+ "clusterId": 1902630,
1573
+ "clusterTitle": "44th Filmfare Awards",
1574
+ "mentionIds": [
1575
+ 104568,
1576
+ 104569,
1577
+ 104570
1578
+ ]
1579
+ },
1580
+ {
1581
+ "clusterId": 2559001,
1582
+ "clusterTitle": "2019 Billboard Music Awards",
1583
+ "mentionIds": [
1584
+ 110523,
1585
+ 110524,
1586
+ 110526,
1587
+ 110528
1588
+ ]
1589
+ },
1590
+ {
1591
+ "clusterId": 3073041,
1592
+ "clusterTitle": "Almondbury Community School bullying incident",
1593
+ "mentionIds": [
1594
+ 116055,
1595
+ 116057
1596
+ ]
1597
+ },
1598
+ {
1599
+ "clusterId": 631862,
1600
+ "clusterTitle": "2011 Billboard Music Awards",
1601
+ "mentionIds": [
1602
+ 72034,
1603
+ 72042,
1604
+ 72044,
1605
+ 72045
1606
+ ]
1607
+ },
1608
+ {
1609
+ "clusterId": 429127,
1610
+ "clusterTitle": "Miss International 2014",
1611
+ "mentionIds": [
1612
+ 57949,
1613
+ 57950,
1614
+ 57954,
1615
+ 57957,
1616
+ 57959,
1617
+ 57963
1618
+ ]
1619
+ },
1620
+ {
1621
+ "clusterId": 4110969,
1622
+ "clusterTitle": "Sanremo Music Festival 1990",
1623
+ "mentionIds": [
1624
+ 122090,
1625
+ 122091,
1626
+ 122092,
1627
+ 122093,
1628
+ 122094,
1629
+ 122095
1630
+ ]
1631
+ },
1632
+ {
1633
+ "clusterId": 3149439,
1634
+ "clusterTitle": "2018 MAAC Men's Basketball Tournament",
1635
+ "mentionIds": [
1636
+ 117259,
1637
+ 117279
1638
+ ]
1639
+ },
1640
+ {
1641
+ "clusterId": 925790,
1642
+ "clusterTitle": "2016 CAA Men's Basketball Tournament",
1643
+ "mentionIds": [
1644
+ 85125,
1645
+ 85127,
1646
+ 85128,
1647
+ 85129,
1648
+ 85132,
1649
+ 85137
1650
+ ]
1651
+ },
1652
+ {
1653
+ "clusterId": 612952,
1654
+ "clusterTitle": "Juno Awards of 2016",
1655
+ "mentionIds": [
1656
+ 71780,
1657
+ 71781,
1658
+ 71782,
1659
+ 71783
1660
+ ]
1661
+ },
1662
+ {
1663
+ "clusterId": 1605706,
1664
+ "clusterTitle": "12th Screen Actors Guild Awards",
1665
+ "mentionIds": [
1666
+ 101098,
1667
+ 101101
1668
+ ]
1669
+ },
1670
+ {
1671
+ "clusterId": 5164572,
1672
+ "clusterTitle": "Miss International 2002",
1673
+ "mentionIds": [
1674
+ 124660,
1675
+ 124661,
1676
+ 124662
1677
+ ]
1678
+ },
1679
+ {
1680
+ "clusterId": 191578,
1681
+ "clusterTitle": "1985 Cannes Film Festival",
1682
+ "mentionIds": [
1683
+ 35788,
1684
+ 35789
1685
+ ]
1686
+ },
1687
+ {
1688
+ "clusterId": 3436655,
1689
+ "clusterTitle": "1901 massacres of Serbs",
1690
+ "mentionIds": [
1691
+ 119614,
1692
+ 119616,
1693
+ 119617,
1694
+ 119618
1695
+ ]
1696
+ },
1697
+ {
1698
+ "clusterId": 2634824,
1699
+ "clusterTitle": "The Second Coming Tour (D'Angelo)",
1700
+ "mentionIds": [
1701
+ 111125,
1702
+ 111126,
1703
+ 111127,
1704
+ 111128
1705
+ ]
1706
+ },
1707
+ {
1708
+ "clusterId": 493153,
1709
+ "clusterTitle": "1988 Soviet nuclear tests",
1710
+ "mentionIds": [
1711
+ 63624,
1712
+ 63625
1713
+ ]
1714
+ },
1715
+ {
1716
+ "clusterId": 3040327,
1717
+ "clusterTitle": "CMC Music Awards",
1718
+ "mentionIds": [
1719
+ 115677,
1720
+ 115678
1721
+ ]
1722
+ },
1723
+ {
1724
+ "clusterId": 608352,
1725
+ "clusterTitle": "Genocide of Yazidis by ISIL",
1726
+ "mentionIds": [
1727
+ 71570,
1728
+ 71573,
1729
+ 71574,
1730
+ 71576,
1731
+ 71577,
1732
+ 71578,
1733
+ 71579,
1734
+ 71581,
1735
+ 71584,
1736
+ 71585,
1737
+ 71586,
1738
+ 71588,
1739
+ 71590
1740
+ ]
1741
+ },
1742
+ {
1743
+ "clusterId": 3105347,
1744
+ "clusterTitle": "APRA Music Awards of 2003",
1745
+ "mentionIds": [
1746
+ 116853,
1747
+ 116854,
1748
+ 116855
1749
+ ]
1750
+ },
1751
+ {
1752
+ "clusterId": 1281663,
1753
+ "clusterTitle": "27th Genie Awards",
1754
+ "mentionIds": [
1755
+ 95333,
1756
+ 95339,
1757
+ 95343,
1758
+ 95344
1759
+ ]
1760
+ },
1761
+ {
1762
+ "clusterId": 4636200,
1763
+ "clusterTitle": "44th Annie Awards",
1764
+ "mentionIds": [
1765
+ 123664,
1766
+ 123665,
1767
+ 123666
1768
+ ]
1769
+ },
1770
+ {
1771
+ "clusterId": 813177,
1772
+ "clusterTitle": "Juno Awards of 2010",
1773
+ "mentionIds": [
1774
+ 80989,
1775
+ 80992,
1776
+ 80993,
1777
+ 80994,
1778
+ 80995,
1779
+ 80997
1780
+ ]
1781
+ },
1782
+ {
1783
+ "clusterId": 400496,
1784
+ "clusterTitle": "75th Venice International Film Festival",
1785
+ "mentionIds": [
1786
+ 55146,
1787
+ 55149,
1788
+ 55162,
1789
+ 55164,
1790
+ 55166,
1791
+ 55167,
1792
+ 55202,
1793
+ 55207,
1794
+ 55210,
1795
+ 55212,
1796
+ 55213
1797
+ ]
1798
+ },
1799
+ {
1800
+ "clusterId": 1740386,
1801
+ "clusterTitle": "2013 Okhotsk Sea earthquake",
1802
+ "mentionIds": [
1803
+ 103037,
1804
+ 103038
1805
+ ]
1806
+ },
1807
+ {
1808
+ "clusterId": 2105944,
1809
+ "clusterTitle": "46th Primetime Emmy Awards",
1810
+ "mentionIds": [
1811
+ 106754,
1812
+ 106755
1813
+ ]
1814
+ },
1815
+ {
1816
+ "clusterId": 2550438,
1817
+ "clusterTitle": "2016 Ouagadougou attacks",
1818
+ "mentionIds": [
1819
+ 110443,
1820
+ 110444,
1821
+ 110445,
1822
+ 110446,
1823
+ 110447,
1824
+ 110448,
1825
+ 110450
1826
+ ]
1827
+ },
1828
+ {
1829
+ "clusterId": 497794,
1830
+ "clusterTitle": "Eurovision Song Contest 1968",
1831
+ "mentionIds": [
1832
+ 63866,
1833
+ 63869,
1834
+ 63872,
1835
+ 63884,
1836
+ 63886,
1837
+ 63887,
1838
+ 63889,
1839
+ 63892,
1840
+ 63898,
1841
+ 63899,
1842
+ 63903,
1843
+ 63914,
1844
+ 63915
1845
+ ]
1846
+ },
1847
+ {
1848
+ "clusterId": 5582552,
1849
+ "clusterTitle": "7th Yerevan Golden Apricot International Film Festival",
1850
+ "mentionIds": [
1851
+ 125159,
1852
+ 125160
1853
+ ]
1854
+ },
1855
+ {
1856
+ "clusterId": 1953939,
1857
+ "clusterTitle": "Ehden massacre",
1858
+ "mentionIds": [
1859
+ 105304,
1860
+ 105306,
1861
+ 105309,
1862
+ 105310,
1863
+ 105311,
1864
+ 105313,
1865
+ 105314,
1866
+ 105315,
1867
+ 105316
1868
+ ]
1869
+ },
1870
+ {
1871
+ "clusterId": 382602,
1872
+ "clusterTitle": "3rd Summit of the Americas",
1873
+ "mentionIds": [
1874
+ 54280,
1875
+ 54282,
1876
+ 54284,
1877
+ 54286,
1878
+ 54287,
1879
+ 54288,
1880
+ 54289,
1881
+ 54291,
1882
+ 54292
1883
+ ]
1884
+ },
1885
+ {
1886
+ "clusterId": 566424,
1887
+ "clusterTitle": "Ariel Castro kidnappings",
1888
+ "mentionIds": [
1889
+ 68775,
1890
+ 68776,
1891
+ 68778,
1892
+ 68780
1893
+ ]
1894
+ },
1895
+ {
1896
+ "clusterId": 4705493,
1897
+ "clusterTitle": "7th Saturn Awards",
1898
+ "mentionIds": [
1899
+ 123858,
1900
+ 123859,
1901
+ 123860
1902
+ ]
1903
+ },
1904
+ {
1905
+ "clusterId": 466067,
1906
+ "clusterTitle": "2014 Sun Belt Conference Men's Basketball Tournament",
1907
+ "mentionIds": [
1908
+ 62199,
1909
+ 62201,
1910
+ 62202,
1911
+ 62206,
1912
+ 62209,
1913
+ 62210,
1914
+ 62212
1915
+ ]
1916
+ },
1917
+ {
1918
+ "clusterId": 4981974,
1919
+ "clusterTitle": "2014 SBS Drama Awards",
1920
+ "mentionIds": [
1921
+ 124296,
1922
+ 124297
1923
+ ]
1924
+ },
1925
+ {
1926
+ "clusterId": 7096055,
1927
+ "clusterTitle": "45th Kerala State Film Awards",
1928
+ "mentionIds": [
1929
+ 126120,
1930
+ 126121
1931
+ ]
1932
+ },
1933
+ {
1934
+ "clusterId": 1141937,
1935
+ "clusterTitle": "Isolar II – The 1978 World Tour",
1936
+ "mentionIds": [
1937
+ 91386,
1938
+ 91388,
1939
+ 91389,
1940
+ 91392,
1941
+ 91393,
1942
+ 91395,
1943
+ 91396,
1944
+ 91397,
1945
+ 91398,
1946
+ 91401,
1947
+ 91402
1948
+ ]
1949
+ },
1950
+ {
1951
+ "clusterId": 3719324,
1952
+ "clusterTitle": "2017 Chicago torture incident",
1953
+ "mentionIds": [
1954
+ 120716,
1955
+ 120717
1956
+ ]
1957
+ },
1958
+ {
1959
+ "clusterId": 3006597,
1960
+ "clusterTitle": "2018 American Athletic Conference Men's Basketball Tournament",
1961
+ "mentionIds": [
1962
+ 115269,
1963
+ 115275,
1964
+ 115276,
1965
+ 115278
1966
+ ]
1967
+ },
1968
+ {
1969
+ "clusterId": 1768115,
1970
+ "clusterTitle": "Nemmersdorf massacre",
1971
+ "mentionIds": [
1972
+ 103277,
1973
+ 103278,
1974
+ 103279,
1975
+ 103280,
1976
+ 103282,
1977
+ 103288,
1978
+ 103289
1979
+ ]
1980
+ },
1981
+ {
1982
+ "clusterId": 3171484,
1983
+ "clusterTitle": "2019 Southland Conference Men's Basketball Tournament",
1984
+ "mentionIds": [
1985
+ 117711,
1986
+ 117712,
1987
+ 117714,
1988
+ 117715,
1989
+ 117716,
1990
+ 117717,
1991
+ 117718
1992
+ ]
1993
+ },
1994
+ {
1995
+ "clusterId": 596644,
1996
+ "clusterTitle": "69th British Academy Film Awards",
1997
+ "mentionIds": [
1998
+ 70484,
1999
+ 70486,
2000
+ 70488,
2001
+ 70499,
2002
+ 70506
2003
+ ]
2004
+ },
2005
+ {
2006
+ "clusterId": 1732279,
2007
+ "clusterTitle": "7th Academy Awards",
2008
+ "mentionIds": [
2009
+ 102917,
2010
+ 102918,
2011
+ 102919,
2012
+ 102920,
2013
+ 102926,
2014
+ 102928,
2015
+ 102929
2016
+ ]
2017
+ },
2018
+ {
2019
+ "clusterId": 3192964,
2020
+ "clusterTitle": "47th Japan Record Awards",
2021
+ "mentionIds": [
2022
+ 118099,
2023
+ 118100,
2024
+ 118101,
2025
+ 118102
2026
+ ]
2027
+ },
2028
+ {
2029
+ "clusterId": 1883817,
2030
+ "clusterTitle": "Refugio oil spill",
2031
+ "mentionIds": [
2032
+ 104366,
2033
+ 104367
2034
+ ]
2035
+ },
2036
+ {
2037
+ "clusterId": 6913247,
2038
+ "clusterTitle": "2002 Rome summit",
2039
+ "mentionIds": [
2040
+ 126099,
2041
+ 126100
2042
+ ]
2043
+ },
2044
+ {
2045
+ "clusterId": 2786973,
2046
+ "clusterTitle": "20th Golden Raspberry Awards",
2047
+ "mentionIds": [
2048
+ 112234,
2049
+ 112235,
2050
+ 112236
2051
+ ]
2052
+ },
2053
+ {
2054
+ "clusterId": 98493,
2055
+ "clusterTitle": "Russian apartment bombings",
2056
+ "mentionIds": [
2057
+ 25266,
2058
+ 25267,
2059
+ 25272,
2060
+ 25282,
2061
+ 25287,
2062
+ 25288,
2063
+ 25295,
2064
+ 25297,
2065
+ 25299,
2066
+ 25300,
2067
+ 25304,
2068
+ 25305,
2069
+ 25310,
2070
+ 25313,
2071
+ 25315,
2072
+ 25316,
2073
+ 25318
2074
+ ]
2075
+ },
2076
+ {
2077
+ "clusterId": 1388713,
2078
+ "clusterTitle": "Miss Universe 1965",
2079
+ "mentionIds": [
2080
+ 97375,
2081
+ 97377,
2082
+ 97378,
2083
+ 97379
2084
+ ]
2085
+ },
2086
+ {
2087
+ "clusterId": 3903231,
2088
+ "clusterTitle": "List of terrorist incidents in Pakistan since 2001",
2089
+ "mentionIds": [
2090
+ 121522,
2091
+ 121524
2092
+ ]
2093
+ },
2094
+ {
2095
+ "clusterId": 54468,
2096
+ "clusterTitle": "1932 Democratic National Convention",
2097
+ "mentionIds": [
2098
+ 20374,
2099
+ 20376,
2100
+ 20377,
2101
+ 20384,
2102
+ 20389,
2103
+ 20395,
2104
+ 20396,
2105
+ 20398,
2106
+ 20399,
2107
+ 20406,
2108
+ 20410,
2109
+ 20412,
2110
+ 20416,
2111
+ 20417
2112
+ ]
2113
+ },
2114
+ {
2115
+ "clusterId": 1930968,
2116
+ "clusterTitle": "1967 USS Forrestal fire",
2117
+ "mentionIds": [
2118
+ 105002,
2119
+ 105003,
2120
+ 105004,
2121
+ 105005,
2122
+ 105006,
2123
+ 105007,
2124
+ 105009,
2125
+ 105011,
2126
+ 105013,
2127
+ 105015,
2128
+ 105016,
2129
+ 105017
2130
+ ]
2131
+ },
2132
+ {
2133
+ "clusterId": 5080712,
2134
+ "clusterTitle": "30th Independent Spirit Awards",
2135
+ "mentionIds": [
2136
+ 124503,
2137
+ 124504,
2138
+ 124506,
2139
+ 124507
2140
+ ]
2141
+ },
2142
+ {
2143
+ "clusterId": 2996458,
2144
+ "clusterTitle": "Sanremo Music Festival 1981",
2145
+ "mentionIds": [
2146
+ 115110,
2147
+ 115111,
2148
+ 115112
2149
+ ]
2150
+ },
2151
+ {
2152
+ "clusterId": 2866919,
2153
+ "clusterTitle": "2016 Kumamoto earthquakes",
2154
+ "mentionIds": [
2155
+ 112964,
2156
+ 112965,
2157
+ 112968,
2158
+ 112970,
2159
+ 112971,
2160
+ 112972,
2161
+ 112975,
2162
+ 112976,
2163
+ 112978
2164
+ ]
2165
+ },
2166
+ {
2167
+ "clusterId": 3094752,
2168
+ "clusterTitle": "2018 Summit League Men's Basketball Tournament",
2169
+ "mentionIds": [
2170
+ 116368,
2171
+ 116369,
2172
+ 116376,
2173
+ 116378
2174
+ ]
2175
+ },
2176
+ {
2177
+ "clusterId": 5400706,
2178
+ "clusterTitle": "2009 Karonga earthquakes",
2179
+ "mentionIds": [
2180
+ 124957,
2181
+ 124958
2182
+ ]
2183
+ },
2184
+ {
2185
+ "clusterId": 742109,
2186
+ "clusterTitle": "1976 Guatemala earthquake",
2187
+ "mentionIds": [
2188
+ 77817,
2189
+ 77818,
2190
+ 77819,
2191
+ 77820,
2192
+ 77821,
2193
+ 77823,
2194
+ 77825,
2195
+ 77826,
2196
+ 77830,
2197
+ 77831,
2198
+ 77832,
2199
+ 77833,
2200
+ 77834,
2201
+ 77836,
2202
+ 77838,
2203
+ 77840,
2204
+ 77841,
2205
+ 77842,
2206
+ 77847,
2207
+ 77848,
2208
+ 77849,
2209
+ 77850,
2210
+ 77851
2211
+ ]
2212
+ },
2213
+ {
2214
+ "clusterId": 546000,
2215
+ "clusterTitle": "2015 Big West Conference Men's Basketball Tournament",
2216
+ "mentionIds": [
2217
+ 67427,
2218
+ 67428,
2219
+ 67431,
2220
+ 67433
2221
+ ]
2222
+ },
2223
+ {
2224
+ "clusterId": 3203308,
2225
+ "clusterTitle": "Massacres of Albanians in the Balkan Wars",
2226
+ "mentionIds": [
2227
+ 118202,
2228
+ 118203,
2229
+ 118204,
2230
+ 118206,
2231
+ 118207,
2232
+ 118208,
2233
+ 118209
2234
+ ]
2235
+ },
2236
+ {
2237
+ "clusterId": 1942720,
2238
+ "clusterTitle": "2013 Argentina floods",
2239
+ "mentionIds": [
2240
+ 105094,
2241
+ 105095,
2242
+ 105096
2243
+ ]
2244
+ },
2245
+ {
2246
+ "clusterId": 455908,
2247
+ "clusterTitle": "Miss International 2010",
2248
+ "mentionIds": [
2249
+ 60891,
2250
+ 60893,
2251
+ 60897,
2252
+ 60899,
2253
+ 60900,
2254
+ 60901,
2255
+ 60910
2256
+ ]
2257
+ },
2258
+ {
2259
+ "clusterId": 2544322,
2260
+ "clusterTitle": "2004 Brit Awards",
2261
+ "mentionIds": [
2262
+ 110391,
2263
+ 110392
2264
+ ]
2265
+ },
2266
+ {
2267
+ "clusterId": 2745039,
2268
+ "clusterTitle": "Knoxville Unitarian Universalist church shooting",
2269
+ "mentionIds": [
2270
+ 112051,
2271
+ 112052,
2272
+ 112053
2273
+ ]
2274
+ },
2275
+ {
2276
+ "clusterId": 966888,
2277
+ "clusterTitle": "Kelayres massacre",
2278
+ "mentionIds": [
2279
+ 86234,
2280
+ 86235,
2281
+ 86236
2282
+ ]
2283
+ },
2284
+ {
2285
+ "clusterId": 269037,
2286
+ "clusterTitle": "14th Academy Awards",
2287
+ "mentionIds": [
2288
+ 45319,
2289
+ 45322,
2290
+ 45325,
2291
+ 45337,
2292
+ 45338,
2293
+ 45351,
2294
+ 45357,
2295
+ 45358
2296
+ ]
2297
+ },
2298
+ {
2299
+ "clusterId": 1442045,
2300
+ "clusterTitle": "2005 Metro Manila Film Festival",
2301
+ "mentionIds": [
2302
+ 98018,
2303
+ 98019,
2304
+ 98020,
2305
+ 98022,
2306
+ 98023
2307
+ ]
2308
+ },
2309
+ {
2310
+ "clusterId": 623845,
2311
+ "clusterTitle": "Eurovision Young Musicians 2008",
2312
+ "mentionIds": [
2313
+ 71984,
2314
+ 71985
2315
+ ]
2316
+ },
2317
+ {
2318
+ "clusterId": 1086176,
2319
+ "clusterTitle": "Šahovići massacre",
2320
+ "mentionIds": [
2321
+ 90155,
2322
+ 90156
2323
+ ]
2324
+ },
2325
+ {
2326
+ "clusterId": 1930988,
2327
+ "clusterTitle": "2006 Pacific-10 Conference Men's Basketball Tournament",
2328
+ "mentionIds": [
2329
+ 105018,
2330
+ 105019,
2331
+ 105020,
2332
+ 105021
2333
+ ]
2334
+ },
2335
+ {
2336
+ "clusterId": 2227415,
2337
+ "clusterTitle": "6th Genie Awards",
2338
+ "mentionIds": [
2339
+ 107629,
2340
+ 107630,
2341
+ 107633,
2342
+ 107634
2343
+ ]
2344
+ },
2345
+ {
2346
+ "clusterId": 1982694,
2347
+ "clusterTitle": "30th World Science Fiction Convention",
2348
+ "mentionIds": [
2349
+ 105484,
2350
+ 105485,
2351
+ 105486
2352
+ ]
2353
+ },
2354
+ {
2355
+ "clusterId": 2293469,
2356
+ "clusterTitle": "Family Values Tour 1998",
2357
+ "mentionIds": [
2358
+ 108172,
2359
+ 108173
2360
+ ]
2361
+ },
2362
+ {
2363
+ "clusterId": 724234,
2364
+ "clusterTitle": "APEC Philippines 1996",
2365
+ "mentionIds": [
2366
+ 77051,
2367
+ 77052,
2368
+ 77053,
2369
+ 77054
2370
+ ]
2371
+ },
2372
+ {
2373
+ "clusterId": 2719530,
2374
+ "clusterTitle": "2010 Tejano Music Awards",
2375
+ "mentionIds": [
2376
+ 111869,
2377
+ 111870,
2378
+ 111871,
2379
+ 111872,
2380
+ 111873
2381
+ ]
2382
+ },
2383
+ {
2384
+ "clusterId": 3240763,
2385
+ "clusterTitle": "2018 America East Women's Basketball Tournament",
2386
+ "mentionIds": [
2387
+ 118684,
2388
+ 118685,
2389
+ 118686
2390
+ ]
2391
+ },
2392
+ {
2393
+ "clusterId": 4556623,
2394
+ "clusterTitle": "1991 PBA Third Conference",
2395
+ "mentionIds": [
2396
+ 123328,
2397
+ 123329,
2398
+ 123330
2399
+ ]
2400
+ },
2401
+ {
2402
+ "clusterId": 2317105,
2403
+ "clusterTitle": "APRA Music Awards of 2001",
2404
+ "mentionIds": [
2405
+ 108339,
2406
+ 108340,
2407
+ 108341
2408
+ ]
2409
+ },
2410
+ {
2411
+ "clusterId": 2988340,
2412
+ "clusterTitle": "2017 WAC Men's Basketball Tournament",
2413
+ "mentionIds": [
2414
+ 114877,
2415
+ 114878,
2416
+ 114881,
2417
+ 114883,
2418
+ 114884
2419
+ ]
2420
+ },
2421
+ {
2422
+ "clusterId": 347928,
2423
+ "clusterTitle": "25th Golden Raspberry Awards",
2424
+ "mentionIds": [
2425
+ 52114,
2426
+ 52116,
2427
+ 52119,
2428
+ 52120,
2429
+ 52121,
2430
+ 52122
2431
+ ]
2432
+ },
2433
+ {
2434
+ "clusterId": 979219,
2435
+ "clusterTitle": "2001 ACC Men's Basketball Tournament",
2436
+ "mentionIds": [
2437
+ 86574,
2438
+ 86576
2439
+ ]
2440
+ },
2441
+ {
2442
+ "clusterId": 292132,
2443
+ "clusterTitle": "6th World Science Fiction Convention",
2444
+ "mentionIds": [
2445
+ 47384,
2446
+ 47385,
2447
+ 47386,
2448
+ 47387,
2449
+ 47388
2450
+ ]
2451
+ },
2452
+ {
2453
+ "clusterId": 1338164,
2454
+ "clusterTitle": "December 2014 Cameroon clashes",
2455
+ "mentionIds": [
2456
+ 96564,
2457
+ 96565,
2458
+ 96566
2459
+ ]
2460
+ },
2461
+ {
2462
+ "clusterId": 4374375,
2463
+ "clusterTitle": "2009 G20 London summit",
2464
+ "mentionIds": [
2465
+ 122821,
2466
+ 122822,
2467
+ 122823,
2468
+ 122824,
2469
+ 122825,
2470
+ 122827
2471
+ ]
2472
+ },
2473
+ {
2474
+ "clusterId": 4766061,
2475
+ "clusterTitle": "1905 Bolnai earthquake",
2476
+ "mentionIds": [
2477
+ 124000,
2478
+ 124001
2479
+ ]
2480
+ },
2481
+ {
2482
+ "clusterId": 52006,
2483
+ "clusterTitle": "Assassination of Sheikh Mujibur Rahman",
2484
+ "mentionIds": [
2485
+ 20114,
2486
+ 20115,
2487
+ 20117,
2488
+ 20118,
2489
+ 20121,
2490
+ 20122,
2491
+ 20124,
2492
+ 20133,
2493
+ 20135,
2494
+ 20140,
2495
+ 20142,
2496
+ 20144,
2497
+ 20151,
2498
+ 20153,
2499
+ 20155,
2500
+ 20156,
2501
+ 20157,
2502
+ 20158,
2503
+ 20160,
2504
+ 20161,
2505
+ 20162,
2506
+ 20164,
2507
+ 20173,
2508
+ 20175,
2509
+ 20177,
2510
+ 20181
2511
+ ]
2512
+ },
2513
+ {
2514
+ "clusterId": 3326229,
2515
+ "clusterTitle": "2006 MTV Movie Awards",
2516
+ "mentionIds": [
2517
+ 119108,
2518
+ 119109,
2519
+ 119119,
2520
+ 119120
2521
+ ]
2522
+ },
2523
+ {
2524
+ "clusterId": 1508157,
2525
+ "clusterTitle": "2010 MuchMusic Video Awards",
2526
+ "mentionIds": [
2527
+ 99531,
2528
+ 99532,
2529
+ 99534,
2530
+ 99535,
2531
+ 99538,
2532
+ 99543
2533
+ ]
2534
+ },
2535
+ {
2536
+ "clusterId": 1890615,
2537
+ "clusterTitle": "The Rolling Stones European Tour 1970",
2538
+ "mentionIds": [
2539
+ 104449,
2540
+ 104450,
2541
+ 104451
2542
+ ]
2543
+ },
2544
+ {
2545
+ "clusterId": 536867,
2546
+ "clusterTitle": "2015 ACC Women's Basketball Tournament",
2547
+ "mentionIds": [
2548
+ 66612,
2549
+ 66616,
2550
+ 66617,
2551
+ 66618
2552
+ ]
2553
+ },
2554
+ {
2555
+ "clusterId": 5801844,
2556
+ "clusterTitle": "2019 WAC Women's Basketball Tournament",
2557
+ "mentionIds": [
2558
+ 125480,
2559
+ 125481,
2560
+ 125482,
2561
+ 125483
2562
+ ]
2563
+ }
2564
+ ]
clean/Test_passages_min_span.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ced18271431ac24b1c1f883781bef05446257903f90262382e80eef34e1cb3d5
3
+ size 1216374204
clean/Test_queries_min_span.json ADDED
The diff for this file is too large to render. See raw diff
 
clean/Train_gold_clusters_min_span.json ADDED
@@ -0,0 +1,2805 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "clusterId": 1732363,
4
+ "clusterTitle": "Miss World 1974",
5
+ "mentionIds": [
6
+ 102931,
7
+ 102932,
8
+ 102933
9
+ ]
10
+ },
11
+ {
12
+ "clusterId": 437523,
13
+ "clusterTitle": "46th Guldbagge Awards",
14
+ "mentionIds": [
15
+ 58478,
16
+ 58479,
17
+ 58480,
18
+ 58481,
19
+ 58482
20
+ ]
21
+ },
22
+ {
23
+ "clusterId": 712989,
24
+ "clusterTitle": "2015 Missouri Valley Conference Men's Basketball Tournament",
25
+ "mentionIds": [
26
+ 76579,
27
+ 76581,
28
+ 76583,
29
+ 76590
30
+ ]
31
+ },
32
+ {
33
+ "clusterId": 949008,
34
+ "clusterTitle": "2003 New Zealand Film Awards",
35
+ "mentionIds": [
36
+ 85961,
37
+ 85962,
38
+ 85963
39
+ ]
40
+ },
41
+ {
42
+ "clusterId": 2981682,
43
+ "clusterTitle": "2017 Atlantic Sun Men's Basketball Tournament",
44
+ "mentionIds": [
45
+ 114699,
46
+ 114700,
47
+ 114701,
48
+ 114708
49
+ ]
50
+ },
51
+ {
52
+ "clusterId": 3029260,
53
+ "clusterTitle": "Myx Music Awards 2010",
54
+ "mentionIds": [
55
+ 115616,
56
+ 115617,
57
+ 115618,
58
+ 115619
59
+ ]
60
+ },
61
+ {
62
+ "clusterId": 1990973,
63
+ "clusterTitle": "38th Primetime Emmy Awards",
64
+ "mentionIds": [
65
+ 105592,
66
+ 105593,
67
+ 105595,
68
+ 105596
69
+ ]
70
+ },
71
+ {
72
+ "clusterId": 1277750,
73
+ "clusterTitle": "58th World Science Fiction Convention",
74
+ "mentionIds": [
75
+ 95212,
76
+ 95213,
77
+ 95214,
78
+ 95215,
79
+ 95216,
80
+ 95217,
81
+ 95222
82
+ ]
83
+ },
84
+ {
85
+ "clusterId": 4278631,
86
+ "clusterTitle": "Vankalai massacre",
87
+ "mentionIds": [
88
+ 122610,
89
+ 122611
90
+ ]
91
+ },
92
+ {
93
+ "clusterId": 557870,
94
+ "clusterTitle": "Securitas depot robbery",
95
+ "mentionIds": [
96
+ 68205,
97
+ 68206,
98
+ 68208,
99
+ 68210,
100
+ 68212,
101
+ 68213,
102
+ 68215
103
+ ]
104
+ },
105
+ {
106
+ "clusterId": 199460,
107
+ "clusterTitle": "Great Flood of 1913",
108
+ "mentionIds": [
109
+ 36933,
110
+ 36942,
111
+ 36943,
112
+ 36944,
113
+ 36948,
114
+ 36951,
115
+ 36952,
116
+ 36955,
117
+ 36957,
118
+ 36965,
119
+ 36966,
120
+ 36969,
121
+ 36976
122
+ ]
123
+ },
124
+ {
125
+ "clusterId": 658221,
126
+ "clusterTitle": "KylieX2008",
127
+ "mentionIds": [
128
+ 74089,
129
+ 74093,
130
+ 74103,
131
+ 74110,
132
+ 74114,
133
+ 74117,
134
+ 74118
135
+ ]
136
+ },
137
+ {
138
+ "clusterId": 3224857,
139
+ "clusterTitle": "1971 Scottish soldiers' killings",
140
+ "mentionIds": [
141
+ 118481,
142
+ 118482,
143
+ 118483,
144
+ 118484
145
+ ]
146
+ },
147
+ {
148
+ "clusterId": 4998503,
149
+ "clusterTitle": "Miss Dominican Republic 2005",
150
+ "mentionIds": [
151
+ 124353,
152
+ 124354
153
+ ]
154
+ },
155
+ {
156
+ "clusterId": 449325,
157
+ "clusterTitle": "2015 Big Ten Conference Men's Basketball Tournament",
158
+ "mentionIds": [
159
+ 60212,
160
+ 60216,
161
+ 60220,
162
+ 60221,
163
+ 60222,
164
+ 60231,
165
+ 60233,
166
+ 60235,
167
+ 60237,
168
+ 60239
169
+ ]
170
+ },
171
+ {
172
+ "clusterId": 4278637,
173
+ "clusterTitle": "2006 Digampathana bombing",
174
+ "mentionIds": [
175
+ 122613,
176
+ 122614,
177
+ 122615
178
+ ]
179
+ },
180
+ {
181
+ "clusterId": 874275,
182
+ "clusterTitle": "Donnell Fire",
183
+ "mentionIds": [
184
+ 83275,
185
+ 83276
186
+ ]
187
+ },
188
+ {
189
+ "clusterId": 3004188,
190
+ "clusterTitle": "2016 Patriot League Men's Basketball Tournament",
191
+ "mentionIds": [
192
+ 115236,
193
+ 115237,
194
+ 115241,
195
+ 115242,
196
+ 115247,
197
+ 115252
198
+ ]
199
+ },
200
+ {
201
+ "clusterId": 2524434,
202
+ "clusterTitle": "Dahyan air strike",
203
+ "mentionIds": [
204
+ 110223,
205
+ 110224,
206
+ 110225,
207
+ 110226,
208
+ 110227,
209
+ 110228
210
+ ]
211
+ },
212
+ {
213
+ "clusterId": 3097369,
214
+ "clusterTitle": "2018 Big Ten Men's Ice Hockey Tournament",
215
+ "mentionIds": [
216
+ 116443,
217
+ 116444,
218
+ 116445
219
+ ]
220
+ },
221
+ {
222
+ "clusterId": 2806556,
223
+ "clusterTitle": "11th Africa Movie Academy Awards",
224
+ "mentionIds": [
225
+ 112378,
226
+ 112379,
227
+ 112380,
228
+ 112381,
229
+ 112382,
230
+ 112384
231
+ ]
232
+ },
233
+ {
234
+ "clusterId": 2398483,
235
+ "clusterTitle": "1992 Staples Corner bombing",
236
+ "mentionIds": [
237
+ 109134,
238
+ 109136
239
+ ]
240
+ },
241
+ {
242
+ "clusterId": 1489197,
243
+ "clusterTitle": "Naliboki massacre",
244
+ "mentionIds": [
245
+ 99049,
246
+ 99050,
247
+ 99051,
248
+ 99052,
249
+ 99053
250
+ ]
251
+ },
252
+ {
253
+ "clusterId": 1507117,
254
+ "clusterTitle": "2007 Toronto International Film Festival",
255
+ "mentionIds": [
256
+ 99526,
257
+ 99527,
258
+ 99528
259
+ ]
260
+ },
261
+ {
262
+ "clusterId": 322872,
263
+ "clusterTitle": "Early Norwegian black metal scene",
264
+ "mentionIds": [
265
+ 49111,
266
+ 49112,
267
+ 49116,
268
+ 49121,
269
+ 49122,
270
+ 49125,
271
+ 49129,
272
+ 49133,
273
+ 49134,
274
+ 49137,
275
+ 49139,
276
+ 49140
277
+ ]
278
+ },
279
+ {
280
+ "clusterId": 2693908,
281
+ "clusterTitle": "39th Venice International Film Festival",
282
+ "mentionIds": [
283
+ 111666,
284
+ 111669,
285
+ 111670,
286
+ 111671,
287
+ 111672,
288
+ 111673,
289
+ 111675,
290
+ 111676
291
+ ]
292
+ },
293
+ {
294
+ "clusterId": 1277741,
295
+ "clusterTitle": "Prom at the Palace",
296
+ "mentionIds": [
297
+ 95205,
298
+ 95206,
299
+ 95208
300
+ ]
301
+ },
302
+ {
303
+ "clusterId": 791859,
304
+ "clusterTitle": "TWA Flight 847",
305
+ "mentionIds": [
306
+ 80287,
307
+ 80296
308
+ ]
309
+ },
310
+ {
311
+ "clusterId": 1579815,
312
+ "clusterTitle": "1988 Nepal earthquake",
313
+ "mentionIds": [
314
+ 100616,
315
+ 100617,
316
+ 100618
317
+ ]
318
+ },
319
+ {
320
+ "clusterId": 3609463,
321
+ "clusterTitle": "13th Japan Record Awards",
322
+ "mentionIds": [
323
+ 120328,
324
+ 120329
325
+ ]
326
+ },
327
+ {
328
+ "clusterId": 2839401,
329
+ "clusterTitle": "1985 Rajneeshee assassination plot",
330
+ "mentionIds": [
331
+ 112683,
332
+ 112685,
333
+ 112686,
334
+ 112688,
335
+ 112689,
336
+ 112690,
337
+ 112691
338
+ ]
339
+ },
340
+ {
341
+ "clusterId": 5186825,
342
+ "clusterTitle": "Sanremo Music Festival 1968",
343
+ "mentionIds": [
344
+ 124672,
345
+ 124673
346
+ ]
347
+ },
348
+ {
349
+ "clusterId": 1081687,
350
+ "clusterTitle": "Star Awards 2018",
351
+ "mentionIds": [
352
+ 89900,
353
+ 89901,
354
+ 89902,
355
+ 89907,
356
+ 89908,
357
+ 89910,
358
+ 89911,
359
+ 89913,
360
+ 89915
361
+ ]
362
+ },
363
+ {
364
+ "clusterId": 3153783,
365
+ "clusterTitle": "2019 Big West Conference Men's Basketball Tournament",
366
+ "mentionIds": [
367
+ 117402,
368
+ 117403
369
+ ]
370
+ },
371
+ {
372
+ "clusterId": 932677,
373
+ "clusterTitle": "Miss World 2011",
374
+ "mentionIds": [
375
+ 85242,
376
+ 85260,
377
+ 85262,
378
+ 85270,
379
+ 85271,
380
+ 85274,
381
+ 85277,
382
+ 85281,
383
+ 85284,
384
+ 85305,
385
+ 85307
386
+ ]
387
+ },
388
+ {
389
+ "clusterId": 469322,
390
+ "clusterTitle": "2013 Bohol earthquake",
391
+ "mentionIds": [
392
+ 62323,
393
+ 62326,
394
+ 62327,
395
+ 62328,
396
+ 62329,
397
+ 62330,
398
+ 62331,
399
+ 62333,
400
+ 62334,
401
+ 62336,
402
+ 62338,
403
+ 62339,
404
+ 62341,
405
+ 62343,
406
+ 62344,
407
+ 62346,
408
+ 62347,
409
+ 62348,
410
+ 62351,
411
+ 62352,
412
+ 62353,
413
+ 62354,
414
+ 62355,
415
+ 62356,
416
+ 62357,
417
+ 62360,
418
+ 62362,
419
+ 62367,
420
+ 62369,
421
+ 62371
422
+ ]
423
+ },
424
+ {
425
+ "clusterId": 2029903,
426
+ "clusterTitle": "Miss America 1990",
427
+ "mentionIds": [
428
+ 105985,
429
+ 105986,
430
+ 105987,
431
+ 105988,
432
+ 105989
433
+ ]
434
+ },
435
+ {
436
+ "clusterId": 582491,
437
+ "clusterTitle": "1993 Bombay bombings",
438
+ "mentionIds": [
439
+ 69708,
440
+ 69713,
441
+ 69715,
442
+ 69722,
443
+ 69724,
444
+ 69726,
445
+ 69731,
446
+ 69738,
447
+ 69739,
448
+ 69740,
449
+ 69746,
450
+ 69747,
451
+ 69754,
452
+ 69757,
453
+ 69759,
454
+ 69760,
455
+ 69762,
456
+ 69763,
457
+ 69764,
458
+ 69768,
459
+ 69769,
460
+ 69771,
461
+ 69774,
462
+ 69776,
463
+ 69777,
464
+ 69779
465
+ ]
466
+ },
467
+ {
468
+ "clusterId": 1508164,
469
+ "clusterTitle": "2011 MuchMusic Video Awards",
470
+ "mentionIds": [
471
+ 99563,
472
+ 99565,
473
+ 99566,
474
+ 99567
475
+ ]
476
+ },
477
+ {
478
+ "clusterId": 178518,
479
+ "clusterTitle": "1956 Amorgos earthquake",
480
+ "mentionIds": [
481
+ 35004,
482
+ 35005,
483
+ 35006,
484
+ 35007,
485
+ 35008,
486
+ 35009
487
+ ]
488
+ },
489
+ {
490
+ "clusterId": 5658368,
491
+ "clusterTitle": "44th Antalya Golden Orange Film Festival",
492
+ "mentionIds": [
493
+ 125267,
494
+ 125268
495
+ ]
496
+ },
497
+ {
498
+ "clusterId": 2217341,
499
+ "clusterTitle": "2010 Meteor Awards",
500
+ "mentionIds": [
501
+ 107523,
502
+ 107527,
503
+ 107532,
504
+ 107533,
505
+ 107537
506
+ ]
507
+ },
508
+ {
509
+ "clusterId": 5476622,
510
+ "clusterTitle": "2006 Hengchun earthquakes",
511
+ "mentionIds": [
512
+ 125036,
513
+ 125037,
514
+ 125038
515
+ ]
516
+ },
517
+ {
518
+ "clusterId": 3996002,
519
+ "clusterTitle": "Led Zeppelin European Tour 1971",
520
+ "mentionIds": [
521
+ 121784,
522
+ 121785
523
+ ]
524
+ },
525
+ {
526
+ "clusterId": 2562936,
527
+ "clusterTitle": "1970 Arab League summit",
528
+ "mentionIds": [
529
+ 110565,
530
+ 110566,
531
+ 110567,
532
+ 110568,
533
+ 110569
534
+ ]
535
+ },
536
+ {
537
+ "clusterId": 5116714,
538
+ "clusterTitle": "Miss America 1991",
539
+ "mentionIds": [
540
+ 124550,
541
+ 124551
542
+ ]
543
+ },
544
+ {
545
+ "clusterId": 427362,
546
+ "clusterTitle": "2014 Pac-12 Conference Women's Basketball Tournament",
547
+ "mentionIds": [
548
+ 57918,
549
+ 57920,
550
+ 57923,
551
+ 57924
552
+ ]
553
+ },
554
+ {
555
+ "clusterId": 2968395,
556
+ "clusterTitle": "Miss Teen USA 2012",
557
+ "mentionIds": [
558
+ 114308,
559
+ 114309,
560
+ 114311,
561
+ 114312,
562
+ 114313
563
+ ]
564
+ },
565
+ {
566
+ "clusterId": 258404,
567
+ "clusterTitle": "Bloody Friday (1972)",
568
+ "mentionIds": [
569
+ 44473,
570
+ 44475,
571
+ 44480,
572
+ 44484,
573
+ 44485,
574
+ 44493,
575
+ 44494
576
+ ]
577
+ },
578
+ {
579
+ "clusterId": 1474417,
580
+ "clusterTitle": "2007 ACC Men's Basketball Tournament",
581
+ "mentionIds": [
582
+ 98743,
583
+ 98744,
584
+ 98745,
585
+ 98746,
586
+ 98747
587
+ ]
588
+ },
589
+ {
590
+ "clusterId": 117100,
591
+ "clusterTitle": "2020 Republican National Convention",
592
+ "mentionIds": [
593
+ 27080,
594
+ 27081,
595
+ 27082,
596
+ 27085,
597
+ 27086,
598
+ 27087,
599
+ 27089,
600
+ 27090
601
+ ]
602
+ },
603
+ {
604
+ "clusterId": 551289,
605
+ "clusterTitle": "4th Canadian Screen Awards",
606
+ "mentionIds": [
607
+ 67695,
608
+ 67700,
609
+ 67707,
610
+ 67713,
611
+ 67716,
612
+ 67724,
613
+ 67745,
614
+ 67763,
615
+ 67768,
616
+ 67775,
617
+ 67780
618
+ ]
619
+ },
620
+ {
621
+ "clusterId": 4294963,
622
+ "clusterTitle": "Red Tuesday bushfires",
623
+ "mentionIds": [
624
+ 122645,
625
+ 122646,
626
+ 122647
627
+ ]
628
+ },
629
+ {
630
+ "clusterId": 1558884,
631
+ "clusterTitle": "Miss USA 2006",
632
+ "mentionIds": [
633
+ 100413,
634
+ 100421,
635
+ 100422,
636
+ 100427,
637
+ 100429
638
+ ]
639
+ },
640
+ {
641
+ "clusterId": 1133926,
642
+ "clusterTitle": "15th National Film Awards",
643
+ "mentionIds": [
644
+ 90965,
645
+ 90970,
646
+ 90973,
647
+ 90979,
648
+ 90983
649
+ ]
650
+ },
651
+ {
652
+ "clusterId": 2967383,
653
+ "clusterTitle": "2016 PBA Governors' Cup Finals",
654
+ "mentionIds": [
655
+ 114268,
656
+ 114269
657
+ ]
658
+ },
659
+ {
660
+ "clusterId": 1315177,
661
+ "clusterTitle": "24th GMA Dove Awards",
662
+ "mentionIds": [
663
+ 95920,
664
+ 95922,
665
+ 95926,
666
+ 95929
667
+ ]
668
+ },
669
+ {
670
+ "clusterId": 790897,
671
+ "clusterTitle": "Eurovision Song Contest 1969",
672
+ "mentionIds": [
673
+ 80080,
674
+ 80082,
675
+ 80084,
676
+ 80090,
677
+ 80096,
678
+ 80097,
679
+ 80098,
680
+ 80102,
681
+ 80105,
682
+ 80106,
683
+ 80112,
684
+ 80113,
685
+ 80115,
686
+ 80121,
687
+ 80123,
688
+ 80135,
689
+ 80137,
690
+ 80138,
691
+ 80139
692
+ ]
693
+ },
694
+ {
695
+ "clusterId": 121214,
696
+ "clusterTitle": "78th Academy Awards",
697
+ "mentionIds": [
698
+ 27195,
699
+ 27203,
700
+ 27210,
701
+ 27211,
702
+ 27214,
703
+ 27228,
704
+ 27229,
705
+ 27253,
706
+ 27256,
707
+ 27257,
708
+ 27268,
709
+ 27279,
710
+ 27284,
711
+ 27291,
712
+ 27293
713
+ ]
714
+ },
715
+ {
716
+ "clusterId": 3014482,
717
+ "clusterTitle": "2017 Atlantic 10 Men's Basketball Tournament",
718
+ "mentionIds": [
719
+ 115474,
720
+ 115477,
721
+ 115492,
722
+ 115494,
723
+ 115496,
724
+ 115497
725
+ ]
726
+ },
727
+ {
728
+ "clusterId": 1442665,
729
+ "clusterTitle": "Train 904 bombing",
730
+ "mentionIds": [
731
+ 98027,
732
+ 98028,
733
+ 98029,
734
+ 98030,
735
+ 98031
736
+ ]
737
+ },
738
+ {
739
+ "clusterId": 3092816,
740
+ "clusterTitle": "2016 Northeast Conference Men's Basketball Tournament",
741
+ "mentionIds": [
742
+ 116324,
743
+ 116330,
744
+ 116331,
745
+ 116333,
746
+ 116337,
747
+ 116339,
748
+ 116343
749
+ ]
750
+ },
751
+ {
752
+ "clusterId": 1029488,
753
+ "clusterTitle": "Cocos Fire",
754
+ "mentionIds": [
755
+ 88513,
756
+ 88514
757
+ ]
758
+ },
759
+ {
760
+ "clusterId": 3316658,
761
+ "clusterTitle": "1856 Whig National Convention",
762
+ "mentionIds": [
763
+ 119059,
764
+ 119060,
765
+ 119061,
766
+ 119062,
767
+ 119063,
768
+ 119064
769
+ ]
770
+ },
771
+ {
772
+ "clusterId": 4784585,
773
+ "clusterTitle": "1944 Tōnankai earthquake",
774
+ "mentionIds": [
775
+ 124027,
776
+ 124028,
777
+ 124029,
778
+ 124030,
779
+ 124031,
780
+ 124032
781
+ ]
782
+ },
783
+ {
784
+ "clusterId": 611209,
785
+ "clusterTitle": "2014 Metro Manila Film Festival",
786
+ "mentionIds": [
787
+ 71666,
788
+ 71667,
789
+ 71668,
790
+ 71669,
791
+ 71671,
792
+ 71672,
793
+ 71675,
794
+ 71677,
795
+ 71678
796
+ ]
797
+ },
798
+ {
799
+ "clusterId": 3211697,
800
+ "clusterTitle": "2019 Music Awards Ceremony",
801
+ "mentionIds": [
802
+ 118333,
803
+ 118334,
804
+ 118335,
805
+ 118336
806
+ ]
807
+ },
808
+ {
809
+ "clusterId": 2250657,
810
+ "clusterTitle": "Sanremo Music Festival 2018",
811
+ "mentionIds": [
812
+ 107754,
813
+ 107755,
814
+ 107756,
815
+ 107757,
816
+ 107758,
817
+ 107759,
818
+ 107761,
819
+ 107763,
820
+ 107765,
821
+ 107770
822
+ ]
823
+ },
824
+ {
825
+ "clusterId": 733581,
826
+ "clusterTitle": "2013 Atlantic Sun Men's Basketball Tournament",
827
+ "mentionIds": [
828
+ 77618,
829
+ 77619,
830
+ 77620,
831
+ 77621
832
+ ]
833
+ },
834
+ {
835
+ "clusterId": 2591663,
836
+ "clusterTitle": "Black Reel Awards of 2008",
837
+ "mentionIds": [
838
+ 110789,
839
+ 110790,
840
+ 110791,
841
+ 110792
842
+ ]
843
+ },
844
+ {
845
+ "clusterId": 729987,
846
+ "clusterTitle": "Miss Chinese International Pageant 2012",
847
+ "mentionIds": [
848
+ 77447,
849
+ 77448
850
+ ]
851
+ },
852
+ {
853
+ "clusterId": 1329567,
854
+ "clusterTitle": "Brown's Chicken massacre",
855
+ "mentionIds": [
856
+ 96394,
857
+ 96397,
858
+ 96399,
859
+ 96401
860
+ ]
861
+ },
862
+ {
863
+ "clusterId": 2625955,
864
+ "clusterTitle": "Star Awards 2013",
865
+ "mentionIds": [
866
+ 110965,
867
+ 110968,
868
+ 110969,
869
+ 110978,
870
+ 110980,
871
+ 110981
872
+ ]
873
+ },
874
+ {
875
+ "clusterId": 2308527,
876
+ "clusterTitle": "APRA Music Awards of 2008",
877
+ "mentionIds": [
878
+ 108294,
879
+ 108295,
880
+ 108296,
881
+ 108299,
882
+ 108301
883
+ ]
884
+ },
885
+ {
886
+ "clusterId": 3769270,
887
+ "clusterTitle": "2011 PBA Governors' Cup",
888
+ "mentionIds": [
889
+ 120924,
890
+ 120925,
891
+ 120926,
892
+ 120927,
893
+ 120928
894
+ ]
895
+ },
896
+ {
897
+ "clusterId": 1696662,
898
+ "clusterTitle": "Commonwealth Heads of Government Meeting 2007",
899
+ "mentionIds": [
900
+ 102512,
901
+ 102513,
902
+ 102514,
903
+ 102515,
904
+ 102517,
905
+ 102518,
906
+ 102521,
907
+ 102522,
908
+ 102523,
909
+ 102526,
910
+ 102527,
911
+ 102528,
912
+ 102530,
913
+ 102532,
914
+ 102535
915
+ ]
916
+ },
917
+ {
918
+ "clusterId": 2627512,
919
+ "clusterTitle": "2010 Connecticut power plant explosion",
920
+ "mentionIds": [
921
+ 111004,
922
+ 111006,
923
+ 111007
924
+ ]
925
+ },
926
+ {
927
+ "clusterId": 7117309,
928
+ "clusterTitle": "Urban Music Awards Australia and New Zealand 2006",
929
+ "mentionIds": [
930
+ 126125,
931
+ 126126
932
+ ]
933
+ },
934
+ {
935
+ "clusterId": 3159970,
936
+ "clusterTitle": "2016 Southland Conference Women's Basketball Tournament",
937
+ "mentionIds": [
938
+ 117473,
939
+ 117474,
940
+ 117477,
941
+ 117479,
942
+ 117481
943
+ ]
944
+ },
945
+ {
946
+ "clusterId": 991128,
947
+ "clusterTitle": "1966 Palomares B-52 crash",
948
+ "mentionIds": [
949
+ 87020,
950
+ 87026,
951
+ 87027,
952
+ 87028,
953
+ 87032,
954
+ 87034,
955
+ 87035,
956
+ 87037,
957
+ 87038,
958
+ 87040,
959
+ 87046,
960
+ 87047,
961
+ 87048,
962
+ 87051,
963
+ 87052,
964
+ 87054,
965
+ 87055,
966
+ 87057,
967
+ 87058,
968
+ 87059,
969
+ 87060,
970
+ 87061,
971
+ 87063,
972
+ 87065
973
+ ]
974
+ },
975
+ {
976
+ "clusterId": 477599,
977
+ "clusterTitle": "Charlottesville car attack",
978
+ "mentionIds": [
979
+ 62752,
980
+ 62754,
981
+ 62755,
982
+ 62756,
983
+ 62758,
984
+ 62759,
985
+ 62760,
986
+ 62762,
987
+ 62763,
988
+ 62764,
989
+ 62765,
990
+ 62766,
991
+ 62767,
992
+ 62768,
993
+ 62771
994
+ ]
995
+ },
996
+ {
997
+ "clusterId": 1592705,
998
+ "clusterTitle": "Oakland firestorm of 1991",
999
+ "mentionIds": [
1000
+ 100873,
1001
+ 100874,
1002
+ 100875,
1003
+ 100879,
1004
+ 100881,
1005
+ 100882,
1006
+ 100883,
1007
+ 100884,
1008
+ 100885,
1009
+ 100886,
1010
+ 100888,
1011
+ 100889
1012
+ ]
1013
+ },
1014
+ {
1015
+ "clusterId": 818581,
1016
+ "clusterTitle": "1892 Republican National Convention",
1017
+ "mentionIds": [
1018
+ 81226,
1019
+ 81248,
1020
+ 81250,
1021
+ 81254,
1022
+ 81255,
1023
+ 81257
1024
+ ]
1025
+ },
1026
+ {
1027
+ "clusterId": 3784089,
1028
+ "clusterTitle": "60th Golden Globe Awards",
1029
+ "mentionIds": [
1030
+ 121037,
1031
+ 121038,
1032
+ 121040,
1033
+ 121041
1034
+ ]
1035
+ },
1036
+ {
1037
+ "clusterId": 70567,
1038
+ "clusterTitle": "Lufthansa Flight 181",
1039
+ "mentionIds": [
1040
+ 21743,
1041
+ 21770
1042
+ ]
1043
+ },
1044
+ {
1045
+ "clusterId": 1848251,
1046
+ "clusterTitle": "1202 Syria earthquake",
1047
+ "mentionIds": [
1048
+ 103997,
1049
+ 103999,
1050
+ 104000,
1051
+ 104001
1052
+ ]
1053
+ },
1054
+ {
1055
+ "clusterId": 3901331,
1056
+ "clusterTitle": "2013 Sun Belt Conference Men's Basketball Tournament",
1057
+ "mentionIds": [
1058
+ 121505,
1059
+ 121514
1060
+ ]
1061
+ },
1062
+ {
1063
+ "clusterId": 3076998,
1064
+ "clusterTitle": "Sir George Williams affair",
1065
+ "mentionIds": [
1066
+ 116106,
1067
+ 116107,
1068
+ 116108,
1069
+ 116109
1070
+ ]
1071
+ },
1072
+ {
1073
+ "clusterId": 514991,
1074
+ "clusterTitle": "Miss Diva - 2013",
1075
+ "mentionIds": [
1076
+ 65181,
1077
+ 65182,
1078
+ 65183,
1079
+ 65184,
1080
+ 65185
1081
+ ]
1082
+ },
1083
+ {
1084
+ "clusterId": 3238811,
1085
+ "clusterTitle": "2019 Sun Belt Conference Women's Basketball Tournament",
1086
+ "mentionIds": [
1087
+ 118663,
1088
+ 118666,
1089
+ 118667,
1090
+ 118668
1091
+ ]
1092
+ },
1093
+ {
1094
+ "clusterId": 514986,
1095
+ "clusterTitle": "Miss Earth 2007",
1096
+ "mentionIds": [
1097
+ 65169,
1098
+ 65171,
1099
+ 65175,
1100
+ 65177
1101
+ ]
1102
+ },
1103
+ {
1104
+ "clusterId": 1732008,
1105
+ "clusterTitle": "2012 Haida Gwaii earthquake",
1106
+ "mentionIds": [
1107
+ 102909,
1108
+ 102910,
1109
+ 102911,
1110
+ 102912,
1111
+ 102913
1112
+ ]
1113
+ },
1114
+ {
1115
+ "clusterId": 1157026,
1116
+ "clusterTitle": "2007 Big Ten Conference Men's Basketball Tournament",
1117
+ "mentionIds": [
1118
+ 91872,
1119
+ 91873,
1120
+ 91874,
1121
+ 91875,
1122
+ 91876,
1123
+ 91877,
1124
+ 91878
1125
+ ]
1126
+ },
1127
+ {
1128
+ "clusterId": 726961,
1129
+ "clusterTitle": "Tlatelolco massacre",
1130
+ "mentionIds": [
1131
+ 77133,
1132
+ 77135,
1133
+ 77136,
1134
+ 77144,
1135
+ 77155,
1136
+ 77163,
1137
+ 77165,
1138
+ 77166,
1139
+ 77177,
1140
+ 77178,
1141
+ 77179,
1142
+ 77182,
1143
+ 77185,
1144
+ 77189,
1145
+ 77198,
1146
+ 77222,
1147
+ 77229,
1148
+ 77230,
1149
+ 77233
1150
+ ]
1151
+ },
1152
+ {
1153
+ "clusterId": 1317806,
1154
+ "clusterTitle": "Air New Zealand Flight 901",
1155
+ "mentionIds": [
1156
+ 95976,
1157
+ 95977,
1158
+ 95981,
1159
+ 95987,
1160
+ 95989,
1161
+ 95991,
1162
+ 95996,
1163
+ 96001,
1164
+ 96006
1165
+ ]
1166
+ },
1167
+ {
1168
+ "clusterId": 5173746,
1169
+ "clusterTitle": "1991 Rome summit",
1170
+ "mentionIds": [
1171
+ 124665,
1172
+ 124666,
1173
+ 124667
1174
+ ]
1175
+ },
1176
+ {
1177
+ "clusterId": 507321,
1178
+ "clusterTitle": "2015 MTV Europe Music Awards",
1179
+ "mentionIds": [
1180
+ 64687,
1181
+ 64688,
1182
+ 64689,
1183
+ 64690,
1184
+ 64693,
1185
+ 64696
1186
+ ]
1187
+ },
1188
+ {
1189
+ "clusterId": 3162101,
1190
+ "clusterTitle": "2018 ACC Men's Basketball Tournament",
1191
+ "mentionIds": [
1192
+ 117492,
1193
+ 117506,
1194
+ 117509,
1195
+ 117512,
1196
+ 117513,
1197
+ 117519,
1198
+ 117522,
1199
+ 117523,
1200
+ 117524
1201
+ ]
1202
+ },
1203
+ {
1204
+ "clusterId": 269762,
1205
+ "clusterTitle": "Eurovision Song Contest 1964",
1206
+ "mentionIds": [
1207
+ 45366,
1208
+ 45368,
1209
+ 45372,
1210
+ 45373,
1211
+ 45378,
1212
+ 45380,
1213
+ 45388,
1214
+ 45389,
1215
+ 45392,
1216
+ 45394,
1217
+ 45396
1218
+ ]
1219
+ },
1220
+ {
1221
+ "clusterId": 4577165,
1222
+ "clusterTitle": "Bright Sparklers Fireworks disaster",
1223
+ "mentionIds": [
1224
+ 123400,
1225
+ 123401,
1226
+ 123402
1227
+ ]
1228
+ },
1229
+ {
1230
+ "clusterId": 2549743,
1231
+ "clusterTitle": "Juno Awards of 2018",
1232
+ "mentionIds": [
1233
+ 110434,
1234
+ 110436,
1235
+ 110437,
1236
+ 110439,
1237
+ 110440,
1238
+ 110441
1239
+ ]
1240
+ },
1241
+ {
1242
+ "clusterId": 229326,
1243
+ "clusterTitle": "1974 Brisbane flood",
1244
+ "mentionIds": [
1245
+ 41966,
1246
+ 41967,
1247
+ 41968,
1248
+ 41970,
1249
+ 41971,
1250
+ 41972,
1251
+ 41976,
1252
+ 41979,
1253
+ 41981,
1254
+ 41982,
1255
+ 41983,
1256
+ 41984,
1257
+ 41985,
1258
+ 41986,
1259
+ 41990,
1260
+ 41996,
1261
+ 41997,
1262
+ 41999,
1263
+ 42001
1264
+ ]
1265
+ },
1266
+ {
1267
+ "clusterId": 2687975,
1268
+ "clusterTitle": "Miss Philippines Earth 2011",
1269
+ "mentionIds": [
1270
+ 111573,
1271
+ 111575,
1272
+ 111576,
1273
+ 111577,
1274
+ 111578,
1275
+ 111579,
1276
+ 111580,
1277
+ 111581,
1278
+ 111582,
1279
+ 111584
1280
+ ]
1281
+ },
1282
+ {
1283
+ "clusterId": 2979325,
1284
+ "clusterTitle": "Sanremo Music Festival 1969",
1285
+ "mentionIds": [
1286
+ 114638,
1287
+ 114639,
1288
+ 114640
1289
+ ]
1290
+ },
1291
+ {
1292
+ "clusterId": 2460661,
1293
+ "clusterTitle": "W. R. Myers High School shooting",
1294
+ "mentionIds": [
1295
+ 109772,
1296
+ 109773,
1297
+ 109774,
1298
+ 109775,
1299
+ 109778,
1300
+ 109779,
1301
+ 109781
1302
+ ]
1303
+ },
1304
+ {
1305
+ "clusterId": 1450951,
1306
+ "clusterTitle": "Miss International 1971",
1307
+ "mentionIds": [
1308
+ 98224,
1309
+ 98225
1310
+ ]
1311
+ },
1312
+ {
1313
+ "clusterId": 405975,
1314
+ "clusterTitle": "Miss Earth 2013",
1315
+ "mentionIds": [
1316
+ 55924,
1317
+ 55926,
1318
+ 55929,
1319
+ 55939,
1320
+ 55940,
1321
+ 55944
1322
+ ]
1323
+ },
1324
+ {
1325
+ "clusterId": 533466,
1326
+ "clusterTitle": "2016 Mountain West Conference Women's Basketball Tournament",
1327
+ "mentionIds": [
1328
+ 66414,
1329
+ 66415,
1330
+ 66420,
1331
+ 66421
1332
+ ]
1333
+ },
1334
+ {
1335
+ "clusterId": 450516,
1336
+ "clusterTitle": "2014 SEC Men's Basketball Tournament",
1337
+ "mentionIds": [
1338
+ 60271,
1339
+ 60272,
1340
+ 60274,
1341
+ 60276,
1342
+ 60277,
1343
+ 60278,
1344
+ 60279
1345
+ ]
1346
+ },
1347
+ {
1348
+ "clusterId": 5608839,
1349
+ "clusterTitle": "Miss Russia 2016",
1350
+ "mentionIds": [
1351
+ 125200,
1352
+ 125201,
1353
+ 125202,
1354
+ 125204
1355
+ ]
1356
+ },
1357
+ {
1358
+ "clusterId": 7634,
1359
+ "clusterTitle": "Black Saturday bushfires",
1360
+ "mentionIds": [
1361
+ 9440,
1362
+ 9441,
1363
+ 9444,
1364
+ 9450,
1365
+ 9455,
1366
+ 9462,
1367
+ 9465,
1368
+ 9483,
1369
+ 9490,
1370
+ 9492,
1371
+ 9494,
1372
+ 9509,
1373
+ 9517,
1374
+ 9521,
1375
+ 9522,
1376
+ 9527,
1377
+ 9528,
1378
+ 9533,
1379
+ 9534,
1380
+ 9537,
1381
+ 9545,
1382
+ 9547,
1383
+ 9548,
1384
+ 9550,
1385
+ 9558,
1386
+ 9562,
1387
+ 9568,
1388
+ 9571,
1389
+ 9581,
1390
+ 9588,
1391
+ 9589,
1392
+ 9595,
1393
+ 9597,
1394
+ 9600,
1395
+ 9602,
1396
+ 9613
1397
+ ]
1398
+ },
1399
+ {
1400
+ "clusterId": 2340336,
1401
+ "clusterTitle": "24th National Television Awards",
1402
+ "mentionIds": [
1403
+ 108538,
1404
+ 108539,
1405
+ 108540,
1406
+ 108541,
1407
+ 108542
1408
+ ]
1409
+ },
1410
+ {
1411
+ "clusterId": 2285047,
1412
+ "clusterTitle": "Lisbon massacre",
1413
+ "mentionIds": [
1414
+ 108070,
1415
+ 108071,
1416
+ 108072
1417
+ ]
1418
+ },
1419
+ {
1420
+ "clusterId": 5222809,
1421
+ "clusterTitle": "Faraba shooting",
1422
+ "mentionIds": [
1423
+ 124719,
1424
+ 124720
1425
+ ]
1426
+ },
1427
+ {
1428
+ "clusterId": 3282405,
1429
+ "clusterTitle": "1925 Dali earthquake",
1430
+ "mentionIds": [
1431
+ 118917,
1432
+ 118918
1433
+ ]
1434
+ },
1435
+ {
1436
+ "clusterId": 718803,
1437
+ "clusterTitle": "2015 CAA Men's Basketball Tournament",
1438
+ "mentionIds": [
1439
+ 76959,
1440
+ 76961,
1441
+ 76966,
1442
+ 76967,
1443
+ 76973
1444
+ ]
1445
+ },
1446
+ {
1447
+ "clusterId": 147931,
1448
+ "clusterTitle": "Eurovision Song Contest 2010",
1449
+ "mentionIds": [
1450
+ 30744,
1451
+ 30751,
1452
+ 30758,
1453
+ 30777,
1454
+ 30792,
1455
+ 30805,
1456
+ 30813,
1457
+ 30826,
1458
+ 30829,
1459
+ 30843,
1460
+ 30844,
1461
+ 30854,
1462
+ 30878,
1463
+ 30879,
1464
+ 30884,
1465
+ 30901,
1466
+ 30906,
1467
+ 30928,
1468
+ 30937,
1469
+ 30951,
1470
+ 30991,
1471
+ 30993,
1472
+ 30995,
1473
+ 31010,
1474
+ 31013
1475
+ ]
1476
+ },
1477
+ {
1478
+ "clusterId": 3753955,
1479
+ "clusterTitle": "23rd Venice International Film Festival",
1480
+ "mentionIds": [
1481
+ 120854,
1482
+ 120855,
1483
+ 120856
1484
+ ]
1485
+ },
1486
+ {
1487
+ "clusterId": 512988,
1488
+ "clusterTitle": "18th SAARC summit",
1489
+ "mentionIds": [
1490
+ 64829,
1491
+ 64831,
1492
+ 64832,
1493
+ 64833,
1494
+ 64834,
1495
+ 64835,
1496
+ 64836,
1497
+ 64837
1498
+ ]
1499
+ },
1500
+ {
1501
+ "clusterId": 2832886,
1502
+ "clusterTitle": "Call of Duty: Experience 2016",
1503
+ "mentionIds": [
1504
+ 112572,
1505
+ 112573,
1506
+ 112574
1507
+ ]
1508
+ },
1509
+ {
1510
+ "clusterId": 1855427,
1511
+ "clusterTitle": "32nd Berlin International Film Festival",
1512
+ "mentionIds": [
1513
+ 104075,
1514
+ 104076,
1515
+ 104081,
1516
+ 104090,
1517
+ 104097
1518
+ ]
1519
+ },
1520
+ {
1521
+ "clusterId": 4623271,
1522
+ "clusterTitle": "Miss Venezuela 1976",
1523
+ "mentionIds": [
1524
+ 123606,
1525
+ 123607
1526
+ ]
1527
+ },
1528
+ {
1529
+ "clusterId": 4672932,
1530
+ "clusterTitle": "2012 Deauville American Film Festival",
1531
+ "mentionIds": [
1532
+ 123730,
1533
+ 123731
1534
+ ]
1535
+ },
1536
+ {
1537
+ "clusterId": 1302000,
1538
+ "clusterTitle": "Miss World 1997",
1539
+ "mentionIds": [
1540
+ 95623,
1541
+ 95627
1542
+ ]
1543
+ },
1544
+ {
1545
+ "clusterId": 1542131,
1546
+ "clusterTitle": "APRA Music Awards of 2012",
1547
+ "mentionIds": [
1548
+ 100174,
1549
+ 100175,
1550
+ 100176,
1551
+ 100179,
1552
+ 100180,
1553
+ 100183
1554
+ ]
1555
+ },
1556
+ {
1557
+ "clusterId": 2871245,
1558
+ "clusterTitle": "In Amenas hostage crisis",
1559
+ "mentionIds": [
1560
+ 113010,
1561
+ 113011,
1562
+ 113014,
1563
+ 113017,
1564
+ 113018,
1565
+ 113019
1566
+ ]
1567
+ },
1568
+ {
1569
+ "clusterId": 1757180,
1570
+ "clusterTitle": "48th Primetime Emmy Awards",
1571
+ "mentionIds": [
1572
+ 103097,
1573
+ 103098,
1574
+ 103099,
1575
+ 103100,
1576
+ 103101,
1577
+ 103103
1578
+ ]
1579
+ },
1580
+ {
1581
+ "clusterId": 2877377,
1582
+ "clusterTitle": "75th World Science Fiction Convention",
1583
+ "mentionIds": [
1584
+ 113023,
1585
+ 113024,
1586
+ 113025,
1587
+ 113026,
1588
+ 113029,
1589
+ 113030
1590
+ ]
1591
+ },
1592
+ {
1593
+ "clusterId": 844775,
1594
+ "clusterTitle": "Ardenne Abbey massacre",
1595
+ "mentionIds": [
1596
+ 82151,
1597
+ 82154,
1598
+ 82157,
1599
+ 82158
1600
+ ]
1601
+ },
1602
+ {
1603
+ "clusterId": 684540,
1604
+ "clusterTitle": "2011 Afghanistan Ashura bombings",
1605
+ "mentionIds": [
1606
+ 75242,
1607
+ 75243
1608
+ ]
1609
+ },
1610
+ {
1611
+ "clusterId": 884219,
1612
+ "clusterTitle": "Linate Airport disaster",
1613
+ "mentionIds": [
1614
+ 83669,
1615
+ 83670,
1616
+ 83671,
1617
+ 83672
1618
+ ]
1619
+ },
1620
+ {
1621
+ "clusterId": 797685,
1622
+ "clusterTitle": "Miss Universe 2007",
1623
+ "mentionIds": [
1624
+ 80564,
1625
+ 80565
1626
+ ]
1627
+ },
1628
+ {
1629
+ "clusterId": 2521567,
1630
+ "clusterTitle": "Saguenay flood",
1631
+ "mentionIds": [
1632
+ 110191,
1633
+ 110192,
1634
+ 110193
1635
+ ]
1636
+ },
1637
+ {
1638
+ "clusterId": 2054627,
1639
+ "clusterTitle": "West Caribbean Airways Flight 708",
1640
+ "mentionIds": [
1641
+ 106405,
1642
+ 106406,
1643
+ 106411,
1644
+ 106414
1645
+ ]
1646
+ },
1647
+ {
1648
+ "clusterId": 205311,
1649
+ "clusterTitle": "Miss Universe 2006",
1650
+ "mentionIds": [
1651
+ 37864,
1652
+ 37866,
1653
+ 37867
1654
+ ]
1655
+ },
1656
+ {
1657
+ "clusterId": 908273,
1658
+ "clusterTitle": "26th G8 summit",
1659
+ "mentionIds": [
1660
+ 84557,
1661
+ 84558,
1662
+ 84560,
1663
+ 84561,
1664
+ 84562,
1665
+ 84563,
1666
+ 84564
1667
+ ]
1668
+ },
1669
+ {
1670
+ "clusterId": 758261,
1671
+ "clusterTitle": "Miss Universe 1990",
1672
+ "mentionIds": [
1673
+ 78365,
1674
+ 78367,
1675
+ 78368
1676
+ ]
1677
+ },
1678
+ {
1679
+ "clusterId": 219644,
1680
+ "clusterTitle": "Assassination of Robert F. Kennedy",
1681
+ "mentionIds": [
1682
+ 40311,
1683
+ 40312,
1684
+ 40313,
1685
+ 40316,
1686
+ 40318,
1687
+ 40319,
1688
+ 40320,
1689
+ 40321,
1690
+ 40326,
1691
+ 40327,
1692
+ 40332,
1693
+ 40334,
1694
+ 40335,
1695
+ 40336,
1696
+ 40340,
1697
+ 40342,
1698
+ 40343,
1699
+ 40346,
1700
+ 40348,
1701
+ 40351,
1702
+ 40352,
1703
+ 40355,
1704
+ 40360,
1705
+ 40361,
1706
+ 40363,
1707
+ 40364,
1708
+ 40365,
1709
+ 40366,
1710
+ 40367,
1711
+ 40368,
1712
+ 40370,
1713
+ 40371,
1714
+ 40372,
1715
+ 40373,
1716
+ 40374,
1717
+ 40376,
1718
+ 40377,
1719
+ 40380,
1720
+ 40382,
1721
+ 40383,
1722
+ 40387,
1723
+ 40389,
1724
+ 40390,
1725
+ 40393,
1726
+ 40394,
1727
+ 40395
1728
+ ]
1729
+ },
1730
+ {
1731
+ "clusterId": 4283756,
1732
+ "clusterTitle": "47th Tony Awards",
1733
+ "mentionIds": [
1734
+ 122626,
1735
+ 122627
1736
+ ]
1737
+ },
1738
+ {
1739
+ "clusterId": 307509,
1740
+ "clusterTitle": "Herero and Namaqua genocide",
1741
+ "mentionIds": [
1742
+ 48638,
1743
+ 48640,
1744
+ 48645,
1745
+ 48646,
1746
+ 48647,
1747
+ 48648,
1748
+ 48651,
1749
+ 48653,
1750
+ 48655,
1751
+ 48657,
1752
+ 48661
1753
+ ]
1754
+ },
1755
+ {
1756
+ "clusterId": 3258115,
1757
+ "clusterTitle": "1999 Big 12 Men's Basketball Tournament",
1758
+ "mentionIds": [
1759
+ 118783,
1760
+ 118784,
1761
+ 118785
1762
+ ]
1763
+ },
1764
+ {
1765
+ "clusterId": 1133869,
1766
+ "clusterTitle": "2005 Indian Institute of Science shooting",
1767
+ "mentionIds": [
1768
+ 90957,
1769
+ 90959,
1770
+ 90960,
1771
+ 90961,
1772
+ 90962
1773
+ ]
1774
+ },
1775
+ {
1776
+ "clusterId": 2736407,
1777
+ "clusterTitle": "10th Lux Style Awards",
1778
+ "mentionIds": [
1779
+ 111974,
1780
+ 111975,
1781
+ 111976,
1782
+ 111977
1783
+ ]
1784
+ },
1785
+ {
1786
+ "clusterId": 2620263,
1787
+ "clusterTitle": "2010 Big South Conference Men's Basketball Tournament",
1788
+ "mentionIds": [
1789
+ 110937,
1790
+ 110939
1791
+ ]
1792
+ },
1793
+ {
1794
+ "clusterId": 1139536,
1795
+ "clusterTitle": "Congress of Erfurt",
1796
+ "mentionIds": [
1797
+ 91286,
1798
+ 91289,
1799
+ 91290,
1800
+ 91294,
1801
+ 91297
1802
+ ]
1803
+ },
1804
+ {
1805
+ "clusterId": 2663273,
1806
+ "clusterTitle": "2011 Missouri Valley Conference Men's Basketball Tournament",
1807
+ "mentionIds": [
1808
+ 111414,
1809
+ 111415,
1810
+ 111416,
1811
+ 111418
1812
+ ]
1813
+ },
1814
+ {
1815
+ "clusterId": 5354770,
1816
+ "clusterTitle": "Kfar Yuval hostage crisis",
1817
+ "mentionIds": [
1818
+ 124905,
1819
+ 124906
1820
+ ]
1821
+ },
1822
+ {
1823
+ "clusterId": 987467,
1824
+ "clusterTitle": "Phoenix freeway shootings",
1825
+ "mentionIds": [
1826
+ 86869,
1827
+ 86870,
1828
+ 86871
1829
+ ]
1830
+ },
1831
+ {
1832
+ "clusterId": 448322,
1833
+ "clusterTitle": "2015 American Athletic Conference Men's Basketball Tournament",
1834
+ "mentionIds": [
1835
+ 60133,
1836
+ 60135,
1837
+ 60136,
1838
+ 60137,
1839
+ 60138,
1840
+ 60139,
1841
+ 60140,
1842
+ 60144,
1843
+ 60145,
1844
+ 60148,
1845
+ 60150
1846
+ ]
1847
+ },
1848
+ {
1849
+ "clusterId": 1554768,
1850
+ "clusterTitle": "2010 Horizon League Men's Basketball Tournament",
1851
+ "mentionIds": [
1852
+ 100365,
1853
+ 100366,
1854
+ 100368,
1855
+ 100369
1856
+ ]
1857
+ },
1858
+ {
1859
+ "clusterId": 1279828,
1860
+ "clusterTitle": "Let's Get Loud (concerts)",
1861
+ "mentionIds": [
1862
+ 95267,
1863
+ 95268,
1864
+ 95271,
1865
+ 95272,
1866
+ 95273,
1867
+ 95274,
1868
+ 95277
1869
+ ]
1870
+ },
1871
+ {
1872
+ "clusterId": 1170264,
1873
+ "clusterTitle": "World Summit for Children",
1874
+ "mentionIds": [
1875
+ 92220,
1876
+ 92221,
1877
+ 92224
1878
+ ]
1879
+ },
1880
+ {
1881
+ "clusterId": 6568751,
1882
+ "clusterTitle": "2020 Libertarian National Convention",
1883
+ "mentionIds": [
1884
+ 125933,
1885
+ 125934
1886
+ ]
1887
+ },
1888
+ {
1889
+ "clusterId": 4621079,
1890
+ "clusterTitle": "Pidjiguiti massacre",
1891
+ "mentionIds": [
1892
+ 123597,
1893
+ 123598,
1894
+ 123599
1895
+ ]
1896
+ },
1897
+ {
1898
+ "clusterId": 215376,
1899
+ "clusterTitle": "1896 Democratic National Convention",
1900
+ "mentionIds": [
1901
+ 40073,
1902
+ 40078,
1903
+ 40080,
1904
+ 40082,
1905
+ 40083,
1906
+ 40094,
1907
+ 40098,
1908
+ 40101,
1909
+ 40110,
1910
+ 40112,
1911
+ 40113,
1912
+ 40120,
1913
+ 40121,
1914
+ 40122,
1915
+ 40125,
1916
+ 40127,
1917
+ 40136,
1918
+ 40137
1919
+ ]
1920
+ },
1921
+ {
1922
+ "clusterId": 1227585,
1923
+ "clusterTitle": "Chios massacre",
1924
+ "mentionIds": [
1925
+ 93915,
1926
+ 93924,
1927
+ 93925,
1928
+ 93928,
1929
+ 93929
1930
+ ]
1931
+ },
1932
+ {
1933
+ "clusterId": 2993022,
1934
+ "clusterTitle": "2016 America East Women's Basketball Tournament",
1935
+ "mentionIds": [
1936
+ 115050,
1937
+ 115051,
1938
+ 115055,
1939
+ 115056
1940
+ ]
1941
+ },
1942
+ {
1943
+ "clusterId": 5459,
1944
+ "clusterTitle": "68th Academy Awards",
1945
+ "mentionIds": [
1946
+ 9355,
1947
+ 9374,
1948
+ 9377,
1949
+ 9384,
1950
+ 9394,
1951
+ 9397,
1952
+ 9423,
1953
+ 9431
1954
+ ]
1955
+ },
1956
+ {
1957
+ "clusterId": 317265,
1958
+ "clusterTitle": "Kidnapping of Aldo Moro",
1959
+ "mentionIds": [
1960
+ 48923,
1961
+ 48924,
1962
+ 48925,
1963
+ 48926,
1964
+ 48927,
1965
+ 48930,
1966
+ 48931,
1967
+ 48932,
1968
+ 48933,
1969
+ 48934,
1970
+ 48935,
1971
+ 48937,
1972
+ 48938
1973
+ ]
1974
+ },
1975
+ {
1976
+ "clusterId": 593234,
1977
+ "clusterTitle": "Miss World 1987",
1978
+ "mentionIds": [
1979
+ 70314,
1980
+ 70315,
1981
+ 70316,
1982
+ 70317,
1983
+ 70318,
1984
+ 70319,
1985
+ 70320,
1986
+ 70322
1987
+ ]
1988
+ },
1989
+ {
1990
+ "clusterId": 207709,
1991
+ "clusterTitle": "1939 Erzincan earthquake",
1992
+ "mentionIds": [
1993
+ 38029,
1994
+ 38031,
1995
+ 38032,
1996
+ 38033,
1997
+ 38034,
1998
+ 38035
1999
+ ]
2000
+ },
2001
+ {
2002
+ "clusterId": 3060593,
2003
+ "clusterTitle": "Miss Earth 2017",
2004
+ "mentionIds": [
2005
+ 115934,
2006
+ 115938,
2007
+ 115939,
2008
+ 115947,
2009
+ 115952
2010
+ ]
2011
+ },
2012
+ {
2013
+ "clusterId": 1013102,
2014
+ "clusterTitle": "47th NAACP Image Awards",
2015
+ "mentionIds": [
2016
+ 87948,
2017
+ 87949,
2018
+ 87950
2019
+ ]
2020
+ },
2021
+ {
2022
+ "clusterId": 1143667,
2023
+ "clusterTitle": "28th Golden Melody Awards",
2024
+ "mentionIds": [
2025
+ 91403,
2026
+ 91404,
2027
+ 91406,
2028
+ 91407,
2029
+ 91409,
2030
+ 91410,
2031
+ 91411,
2032
+ 91412
2033
+ ]
2034
+ },
2035
+ {
2036
+ "clusterId": 2641227,
2037
+ "clusterTitle": "2010 Austin suicide attack",
2038
+ "mentionIds": [
2039
+ 111159,
2040
+ 111160
2041
+ ]
2042
+ },
2043
+ {
2044
+ "clusterId": 3563344,
2045
+ "clusterTitle": "Aeroflot Flight 7425",
2046
+ "mentionIds": [
2047
+ 120195,
2048
+ 120196,
2049
+ 120197
2050
+ ]
2051
+ },
2052
+ {
2053
+ "clusterId": 3846482,
2054
+ "clusterTitle": "Solar eclipse of August 21, 1914",
2055
+ "mentionIds": [
2056
+ 121292,
2057
+ 121293,
2058
+ 121294
2059
+ ]
2060
+ },
2061
+ {
2062
+ "clusterId": 4340523,
2063
+ "clusterTitle": "Led Zeppelin European Tour Autumn 1969",
2064
+ "mentionIds": [
2065
+ 122759,
2066
+ 122760
2067
+ ]
2068
+ },
2069
+ {
2070
+ "clusterId": 1521533,
2071
+ "clusterTitle": "11th Academy Awards",
2072
+ "mentionIds": [
2073
+ 99874,
2074
+ 99878,
2075
+ 99886,
2076
+ 99887,
2077
+ 99891,
2078
+ 99892,
2079
+ 99896,
2080
+ 99903
2081
+ ]
2082
+ },
2083
+ {
2084
+ "clusterId": 579941,
2085
+ "clusterTitle": "1896 Republican National Convention",
2086
+ "mentionIds": [
2087
+ 69559,
2088
+ 69562,
2089
+ 69565,
2090
+ 69572,
2091
+ 69574,
2092
+ 69575,
2093
+ 69580,
2094
+ 69588,
2095
+ 69591,
2096
+ 69593,
2097
+ 69598,
2098
+ 69603,
2099
+ 69605,
2100
+ 69606
2101
+ ]
2102
+ },
2103
+ {
2104
+ "clusterId": 3260252,
2105
+ "clusterTitle": "Kha Maung Seik massacre",
2106
+ "mentionIds": [
2107
+ 118793,
2108
+ 118795
2109
+ ]
2110
+ },
2111
+ {
2112
+ "clusterId": 2582344,
2113
+ "clusterTitle": "Solar eclipse of April 8, 2024",
2114
+ "mentionIds": [
2115
+ 110730,
2116
+ 110731,
2117
+ 110732
2118
+ ]
2119
+ },
2120
+ {
2121
+ "clusterId": 1376100,
2122
+ "clusterTitle": "1970 Ancash earthquake",
2123
+ "mentionIds": [
2124
+ 97137,
2125
+ 97138,
2126
+ 97139,
2127
+ 97141,
2128
+ 97142,
2129
+ 97144,
2130
+ 97146,
2131
+ 97147,
2132
+ 97148,
2133
+ 97150,
2134
+ 97152,
2135
+ 97153
2136
+ ]
2137
+ },
2138
+ {
2139
+ "clusterId": 1274210,
2140
+ "clusterTitle": "2019 NBA Awards",
2141
+ "mentionIds": [
2142
+ 95064,
2143
+ 95065,
2144
+ 95066
2145
+ ]
2146
+ },
2147
+ {
2148
+ "clusterId": 403824,
2149
+ "clusterTitle": "ARIA Music Awards of 1996",
2150
+ "mentionIds": [
2151
+ 55370,
2152
+ 55377,
2153
+ 55384,
2154
+ 55386,
2155
+ 55387,
2156
+ 55388,
2157
+ 55391,
2158
+ 55392,
2159
+ 55397,
2160
+ 55403
2161
+ ]
2162
+ },
2163
+ {
2164
+ "clusterId": 1002356,
2165
+ "clusterTitle": "65th Academy Awards",
2166
+ "mentionIds": [
2167
+ 87536,
2168
+ 87542,
2169
+ 87544,
2170
+ 87549,
2171
+ 87553,
2172
+ 87554,
2173
+ 87562,
2174
+ 87563,
2175
+ 87576,
2176
+ 87577,
2177
+ 87583,
2178
+ 87586,
2179
+ 87591
2180
+ ]
2181
+ },
2182
+ {
2183
+ "clusterId": 2648404,
2184
+ "clusterTitle": "Maharashtra floods of 2005",
2185
+ "mentionIds": [
2186
+ 111215,
2187
+ 111216,
2188
+ 111217,
2189
+ 111218,
2190
+ 111219,
2191
+ 111220,
2192
+ 111221,
2193
+ 111222,
2194
+ 111223,
2195
+ 111224,
2196
+ 111225,
2197
+ 111226,
2198
+ 111227
2199
+ ]
2200
+ },
2201
+ {
2202
+ "clusterId": 2514267,
2203
+ "clusterTitle": "2006 Kiholo Bay earthquake",
2204
+ "mentionIds": [
2205
+ 110118,
2206
+ 110122,
2207
+ 110124,
2208
+ 110125,
2209
+ 110126,
2210
+ 110127
2211
+ ]
2212
+ },
2213
+ {
2214
+ "clusterId": 3387213,
2215
+ "clusterTitle": "2006 Soul Train Music Awards",
2216
+ "mentionIds": [
2217
+ 119413,
2218
+ 119414,
2219
+ 119415
2220
+ ]
2221
+ },
2222
+ {
2223
+ "clusterId": 3420490,
2224
+ "clusterTitle": "1996 MTV Movie Awards",
2225
+ "mentionIds": [
2226
+ 119549,
2227
+ 119550,
2228
+ 119551,
2229
+ 119553,
2230
+ 119554,
2231
+ 119555
2232
+ ]
2233
+ },
2234
+ {
2235
+ "clusterId": 1442664,
2236
+ "clusterTitle": "Italicus Express bombing",
2237
+ "mentionIds": [
2238
+ 98024,
2239
+ 98025
2240
+ ]
2241
+ },
2242
+ {
2243
+ "clusterId": 5534677,
2244
+ "clusterTitle": "1967 Koynanagar earthquake",
2245
+ "mentionIds": [
2246
+ 125092,
2247
+ 125093
2248
+ ]
2249
+ },
2250
+ {
2251
+ "clusterId": 3055533,
2252
+ "clusterTitle": "48th Kerala State Film Awards",
2253
+ "mentionIds": [
2254
+ 115863,
2255
+ 115865,
2256
+ 115866,
2257
+ 115867
2258
+ ]
2259
+ },
2260
+ {
2261
+ "clusterId": 681868,
2262
+ "clusterTitle": "Miss Dominican Republic 2013",
2263
+ "mentionIds": [
2264
+ 75141,
2265
+ 75142,
2266
+ 75143
2267
+ ]
2268
+ },
2269
+ {
2270
+ "clusterId": 1361811,
2271
+ "clusterTitle": "1946 Cannes Film Festival",
2272
+ "mentionIds": [
2273
+ 96866,
2274
+ 96874,
2275
+ 96876,
2276
+ 96877,
2277
+ 96885,
2278
+ 96888,
2279
+ 96889,
2280
+ 96891,
2281
+ 96897,
2282
+ 96904
2283
+ ]
2284
+ },
2285
+ {
2286
+ "clusterId": 2975141,
2287
+ "clusterTitle": "January 2017 Central Italy earthquakes",
2288
+ "mentionIds": [
2289
+ 114540,
2290
+ 114541
2291
+ ]
2292
+ },
2293
+ {
2294
+ "clusterId": 139658,
2295
+ "clusterTitle": "87th Academy Awards",
2296
+ "mentionIds": [
2297
+ 29588,
2298
+ 29589,
2299
+ 29629,
2300
+ 29630,
2301
+ 29634,
2302
+ 29651,
2303
+ 29686,
2304
+ 29703,
2305
+ 29710,
2306
+ 29716,
2307
+ 29722,
2308
+ 29736,
2309
+ 29752,
2310
+ 29780,
2311
+ 29792,
2312
+ 29811,
2313
+ 29812,
2314
+ 29813,
2315
+ 29815
2316
+ ]
2317
+ },
2318
+ {
2319
+ "clusterId": 406415,
2320
+ "clusterTitle": "Miss Universe 2011",
2321
+ "mentionIds": [
2322
+ 56024,
2323
+ 56026,
2324
+ 56028,
2325
+ 56050,
2326
+ 56055,
2327
+ 56058,
2328
+ 56062
2329
+ ]
2330
+ },
2331
+ {
2332
+ "clusterId": 371595,
2333
+ "clusterTitle": "Marshall County High School shooting",
2334
+ "mentionIds": [
2335
+ 53658,
2336
+ 53659,
2337
+ 53660,
2338
+ 53661,
2339
+ 53662,
2340
+ 53663,
2341
+ 53664
2342
+ ]
2343
+ },
2344
+ {
2345
+ "clusterId": 2113457,
2346
+ "clusterTitle": "34th Independent Spirit Awards",
2347
+ "mentionIds": [
2348
+ 106871,
2349
+ 106872,
2350
+ 106873,
2351
+ 106874
2352
+ ]
2353
+ },
2354
+ {
2355
+ "clusterId": 2025352,
2356
+ "clusterTitle": "2005 Conference USA Baseball Tournament",
2357
+ "mentionIds": [
2358
+ 105918,
2359
+ 105919,
2360
+ 105920
2361
+ ]
2362
+ },
2363
+ {
2364
+ "clusterId": 2982321,
2365
+ "clusterTitle": "2017 Sun Belt Conference Men's Basketball Tournament",
2366
+ "mentionIds": [
2367
+ 114725,
2368
+ 114730,
2369
+ 114731,
2370
+ 114732,
2371
+ 114740,
2372
+ 114742
2373
+ ]
2374
+ },
2375
+ {
2376
+ "clusterId": 1775493,
2377
+ "clusterTitle": "Qissa Khwani Bazaar massacre",
2378
+ "mentionIds": [
2379
+ 103337,
2380
+ 103338,
2381
+ 103340
2382
+ ]
2383
+ },
2384
+ {
2385
+ "clusterId": 1367473,
2386
+ "clusterTitle": "Massacre of Kondomari",
2387
+ "mentionIds": [
2388
+ 96947,
2389
+ 96949,
2390
+ 96950,
2391
+ 96951,
2392
+ 96952,
2393
+ 96953,
2394
+ 96956,
2395
+ 96957
2396
+ ]
2397
+ },
2398
+ {
2399
+ "clusterId": 2253701,
2400
+ "clusterTitle": "2007 Zahedan bombings",
2401
+ "mentionIds": [
2402
+ 107794,
2403
+ 107795,
2404
+ 107796,
2405
+ 107797,
2406
+ 107798,
2407
+ 107799
2408
+ ]
2409
+ },
2410
+ {
2411
+ "clusterId": 378281,
2412
+ "clusterTitle": "1884 Democratic National Convention",
2413
+ "mentionIds": [
2414
+ 53965,
2415
+ 53969,
2416
+ 53970,
2417
+ 53976,
2418
+ 53981,
2419
+ 53985,
2420
+ 53987
2421
+ ]
2422
+ },
2423
+ {
2424
+ "clusterId": 4819943,
2425
+ "clusterTitle": "2015 Southland Conference Women's Basketball Tournament",
2426
+ "mentionIds": [
2427
+ 124106,
2428
+ 124107
2429
+ ]
2430
+ },
2431
+ {
2432
+ "clusterId": 1419706,
2433
+ "clusterTitle": "5th Summit of the Americas",
2434
+ "mentionIds": [
2435
+ 97645,
2436
+ 97647,
2437
+ 97648,
2438
+ 97655
2439
+ ]
2440
+ },
2441
+ {
2442
+ "clusterId": 2967965,
2443
+ "clusterTitle": "27th Golden Melody Awards",
2444
+ "mentionIds": [
2445
+ 114290,
2446
+ 114291,
2447
+ 114292,
2448
+ 114293,
2449
+ 114294
2450
+ ]
2451
+ },
2452
+ {
2453
+ "clusterId": 2628504,
2454
+ "clusterTitle": "Second Great Fire of London",
2455
+ "mentionIds": [
2456
+ 111010,
2457
+ 111019,
2458
+ 111020,
2459
+ 111022
2460
+ ]
2461
+ },
2462
+ {
2463
+ "clusterId": 445885,
2464
+ "clusterTitle": "2015 Pac-12 Conference Men's Basketball Tournament",
2465
+ "mentionIds": [
2466
+ 59980,
2467
+ 59982,
2468
+ 59990,
2469
+ 59991,
2470
+ 59992
2471
+ ]
2472
+ },
2473
+ {
2474
+ "clusterId": 3682181,
2475
+ "clusterTitle": "Upshot-Knothole Simon",
2476
+ "mentionIds": [
2477
+ 120541,
2478
+ 120542
2479
+ ]
2480
+ },
2481
+ {
2482
+ "clusterId": 2307486,
2483
+ "clusterTitle": "2011 G20 Cannes summit",
2484
+ "mentionIds": [
2485
+ 108289,
2486
+ 108290,
2487
+ 108291,
2488
+ 108292,
2489
+ 108293
2490
+ ]
2491
+ },
2492
+ {
2493
+ "clusterId": 1987544,
2494
+ "clusterTitle": "2008 Meteor Awards",
2495
+ "mentionIds": [
2496
+ 105541,
2497
+ 105542,
2498
+ 105543,
2499
+ 105549,
2500
+ 105550,
2501
+ 105551,
2502
+ 105554
2503
+ ]
2504
+ },
2505
+ {
2506
+ "clusterId": 673217,
2507
+ "clusterTitle": "2012 Northern Italy earthquakes",
2508
+ "mentionIds": [
2509
+ 74847,
2510
+ 74848,
2511
+ 74853,
2512
+ 74854,
2513
+ 74855,
2514
+ 74856,
2515
+ 74857,
2516
+ 74858,
2517
+ 74859,
2518
+ 74860,
2519
+ 74862,
2520
+ 74865,
2521
+ 74866,
2522
+ 74869
2523
+ ]
2524
+ },
2525
+ {
2526
+ "clusterId": 1124829,
2527
+ "clusterTitle": "1996 Republican National Convention",
2528
+ "mentionIds": [
2529
+ 90746,
2530
+ 90747,
2531
+ 90752,
2532
+ 90753,
2533
+ 90757,
2534
+ 90763,
2535
+ 90769,
2536
+ 90780,
2537
+ 90788,
2538
+ 90791,
2539
+ 90794,
2540
+ 90795,
2541
+ 90797
2542
+ ]
2543
+ },
2544
+ {
2545
+ "clusterId": 507338,
2546
+ "clusterTitle": "29th GLAAD Media Awards",
2547
+ "mentionIds": [
2548
+ 64697,
2549
+ 64698,
2550
+ 64700,
2551
+ 64701,
2552
+ 64702,
2553
+ 64703
2554
+ ]
2555
+ },
2556
+ {
2557
+ "clusterId": 770501,
2558
+ "clusterTitle": "2017 Metro Manila Film Festival",
2559
+ "mentionIds": [
2560
+ 78902,
2561
+ 78913,
2562
+ 78917,
2563
+ 78919,
2564
+ 78925
2565
+ ]
2566
+ },
2567
+ {
2568
+ "clusterId": 2459627,
2569
+ "clusterTitle": "35th Daytime Emmy Awards",
2570
+ "mentionIds": [
2571
+ 109757,
2572
+ 109758,
2573
+ 109759,
2574
+ 109760
2575
+ ]
2576
+ },
2577
+ {
2578
+ "clusterId": 2400757,
2579
+ "clusterTitle": "The Who Tour 1981",
2580
+ "mentionIds": [
2581
+ 109206,
2582
+ 109208
2583
+ ]
2584
+ },
2585
+ {
2586
+ "clusterId": 3023357,
2587
+ "clusterTitle": "2012 Premios Juventud",
2588
+ "mentionIds": [
2589
+ 115570,
2590
+ 115571,
2591
+ 115572,
2592
+ 115573,
2593
+ 115574
2594
+ ]
2595
+ },
2596
+ {
2597
+ "clusterId": 2295285,
2598
+ "clusterTitle": "2009 North Korean nuclear test",
2599
+ "mentionIds": [
2600
+ 108177,
2601
+ 108178,
2602
+ 108179,
2603
+ 108180,
2604
+ 108181,
2605
+ 108183,
2606
+ 108186,
2607
+ 108187,
2608
+ 108188,
2609
+ 108189
2610
+ ]
2611
+ },
2612
+ {
2613
+ "clusterId": 3839981,
2614
+ "clusterTitle": "2014 Dahsyatnya Awards",
2615
+ "mentionIds": [
2616
+ 121278,
2617
+ 121279,
2618
+ 121280
2619
+ ]
2620
+ },
2621
+ {
2622
+ "clusterId": 3986916,
2623
+ "clusterTitle": "Vortex I",
2624
+ "mentionIds": [
2625
+ 121755,
2626
+ 121756
2627
+ ]
2628
+ },
2629
+ {
2630
+ "clusterId": 335320,
2631
+ "clusterTitle": "1948 Ashgabat earthquake",
2632
+ "mentionIds": [
2633
+ 51436,
2634
+ 51441,
2635
+ 51442,
2636
+ 51443,
2637
+ 51446,
2638
+ 51447,
2639
+ 51448,
2640
+ 51450,
2641
+ 51452
2642
+ ]
2643
+ },
2644
+ {
2645
+ "clusterId": 3422160,
2646
+ "clusterTitle": "Qana massacre",
2647
+ "mentionIds": [
2648
+ 119557,
2649
+ 119558,
2650
+ 119559
2651
+ ]
2652
+ },
2653
+ {
2654
+ "clusterId": 3266516,
2655
+ "clusterTitle": "2005 Zarand earthquake",
2656
+ "mentionIds": [
2657
+ 118833,
2658
+ 118834,
2659
+ 118835
2660
+ ]
2661
+ },
2662
+ {
2663
+ "clusterId": 3714015,
2664
+ "clusterTitle": "13th Helpmann Awards",
2665
+ "mentionIds": [
2666
+ 120695,
2667
+ 120696,
2668
+ 120697,
2669
+ 120698
2670
+ ]
2671
+ },
2672
+ {
2673
+ "clusterId": 1522683,
2674
+ "clusterTitle": "Draper's Meadow massacre",
2675
+ "mentionIds": [
2676
+ 99909,
2677
+ 99910,
2678
+ 99911
2679
+ ]
2680
+ },
2681
+ {
2682
+ "clusterId": 4147154,
2683
+ "clusterTitle": "2018 Amesbury poisonings",
2684
+ "mentionIds": [
2685
+ 122188,
2686
+ 122189,
2687
+ 122190,
2688
+ 122193,
2689
+ 122194
2690
+ ]
2691
+ },
2692
+ {
2693
+ "clusterId": 1930227,
2694
+ "clusterTitle": "Tulle massacre",
2695
+ "mentionIds": [
2696
+ 104985,
2697
+ 104986,
2698
+ 104987,
2699
+ 104988,
2700
+ 104989,
2701
+ 104991,
2702
+ 104993,
2703
+ 104994
2704
+ ]
2705
+ },
2706
+ {
2707
+ "clusterId": 411113,
2708
+ "clusterTitle": "Great Dayton Flood",
2709
+ "mentionIds": [
2710
+ 56372,
2711
+ 56377,
2712
+ 56378,
2713
+ 56379,
2714
+ 56380,
2715
+ 56381,
2716
+ 56382,
2717
+ 56394,
2718
+ 56395,
2719
+ 56398,
2720
+ 56404,
2721
+ 56406,
2722
+ 56411,
2723
+ 56414,
2724
+ 56415
2725
+ ]
2726
+ },
2727
+ {
2728
+ "clusterId": 3028446,
2729
+ "clusterTitle": "1993 AFL Rising Star",
2730
+ "mentionIds": [
2731
+ 115613,
2732
+ 115614,
2733
+ 115615
2734
+ ]
2735
+ },
2736
+ {
2737
+ "clusterId": 1836524,
2738
+ "clusterTitle": "Milltown Cemetery attack",
2739
+ "mentionIds": [
2740
+ 103849,
2741
+ 103850,
2742
+ 103851,
2743
+ 103858,
2744
+ 103860,
2745
+ 103862,
2746
+ 103863,
2747
+ 103867,
2748
+ 103870
2749
+ ]
2750
+ },
2751
+ {
2752
+ "clusterId": 2894302,
2753
+ "clusterTitle": "77th World Science Fiction Convention",
2754
+ "mentionIds": [
2755
+ 113225,
2756
+ 113226
2757
+ ]
2758
+ },
2759
+ {
2760
+ "clusterId": 1258982,
2761
+ "clusterTitle": "Melodifestivalen 1987",
2762
+ "mentionIds": [
2763
+ 94652,
2764
+ 94653,
2765
+ 94654,
2766
+ 94656,
2767
+ 94657,
2768
+ 94660
2769
+ ]
2770
+ },
2771
+ {
2772
+ "clusterId": 1040886,
2773
+ "clusterTitle": "5th Golden Satellite Awards",
2774
+ "mentionIds": [
2775
+ 88880,
2776
+ 88881
2777
+ ]
2778
+ },
2779
+ {
2780
+ "clusterId": 2808272,
2781
+ "clusterTitle": "24th Berlin International Film Festival",
2782
+ "mentionIds": [
2783
+ 112399,
2784
+ 112400,
2785
+ 112411,
2786
+ 112418
2787
+ ]
2788
+ },
2789
+ {
2790
+ "clusterId": 935408,
2791
+ "clusterTitle": "Death of David Bowie",
2792
+ "mentionIds": [
2793
+ 85364,
2794
+ 85365,
2795
+ 85367,
2796
+ 85369,
2797
+ 85370,
2798
+ 85373,
2799
+ 85374,
2800
+ 85380,
2801
+ 85384,
2802
+ 85388
2803
+ ]
2804
+ }
2805
+ ]
clean/Train_passages_min_span.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:194b3576cdf3906805bf1e9577419563f433a48b6ab9b51855d2c9f777c8f796
3
+ size 1215324826
clean/Train_queries_min_span.json ADDED
The diff for this file is too large to render. See raw diff
 
dpr/Dev.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ba2809e34176de8fc0f3aaa775f65175d3b1233b38ec703e40d563d041dfc2a7
3
+ size 40408585
dpr/Test.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:152904814dbcfb3bda24e53a4f4e9f866fc175e80434211e407c37db921da269
3
+ size 132356051
dpr/Train.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3a8410208815758928bfb5770b9231710868ad7c378d2fca2aa241be3da1f0b5
3
+ size 188029099
squad/Dev_squad_format_1pos_23neg.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:25a1aec896c27d76778955f702c7d9ef03f3518983cfb79d3ae4c2874fbfb1ef
3
+ size 15980326
squad/Test_squad_format_1pos_23neg.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:63d680d05bcac5245000b55a87fa6895451f0aaa7e03a5402ad8bc9d9f29949e
3
+ size 54254851
squad/Train_squad_format_1pos_23neg.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3e638b45f0bc9f6b58b16213d1cd696218cf1a030ed0782c65083978dac43035
3
+ size 63206804
train/Dev_passages_min_span.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:51ecab9bb67ff050df21a3d996c6bf27f1a3bf2ac4c840d2e1c1f8f5b2e353d2
3
+ size 27385304
train/Dev_queries_min_span.json ADDED
The diff for this file is too large to render. See raw diff
 
train/Test_passages_min_span.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6854f6ae49399e616cb3992818714e08daee84471e18784afb75d8a767fb7087
3
+ size 85640972
train/Test_queries_min_span.json ADDED
The diff for this file is too large to render. See raw diff
 
train/Train_passages_min_span.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f4d7b722fe348a81ecf96cf4f366e98eb163b92a9ab6183c8b9b18834f41778c
3
+ size 104448781
train/Train_queries_min_span.json ADDED
The diff for this file is too large to render. See raw diff