forked from RUC-NLPIR/FlashRAG
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathskr_training.json
5945 lines (5945 loc) · 147 KB
/
skr_training.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
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"question": "who is the first husband of julia roberts?",
"judgement": "same",
"golden_answers": [
"Lyle Lovett"
]
},
{
"question": "who was peter parker's first girlfriend?",
"judgement": "same",
"golden_answers": [
"Mary Jane Watson"
]
},
{
"question": "who is the president of the european union 2011?",
"judgement": "same",
"golden_answers": [
"Jerzy Buzek"
]
},
{
"question": "what soviet leader came to power in the 1920s?",
"judgement": "same",
"golden_answers": [
"Joseph Stalin"
]
},
{
"question": "what buildings were destroyed in september 11th?",
"judgement": "same",
"golden_answers": [
""
]
},
{
"question": "when does school start in los angeles california 2011?",
"judgement": "ir_worse",
"golden_answers": [
"August"
]
},
{
"question": "when is the new series of the only way is essex starting?",
"judgement": "same",
"golden_answers": [
"2010-10-10"
]
},
{
"question": "when did charlie sheen enter the thousand oaks rehab facility?",
"judgement": "same",
"golden_answers": [
"1998-05-20"
]
},
{
"question": "what year did the vietnam war happen?",
"judgement": "same",
"golden_answers": [
"1959-03"
]
},
{
"question": "what year was the cubs last world series?",
"judgement": "same",
"golden_answers": [
"1908 World Series"
]
},
{
"question": "who was among the first pioneers to cross the appalachian mountains into kentucky?",
"judgement": "same",
"golden_answers": [
"Daniel Boone"
]
},
{
"question": "which movie did john rubinstein star in in 1996?",
"judgement": "same",
"golden_answers": [
"Norma Jean & Marilyn"
]
},
{
"question": "when was tom brady first superbowl win?",
"judgement": "same",
"golden_answers": [
"Super Bowl XXXVI"
]
},
{
"question": "which album did neko case release in march 2006?",
"judgement": "same",
"golden_answers": [
"Fox Confessor Brings The Flood"
]
},
{
"question": "who is the long snapper currently for the steelers?",
"judgement": "same",
"golden_answers": [
"Greg Warren"
]
},
{
"question": "when was the galileo spacecraft launched?",
"judgement": "same",
"golden_answers": [
"1989-10-18"
]
},
{
"question": "what team does hank baskett play for 2009 season?",
"judgement": "same",
"golden_answers": [
"Indianapolis Colts"
]
},
{
"question": "who does ronaldinho play for now 2011?",
"judgement": "same",
"golden_answers": [
"Clube de Regatas do Flamengo"
]
},
{
"question": "when did the renaissance begin?",
"judgement": "same",
"golden_answers": [
"1300"
]
},
{
"question": "what year did dwayne wade came to the nba?",
"judgement": "same",
"golden_answers": [
"2003 NBA Draft"
]
},
{
"question": "who played dumbledore in the first movie?",
"judgement": "same",
"golden_answers": [
"Richard Harris"
]
},
{
"question": "where did huguenots settle in 1678?",
"judgement": "same",
"golden_answers": [
"New Paltz"
]
},
{
"question": "who won the fa cup in 2008?",
"judgement": "same",
"golden_answers": [
"Portsmouth F.C."
]
},
{
"question": "what to do in dubuque this weekend?",
"judgement": "same",
"golden_answers": [
"Dubuque Arboretum and Botanical Gardens"
]
},
{
"question": "who did america gain independence from in 1776?",
"judgement": "same",
"golden_answers": [
"Britain"
]
},
{
"question": "when did romney first run for president?",
"judgement": "same",
"golden_answers": [
"Mitt Romney presidential campaign, 2008"
]
},
{
"question": "who was the first coach of the bucaneers?",
"judgement": "same",
"golden_answers": [
"John McKay"
]
},
{
"question": "what is the name of the first harry potter novel?",
"judgement": "same",
"golden_answers": [
"Harry Potter and the Philosopher's Stone"
]
},
{
"question": "where is byron nelson 2012?",
"judgement": "same",
"golden_answers": [
"Roanoke"
]
},
{
"question": "which english team won the champions league first?",
"judgement": "same",
"golden_answers": [
"the Federation of Free States"
]
},
{
"question": "what year did allen iverson get married?",
"judgement": "same",
"golden_answers": [
"2001-08-03"
]
},
{
"question": "when is the diwali festival?",
"judgement": "same",
"golden_answers": [
"October"
]
},
{
"question": "what is the currency in the dominican republic 2010?",
"judgement": "same",
"golden_answers": [
"Dominican peso"
]
},
{
"question": "what year did arizona cardinals go to superbowl?",
"judgement": "ir_worse",
"golden_answers": [
"Super Bowl XLIII"
]
},
{
"question": "which year was lily mo sheen born in?",
"judgement": "same",
"golden_answers": [
"1999"
]
},
{
"question": "who was the leader of the soviet union in 1945?",
"judgement": "same",
"golden_answers": [
"Joseph Stalin"
]
},
{
"question": "which film starring sam anderson was released in 1982?",
"judgement": "same",
"golden_answers": [
"Airplane II: The Sequel"
]
},
{
"question": "who is the governor of kentucky 2012?",
"judgement": "same",
"golden_answers": [
"Steve Beshear"
]
},
{
"question": "when richard nixon was president?",
"judgement": "same",
"golden_answers": [
"1960"
]
},
{
"question": "who does david beckham play for in 2012?",
"judgement": "same",
"golden_answers": [
"LA Galaxy"
]
},
{
"question": "what team does terrell owens play for last year?",
"judgement": "same",
"golden_answers": [
"Texas Revolution"
]
},
{
"question": "when did easy aces stop being produced?",
"judgement": "ir_better",
"golden_answers": [
"1945"
]
},
{
"question": "who is the current leader of france 2010?",
"judgement": "same",
"golden_answers": [
"Nicolas Sarkozy"
]
},
{
"question": "what is the first book of the old testament?",
"judgement": "same",
"golden_answers": [
"Genesis"
]
},
{
"question": "who is the starting running back for the 2009 minnisota vikings?",
"judgement": "same",
"golden_answers": [
"Adrian Peterson"
]
},
{
"question": "who owns chrysler corporation 2011?",
"judgement": "same",
"golden_answers": [
"Chrysler Group LLC"
]
},
{
"question": "what team does diego forlan currently play for?",
"judgement": "same",
"golden_answers": [
"Sport Club Internacional"
]
},
{
"question": "when did francesco sabatini start working on the puerta de san vicente?",
"judgement": "same",
"golden_answers": [
"1775"
]
},
{
"question": "what is the oregon ducks 2012 football schedule?",
"judgement": "ir_worse",
"golden_answers": [
"University of Oregon"
]
},
{
"question": "when did george w bush take office?",
"judgement": "same",
"golden_answers": [
"George W. Bush 2001 presidential inauguration"
]
},
{
"question": "what type of government does vietnam have today?",
"judgement": "same",
"golden_answers": [
"Socialist state"
]
},
{
"question": "what year did florida marlins win the world series?",
"judgement": "same",
"golden_answers": [
"2003 World Series"
]
},
{
"question": "when was panasonic corporation founded?",
"judgement": "same",
"golden_answers": [
"1918-03"
]
},
{
"question": "who was the first president to grow tomatoes?",
"judgement": "same",
"golden_answers": [
"Thomas Jefferson"
]
},
{
"question": "who is the first communist chairman in prc?",
"judgement": "same",
"golden_answers": [
"Mao Zedong"
]
},
{
"question": "which album did x japan release in july 1994?",
"judgement": "same",
"golden_answers": [
"Rusty Nail"
]
},
{
"question": "which movie did ventura pons direct in 1990?",
"judgement": "same",
"golden_answers": [
"What's It All About"
]
},
{
"question": "what is the second percy jackson book called?",
"judgement": "same",
"golden_answers": [
"The Sea of Monsters"
]
},
{
"question": "who did mexico win its independence from in 1821?",
"judgement": "same",
"golden_answers": [
"Spain"
]
},
{
"question": "who played darth vader in the first movie?",
"judgement": "same",
"golden_answers": [
"David Prowse"
]
},
{
"question": "what caused the cuban rebellion in 1868?",
"judgement": "same",
"golden_answers": [
"Ten Years' War"
]
},
{
"question": "who is the quarterback for the new york giants as of december 2010?",
"judgement": "same",
"golden_answers": [
"Eli Manning"
]
},
{
"question": "when was letter from america last broadcast?",
"judgement": "same",
"golden_answers": [
"2004-02-20"
]
},
{
"question": "where was the earthquake in chile 2010?",
"judgement": "same",
"golden_answers": [
"Spanish"
]
},
{
"question": "who was the colts coach in 2011?",
"judgement": "ir_worse",
"golden_answers": [
"Jim Caldwell"
]
},
{
"question": "when does the world cup occur?",
"judgement": "same",
"golden_answers": [
"Every 4 Years"
]
},
{
"question": "when was the last time the red sox won 100 games?",
"judgement": "same",
"golden_answers": [
"1912 Major League Baseball Season"
]
},
{
"question": "how many people were at the 2006 fifa world cup final?",
"judgement": "same",
"golden_answers": [
"1"
]
},
{
"question": "when was reagan inaugurated?",
"judgement": "same",
"golden_answers": [
"1981-01-20"
]
},
{
"question": "who was the newscaster in 1948 on cbs evening news?",
"judgement": "ir_better",
"golden_answers": [
"Douglas Edwards"
]
},
{
"question": "which 1990 sport athlete was known by the nickname prime time?",
"judgement": "same",
"golden_answers": [
"deion sanders"
]
},
{
"question": "when did the battle of thermopylae occur?",
"judgement": "same",
"golden_answers": [
"-0479"
]
},
{
"question": "who is the richest person 2015?",
"judgement": "same",
"golden_answers": [
"Bill Gates"
]
},
{
"question": "which movie did barney martin star in in 1981?",
"judgement": "same",
"golden_answers": [
"Arthur"
]
},
{
"question": "where does allen iverson live now?",
"judgement": "same",
"golden_answers": [
"Philadelphia"
]
},
{
"question": "what team did kobe bryant play for first?",
"judgement": "same",
"golden_answers": [
"Los Angeles Lakers"
]
},
{
"question": "who was invaded by iraq in 1990?",
"judgement": "ir_worse",
"golden_answers": [
"Kuwait"
]
},
{
"question": "what team is reggie bush on 2011?",
"judgement": "same",
"golden_answers": [
"Miami Dolphins"
]
},
{
"question": "who was first to set up the buisness of ford?",
"judgement": "same",
"golden_answers": [
"Henry Ford"
]
},
{
"question": "when did kerry run for president?",
"judgement": "same",
"golden_answers": [
"John Kerry presidential campaign, 2004"
]
},
{
"question": "what team does allen iverson play for now?",
"judgement": "ir_worse",
"golden_answers": [
"Philadelphia 76ers"
]
},
{
"question": "which book did william golding write in 1995?",
"judgement": "same",
"golden_answers": [
"The Double Tongue"
]
},
{
"question": "when was samuel pepys born?",
"judgement": "same",
"golden_answers": [
"1633-02-23 "
]
},
{
"question": "who won fedex cup in 2012?",
"judgement": "same",
"golden_answers": [
"Brandt Snedeker"
]
},
{
"question": "what did charles babbage create in the 1800s?",
"judgement": "same",
"golden_answers": [
"Analytical Engine"
]
},
{
"question": "who does ronaldinho play for now in 2011?",
"judgement": "same",
"golden_answers": [
"Clube de Regatas do Flamengo"
]
},
{
"question": "when was barghash bin said of zanzibar born?",
"judgement": "same",
"golden_answers": [
"1837"
]
},
{
"question": "when did the aurora colorado shooting take place?",
"judgement": "same",
"golden_answers": [
"2012 Aurora shooting"
]
},
{
"question": "when is the next geneva motor show?",
"judgement": "same",
"golden_answers": [
"March"
]
},
{
"question": "when did greece win its independence from the ottoman empire?",
"judgement": "same",
"golden_answers": [
"Greek War of Independence"
]
},
{
"question": "what date was abraham lincoln inaugurated?",
"judgement": "same",
"golden_answers": [
"Abraham Lincoln 1861 presidential inauguration"
]
},
{
"question": "who is the current governor of the us in 2011?",
"judgement": "ir_better",
"golden_answers": [
"Barack obama"
]
},
{
"question": "which album did boredoms release in september 1992?",
"judgement": "same",
"golden_answers": [
"Pop Tatari"
]
},
{
"question": "who won london mayoral elections 2012?",
"judgement": "same",
"golden_answers": [
"Stephen Foster"
]
},
{
"question": "what book did charles darwin wrote in 1859?",
"judgement": "same",
"golden_answers": [
"The Origin of Species"
]
},
{
"question": "when did airbags become mandatory in american?",
"judgement": "same",
"golden_answers": [
"1998"
]
},
{
"question": "which film starring gao yuanyuan was released in 2001?",
"judgement": "ir_better",
"golden_answers": [
"Beijing Bicycle"
]
},
{
"question": "when did bill clinton graduated from georgetown university?",
"judgement": "same",
"golden_answers": [
"1968"
]
},
{
"question": "what is the official language of china 2010?",
"judgement": "same",
"golden_answers": [
"Standard Mandarin"
]
},
{
"question": "which movie did billy wilder direct in 1981?",
"judgement": "same",
"golden_answers": [
"Buddy Buddy"
]
},
{
"question": "when was porgy and bess first performed?",
"judgement": "same",
"golden_answers": [
"1935-09-30"
]
},
{
"question": "which movie did alana austin star in in 1996?",
"judgement": "same",
"golden_answers": [
"A Mother's Instinct"
]
},
{
"question": "who did plaxico burress sign with 2012?",
"judgement": "same",
"golden_answers": [
"Pittsburgh Steelers"
]
},
{
"question": "what currency is used in england 2012?",
"judgement": "same",
"golden_answers": [
"UK \u00a3"
]
},
{
"question": "what time zone is london in right now?",
"judgement": "ir_better",
"golden_answers": [
"Greenwich Mean Time"
]
},
{
"question": "who is leann rimes with now?",
"judgement": "ir_worse",
"golden_answers": [
"Eddie Cibrian"
]
},
{
"question": "what year did arizona diamondbacks win the world series?",
"judgement": "same",
"golden_answers": [
"2001 World Series"
]
},
{
"question": "which legend of zelda game is the first?",
"judgement": "same",
"golden_answers": [
"The Legend of Zelda"
]
},
{
"question": "what is the first book sherlock holmes appeared in?",
"judgement": "same",
"golden_answers": [
"A Study in Scarlet"
]
},
{
"question": "who won the super bowl xliv 2010?",
"judgement": "same",
"golden_answers": [
"New Orleans Saints"
]
},
{
"question": "when did mykel hawke and ruth england get married?",
"judgement": "ir_better",
"golden_answers": [
"2005"
]
},
{
"question": "what is money used in korea before 1892?",
"judgement": "same",
"golden_answers": [
"the Korean mun"
]
},
{
"question": "when was nutty professor released?",
"judgement": "same",
"golden_answers": [
"1996-06-27"
]
},
{
"question": "what is the currency in egypt 2012?",
"judgement": "same",
"golden_answers": [
"Egyptian pound"
]
},
{
"question": "who plays captain kirk in 2009?",
"judgement": "same",
"golden_answers": [
"Chris Pine"
]
},
{
"question": "what was the first name of the washington redskins?",
"judgement": "same",
"golden_answers": [
"Boston Redskins"
]
},
{
"question": "when is the us open tennis mens final 2011?",
"judgement": "ir_better",
"golden_answers": [
"2011 US Open"
]
},
{
"question": "when was the order of saint michael founded?",
"judgement": "ir_worse",
"golden_answers": [
"1469"
]
},
{
"question": "who won the grammy for best new artist in 2014?",
"judgement": "ir_better",
"golden_answers": [
"Sam Smith"
]
},
{
"question": "which album did aretha franklin release in may 1976?",
"judgement": "ir_better",
"golden_answers": [
"Sparkle"
]
},
{
"question": "who was the prime minister of australia in 1958?",
"judgement": "same",
"golden_answers": [
"Robert Menzies"
]
},
{
"question": "who seized power in italy in 1922?",
"judgement": "same",
"golden_answers": [
"Benito Mussolini"
]
},
{
"question": "which album did steve hackett release in 1999?",
"judgement": "same",
"golden_answers": [
"Dark Town"
]
},
{
"question": "who is the president of ecuador in 2012?",
"judgement": "same",
"golden_answers": [
"Rafael Correa"
]
},
{
"question": "when was the construction of new steubenville bridge finished?",
"judgement": "ir_worse",
"golden_answers": [
"1990"
]
},
{
"question": "when was the musical annie written?",
"judgement": "same",
"golden_answers": [
"Annie (1977 original Broadway cast)"
]
},
{
"question": "when was the release date for titanic?",
"judgement": "same",
"golden_answers": [
"1997-11-01"
]
},
{
"question": "which album did venus hum release in july 2006?",
"judgement": "same",
"golden_answers": [
"The Colors in the Wheel"
]
},
{
"question": "when did everything is illuminated win the guardian first book award?",
"judgement": "same",
"golden_answers": [
"2002"
]
},
{
"question": "what year was the album decade released?",
"judgement": "same",
"golden_answers": [
"1977-10-28"
]
},
{
"question": "who is julia roberts married to 2012?",
"judgement": "ir_better",
"golden_answers": [
"Daniel Moder"
]
},
{
"question": "which album did billy currington release in october 2008?",
"judgement": "same",
"golden_answers": [
"Little Bit of Everything"
]
},
{
"question": "what is the capital of italy today?",
"judgement": "same",
"golden_answers": [
"Rome"
]
},
{
"question": "who was the first dictator of the soviet union?",
"judgement": "same",
"golden_answers": [
"Vladimir Lenin"
]
},
{
"question": "when did the princetown railway close?",
"judgement": "same",
"golden_answers": [
"1956-03-03"
]
},
{
"question": "where will tebow go in 2013?",
"judgement": "same",
"golden_answers": [
"New England Patriots"
]
},
{
"question": "when did the wright brothers created their first plane?",
"judgement": "same",
"golden_answers": [
"1900 Wright Glider"
]
},
{
"question": "when michael jordan got drafted?",
"judgement": "same",
"golden_answers": [
"1984 NBA Draft"
]
},
{
"question": "which album did john scofield release in 1997?",
"judgement": "same",
"golden_answers": [
"A Go Go"
]
},
{
"question": "who is jennifer lawrence boyfriend 2012?",
"judgement": "same",
"golden_answers": [
"Nicholas Hoult"
]
},
{
"question": "what money do they use in spain before 2002?",
"judgement": "same",
"golden_answers": [
"Peseta"
]
},
{
"question": "when was the last time the oakland raiders were in the super bowl?",
"judgement": "same",
"golden_answers": [
"2003 NFL season"
]
},
{
"question": "who is the current president of the dominican republic in 2010?",
"judgement": "same",
"golden_answers": [
"Leonel Fern\u00e1ndez"