-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnli_eval_results.json
More file actions
4017 lines (4017 loc) · 156 KB
/
Copy pathnli_eval_results.json
File metadata and controls
4017 lines (4017 loc) · 156 KB
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
{
"method": "nli",
"samples": 500,
"metrics": {
"precision": 0.8102189781021898,
"recall": 0.444,
"f1": 0.5736434108527132,
"accuracy": 0.67,
"ece": 0.2790456657633798,
"avg_latency_ms": 59.98452806472778,
"p50_latency_ms": 39.69681262969971,
"p95_latency_ms": 85.05862951278684,
"n_samples": 500
},
"raw_results": [
{
"question": "Which magazine was started first Arthur's Magazine or First for Women?",
"response": "Arthur's Magazine",
"ground_truth": "no",
"predicted": "yes",
"score": 1.0,
"latency_ms": 8321.644067764282
},
{
"question": "Which magazine was started first Arthur's Magazine or First for Women?",
"response": "First for Women was started first.",
"ground_truth": "yes",
"predicted": "no",
"score": 0.0,
"latency_ms": 79.66470718383789
},
{
"question": "The Oberoi family is part of a hotel company that has a head office in what city?",
"response": "Delhi",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 0.44274330139160156
},
{
"question": "The Oberoi family is part of a hotel company that has a head office in what city?",
"response": "The Oberoi family's hotel company is based in Mumbai.",
"ground_truth": "yes",
"predicted": "yes",
"score": 1.0,
"latency_ms": 34.62076187133789
},
{
"question": "Musician and satirist Allie Goertz wrote a song about the \"The Simpsons\" character Milhouse, who Matt Groening named after who?",
"response": "President Richard Nixon",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 85.03007888793945
},
{
"question": "Musician and satirist Allie Goertz wrote a song about the \"The Simpsons\" character Milhouse, who Matt Groening named after who?",
"response": "Allie Goertz wrote a song about Milhouse, a popular TV character, named after an influential political figure.",
"ground_truth": "yes",
"predicted": "no",
"score": 0.0,
"latency_ms": 85.6010913848877
},
{
"question": " What nationality was James Henry Miller's wife?",
"response": "American",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 0.21409988403320312
},
{
"question": " What nationality was James Henry Miller's wife?",
"response": "James Henry Miller's wife was British.",
"ground_truth": "yes",
"predicted": "no",
"score": 0.0,
"latency_ms": 77.02803611755371
},
{
"question": "Cadmium Chloride is slightly soluble in this chemical, it is also called what?",
"response": "alcohol",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 0.20575523376464844
},
{
"question": "Cadmium Chloride is slightly soluble in this chemical, it is also called what?",
"response": "water with a hint of alcohol",
"ground_truth": "yes",
"predicted": "no",
"score": 0.0,
"latency_ms": 67.23308563232422
},
{
"question": "Which tennis player won more Grand Slam titles, Henri Leconte or Jonathan Stark?",
"response": "Jonathan Stark",
"ground_truth": "no",
"predicted": "yes",
"score": 1.0,
"latency_ms": 97.60284423828125
},
{
"question": "Which tennis player won more Grand Slam titles, Henri Leconte or Jonathan Stark?",
"response": "Henri Leconte won more Grand Slam titles.",
"ground_truth": "yes",
"predicted": "no",
"score": 0.0,
"latency_ms": 67.24882125854492
},
{
"question": "Which genus of moth in the world's seventh-largest country contains only one species?",
"response": "Crambidae",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 0.19979476928710938
},
{
"question": "Which genus of moth in the world's seventh-largest country contains only one species?",
"response": "The Indogrammodes genus of moths found in India has only one species.",
"ground_truth": "yes",
"predicted": "no",
"score": 0.0,
"latency_ms": 67.55399703979492
},
{
"question": "Who was once considered the best kick boxer in the world, however he has been involved in a number of controversies relating to his \"unsportsmanlike conducts\" in the sport and crimes of violence outside of the ring.",
"response": "Badr Hari",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 0.1971721649169922
},
{
"question": "Who was once considered the best kick boxer in the world, however he has been involved in a number of controversies relating to his \"unsportsmanlike conducts\" in the sport and crimes of violence outside of the ring.",
"response": "Badr Hari is a notorious kickboxer.",
"ground_truth": "yes",
"predicted": "no",
"score": 0.0,
"latency_ms": 76.96104049682617
},
{
"question": "The Dutch-Belgian television series that \"House of Anubis\" was based on first aired in what year?",
"response": "2006",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 0.19598007202148438
},
{
"question": "The Dutch-Belgian television series that \"House of Anubis\" was based on first aired in what year?",
"response": "The inspiration for \"House of Anubis\" first aired in 2003.",
"ground_truth": "yes",
"predicted": "yes",
"score": 1.0,
"latency_ms": 58.95280838012695
},
{
"question": "What is the length of the track where the 2013 Liqui Moly Bathurst 12 Hour was staged?",
"response": "6.213 km long",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 73.516845703125
},
{
"question": "What is the length of the track where the 2013 Liqui Moly Bathurst 12 Hour was staged?",
"response": "The Mount Panorama Circuit track is longer than 7 km.",
"ground_truth": "yes",
"predicted": "yes",
"score": 1.0,
"latency_ms": 74.18179512023926
},
{
"question": "Fast Cars, Danger, Fire and Knives includes guest appearances from which hip hop record executive?",
"response": "Jaime Meline",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 95.26205062866211
},
{
"question": "Fast Cars, Danger, Fire and Knives includes guest appearances from which hip hop record executive?",
"response": "Fast Cars, Danger, Fire and Knives includes guest appearances from Russell Simmons.",
"ground_truth": "yes",
"predicted": "yes",
"score": 1.0,
"latency_ms": 67.95907020568848
},
{
"question": "Gunmen from Laredo starred which narrator of \"Frontier\"?",
"response": "Walter Darwin Coy",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 66.4830207824707
},
{
"question": "Gunmen from Laredo starred which narrator of \"Frontier\"?",
"response": "Although Walter Darwin Coy was part of the cast, the narrator of \"Frontier\" was actually Richard Boone.",
"ground_truth": "yes",
"predicted": "yes",
"score": 1.0,
"latency_ms": 70.69087028503418
},
{
"question": "Where did the form of music played by Die Rh\u00f6ner S\u00e4uw\u00e4ntzt originate?",
"response": "United States",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 69.82088088989258
},
{
"question": "Where did the form of music played by Die Rh\u00f6ner S\u00e4uw\u00e4ntzt originate?",
"response": "The form of music played by Die Rh\u00f6ner S\u00e4uw\u00e4ntzt originated in the United Kingdom",
"ground_truth": "yes",
"predicted": "yes",
"score": 1.0,
"latency_ms": 78.57275009155273
},
{
"question": "In which American football game was Malcolm Smith named Most Valuable player?",
"response": "Super Bowl XLVIII",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 72.6161003112793
},
{
"question": "In which American football game was Malcolm Smith named Most Valuable player?",
"response": "Malcolm Smith was named Most Valuable Player of the Pro Bowl 2013.",
"ground_truth": "yes",
"predicted": "no",
"score": 0.0,
"latency_ms": 71.89297676086426
},
{
"question": "What U.S Highway gives access to Zilpo Road, and is also known as Midland Trail?",
"response": "US 60",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 0.18835067749023438
},
{
"question": "What U.S Highway gives access to Zilpo Road, and is also known as Midland Trail?",
"response": "It's actually Zilpo Road that is known as Midland Trail, not US 60.",
"ground_truth": "yes",
"predicted": "yes",
"score": 1.0,
"latency_ms": 67.98219680786133
},
{
"question": "The 1988 American comedy film, The Great Outdoors, starred a four-time Academy Award nominee, who received a star on the Hollywood Walk of Fame in what year?",
"response": "2006",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 0.3299713134765625
},
{
"question": "The 1988 American comedy film, The Great Outdoors, starred a four-time Academy Award nominee, who received a star on the Hollywood Walk of Fame in what year?",
"response": "Annette Bening received her Hollywood star in 1988.",
"ground_truth": "yes",
"predicted": "yes",
"score": 1.0,
"latency_ms": 105.16905784606934
},
{
"question": "What are the names of the current members of American heavy metal band who wrote the music for Hurt Locker The Musical? ",
"response": "Hetfield and Ulrich, longtime lead guitarist Kirk Hammett, and bassist Robert Trujillo.",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 132.59601593017578
},
{
"question": "What are the names of the current members of American heavy metal band who wrote the music for Hurt Locker The Musical? ",
"response": "Lars, Hammett, Burton, Ulrich and Mustaine.",
"ground_truth": "yes",
"predicted": "yes",
"score": 1.0,
"latency_ms": 66.68496131896973
},
{
"question": "Human Error\" is the season finale of the third season of a tv show that aired on what network?",
"response": "Fox",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 0.19812583923339844
},
{
"question": "Human Error\" is the season finale of the third season of a tv show that aired on what network?",
"response": "\"Human Error\" was actually the season finale of the fourth season of \"House\" and aired on NBC.",
"ground_truth": "yes",
"predicted": "yes",
"score": 1.0,
"latency_ms": 66.94293022155762
},
{
"question": "Dua Lipa, an English singer, songwriter and model, the album spawned the number-one single \"New Rules\" is a song by English singer Dua Lipa from her eponymous debut studio album, released in what year?",
"response": "2017",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 0.17833709716796875
},
{
"question": "Dua Lipa, an English singer, songwriter and model, the album spawned the number-one single \"New Rules\" is a song by English singer Dua Lipa from her eponymous debut studio album, released in what year?",
"response": "The album was released in 2018.",
"ground_truth": "yes",
"predicted": "yes",
"score": 1.0,
"latency_ms": 63.28296661376953
},
{
"question": "American politician Joe Heck ran unsuccessfully against Democrat Catherine Cortez Masto, a woman who previously served as the 32nd Attorney General of where?",
"response": "Nevada",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 0.17309188842773438
},
{
"question": "American politician Joe Heck ran unsuccessfully against Democrat Catherine Cortez Masto, a woman who previously served as the 32nd Attorney General of where?",
"response": "Cortez Masto was the 32nd Attorney General of Wyoming.",
"ground_truth": "yes",
"predicted": "yes",
"score": 1.0,
"latency_ms": 73.7009048461914
},
{
"question": "Which state does the drug stores, of which the CEO is Warren Bryant, are located?",
"response": "Hawaii",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 0.8540153503417969
},
{
"question": "Which state does the drug stores, of which the CEO is Warren Bryant, are located?",
"response": "The drug stores in which Warren Bryant was the CEO are located in Utah.",
"ground_truth": "yes",
"predicted": "yes",
"score": 1.0,
"latency_ms": 99.90286827087402
},
{
"question": "Which American politician did Donahue replaced ",
"response": "Kelli Ward",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 66.73383712768555
},
{
"question": "Which American politician did Donahue replaced ",
"response": "Donahue replaced Kelli Ward's position.",
"ground_truth": "yes",
"predicted": "no",
"score": 0.0,
"latency_ms": 72.16596603393555
},
{
"question": "Which band was founded first, Hole, the rock band that Courtney Love was a frontwoman of, or The Wolfhounds?",
"response": "The Wolfhounds",
"ground_truth": "no",
"predicted": "yes",
"score": 1.0,
"latency_ms": 40.38500785827637
},
{
"question": "Which band was founded first, Hole, the rock band that Courtney Love was a frontwoman of, or The Wolfhounds?",
"response": "Hole, the rock band that Courtney Love was a frontwoman of was founded first.",
"ground_truth": "yes",
"predicted": "no",
"score": 0.0,
"latency_ms": 75.52194595336914
},
{
"question": "How old is the female main protagonist of Catching Fire?",
"response": "16-year-old",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 69.48494911193848
},
{
"question": "How old is the female main protagonist of Catching Fire?",
"response": "17-year-old, just slightly older.",
"ground_truth": "yes",
"predicted": "no",
"score": 0.0,
"latency_ms": 71.23303413391113
},
{
"question": "Chang Ucchin was born in korea during a time that ended with the conclusion of what? ",
"response": "World War II",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 73.2111930847168
},
{
"question": "Chang Ucchin was born in korea during a time that ended with the conclusion of what? ",
"response": "Chang was born before the war ended.",
"ground_truth": "yes",
"predicted": "no",
"score": 0.0,
"latency_ms": 70.59192657470703
},
{
"question": "Who is the director of the 2003 film which has scenes in it filmed at the Quality Cafe in Los Angeles?",
"response": "Todd Phillips",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 105.44109344482422
},
{
"question": "Who is the director of the 2003 film which has scenes in it filmed at the Quality Cafe in Los Angeles?",
"response": "The director of the 2003 film featuring scenes at Quality Cafe is Kevin Phillips.",
"ground_truth": "yes",
"predicted": "yes",
"score": 1.0,
"latency_ms": 48.085927963256836
},
{
"question": "New Faces of 1952 is a musical revue with songs and comedy skits, it helped jump start the career of which young performer, and American actress?",
"response": "Carol Lawrence",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 62.34288215637207
},
{
"question": "New Faces of 1952 is a musical revue with songs and comedy skits, it helped jump start the career of which young performer, and American actress?",
"response": "New Faces of 1952 was responsible for launching the careers of many young performers, including actress Carol Lawrence.",
"ground_truth": "yes",
"predicted": "no",
"score": 0.0,
"latency_ms": 62.560319900512695
},
{
"question": "Were Pavel Urysohn and Leonid Levin known for the same type of work?",
"response": "no",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 0.19097328186035156
},
{
"question": "Were Pavel Urysohn and Leonid Levin known for the same type of work?",
"response": "Pavel Urysohn and Leonid Levin collaborated on mathematical research.",
"ground_truth": "yes",
"predicted": "no",
"score": 0.0,
"latency_ms": 76.74407958984375
},
{
"question": "Are both The New Pornographers and Kings of Leon American rock bands?",
"response": "no",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 0.17404556274414062
},
{
"question": "Are both The New Pornographers and Kings of Leon American rock bands?",
"response": "Yes, both The New Pornographers and Kings of Leon are now American rock bands.",
"ground_truth": "yes",
"predicted": "yes",
"score": 1.0,
"latency_ms": 60.485124588012695
},
{
"question": "750 7th Avenue and 101 Park Avenue, are located in which city?",
"response": "New York City",
"ground_truth": "no",
"predicted": "yes",
"score": 1.0,
"latency_ms": 62.159061431884766
},
{
"question": "750 7th Avenue and 101 Park Avenue, are located in which city?",
"response": "750 7th Avenue and 101 Park Avenue are located in Albany, New York.",
"ground_truth": "yes",
"predicted": "yes",
"score": 1.0,
"latency_ms": 59.945106506347656
},
{
"question": "Which actress played the part of fictitious character Kimberly Ann Hart, in the franchise built around a live action superhero television series taking much of its footage from the Japanese tokusatsu 'Super Sentai'?",
"response": "Amy Jo Johnson",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 110.15105247497559
},
{
"question": "Which actress played the part of fictitious character Kimberly Ann Hart, in the franchise built around a live action superhero television series taking much of its footage from the Japanese tokusatsu 'Super Sentai'?",
"response": "Kimberly was played by Amy Johnson.",
"ground_truth": "yes",
"predicted": "no",
"score": 0.0,
"latency_ms": 72.26085662841797
},
{
"question": "Who was born first, Pablo Trapero or Aleksander Ford?",
"response": "Aleksander Ford",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 34.54995155334473
},
{
"question": "Who was born first, Pablo Trapero or Aleksander Ford?",
"response": "Pablo Trapero was born first.",
"ground_truth": "yes",
"predicted": "yes",
"score": 1.0,
"latency_ms": 74.74017143249512
},
{
"question": "Are Jane and First for Women both women's magazines?",
"response": "yes",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 0.20813941955566406
},
{
"question": "Are Jane and First for Women both women's magazines?",
"response": "While Jane and First for Women are both publications, one is aimed at women while the other is not.",
"ground_truth": "yes",
"predicted": "yes",
"score": 1.0,
"latency_ms": 74.88107681274414
},
{
"question": "What profession does Nicholas Ray and Elia Kazan have in common?",
"response": "director",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 0.22292137145996094
},
{
"question": "What profession does Nicholas Ray and Elia Kazan have in common?",
"response": "Nicholas Ray and Elia Kazan both worked in the film industry.",
"ground_truth": "yes",
"predicted": "no",
"score": 0.0,
"latency_ms": 86.44294738769531
},
{
"question": "Where is the company that purchased Aixam based in?",
"response": "Roseau, Minnesota, USA",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 80.80410957336426
},
{
"question": "Where is the company that purchased Aixam based in?",
"response": "Polaris Industries is based in Alaska.",
"ground_truth": "yes",
"predicted": "yes",
"score": 1.0,
"latency_ms": 70.14298439025879
},
{
"question": "Which documentary is about Finnish rock groups, Adam Clayton Powell or The Saimaa Gesture?",
"response": "The Saimaa Gesture",
"ground_truth": "no",
"predicted": "yes",
"score": 1.0,
"latency_ms": 101.58205032348633
},
{
"question": "Which documentary is about Finnish rock groups, Adam Clayton Powell or The Saimaa Gesture?",
"response": "Adam Clayton Powell is about civil rights leader.",
"ground_truth": "yes",
"predicted": "no",
"score": 0.0,
"latency_ms": 66.32423400878906
},
{
"question": "Who was inducted into the Rock and Roll Hall of Fame, David Lee Roth or Cia Berg?",
"response": "David Lee Roth",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 67.31009483337402
},
{
"question": "Who was inducted into the Rock and Roll Hall of Fame, David Lee Roth or Cia Berg?",
"response": "Cia Berg was inducted into the Rock and Roll Hall of Fame.",
"ground_truth": "yes",
"predicted": "yes",
"score": 1.0,
"latency_ms": 67.65079498291016
},
{
"question": "Zimbabwe's Guwe Secondary School has a sister school in what New York cunty?",
"response": "Nassau County",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 33.36977958679199
},
{
"question": "Zimbabwe's Guwe Secondary School has a sister school in what New York cunty?",
"response": "Suffolk County is the sister school's location.",
"ground_truth": "yes",
"predicted": "yes",
"score": 1.0,
"latency_ms": 29.545068740844727
},
{
"question": "The Royal Commission into Drug Trafficking (1977\u20131979) or Woodward Royal Commission was a royal commission initiated by the New South Wales Government to investigate drug trafficking in New South Wales, Australia, especially links between the New South Wales Police and Mafia, The Honoured Society, is a Calabrian 'Ndrangheta criminal confederation, started in Melbourne and currently active in all of which country? ",
"response": "Australia",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 0.18310546875
},
{
"question": "The Royal Commission into Drug Trafficking (1977\u20131979) or Woodward Royal Commission was a royal commission initiated by the New South Wales Government to investigate drug trafficking in New South Wales, Australia, especially links between the New South Wales Police and Mafia, The Honoured Society, is a Calabrian 'Ndrangheta criminal confederation, started in Melbourne and currently active in all of which country? ",
"response": "The Honoured Society is a Calabrian 'Ndrangheta criminal confederation, started in Melbourne and currently active in Italy.",
"ground_truth": "yes",
"predicted": "yes",
"score": 1.0,
"latency_ms": 71.83527946472168
},
{
"question": "The 337th Flight Test Squadron (337 FLTS) was most recently part of the 46th Test Wing and based at McClellan Air Force Base, a former United States Air Force base located in the North Highlands area of Sacramento County, in which US state?",
"response": "California",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 33.843278884887695
},
{
"question": "The 337th Flight Test Squadron (337 FLTS) was most recently part of the 46th Test Wing and based at McClellan Air Force Base, a former United States Air Force base located in the North Highlands area of Sacramento County, in which US state?",
"response": "The 337th Flight Test Squadron (337 FLTS) was most recently part of the 46th Test Wing and based at McClellan Air Force Base, which was located near California.",
"ground_truth": "yes",
"predicted": "no",
"score": 0.0,
"latency_ms": 39.875030517578125
},
{
"question": "The axial turbojet Pirna 014 was designed by engineers from this German aircraft and aircraft engine manufacturer based in which city?",
"response": "Dessau",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 0.5960464477539062
},
{
"question": "The axial turbojet Pirna 014 was designed by engineers from this German aircraft and aircraft engine manufacturer based in which city?",
"response": "The Pirna 014 was designed by engineers from Junkers in Stuggart.",
"ground_truth": "yes",
"predicted": "no",
"score": 0.0,
"latency_ms": 112.99920082092285
},
{
"question": "Which faith is designated to the University of Providence, private university accredited by the NW association of Schools and Colleges and located in a third largest city in Montana after being passed by Missoula? ",
"response": "Roman Catholic",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 68.67194175720215
},
{
"question": "Which faith is designated to the University of Providence, private university accredited by the NW association of Schools and Colleges and located in a third largest city in Montana after being passed by Missoula? ",
"response": "The University of Providence is of the Lutheran faith.",
"ground_truth": "yes",
"predicted": "yes",
"score": 1.0,
"latency_ms": 68.63903999328613
},
{
"question": "Pauline Henry was known as the vocalist of a very popular cover song. Which album was this song from?",
"response": "The Joshua Tree",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 41.15891456604004
},
{
"question": "Pauline Henry was known as the vocalist of a very popular cover song. Which album was this song from?",
"response": "\"I Still Haven't Found What I'm Looking For\" belongs to the \"War\" album.",
"ground_truth": "yes",
"predicted": "yes",
"score": 1.0,
"latency_ms": 45.067787170410156
},
{
"question": "Guitars for Wounded Warriors is an album that was recorded in the village in which New York county?",
"response": "Ulster County",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 33.94889831542969
},
{
"question": "Guitars for Wounded Warriors is an album that was recorded in the village in which New York county?",
"response": "The Guitars for Wounded Warriors album was recorded in Albany County.",
"ground_truth": "yes",
"predicted": "yes",
"score": 1.0,
"latency_ms": 32.98783302307129
},
{
"question": "What American country music singer-songwriter, born in May of 1942, sang a duet with her ex-husband the same year that he released the song \"The Battle?\"",
"response": "Tammy Wynette",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 68.07303428649902
},
{
"question": "What American country music singer-songwriter, born in May of 1942, sang a duet with her ex-husband the same year that he released the song \"The Battle?\"",
"response": "Tammy Wynette was one of the best-known female country music artists who sang a duet with her ex-husband.",
"ground_truth": "yes",
"predicted": "no",
"score": 0.0,
"latency_ms": 41.47505760192871
},
{
"question": "Who was born first, Francis Nethersole or Elizabeth Stuart?",
"response": "Sir Francis Nethersole",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 74.70107078552246
},
{
"question": "Who was born first, Francis Nethersole or Elizabeth Stuart?",
"response": "Elizabeth Stuart was born first.",
"ground_truth": "yes",
"predicted": "yes",
"score": 1.0,
"latency_ms": 66.15090370178223
},
{
"question": "What does the Hacker-Pschorr Brewery have to limit in order to comply with German regulations?",
"response": "ingredients in beer",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 42.2821044921875
},
{
"question": "What does the Hacker-Pschorr Brewery have to limit in order to comply with German regulations?",
"response": "Hacker-Pschorr Brewery must limit their beer's purity.",
"ground_truth": "yes",
"predicted": "no",
"score": 0.0,
"latency_ms": 74.50175285339355
},
{
"question": "Don Barry Mason was the founder of the Psychedelic Shamanistic Institute (PSI), which other member that's Welsh, that died on 10 April 2016?",
"response": "Dennis Howard Marks",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 68.03083419799805
},
{
"question": "Don Barry Mason was the founder of the Psychedelic Shamanistic Institute (PSI), which other member that's Welsh, that died on 10 April 2016?",
"response": "The founder of PSI was Welsh, not Marks.",
"ground_truth": "yes",
"predicted": "yes",
"score": 1.0,
"latency_ms": 42.27495193481445
},
{
"question": "What male actor starred in The Messenger?",
"response": "Robert Sheehan",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 32.4859619140625
},
{
"question": "What male actor starred in The Messenger?",
"response": "The Messenger starred Michael Sheen.",
"ground_truth": "yes",
"predicted": "yes",
"score": 1.0,
"latency_ms": 63.93694877624512
},
{
"question": "Are Gin and tonic and Paloma both cocktails based on tequila?",
"response": "no",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 0.18715858459472656
},
{
"question": "Are Gin and tonic and Paloma both cocktails based on tequila?",
"response": "Yes, Gin and tonic and Paloma are both tequila-based cocktails.",
"ground_truth": "yes",
"predicted": "no",
"score": 0.0,
"latency_ms": 59.98373031616211
},
{
"question": "Who is older Glenn Hughes or Ross Lynch?",
"response": "Glenn Hughes",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 75.13880729675293
},
{
"question": "Who is older Glenn Hughes or Ross Lynch?",
"response": "Ross Lynch is the older one.",
"ground_truth": "yes",
"predicted": "yes",
"score": 1.0,
"latency_ms": 23.74410629272461
},
{
"question": "In what year was the creator of the current arrangement of the \"Simpson's Theme\" born?",
"response": "March 28, 1941",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 67.69180297851562
},
{
"question": "In what year was the creator of the current arrangement of the \"Simpson's Theme\" born?",
"response": "The creator of the current arrangement of the \"Simpson's Theme\" was born in 1941.",
"ground_truth": "yes",
"predicted": "no",
"score": 0.0,
"latency_ms": 40.84205627441406
},
{
"question": "The Southern Railway runs from Vienna to Graz and the border with Slovenia at Spielfeld via the first mountain railway built in Europe to use what kind of track?",
"response": "standard gauge track",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 35.73870658874512
},
{
"question": "The Southern Railway runs from Vienna to Graz and the border with Slovenia at Spielfeld via the first mountain railway built in Europe to use what kind of track?",
"response": "The Southern Railway runs on broad gauge track.",
"ground_truth": "yes",
"predicted": "yes",
"score": 1.0,
"latency_ms": 39.32380676269531
},
{
"question": "In what show did Cynthia Nixon receive the 2004 Primetime Emmy Award for Outstanding Supporting Actress in a Comedy Series and a Screen Actors Guild Award for her performance?",
"response": "Sex and the City",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 65.78803062438965
},
{
"question": "In what show did Cynthia Nixon receive the 2004 Primetime Emmy Award for Outstanding Supporting Actress in a Comedy Series and a Screen Actors Guild Award for her performance?",
"response": "Cynthia Nixon received her awards for her performance in \"Modern Family.\"",
"ground_truth": "yes",
"predicted": "yes",
"score": 1.0,
"latency_ms": 63.384056091308594
},
{
"question": "Lee Jun-fan played what character in \"The Green Hornet\" television series?",
"response": "Kato",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 0.17499923706054688
},
{
"question": "Lee Jun-fan played what character in \"The Green Hornet\" television series?",
"response": "Bruce Lee played the main character in \"The Green Hornet\" television series.",
"ground_truth": "yes",
"predicted": "no",
"score": 0.0,
"latency_ms": 41.085004806518555
},
{
"question": "The 1895/96 Football League season was the eighth in Football League history with Everton, their Goodison Park home, is a football stadium located in Walton, Liverpool, in which country?",
"response": "England",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 0.6158351898193359
},
{
"question": "The 1895/96 Football League season was the eighth in Football League history with Everton, their Goodison Park home, is a football stadium located in Walton, Liverpool, in which country?",
"response": "Everton, their Goodison Park home, is a football stadium located in Walton, Liverpool, in the United Kingdom.",
"ground_truth": "yes",
"predicted": "yes",
"score": 1.0,
"latency_ms": 89.18309211730957
},
{
"question": "A Head Full of Dreams Tour is the seventh tour by Coldplay, and which had it's first show at a stadium that is known as Estadio Unico and is owned by who?",
"response": "Province of Buenos Aires",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 72.64900207519531
},
{
"question": "A Head Full of Dreams Tour is the seventh tour by Coldplay, and which had it's first show at a stadium that is known as Estadio Unico and is owned by who?",
"response": "The A Head Full of Dreams Tour is the seventh tour by Coldplay and held its first show on an island in the Pacific Ocean owned by the band members.",
"ground_truth": "yes",
"predicted": "yes",
"score": 1.0,
"latency_ms": 76.98297500610352
},
{
"question": "Roger Avary (born August 23, 1965) is a Canadian film and television producer, screenwriter and director in the American mass media industry, he wrote the screenplay for Beowulf, a 2007 British-American 3D motion capture epic fantasy film, directed by who?",
"response": "Robert Zemeckis",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 62.29805946350098
},
{
"question": "Roger Avary (born August 23, 1965) is a Canadian film and television producer, screenwriter and director in the American mass media industry, he wrote the screenplay for Beowulf, a 2007 British-American 3D motion capture epic fantasy film, directed by who?",
"response": "Neil Gaiman directed Beowulf.",
"ground_truth": "yes",
"predicted": "yes",
"score": 1.0,
"latency_ms": 33.826589584350586
},
{
"question": "The American Pre-Code comedy film featuring an American actress, dancer, and singer, widely known for performing in films and RKO's musical films, was released in what year?",
"response": "1932",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 0.18095970153808594
},
{
"question": "The American Pre-Code comedy film featuring an American actress, dancer, and singer, widely known for performing in films and RKO's musical films, was released in what year?",
"response": "The film was released in 1938.",
"ground_truth": "yes",
"predicted": "yes",
"score": 1.0,
"latency_ms": 40.300607681274414
},
{
"question": "An edited version of \"Just the Two of Us\" reached number two on the \"Billboard\" Hot 100 behind a song written and composed by Donna Weiss and Jackie DeShannon which spend how many weeks at No. 1 on the \"Billboard\" hot 100?",
"response": "nine",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 0.17309188842773438
},
{
"question": "An edited version of \"Just the Two of Us\" reached number two on the \"Billboard\" Hot 100 behind a song written and composed by Donna Weiss and Jackie DeShannon which spend how many weeks at No. 1 on the \"Billboard\" hot 100?",
"response": "The song that \"Just the Two of Us\" lost to spent ten weeks at No. 1 on the \"Billboard\" Hot 100.",
"ground_truth": "yes",
"predicted": "yes",
"score": 1.0,
"latency_ms": 121.40583992004395
},
{
"question": "Which band has more members, Saint Motel or Curve?",
"response": "Saint Motel",
"ground_truth": "no",
"predicted": "yes",
"score": 1.0,
"latency_ms": 64.73398208618164
},
{
"question": "Which band has more members, Saint Motel or Curve?",
"response": "Curve has no more members.",
"ground_truth": "yes",
"predicted": "yes",
"score": 1.0,
"latency_ms": 43.79773139953613
},
{
"question": "\"Funnybot\" is the second episode of the fifteenth season of which American animated television series, created by Trey Parker and Matt Stone? ",
"response": "South Park",
"ground_truth": "no",
"predicted": "no",
"score": 0.0,
"latency_ms": 65.11497497558594
},
{