-
Notifications
You must be signed in to change notification settings - Fork 0
/
triviaqa_sample_data.json
985 lines (985 loc) · 24.7 KB
/
triviaqa_sample_data.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
[
{
"input": "Which American-born Sinclair won the Nobel Prize for Literature in 1930?",
"output": {
"aliases": [
"(Harry) Sinclair Lewis",
"Harry Sinclair Lewis",
"Lewis, (Harry) Sinclair",
"Grace Hegger",
"Sinclair Lewis"
],
"normalized_aliases": [
"grace hegger",
"lewis harry sinclair",
"harry sinclair lewis",
"sinclair lewis"
],
"matched_wiki_entity_name": "",
"normalized_matched_wiki_entity_name": "",
"normalized_value": "sinclair lewis",
"type": "WikipediaEntity",
"value": "Sinclair Lewis"
}
},
{
"input": "Where in England was Dame Judi Dench born?",
"output": {
"aliases": [
"Park Grove (1895)",
"York UA",
"Yorkish",
"UN/LOCODE:GBYRK",
"York, UK",
"Eoforwic",
"Park Grove School",
"York Ham",
"The weather in York",
"City of York",
"York, England",
"York, Yorkshire",
"York ham",
"County Borough of York",
"YORK",
"Eoferwic",
"Park Grove Primary School",
"York, North Yorkshire",
"Yoisk",
"York",
"York (England)"
],
"normalized_aliases": [
"york yorkshire",
"eoferwic",
"park grove primary school",
"park grove school",
"weather in york",
"park grove 1895",
"eoforwic",
"county borough of york",
"york uk",
"un locode gbyrk",
"city of york",
"york england",
"york ua",
"york ham",
"york",
"yorkish",
"yoisk",
"york north yorkshire"
],
"matched_wiki_entity_name": "",
"normalized_matched_wiki_entity_name": "",
"normalized_value": "york",
"type": "WikipediaEntity",
"value": "York"
}
},
{
"input": "In which decade did Billboard magazine first publish and American hit chart?",
"output": {
"aliases": [
"30's",
"30\u2019s",
"30s",
"30s AD",
"30-39"
],
"normalized_aliases": [
"30 39",
"30s",
"30 s",
"30s ad"
],
"matched_wiki_entity_name": "",
"normalized_matched_wiki_entity_name": "",
"normalized_value": "30s",
"type": "WikipediaEntity",
"value": "30s"
}
},
{
"input": "From which country did Angola achieve independence in 1975?",
"output": {
"aliases": [
"Portoga\u0142o",
"Republic of Portugal",
"PORTUGAL",
"Portekiz",
"Portugallu",
"O Papagaio",
"ISO 3166-1:PT",
"Portunga",
"Phu-to-ga",
"Potigal",
"Port\u00fbnga",
"Portugul",
"An Phortaing\u00e9il",
"Portug\u0101le",
"Portugale",
"Portingale",
"Potiti",
"Portugali",
"Portugall",
"Portek\u00eez",
"Bo Dao Nha",
"Portuguese Republic",
"Portogallo",
"Portugaul",
"Portogalo",
"Portyngal",
"Yn Phortiugal",
"Portugalio",
"Portug\u00e1l",
"Portugual",
"Portuga",
"Portgual",
"Portugalsko",
"Portugaleje",
"Ph\u00fb-t\u00f4-g\u00e2",
"Portugalujo",
"Portugalija",
"Pertual",
"P\u00f2tigal",
"Portugal",
"B\u1ed3 \u0110\u00e0o Nha",
"Portugalska",
"Rep\u00fablica Portuguesa",
"Portiwgal",
"Portugal\u0117j\u0117",
"Port\u00fagal",
"Portegal",
"An Phortaingeil",
"Republica Portuguesa"
],
"normalized_aliases": [
"portugul",
"portugallu",
"portugalska",
"p\u00f2tigal",
"portugaul",
"portugalujo",
"portuguese republic",
"iso 3166 1 pt",
"republic of portugal",
"portugalsko",
"portugual",
"b\u1ed3 \u0111\u00e0o nha",
"portugall",
"port\u00fbnga",
"bo dao nha",
"phortaingeil",
"portugale",
"portugal",
"portug\u00e1l",
"portugal\u0117j\u0117",
"portiwgal",
"phu to ga",
"portugalija",
"portugalio",
"portogallo",
"ph\u00fb t\u00f4 g\u00e2",
"portegal",
"rep\u00fablica portuguesa",
"portug\u0101le",
"phortaing\u00e9il",
"yn phortiugal",
"portoga\u0142o",
"portuga",
"portugaleje",
"portekiz",
"o papagaio",
"portunga",
"potigal",
"portek\u00eez",
"pertual",
"portogalo",
"portugali",
"portyngal",
"republica portuguesa",
"portingale",
"port\u00fagal",
"portgual",
"potiti"
],
"matched_wiki_entity_name": "",
"normalized_matched_wiki_entity_name": "",
"normalized_value": "portugal",
"type": "WikipediaEntity",
"value": "Portugal"
}
},
{
"input": "Which city does David Soul come from?",
"output": {
"aliases": [
"Chi-Beria",
"Sayre language academy",
"Chicago",
"Chicago, Illinois",
"Hog Butcher for the World",
"Land of smelly onions",
"Ariel Community Academy",
"The weather in Chicago",
"Chicago, Illinois, U.S.A.",
"Chicago, Illionis",
"Near North Montessori",
"Religion in Chicago",
"Chicago Finance Committee",
"The Paris of America",
"The city of Chicago",
"City of Chicago",
"List of sister cities of Chicago",
"UN/LOCODE:USCHI",
"Chicago theatre scene",
"Chicago, WI",
"The City of Broad Shoulders",
"City of Broad Shoulders",
"Sister Cities of Chicago",
"Chicago il",
"Chicago, Illinois, USA",
"Performing arts in Chicago",
"Chicago Transportation Committee",
"Chicago, Wisconsin",
"City of chicago",
"Chicago theater scene",
"Chicago, Il",
"Chicago, IL.",
"Chicago, Ill.",
"City of Chicago, Illinois",
"Chi town",
"Chicago, United States",
"Chicago (Ill.)",
"Transport in Chicago",
"Chicago, Illinois, United States",
"Chicago (IL)",
"USCHI",
"Chichago",
"Chcago",
"Chicago, Illinois, U.S.",
"Sister Cities Chicago",
"Chicago, USA",
"Chi City",
"Chicago, IL",
"Chi-Town",
"Chicago theatre",
"Paris of America",
"Chicago, Illinois, US",
"Chicago Illinois",
"The city of Chicago, Illinois",
"Sister cities of Chicago"
],
"normalized_aliases": [
"sayre language academy",
"chicago transportation committee",
"chicago illinois u s",
"sister cities of chicago",
"sister cities chicago",
"transport in chicago",
"chicago illinois",
"chicago illinois usa",
"chi town",
"hog butcher for world",
"religion in chicago",
"chicago",
"chicago wi",
"near north montessori",
"un locode uschi",
"city of broad shoulders",
"chicago theatre",
"chicago usa",
"uschi",
"chicago il",
"city of chicago",
"chicago finance committee",
"list of sister cities of chicago",
"chi beria",
"weather in chicago",
"chicago wisconsin",
"land of smelly onions",
"ariel community academy",
"chicago theater scene",
"chicago united states",
"paris of america",
"chicago illionis",
"chicago illinois united states",
"chcago",
"chi city",
"chicago illinois us",
"performing arts in chicago",
"chicago theatre scene",
"chichago",
"chicago ill",
"city of chicago illinois"
],
"matched_wiki_entity_name": "",
"normalized_matched_wiki_entity_name": "",
"normalized_value": "chicago",
"type": "WikipediaEntity",
"value": "Chicago"
}
},
{
"input": "Who won Super Bowl XX?",
"output": {
"aliases": [
"Chicago Bears",
"Chicago Staleys",
"Decatur Staleys",
"Chicago Bears football",
"Chicago bears",
"Save Da Planet",
"Chicago Gators"
],
"normalized_aliases": [
"chicago bears",
"chicago staleys",
"chicago gators",
"decatur staleys",
"save da planet",
"chicago bears football"
],
"matched_wiki_entity_name": "",
"normalized_matched_wiki_entity_name": "",
"normalized_value": "chicago bears",
"type": "WikipediaEntity",
"value": "Chicago Bears"
}
},
{
"input": "Which was the first European country to abolish capital punishment?",
"output": {
"aliases": [
"Norv\u00e8ge",
"Mainland Norway",
"Norway",
"Norvege",
"Noregur",
"NORWAY",
"Norwegian state",
"Etymology of Norway",
"Noruega",
"Norwegen",
"ISO 3166-1:NO",
"Noreg",
"Republic of Norway",
"Norwegian kingdom",
"Kongeriket Noreg",
"Name of Norway",
"Kongeriket Norge",
"Noorwegen",
"Kingdom of Norway",
"Sport in Norway",
"Norwegia",
"Royal Kingdom of Norway"
],
"normalized_aliases": [
"norwegen",
"kongeriket norge",
"norway",
"republic of norway",
"noorwegen",
"norvege",
"mainland norway",
"kingdom of norway",
"sport in norway",
"noreg",
"noruega",
"norwegia",
"noregur",
"royal kingdom of norway",
"name of norway",
"kongeriket noreg",
"norwegian kingdom",
"etymology of norway",
"norv\u00e8ge",
"iso 3166 1 no",
"norwegian state"
],
"matched_wiki_entity_name": "",
"normalized_matched_wiki_entity_name": "",
"normalized_value": "norway",
"type": "WikipediaEntity",
"value": "Norway"
}
},
{
"input": "In which country did he widespread use of ISDN begin in 1988?",
"output": {
"aliases": [
"\u65e5\u672c\u570b",
"State of Japan",
"Ja-pan",
"Nihon",
"Nippon",
"Japang",
"Modern\u2013era Japan",
"Etymology of Japan",
"Japan (country)",
"Republic of Japan",
"Japanese financial sector",
"Nihon-koku",
"ISO 3166-1:JP",
"\u65e5\u672c",
"Japian",
"Japan",
"JapaN",
"The State of Japan",
"Riben",
"Nippon-koku",
"JPN",
"Jpan",
"R\u00ecb\u011bn",
"\u65e5\u672c\u56fd",
"Japao",
"JAPAN",
"Japoa",
"\ud83d\uddfe"
],
"normalized_aliases": [
"nihon koku",
"nihon",
"japoa",
"japang",
"japan",
"\u65e5\u672c\u570b",
"etymology of japan",
"iso 3166 1 jp",
"jpan",
"japan country",
"riben",
"r\u00ecb\u011bn",
"\ud83d\uddfe",
"japanese financial sector",
"japian",
"nippon koku",
"state of japan",
"nippon",
"modern\u2013era japan",
"republic of japan",
"\u65e5\u672c\u56fd",
"jpn",
"japao",
"ja pan",
"\u65e5\u672c"
],
"matched_wiki_entity_name": "",
"normalized_matched_wiki_entity_name": "",
"normalized_value": "japan",
"type": "WikipediaEntity",
"value": "Japan"
}
},
{
"input": "What is Bruce Willis' real first name?",
"output": {
"aliases": [
"Walter (TV Series)",
"Walter",
"Walter (disambiguation)",
"Walter (TV series)"
],
"normalized_aliases": [
"walter disambiguation",
"walter",
"walter tv series"
],
"matched_wiki_entity_name": "",
"normalized_matched_wiki_entity_name": "",
"normalized_value": "walter",
"type": "WikipediaEntity",
"value": "Walter"
}
},
{
"input": "Which William wrote the novel Lord Of The Flies?",
"output": {
"aliases": [
"Golding",
"Golding (surname)",
"Golding (disambiguation)"
],
"normalized_aliases": [
"golding",
"golding surname",
"golding disambiguation"
],
"matched_wiki_entity_name": "",
"normalized_matched_wiki_entity_name": "",
"normalized_value": "golding",
"type": "WikipediaEntity",
"value": "Golding"
}
},
{
"input": "Which innovation for the car was developed by Prince Henry of Prussia in 1911?",
"output": {
"aliases": [
"Rear-window wiper",
"Headlight washer",
"Windshield wiper",
"Windshield wipers",
"Wipers (car)",
"Headlamp wiper",
"Windscreen wipers",
"MAGIC VISION CONTROL",
"Intermittent windshield wiper",
"Windscreen washer",
"Headlight wiper",
"Headlamp washer",
"Wiper blade",
"Windshield washer",
"Windscreen wiper"
],
"normalized_aliases": [
"rear window wiper",
"headlight washer",
"headlight wiper",
"windscreen wiper",
"windscreen washer",
"windshield washer",
"headlamp wiper",
"intermittent windshield wiper",
"magic vision control",
"windscreen wipers",
"windshield wiper",
"headlamp washer",
"windshield wipers",
"wipers car",
"wiper blade"
],
"matched_wiki_entity_name": "",
"normalized_matched_wiki_entity_name": "",
"normalized_value": "windshield wipers",
"type": "WikipediaEntity",
"value": "Windshield wipers"
}
},
{
"input": "How is musician William Lee Conley better known?",
"output": {
"aliases": [
"Bill Broonzy",
"Big Bill Broonzey",
"William Lee Conley Broonzy",
"Big Bill Broonzy",
"William Broonzy"
],
"normalized_aliases": [
"big bill broonzey",
"william broonzy",
"william lee conley broonzy",
"big bill broonzy",
"bill broonzy"
],
"matched_wiki_entity_name": "",
"normalized_matched_wiki_entity_name": "",
"normalized_value": "big bill broonzy",
"type": "WikipediaEntity",
"value": "Big Bill Broonzy"
}
},
{
"input": "How is Joan Molinsky better known?",
"output": {
"aliases": [
"Queen of Comedy",
"Heidi Abromowitz",
"Joan Rivers (TV) Show",
"Joan Alexandra Molinsky",
"Diary of a Mad Diva",
"Joan rivers",
"Heidi abromowitz",
"Joan River",
"Joan Rivers Show",
"Joan Rivers"
],
"normalized_aliases": [
"joan rivers",
"queen of comedy",
"diary of mad diva",
"joan rivers tv show",
"joan rivers show",
"joan alexandra molinsky",
"heidi abromowitz",
"joan river"
],
"matched_wiki_entity_name": "",
"normalized_matched_wiki_entity_name": "",
"normalized_value": "joan rivers",
"type": "WikipediaEntity",
"value": "Joan Rivers"
}
},
{
"input": "In which branch of the arts is Patricia Neary famous?",
"output": {
"aliases": [
"Ballet",
"Ballet competitions",
"Ballet schools",
"Balet, India",
"Balletti",
"Ballet dancing",
"1938 ballet premieres",
"Balletto",
"Balletomane",
"2011 ballet premieres",
"1940 ballet premieres",
"Balletomanes",
"1939 ballet premieres",
"Ballet characters",
"Ballet teachers",
"Ballet dance",
"Classical Dance",
"Ballets",
"Ballet lessons",
"1915 ballet premieres",
"1914 ballet premieres",
"Classical dance",
"UN/LOCODE:INBLT",
"1916 ballet premieres",
"Balet",
"Ballett"
],
"normalized_aliases": [
"balletti",
"un locode inblt",
"1916 ballet premieres",
"ballet",
"ballets",
"balletomane",
"ballet schools",
"1938 ballet premieres",
"1939 ballet premieres",
"1940 ballet premieres",
"balletto",
"ballet competitions",
"balet",
"classical dance",
"1914 ballet premieres",
"balet india",
"1915 ballet premieres",
"ballett",
"ballet dancing",
"balletomanes",
"ballet dance",
"ballet teachers",
"2011 ballet premieres",
"ballet characters",
"ballet lessons"
],
"matched_wiki_entity_name": "",
"normalized_matched_wiki_entity_name": "",
"normalized_value": "ballet",
"type": "WikipediaEntity",
"value": "Ballet"
}
},
{
"input": "Which country is Europe's largest silk producer?",
"output": {
"aliases": [
"Environment of Italy",
"Itali\u00ebn",
"Subdivisions of Italy",
"Republic of Italy",
"ItalY",
"ISO 3166-1:IT",
"Etymology of Italy",
"Itali",
"Pollution in Italy",
"Administrative divisions of Italy",
"Austrian Empire (Italy)",
"Italija",
"Italie",
"Italia",
"Italian Republic",
"Second Italian Republic",
"Italy",
"Italio",
"Repubblica Italiana",
"It\u00e0lia",
"The Italian republic"
],
"normalized_aliases": [
"second italian republic",
"it\u00e0lia",
"italio",
"iso 3166 1 it",
"italija",
"etymology of italy",
"repubblica italiana",
"itali",
"italia",
"austrian empire italy",
"republic of italy",
"itali\u00ebn",
"subdivisions of italy",
"italy",
"pollution in italy",
"administrative divisions of italy",
"italie",
"italian republic",
"environment of italy"
],
"matched_wiki_entity_name": "",
"normalized_matched_wiki_entity_name": "",
"normalized_value": "italy",
"type": "WikipediaEntity",
"value": "Italy"
}
},
{
"input": "The VS-300 was a type of what?",
"output": {
"aliases": [
"\ud83d\ude81",
"Helicopters",
"Civilian helicopter",
"Pescara (helicopter)",
"Cargo helicopter",
"Copter",
"Helecopter",
"List of deadliest helicopter crashes",
"Helichopper",
"Helocopter",
"Cargo Helicopter",
"Helicopter",
"Helicoptor",
"Anatomy of a helicopter"
],
"normalized_aliases": [
"helocopter",
"civilian helicopter",
"helicopters",
"\ud83d\ude81",
"cargo helicopter",
"anatomy of helicopter",
"pescara helicopter",
"copter",
"helicoptor",
"helecopter",
"helicopter",
"list of deadliest helicopter crashes",
"helichopper"
],
"matched_wiki_entity_name": "",
"normalized_matched_wiki_entity_name": "",
"normalized_value": "helicopter",
"type": "WikipediaEntity",
"value": "Helicopter"
}
},
{
"input": "At which university did Joseph Goebbels become a doctor of philosophy?",
"output": {
"aliases": [
"Heidelberg romantics",
"UN/LOCODE:DEHEI",
"Heidelberg, West Germany",
"Wieblingen",
"Heidelberg",
"Heidelberg, Germany"
],
"normalized_aliases": [
"un locode dehei",
"wieblingen",
"heidelberg west germany",
"heidelberg",
"heidelberg germany",
"heidelberg romantics"
],
"matched_wiki_entity_name": "",
"normalized_matched_wiki_entity_name": "",
"normalized_value": "heidelberg",
"type": "WikipediaEntity",
"value": "Heidelberg"
}
},
{
"input": "Which prince is Queen Elizabeth II's youngest son?",
"output": {
"aliases": [
"Eadweard",
"Edward"
],
"normalized_aliases": [
"eadweard",
"edward"
],
"matched_wiki_entity_name": "",
"normalized_matched_wiki_entity_name": "",
"normalized_value": "edward",
"type": "WikipediaEntity",
"value": "Edward"
}
},
{
"input": "When did the founder of Jehovah's Witnesses say the world would end?",
"output": {
"aliases": [
"one thousand, nine hundred and fourteen",
"1914"
],
"normalized_aliases": [
"1914",
"one thousand nine hundred and fourteen"
],
"matched_wiki_entity_name": "",
"normalized_matched_wiki_entity_name": "",
"normalized_value": "1914",
"type": "Numerical",
"value": "1914"
}
},
{
"input": "Who found the remains of the Titanic?",
"output": {
"aliases": [
"Bob Ballard",
"Robert Duane Ballard",
"Robert Ballard",
"Robert %22Bob%22 Ballard",
"Robert d. ballard"
],
"normalized_aliases": [
"robert duane ballard",
"robert ballard",
"robert d ballard",
"bob ballard",
"robert 22bob 22 ballard"
],
"matched_wiki_entity_name": "",
"normalized_matched_wiki_entity_name": "",
"normalized_value": "robert ballard",
"type": "WikipediaEntity",
"value": "Robert Ballard"
}
},
{
"input": "Who was the only Spice Girl not to have a middle name?",
"output": {
"aliases": [
"My Love Is For Real (Victoria Beckham song",
"Romeo James Beckham",
"Harper Seven Beckham",
"Posh Spice",
"Victoria addams",
"Victoria Beckham",
"Victoria Adams Beckham",
"Harper Beckham",
"Victoria Caroline Beckham",
"I'd Give It All Away",
"Come Together (Victoria Beckham album)",
"Posh spice",
"The Hustla",
"My Love Is For Real (Victoria Beckham song)",
"Victoria beckham"
],
"normalized_aliases": [
"come together victoria beckham album",
"victoria adams beckham",
"harper seven beckham",
"harper beckham",
"victoria caroline beckham",
"hustla",
"victoria addams",
"victoria beckham",
"posh spice",
"romeo james beckham",
"my love is for real victoria beckham song",
"i d give it all away"
],
"matched_wiki_entity_name": "",
"normalized_matched_wiki_entity_name": "",
"normalized_value": "posh spice",
"type": "WikipediaEntity",
"value": "Posh Spice"
}
},
{
"input": "What are the international registration letters of a vehicle from Algeria?",
"output": {
"aliases": [
"DZ (disambiguation)",
"Dz.",
"DZs",
"Dz",
"D.z.",
"DZ",
"D Z",
"D.Z."
],
"normalized_aliases": [
"dz disambiguation",
"d z",
"dzs",
"dz"
],
"matched_wiki_entity_name": "",
"normalized_matched_wiki_entity_name": "",
"normalized_value": "dz",
"type": "WikipediaEntity",
"value": "DZ"
}
},
{
"input": "How did Jock die in Dallas?",
"output": {
"aliases": [
"Helicopter accident"
],
"normalized_aliases": [
"helicopter accident"
],
"matched_wiki_entity_name": "",
"normalized_matched_wiki_entity_name": "",
"normalized_value": "helicopter accident",
"type": "FreeForm",
"value": "Helicopter accident"
}
},
{
"input": "What star sign is Michael Caine?",
"output": {
"aliases": [
"Pisces (disambiguation)",
"Piscean",
"Picese",
"Pisces",
"Piscese",
"Pisese"
],
"normalized_aliases": [
"pisces disambiguation",
"pisces",
"piscese",
"piscean",
"picese",
"pisese"
],
"matched_wiki_entity_name": "",
"normalized_matched_wiki_entity_name": "",
"normalized_value": "pisces",
"type": "WikipediaEntity",
"value": "Pisces"
}
},
{
"input": "Who wrote the novel Evening Class?",
"output": {
"aliases": [
"Maeve Binchy"
],
"normalized_aliases": [
"maeve binchy"
],
"matched_wiki_entity_name": "",
"normalized_matched_wiki_entity_name": "",
"normalized_value": "maeve binchy",
"type": "WikipediaEntity",
"value": "Maeve Binchy"
}
}
]