-
Notifications
You must be signed in to change notification settings - Fork 1
/
qa_human_check.json
23106 lines (23106 loc) · 722 KB
/
qa_human_check.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": "when is the last time wisconsin missed the ncaa tournament",
"answers": [
"1997\u201398"
],
"source": "NaturalQuestions",
"flan": {
"pred": "2017",
"human_eval": "0"
},
"llama": {
"pred": "The last time wisconsin missed the ncaa tournament was in 2016.",
"human_eval": "0"
},
"gpt": {
"pred": "The last time Wisconsin missed the NCAA tournament was in the 1997-1998 season.",
"human_eval": "1"
}
},
{
"question": "when did all night long come out lionel richie",
"answers": [
"1983",
"August 31, 1983"
],
"source": "NaturalQuestions",
"flan": {
"pred": "All Night Long by Lionel Richie was released in 1973",
"human_eval": "0"
},
"llama": {
"pred": "All night long came out in 1983.",
"human_eval": "1"
},
"gpt": {
"pred": "\"All Night Long\" by Lionel Richie was released in 1983.",
"human_eval": "1"
}
},
{
"question": "who built the first temple for god in jerusalem",
"answers": [
"Solomon"
],
"source": "NaturalQuestions",
"flan": {
"pred": "King Solomon",
"human_eval": "1"
},
"llama": {
"pred": "King Solomon built the first temple for god in jerusalem.",
"human_eval": "1"
},
"gpt": {
"pred": "King Solomon built the first temple for God in Jerusalem.",
"human_eval": "1"
}
},
{
"question": "what does istj mean in a personality test",
"answers": [
"Extroverted Thinking (Te)",
"Extroverted Intuition (Ne)",
"Introverted Sensing (Si)",
"Introverted Feeling (Fi)"
],
"source": "NaturalQuestions",
"flan": {
"pred": "Introverted Sensing Thinking Judging",
"human_eval": "1"
},
"llama": {
"pred": "istj means introverted sensing thinking judging in a personality test.",
"human_eval": "1"
},
"gpt": {
"pred": "ISTJ stands for Introverted, Sensing, Thinking, Judging in a personality test.",
"human_eval": "1"
}
},
{
"question": "when was the movie the wizard of oz made",
"answers": [
"1939",
"August\u00a025,\u00a01939"
],
"source": "NaturalQuestions",
"flan": {
"pred": "1939",
"human_eval": "1"
},
"llama": {
"pred": "The movie the wizard of oz was made in 1939.",
"human_eval": "1"
},
"gpt": {
"pred": "The movie The Wizard of Oz was made in 1939.",
"human_eval": "1"
}
},
{
"question": "where is the new football stadium in atlanta",
"answers": [
"Mercedes-Benz Stadium"
],
"source": "NaturalQuestions",
"flan": {
"pred": "Atlanta, Georgia",
"human_eval": "0"
},
"llama": {
"pred": "Mercedes-Benz Stadium is the new football stadium in atlanta.",
"human_eval": "1"
},
"gpt": {
"pred": "The new football stadium in Atlanta is located in downtown Atlanta, Georgia.",
"human_eval": "0"
}
},
{
"question": "when does the black panther movie soundtrack come out",
"answers": [
"February 9, 2018",
"February 16, 2018"
],
"source": "NaturalQuestions",
"flan": {
"pred": "February 16, 2018",
"human_eval": "1"
},
"llama": {
"pred": "The black panther movie soundtrack comes out on February 9, 2018.",
"human_eval": "1"
},
"gpt": {
"pred": "The Black Panther movie soundtrack was released on February 9, 2018.",
"human_eval": "1"
}
},
{
"question": "where did the term spirits for alcohol come from",
"answers": [
"Middle Eastern alchemy"
],
"source": "NaturalQuestions",
"flan": {
"pred": "The term spirits for alcohol came from the Latin word spiritus, which means \"spirit\".",
"human_eval": "0"
},
"llama": {
"pred": "The term spirits for alcohol came from the term spirits for alcohol.",
"human_eval": "0"
},
"gpt": {
"pred": "The term \"spirits\" for alcohol originated from the belief that the distillation process captured the spirit or essence of the original substance.",
"human_eval": "0"
}
},
{
"question": "who plays zoey in i love you man",
"answers": [
"Rashida Jones"
],
"source": "NaturalQuestions",
"flan": {
"pred": "Jennifer Love Hewitt",
"human_eval": "0"
},
"llama": {
"pred": "Paula Patton plays zoey in i love you man.",
"human_eval": "0"
},
"gpt": {
"pred": "Rashida Jones plays Zoey in the movie \"I Love You, Man.\"",
"human_eval": "1"
}
},
{
"question": "when did the great plague of london start and end",
"answers": [
"1665 to 1666",
"1666",
"1665",
"from 1665 to 1666"
],
"source": "NaturalQuestions",
"flan": {
"pred": "The Great Plague of London started on 13 February 1665 and ended on 28 February 1666.",
"human_eval": "0"
},
"llama": {
"pred": "The great plague of london started in 1665 and ended in 1666.",
"human_eval": "1"
},
"gpt": {
"pred": "The Great Plague of London started in 1665 and ended in 1666.",
"human_eval": "1"
}
},
{
"question": "who got the first arjun award in athletics",
"answers": [
"Gurbachan Singh Randhawa"
],
"source": "NaturalQuestions",
"flan": {
"pred": "Vijay Kumar",
"human_eval": "0"
},
"llama": {
"pred": "P.T. Usha got the first arjun award in athletics.",
"human_eval": "0"
},
"gpt": {
"pred": "Milkha Singh got the first Arjuna Award in athletics.",
"human_eval": "0"
}
},
{
"question": "what is the center of heredity in a cell",
"answers": [
"nucleus",
"Cell nuclei",
"the nucleus",
"chromosome"
],
"source": "NaturalQuestions",
"flan": {
"pred": "The nucleus is the center of heredity in a cell.",
"human_eval": "1"
},
"llama": {
"pred": "The center of heredity in a cell is the nucleus.",
"human_eval": "1"
},
"gpt": {
"pred": "The center of heredity in a cell is the nucleus.",
"human_eval": "1"
}
},
{
"question": "which government had more power under the articles of confederation",
"answers": [
"the states",
"states"
],
"source": "NaturalQuestions",
"flan": {
"pred": "Federal government",
"human_eval": "0"
},
"llama": {
"pred": "The government had more power under the articles of confederation.",
"human_eval": "0"
},
"gpt": {
"pred": "The state governments had more power under the Articles of Confederation.",
"human_eval": "1"
}
},
{
"question": "the world famous corn belt is in which country",
"answers": [
"United States",
"the United States"
],
"source": "NaturalQuestions",
"flan": {
"pred": "United States",
"human_eval": "1"
},
"llama": {
"pred": "The world famous corn belt is in the United States.",
"human_eval": "1"
},
"gpt": {
"pred": "The world famous corn belt is in the United States.",
"human_eval": "1"
}
},
{
"question": "who played lionel in as time goes by",
"answers": [
"Geoffrey Dyson Palmer, OBE",
"Geoffrey Dyson Palmer"
],
"source": "NaturalQuestions",
"flan": {
"pred": "James Mason",
"human_eval": "0"
},
"llama": {
"pred": "Lionel played by jeremy brett in as time goes by.",
"human_eval": "0"
},
"gpt": {
"pred": "Geoffrey Palmer played Lionel in As Time Goes By.",
"human_eval": "1"
}
},
{
"question": "what were the two causes of the dust bowl",
"answers": [
"severe drought"
],
"source": "NaturalQuestions",
"flan": {
"pred": "Dust bowl was caused by drought and overgrazing.",
"human_eval": "0"
},
"llama": {
"pred": "The two causes of the dust bowl were drought and poor farming practices.",
"human_eval": "1"
},
"gpt": {
"pred": "The two causes of the Dust Bowl were severe drought and poor farming practices.",
"human_eval": "1"
}
},
{
"question": "when did 10 shilling note go out of circulation",
"answers": [
"22 November 1970",
"1970"
],
"source": "NaturalQuestions",
"flan": {
"pred": "The 10 shilling note went out of circulation in the United Kingdom on 1 April 1966.",
"human_eval": "0"
},
"llama": {
"pred": "10 shilling note went out of circulation in 1994.",
"human_eval": "0"
},
"gpt": {
"pred": "The 10 shilling note went out of circulation in 1971.",
"human_eval": "0"
}
},
{
"question": "what is the share of agriculture in indian economy",
"answers": [
"17.32%",
"23%"
],
"source": "NaturalQuestions",
"flan": {
"pred": "Agriculture accounts for about 28% of India's GDP.",
"human_eval": "0"
},
"llama": {
"pred": "Agriculture is the share of agriculture in indian economy.",
"human_eval": "0"
},
"gpt": {
"pred": "The share of agriculture in the Indian economy is approximately 15%.",
"human_eval": "0"
}
},
{
"question": "who enforces the charter of rights and freedoms",
"answers": [
"Supreme Court of Canada",
"the courts",
"courts",
"The courts"
],
"source": "NaturalQuestions",
"flan": {
"pred": "The Canadian Human Rights Commission enforces the Charter of Rights and Freedoms.",
"human_eval": "0"
},
"llama": {
"pred": "The Supreme Court of Canada enforces the charter of rights and freedoms.",
"human_eval": "1"
},
"gpt": {
"pred": "The charter of rights and freedoms is enforced by the courts and law enforcement agencies in Canada.",
"human_eval": "1"
}
},
{
"question": "when does panic at the disco album come out",
"answers": [
"December 15, 2017"
],
"source": "NaturalQuestions",
"flan": {
"pred": "September 15, 2017",
"human_eval": "0"
},
"llama": {
"pred": "When does panic at the disco album come out?",
"human_eval": "0"
},
"gpt": {
"pred": "Panic at the Disco's latest album, \"Pray for the Wicked,\" was released on June 22, 2018.",
"human_eval": "0"
}
},
{
"question": "who won the medals in men's figure skating 2018",
"answers": [
"Yuzuru Hanyu",
"Javier Fern\u00e1ndez",
"Shoma Uno"
],
"source": "NaturalQuestions",
"flan": {
"pred": "Yuzuru Hanyu",
"human_eval": "1"
},
"llama": {
"pred": "Yuzuru Hanyu won the medals in men's figure skating 2018.",
"human_eval": "1"
},
"gpt": {
"pred": "Yuzuru Hanyu won the gold medal, Shoma Uno won the silver medal, and Javier Fernandez won the bronze medal in men's figure skating in 2018.",
"human_eval": "1"
}
},
{
"question": "when was the last time the crows were in the grand final",
"answers": [
"2017"
],
"source": "NaturalQuestions",
"flan": {
"pred": "2017",
"human_eval": "1"
},
"llama": {
"pred": "The last time the crows were in the grand final was in 2017.",
"human_eval": "1"
},
"gpt": {
"pred": "The last time the Crows were in the grand final was in 2017.",
"human_eval": "1"
}
},
{
"question": "where does the light reaction of photosynthesis occur",
"answers": [
"on the thylakoid membranes"
],
"source": "NaturalQuestions",
"flan": {
"pred": "in the thylakoid membranes",
"human_eval": "1"
},
"llama": {
"pred": "The light reaction of photosynthesis occurs in the chloroplast.",
"human_eval": "0"
},
"gpt": {
"pred": "The light reaction of photosynthesis occurs in the thylakoid membranes of the chloroplasts.",
"human_eval": "1"
}
},
{
"question": "who plays on the tv show the resident",
"answers": [
"Merrin Dungey",
"Emily VanCamp",
"Bruce Greenwood",
"Melina Kanakaredes",
"Manish Dayal",
"Matt Czuchry",
"Moran Atias",
"Shaunette Ren\u00e9e Wilson"
],
"source": "NaturalQuestions",
"flan": {
"pred": "James Deen",
"human_eval": "0"
},
"llama": {
"pred": "Emily VanCamp plays on the tv show the resident.",
"human_eval": "1"
},
"gpt": {
"pred": "Matt Czuchry plays on the TV show The Resident.",
"human_eval": "1"
}
},
{
"question": "when did the movie varsity blues come out",
"answers": [
"1999",
"January\u00a015,\u00a01999"
],
"source": "NaturalQuestions",
"flan": {
"pred": "October 12, 1984",
"human_eval": "0"
},
"llama": {
"pred": "The movie varsity blues came out in 1999.",
"human_eval": "1"
},
"gpt": {
"pred": "The movie Varsity Blues was released on January 15, 1999.",
"human_eval": "1"
}
},
{
"question": "who sang one bad apple spoils the bunch",
"answers": [
"The Osmonds"
],
"source": "NaturalQuestions",
"flan": {
"pred": "The Monkees",
"human_eval": "0"
},
"llama": {
"pred": "American country music singer Johnny Cash sang one bad apple spoils the bunch.",
"human_eval": "0"
},
"gpt": {
"pred": "The Osmonds sang \"One Bad Apple Spoils the Bunch.\"",
"human_eval": "1"
}
},
{
"question": "who is given credit for the gnu initiative",
"answers": [
"Richard Stallman"
],
"source": "NaturalQuestions",
"flan": {
"pred": "The GNU Initiative is given credit to Linus Torvalds.",
"human_eval": "0"
},
"llama": {
"pred": "Richard Stallman is given credit for the gnu initiative.",
"human_eval": "1"
},
"gpt": {
"pred": "Richard Stallman is given credit for the GNU initiative.",
"human_eval": "1"
}
},
{
"question": "where was the remake of dirty dancing filmed",
"answers": [
"High Hampton Inn in Cashiers",
"Hendersonville, North Carolina",
"western North Carolina"
],
"source": "NaturalQuestions",
"flan": {
"pred": "Lake Tahoe",
"human_eval": "0"
},
"llama": {
"pred": "The remake of dirty dancing was filmed in Lake Lure, North Carolina.",
"human_eval": "0"
},
"gpt": {
"pred": "The remake of Dirty Dancing was filmed in Asheville, North Carolina.",
"human_eval": "1"
}
},
{
"question": "when did amnesia the dark descent come out",
"answers": [
"8 September 2010"
],
"source": "NaturalQuestions",
"flan": {
"pred": "January 27, 2010",
"human_eval": "0"
},
"llama": {
"pred": "Amnesia the dark descent came out in 2010.",
"human_eval": "1"
},
"gpt": {
"pred": "Amnesia: The Dark Descent was released on September 8, 2010.",
"human_eval": "1"
}
},
{
"question": "when did new york stop using the electric chair",
"answers": [
"1963",
"1972"
],
"source": "NaturalQuestions",
"flan": {
"pred": "January 1, 1977",
"human_eval": "0"
},
"llama": {
"pred": "New York stopped using the electric chair in 2007.",
"human_eval": "0"
},
"gpt": {
"pred": "New York stopped using the electric chair as a method of execution in 1995.",
"human_eval": "0"
}
},
{
"question": "where was the new pete's dragon filmed",
"answers": [
"New Zealand"
],
"source": "NaturalQuestions",
"flan": {
"pred": "Vancouver Island",
"human_eval": "0"
},
"llama": {
"pred": "The new pete's dragon was filmed in New Zealand.",
"human_eval": "1"
},
"gpt": {
"pred": "The new Pete's Dragon was filmed in New Zealand.",
"human_eval": "1"
}
},
{
"question": "who played anna in once upon a time",
"answers": [
"Elizabeth Dean Lail"
],
"source": "NaturalQuestions",
"flan": {
"pred": "Jennifer Morrison",
"human_eval": "0"
},
"llama": {
"pred": "Jennifer Morrison played anna in once upon a time.",
"human_eval": "0"
},
"gpt": {
"pred": "Elizabeth Lail played Anna in Once Upon a Time.",
"human_eval": "1"
}
},
{
"question": "where did the battle of issus take place",
"answers": [
"southern Anatolia",
"in southern Anatolia"
],
"source": "NaturalQuestions",
"flan": {
"pred": "The battle of Issus took place in the Isthmus of Suez.",
"human_eval": "0"
},
"llama": {
"pred": "The battle of issus took place in Syria.",
"human_eval": "0"
},
"gpt": {
"pred": "The Battle of Issus took place in present-day Turkey.",
"human_eval": "1"
}
},
{
"question": "when did world war 2 officially start and end",
"answers": [
"1939",
"1945",
"2\u00a0September\u00a01945",
"1\u00a0September\u00a01939"
],
"source": "NaturalQuestions",
"flan": {
"pred": "World War II officially started on 1 September 1939 and ended on 2 May 1945.",
"human_eval": "0"
},
"llama": {
"pred": "World war 2 officially started in 1939 and ended in 1945.",
"human_eval": "1"
},
"gpt": {
"pred": "World War 2 officially started on September 1, 1939, and ended on September 2, 1945.",
"human_eval": "1"
}
},
{
"question": "who does demetrius love in a midsummer night dream",
"answers": [
"Helena",
"Hermia"
],
"source": "NaturalQuestions",
"flan": {
"pred": "Demetrius loves Hermia",
"human_eval": "1"
},
"llama": {
"pred": "Demetrius loves Hermia in a midsummer night dream.",
"human_eval": "1"
},
"gpt": {
"pred": "Demetrius initially loves Hermia in A Midsummer Night's Dream.",
"human_eval": "1"
}
},
{
"question": "civil war what did the north fight for",
"answers": [
"maintaining the republic",
"loyalty to the U.S. Constitution"
],
"source": "NaturalQuestions",
"flan": {
"pred": "The North fought for the preservation of the Union.",
"human_eval": "1"
},
"llama": {
"pred": "The north fought for the abolition of slavery.",
"human_eval": "1"
},
"gpt": {
"pred": "The North fought for the preservation of the Union and the abolition of slavery during the Civil War.",
"human_eval": "1"
}
},
{
"question": "who won the wwe championship elimination chamber 2018",
"answers": [
"Roman Reigns"
],
"source": "NaturalQuestions",
"flan": {
"pred": "Roman Reigns won the wwe championship elimination chamber 2018.",
"human_eval": "1"
},
"llama": {
"pred": "AJ Styles won the wwe championship elimination chamber 2018.",
"human_eval": "0"
},
"gpt": {
"pred": "Bray Wyatt won the WWE Championship in the Elimination Chamber 2018.",
"human_eval": "0"
}
},
{
"question": "a request to the supreme court that it review a case that was already decided is made via a(n)",
"answers": [
"a writ of certiorari",
"writ of certiorari"
],
"source": "NaturalQuestions",
"flan": {
"pred": "writ of certiorari",
"human_eval": "1"
},
"llama": {
"pred": "a petition for a writ of certiorari is made via a petition for a writ of certiorari.",
"human_eval": "1"
},
"gpt": {
"pred": "A request to the supreme court that it review a case that was already decided is made via a petition for a writ of certiorari.",
"human_eval": "1"
}
},
{
"question": "who wrote the song be thankful for what you got",
"answers": [
"William DeVaughn"
],
"source": "NaturalQuestions",
"flan": {
"pred": "John Lennon",
"human_eval": "0"
},
"llama": {
"pred": "The song be thankful for what you got was written by William DeVaughn.",
"human_eval": "1"
},
"gpt": {
"pred": "William DeVaughn wrote the song \"Be Thankful for What You Got.\"",
"human_eval": "1"
}
},
{
"question": "where are antibodies made and by what type of lymphocyte",
"answers": [
"B cells",
"lymph"
],
"source": "NaturalQuestions",
"flan": {
"pred": "Antibodies are made by B lymphocytes in the spleen.",
"human_eval": "1"
},
"llama": {
"pred": "Antibodies are made by B lymphocytes.",
"human_eval": "1"
},
"gpt": {
"pred": "Antibodies are made in the bone marrow and by B lymphocytes.",
"human_eval": "1"
}
},
{
"question": "when did cristiano ronaldo go to manchester united",
"answers": [
"2003",
"at age 18 in 2003"
],
"source": "NaturalQuestions",
"flan": {
"pred": "Cristiano Ronaldo went to Manchester United in 2009",
"human_eval": "0"
},
"llama": {
"pred": "Cristiano Ronaldo went to Manchester United in 2003.",
"human_eval": "1"
},
"gpt": {
"pred": "Cristiano Ronaldo went to Manchester United in 2003.",
"human_eval": "1"
}
},
{
"question": "what act did parliament pass after the boston tea party",
"answers": [
"The Intolerable Acts",
"Intolerable Acts",
"the Coercive Acts"
],
"source": "NaturalQuestions",
"flan": {
"pred": "The Tea Act of 1773",
"human_eval": "0"
},
"llama": {
"pred": "The act after the Boston tea party was the Boston port act.",
"human_eval": "0"
},
"gpt": {
"pred": "The Parliament passed the Coercive Acts, also known as the Intolerable Acts, after the Boston Tea Party.",
"human_eval": "1"
}
},
{
"question": "what is the most fundamental unit of life according to the cell theory",
"answers": [
"cells"
],
"source": "NaturalQuestions",
"flan": {
"pred": "The cell is the most fundamental unit of life according to the cell theory.",
"human_eval": "1"
},
"llama": {
"pred": "The most fundamental unit of life according to the cell theory is the cell.",
"human_eval": "1"
},
"gpt": {
"pred": "The most fundamental unit of life according to the cell theory is the cell.",
"human_eval": "1"
}
},
{
"question": "who played stonewall jackson in gods and generals",
"answers": [
"Stephen Lang"
],
"source": "NaturalQuestions",
"flan": {
"pred": "James Marsden",
"human_eval": "0"
},
"llama": {
"pred": "Jeff Daniels played stonewall jackson in gods and generals.",
"human_eval": "0"
},
"gpt": {
"pred": "Stephen Lang played Stonewall Jackson in Gods and Generals.",
"human_eval": "1"
}
},
{
"question": "all time highest goal scorer in spain national team",
"answers": [
"David Villa"
],
"source": "NaturalQuestions",
"flan": {
"pred": "Lionel Messi is the all time highest goal scorer in Spain national team",
"human_eval": "0"
},
"llama": {
"pred": "David Villa is the all time highest goal scorer in spain national team.",
"human_eval": "1"
},
"gpt": {
"pred": "David Villa is the all-time highest goal scorer in the Spain national team.",
"human_eval": "1"
}
},
{
"question": "colby chees is named after a town in what state",
"answers": [
"Wisconsin"
],
"source": "NaturalQuestions",
"flan": {
"pred": "Pennsylvania",
"human_eval": "0"
},
"llama": {
"pred": "Colby cheese is named after a town in Wisconsin.",
"human_eval": "1"
},
"gpt": {
"pred": "Colby cheese is named after the town of Colby, Wisconsin.",
"human_eval": "1"
}
},
{
"question": "what year did the price is right first air",
"answers": [
"November 26, 1956",
"1956"
],
"source": "NaturalQuestions",
"flan": {
"pred": "The Price is Right first aired on CBS on March 1, 1956",
"human_eval": "0"
},
"llama": {
"pred": "The price is right first aired in 1972.",
"human_eval": "0"
},
"gpt": {
"pred": "The Price is Right first aired in 1956.",
"human_eval": "1"
}
},
{
"question": "when did the united states start using the death penalty",
"answers": [
"the beginning",
"1608"
],
"source": "NaturalQuestions",
"flan": {
"pred": "1789",
"human_eval": "0"
},
"llama": {
"pred": "The United States started using the death penalty in 1976.",
"human_eval": "0"
},
"gpt": {
"pred": "The United States started using the death penalty in the early 1600s.",
"human_eval": "1"
}
},
{
"question": "what year did return of the mack come out",
"answers": [
"18\u00a0March\u00a01996",
"March 1996",
"1996"
],
"source": "NaturalQuestions",
"flan": {
"pred": "Return of the Mack was released in 1986",
"human_eval": "0"
},
"llama": {
"pred": "Return of the mack came out in 1990.",
"human_eval": "0"
},
"gpt": {
"pred": "\"Return of the Mack\" was released in 1996.",
"human_eval": "1"
}
},
{
"question": "character in macbeth who is murdered and appears as a ghost",
"answers": [
"Lord Banquo",
"Banquo"
],
"source": "NaturalQuestions",
"flan": {
"pred": "Malcolm",
"human_eval": "0"
},
"llama": {
"pred": "Macbeth is the character in macbeth who is murdered and appears as a ghost.",
"human_eval": "0"
},
"gpt": {
"pred": "Banquo is the character in Macbeth who is murdered and appears as a ghost.",
"human_eval": "1"
}
},