-
Notifications
You must be signed in to change notification settings - Fork 189
/
task073_commonsenseqa_answer_generation.json
8594 lines (8594 loc) · 361 KB
/
task073_commonsenseqa_answer_generation.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
{
"Contributors": [
"Amirreza Mirzaei"
],
"Source": [
"commonsenseqa"
],
"URL": [
"https://www.tau-nlp.org/commonsenseqa"
],
"Categories": [
"Question Answering"
],
"Reasoning": [
"Commonsense Reasoning"
],
"Definition": [
"You are given a question and some answer options (associated with \"A\", \"B\", \"C\", \"D\"). You should choose the correct answer based on commonsense knowledge. Avoid answering questions based on associations, the set of answers are chosen deliberately to capture common sense beyond associations. Do not generate anything else apart from one of the following characters: 'A', 'B, 'C', 'D', 'E' and only give one answer for each question."
],
"Input_language": [
"English"
],
"Output_language": [
"English"
],
"Instruction_language": [
"English"
],
"Domains": [
"Commonsense -> Concepts and Relations"
],
"Positive Examples": [
{
"input": "Where would you find magazines along side many other printed works?\n(A)doctor (B)bookstore (C)market (D)train station (E)mortuary",
"output": "B",
"explanation": "libraries contains magazines and many other printed works."
},
{
"input": "What island country is ferret popular?\n(A)own home (B)north carolina (C)great britain (D)hutch (E)outdoors",
"output": "C",
"explanation": "great britain is the only island country in the choices."
}
],
"Negative Examples": [
{
"input": "Where would you find magazines along side many other printed works?\n(A)doctor (B)bookstore (C)market (D)train station (E)mortuary",
"output": "I dont know.",
"explanation": "Do not generate anything else apart from one of the following characters: 'A', 'B, 'C', 'D', 'E'."
},
{
"input": "What island country is ferret popular?\n(A)own home (B)north carolina (C)great britain (D)hutch (E)outdoors",
"output": "B,C",
"explanation": "Only one of the following options ('A', 'B', 'C', 'D' or 'E') is allowed to be the answer. Multiple options can not be correct. The correct answer here would have been 'C'."
}
],
"Instances": [
{
"id": "task073-ea11a1ecfc2e47fc9d2d6bd0b2194697",
"input": "A revolving door is convenient for two direction travel, but it also serves as a security measure at a what?\n(A)bank (B)library (C)department store (D)mall (E)new york",
"output": [
"A"
]
},
{
"id": "task073-383693cb7dd647f4849c555fef6ee42f",
"input": "What do people aim to do at work?\n(A)complete job (B)learn from each other (C)kill animals (D)wear hats (E)talk to each other",
"output": [
"A"
]
},
{
"id": "task073-c729535e38db4a5b9e770fab3db7b438",
"input": "Where are you likely to find a hamburger?\n(A)fast food restaurant (B)pizza (C)ground up dead cows (D)mouth (E)cow carcus",
"output": [
"A"
]
},
{
"id": "task073-a3c7c70cd6c741579a9baf00ea808a98",
"input": "James was looking for a good place to buy farmland. Where might he look?\n(A)midwest (B)countryside (C)estate (D)farming areas (E)illinois",
"output": [
"A"
]
},
{
"id": "task073-4d312e4b1e0249ea9511dcc6ad9e929b",
"input": "In what Spanish speaking North American country can you get a great cup of coffee?\n(A)mildred's coffee shop (B)mexico (C)diner (D)kitchen (E)canteen",
"output": [
"B"
]
},
{
"id": "task073-74c40e47c86144e5a3b026ce07cf73e4",
"input": "What do animals do when an enemy is approaching?\n(A)feel pleasure (B)procreate (C)pass water (D)listen to each other (E)sing",
"output": [
"D"
]
},
{
"id": "task073-72e23a7a03dc45a9a30a438271dea121",
"input": "Reading newspaper one of many ways to practice your what?\n(A)literacy (B)knowing how to read (C)money (D)buying (E)money bank",
"output": [
"A"
]
},
{
"id": "task073-fa1b74e91f5646bc9dad17abe483de7f",
"input": "What do people typically do while playing guitar?\n(A)cry (B)hear sounds (C)singing (D)arthritis (E)making music",
"output": [
"C"
]
},
{
"id": "task073-827d6f8d7d484f29a09969fa475eb93f",
"input": "What would vinyl be an odd thing to replace?\n(A)pants (B)record albums (C)record store (D)cheese (E)wallpaper",
"output": [
"E"
]
},
{
"id": "task073-fb26b00094b641a3b120c331a984bc08",
"input": "If you want harmony, what is something you should try to do with the world?\n(A)take time (B)make noise (C)make war (D)make peace (E)make haste",
"output": [
"D"
]
},
{
"id": "task073-41fdc192bfd94e91b988dd3ed73ec1a7",
"input": "Where does a heifer's master live?\n(A)farm house (B)barnyard (C)stockyard (D)slaughter house (E)eat cake",
"output": [
"A"
]
},
{
"id": "task073-2794892831ff4323ae1faf057ec630c9",
"input": "Aside from water and nourishment what does your dog need?\n(A)bone (B)charm (C)petted (D)lots of attention (E)walked",
"output": [
"D"
]
},
{
"id": "task073-c65dae0d1acf403bac3e49f4f3a42eaa",
"input": "Janet was watching the film because she liked what?\n(A)erection (B)laughter (C)being entertained (D)fear (E)bordem",
"output": [
"C"
]
},
{
"id": "task073-f0e299b08eb64ce49dc763d51dbdc431",
"input": "What are you waiting alongside with when you're in a reception area?\n(A)motel (B)chair (C)hospital (D)people (E)hotels",
"output": [
"D"
]
},
{
"id": "task073-6bbd6086c81a42178c8144bf6192ed7a",
"input": "When drinking booze what can you do to stay busy?\n(A)reach tentative agreement (B)stay in bed (C)stop bicycle (D)examine thing (E)suicide",
"output": [
"D"
]
},
{
"id": "task073-3af34165311040b9918f5fb8afd78309",
"input": "A fencing thrust with a sharp sword towards a person would result in what?\n(A)injury (B)small cuts (C)fever (D)competition (E)puncture wound",
"output": [
"E"
]
},
{
"id": "task073-83544705d0794eafbb96350d6388699c",
"input": "Unlike a spider and his many sight seers, people only have what?\n(A)tongues (B)names (C)brains (D)feelings (E)two eyes",
"output": [
"E"
]
},
{
"id": "task073-1d5d546c15a44be6b62423f1078de4b7",
"input": "Where do adults use glue sticks?\n(A)classroom (B)desk drawer (C)at school (D)office (E)kitchen drawer",
"output": [
"D"
]
},
{
"id": "task073-ff652d8733fb4157b756468f562c819e",
"input": "What could go on top of wood?\n(A)lumberyard (B)synagogue (C)floor (D)carpet (E)hardware store",
"output": [
"D"
]
},
{
"id": "task073-8375635fcace461a92cbf6ed52e76203",
"input": "The artist was sitting quietly pondering, then suddenly he began to paint when what struck him?\n(A)sadness (B)anxiety (C)inspiration (D)discomfort (E)insights",
"output": [
"C"
]
},
{
"id": "task073-382edcc6442f4f71b2d49610acc3d16c",
"input": "Though the thin film seemed fragile, for it's intended purpose it was actually nearly what?\n(A)indestructible (B)durable (C)undestroyable (D)indestructible (E)unbreakable",
"output": [
"D"
]
},
{
"id": "task073-7df4422b347944eebdd46da02b8c87eb",
"input": "Where could you find a toilet that only friends can use?\n(A)rest area (B)school (C)stadium (D)apartment (E)hospital",
"output": [
"D"
]
},
{
"id": "task073-4c169cdf296641568605cedf15cc9a20",
"input": "What is someone who isn't clever, bright, or competent called?\n(A)clumsy (B)ineffectual (C)dull (D)clumsy (E)stupid",
"output": [
"E"
]
},
{
"id": "task073-9a8dd656317744dabe3bfebd0d3f9e24",
"input": "When wildlife reproduce we often refer to what comes out as what?\n(A)raise children (B)have children (C)photo copy (D)offspring (E)accidently got pregnant somehow",
"output": [
"D"
]
},
{
"id": "task073-55898f4dd473465dbccfd5ecc7ca30f3",
"input": "The weasel was becoming a problem, it kept getting into the chicken eggs kept in the what?\n(A)forrest (B)barn (C)public office (D)out of doors (E)freezer",
"output": [
"B"
]
},
{
"id": "task073-371b93ebfd7e4e7cb0ffd5fc72682515",
"input": "Blue read material outside of his comfort zone because he wanted to gain what?\n(A)new perspective (B)entertained (C)understanding (D)hunger (E)tired eyes",
"output": [
"A"
]
},
{
"id": "task073-3f45919dbc6e435ba74526621357448c",
"input": "After he got hired he hoped for success at his what?\n(A)vocation (B)new job (C)michigan (D)working hard (E)manual",
"output": [
"B"
]
},
{
"id": "task073-2cbaedb1f8f64049a50d382f6ccdb9c7",
"input": "Committing perjury is a serious what?\n(A)indictment (B)crime (C)violence (D)lie (E)go to jail",
"output": [
"B"
]
},
{
"id": "task073-bd7d8b89f8964b2a85b5ffc021398128",
"input": "If you are prone to postpone work what will you have to do in order to finish on time?\n(A)eat (B)hasten (C)antedate (D)bring forward (E)advance",
"output": [
"B"
]
},
{
"id": "task073-f3f794e93d364ed282963972717acad6",
"input": "James wanted to find an old underground map from the 50s. Where might he look for one?\n(A)library (B)subway station (C)county engineer's office (D)super market (E)home",
"output": [
"A"
]
},
{
"id": "task073-51eae073c17344b38e8f5f07ec9c7fde",
"input": "Sean was in a rush to get home, but the light turned yellow and he was forced to do what?\n(A)take time (B)dawdle (C)go slowly (D)ocean (E)slow down",
"output": [
"E"
]
},
{
"id": "task073-a4d84552eac64f139738eb35cd7a24cc",
"input": "Where would a person be doing when having to wait their turn?\n(A)have patience (B)get in line (C)sing (D)stand in line (E)turn left",
"output": [
"D"
]
},
{
"id": "task073-e4b5f4ff7e824287ab4eb8bff7ccd6d3",
"input": "She was always helping at the senior center, it brought her what?\n(A)satisfaction (B)heart (C)feel better (D)pay (E)happiness",
"output": [
"E"
]
},
{
"id": "task073-861b4e57668e44ca903d41e0330239eb",
"input": "The lock kept the steering wheel from moving, but the thief still took his chances and began to work on the what?\n(A)keep cloesd (B)train (C)ignition switch (D)drawer (E)firearm",
"output": [
"C"
]
},
{
"id": "task073-149737721bfd4115b55d7a3444af1fc9",
"input": "Who is a police officer likely to work for?\n(A)beat (B)direct traffic (C)city (D)street (E)president",
"output": [
"C"
]
},
{
"id": "task073-22d33313990e4d57bef6306f97fe9c22",
"input": "If you have leftover cake, where would you put it?\n(A)quandry (B)refrigerator (C)oven (D)night stand (E)bakery",
"output": [
"B"
]
},
{
"id": "task073-3b694954d2614a059837d2c4446492f1",
"input": "A human wants to submerge himself in water, what should he use?\n(A)whirlpool bath (B)coffee cup (C)cup (D)soft drink (E)puddle",
"output": [
"A"
]
},
{
"id": "task073-d7464f321998433b93a4dff53dd0ab09",
"input": "Where is a doormat likely to be in front of?\n(A)facade (B)front door (C)doorway (D)entrance porch (E)hallway",
"output": [
"B"
]
},
{
"id": "task073-47bfa75ee5e54ea1bddeb8fbaca2d091",
"input": "Bob the lizard lives in a warm place with lots of water. Where does he probably live?\n(A)rock (B)tropical rainforest (C)jazz club (D)new mexico (E)rocky places",
"output": [
"B"
]
},
{
"id": "task073-bed936ce285941259edeee0ad714a277",
"input": "August needed money because he was afraid that he'd be kicked out of his house. What did he need money to do?\n(A)control people (B)pay bills (C)hurt people (D)buy food (E)get things",
"output": [
"B"
]
},
{
"id": "task073-38c9296aa70e422eb4ec8b62cbce1f8f",
"input": "He needed more information to fix it, so he consulted the what?\n(A)chickens (B)google (C)newspaper (D)online (E)manual",
"output": [
"E"
]
},
{
"id": "task073-4aca41e950244ea4bc77b7fb60823315",
"input": "Where can you put a picture frame when it's not hung vertically?\n(A)art show (B)wall (C)newspaper (D)car (E)table",
"output": [
"E"
]
},
{
"id": "task073-063180f245454e15b6cae73ef938b8a5",
"input": "James knew that he shouldn't have been buying beer for minors. He didn't even get paid for it. Why was this bad?\n(A)lose money (B)fun (C)have no money (D)broken law (E)relaxation",
"output": [
"D"
]
},
{
"id": "task073-f4a8f2fc12f446049227d1e50df93cec",
"input": "What is the result of applying for job?\n(A)anxiety and fear (B)increased workload (C)praise (D)less sleep (E)being employed",
"output": [
"E"
]
},
{
"id": "task073-4a72fc70f8fb43e1aae89fa943d34f80",
"input": "What must someone do before they shop?\n(A)get money (B)have money (C)bring cash (D)go to market (E)bring cash",
"output": [
"A"
]
},
{
"id": "task073-ad1b7b7afd434ee3af2681b9705413b7",
"input": "Because John was first violin, he had to bring something important to work ever day. What did he need to bring to work?\n(A)music store (B)obesity (C)symphony orchestra (D)ochestra (E)violin case",
"output": [
"E"
]
},
{
"id": "task073-0ec39edc952b40db88e7a74bbb08cc0f",
"input": "What is a place that usually does not have an elevator and that sometimes has a telephone book?\n(A)at hotel (B)kitchen (C)library (D)telephone booth (E)house",
"output": [
"E"
]
},
{
"id": "task073-2cf3a86d424d4d389996c06c3549dc2e",
"input": "Who is likely to be excited about a crab?\n(A)fish market (B)pet shop (C)fishmongers (D)intertidal zone (E)obesity",
"output": [
"C"
]
},
{
"id": "task073-407389e08909421f860055262c486e64",
"input": "Where can a human find clothes that aren't pants?\n(A)pants shop (B)on planet earth (C)dress shop (D)school (E)train wreck",
"output": [
"C"
]
},
{
"id": "task073-c1051b211da34587bca4bdaa31992e98",
"input": "If I was getting drunk, and people couldn't understand me, what might I be having?\n(A)a seizure (B)slurred speech (C)death (D)forgetfulness (E)pass out",
"output": [
"B"
]
},
{
"id": "task073-76005363606f428a86f7de00b9eee1b6",
"input": "When a person is beginning work, what are they building?\n(A)time (B)accomplishing (C)working (D)momentum (E)tiredness",
"output": [
"D"
]
},
{
"id": "task073-d319a4e93e3949b2b2bdec6ccfbfa068",
"input": "A child wants to play, what would they likely want?\n(A)fall down (B)breathe (C)play tag (D)be dismembered by a chainsaw (E)become adult",
"output": [
"C"
]
},
{
"id": "task073-c2caf40ff8364532a2a59799d814de0c",
"input": "Talking to the same person about the same thing over and over again is something someone can what?\n(A)social life (B)friendship (C)eye contact (D)get tired of (E)learn lessons from",
"output": [
"D"
]
},
{
"id": "task073-d8dd850de9994cdb8777de91eaa53524",
"input": "The teacher doesn't tolerate noise during a test in their what?\n(A)movie theatre (B)bowling alley (C)factory (D)store (E)classroom",
"output": [
"E"
]
},
{
"id": "task073-f1076883477946c4ac48209030aa9cc0",
"input": "The freeway had no traffic and few buildings, where is it?\n(A)california (B)countryside (C)big town (D)florida (E)america",
"output": [
"B"
]
},
{
"id": "task073-d09814d18d5c4695860c9e3859e4eac8",
"input": "Where would you go if you wanted to have fun with a few people?\n(A)watching television (B)good (C)cinema (D)friend's house (E)fairgrounds",
"output": [
"D"
]
},
{
"id": "task073-bb433423d1a34e81827d2d6962efa95a",
"input": "If there is a place that is hot and arid, what could it be?\n(A)bland (B)lifeless (C)sandy (D)neutral (E)freezing",
"output": [
"B"
]
},
{
"id": "task073-b940ded32b264512adee63b496cc34c8",
"input": "What is likely to satisfy someone's curiosity?\n(A)hear news (B)read book (C)see favorite show (D)comedy show (E)go somewhere",
"output": [
"A"
]
},
{
"id": "task073-a06983cefc0b484d8210aa700aae4fd4",
"input": "If you are in a bar in a glove shaped state where are you?\n(A)in my pocket (B)michigan (C)new york city (D)restaurant (E)public house",
"output": [
"B"
]
},
{
"id": "task073-754b2b3ec5c94d90b95b869429a26804",
"input": "Where would a computer user be using their own computer?\n(A)hell (B)school (C)indoors (D)internet cafe (E)house",
"output": [
"E"
]
},
{
"id": "task073-353c657ca03c4ad0811702af1958ec5f",
"input": "Crabs live in what sort of environment?\n(A)maritime (B)bodies of water (C)saltwater (D)galapagos (E)fish market",
"output": [
"C"
]
},
{
"id": "task073-4b2c26b200a24829a621b7f3bb9ffaaf",
"input": "Where can you find a snake in tall grass?\n(A)tree (B)in a jar (C)pet shops (D)feild (E)tropical forest",
"output": [
"D"
]
},
{
"id": "task073-2e7a16a23e4143688bae135afbc298e3",
"input": "What is a place that has a bench nestled in trees?\n(A)state park (B)bus stop (C)bus depot (D)statue (E)train station",
"output": [
"A"
]
},
{
"id": "task073-165eb22b843a4337a0fe11b70f42b0c8",
"input": "Where is a human likely to go as a result of being hungry?\n(A)eat in restaurant (B)make bread (C)have lunch (D)cook dinner (E)friends house",
"output": [
"A"
]
},
{
"id": "task073-3e6f6e88c66a4ae4a7a87bbae79ebf52",
"input": "He was beginning to regret taking the fight when he saw how what his opponent was?\n(A)fun (B)joy (C)satisfaction (D)confident (E)pride",
"output": [
"D"
]
},
{
"id": "task073-432bc16a6ef54286892282df5de519e3",
"input": "Where would you find a single shower curtain being used?\n(A)bathtub (B)washing area (C)hotel (D)shower stall (E)department store",
"output": [
"A"
]
},
{
"id": "task073-8839e771d7cc4d90b12e19ba983ecdb2",
"input": "Where is a good idea but not required to have a fire extinguisher?\n(A)school bus (B)boat (C)house (D)hospital (E)school",
"output": [
"C"
]
},
{
"id": "task073-698f1b1deea94572a23eba599b171929",
"input": "What continent has the most castles?\n(A)fairy tale (B)edinburgh (C)germany (D)europe (E)antarctica",
"output": [
"D"
]
},
{
"id": "task073-54e713846d46406cb0612f3a49a5d0d6",
"input": "If you have to read a book that is very dry and long you may become what?\n(A)have time (B)boring (C)learn new (D)enjoyable (E)bored",
"output": [
"E"
]
},
{
"id": "task073-cc9305a77ec34d3ba12cc7eb77cc2949",
"input": "Sally used a clipboard to hold her papers while she read off names at the beginning of the day. Where might she work?\n(A)desk (B)windows 95 (C)office supply store (D)see work (E)school",
"output": [
"E"
]
},
{
"id": "task073-193caa422d3946c1b1e81e7e2295fbeb",
"input": "The kids didn't clean up after they had done what?\n(A)learn things (B)play games (C)disneyland (D)play with toys (E)talking",
"output": [
"D"
]
},
{
"id": "task073-69f9cb5cf25e41ec843f7dfd2672b375",
"input": "Despite the name a pawn can be quite versatile, all the parts are important in a what?\n(A)chess game (B)scheme (C)chess set (D)checkers (E)north carolina",
"output": [
"A"
]
},
{
"id": "task073-f11e9b95816045c6bcb30c6d6b160a0b",
"input": "What would not be true about a basketball if it had a hole in it but it did not lose its general shape?\n(A)punctured (B)popular in america (C)full of air (D)gone (E)round",
"output": [
"C"
]
},
{
"id": "task073-58d1dd6dea5e4a2eb23314982878b50c",
"input": "If you are awaking multiple times throughout the night because a lot is on your mind, what is a likely cause?\n(A)irritability (B)depression (C)getting out of bed (D)happiness (E)discomfort",
"output": [
"B"
]
},
{
"id": "task073-413d79933a2345a2b2faecccdeecdcf4",
"input": "Where does a wild bird usually live?\n(A)cage (B)sky (C)countryside (D)desert (E)windowsill",
"output": [
"C"
]
},
{
"id": "task073-b4ea38ab254544d0857371e796bcc6c4",
"input": "Where would you expect to find white mice?\n(A)bell cat (B)bush (C)attic (D)countryside (E)laboratory",
"output": [
"E"
]
},
{
"id": "task073-58ddd49d60954fe494705e5b3e7bc898",
"input": "John felt that his actions were fate. Harry said that he could have always made a different what?\n(A)free will (B)choice (C)will (D)alcohol (E)freedom",
"output": [
"B"
]
},
{
"id": "task073-24051d746d1746fcba20c33074641260",
"input": "What could committing murder prevent someone from doing?\n(A)go to jail (B)cry (C)find god (D)guilty conscience (E)problems",
"output": [
"C"
]
},
{
"id": "task073-7ba196f5efc04ec3b58113c0df036686",
"input": "George didn't have a car, but he still had his two feet. His socks were smelly and his soles were blistered, but that didn't matter. He could still do what?\n(A)michigan (B)walk (C)stay still (D)stink (E)hands",
"output": [
"B"
]
},
{
"id": "task073-5a009537a2cc427dbfdf4d505659e675",
"input": "A crane uses many a steel cable when working a what?\n(A)abaft (B)ship (C)winch (D)construction site (E)building",
"output": [
"D"
]
},
{
"id": "task073-8ec0e7c8256f4547b525a5d6b428b7a4",
"input": "What is the main purpose of farmers?\n(A)raise cattle (B)grow corn (C)farm land (D)drive tractors (E)supply food",
"output": [
"E"
]
},
{
"id": "task073-e8ade02a8d6440babd4c36c5cf8a4146",
"input": "Where can I put this penny to save for later?\n(A)piggy bank (B)wallet (C)toy (D)ground (E)pocket",
"output": [
"A"
]
},
{
"id": "task073-b22b5e2ec7b644278a67dceaef92cfe1",
"input": "Where would you put uncooked crab meat?\n(A)wharf (B)red lobster (C)tidepools (D)boss's office (E)stew pot",
"output": [
"E"
]
},
{
"id": "task073-0e0874b24f0e4f899214eb5a2c6ea51a",
"input": "The man had a fear of illness, so he never visited friends who were a what?\n(A)sick person (B)hospital (C)elderly person (D)graveyard (E)doctor's office",
"output": [
"A"
]
},
{
"id": "task073-a516acf989494aa9ac0c62125b405c39",
"input": "Where would you put pans if you want to bring them with you?\n(A)cooking (B)cook food (C)kitchen (D)backpack (E)drawer",
"output": [
"D"
]
},
{
"id": "task073-8e0c2504b88543939b504d3ff030f15c",
"input": "If you're remembering something, it's because of your what of it to begin with?\n(A)knowledge (B)knowing (C)forgetful (D)pleasure (E)depression",
"output": [
"B"
]
},
{
"id": "task073-5902b3cc6520491990b49d0e2421cd91",
"input": "Which large land mass is home to the most monkeys?\n(A)amazon basin (B)friend's house (C)lift number 3 (D)research laboratory (E)african continent",
"output": [
"E"
]
},
{
"id": "task073-e688efec37964ed0a47ced05fced23d1",
"input": "Friday was James's 5th Anniversary. They planned on going to bed early so that they could spend a long time doing what?\n(A)rest (B)insomnia (C)making love (D)sleeping in (E)texting",
"output": [
"C"
]
},
{
"id": "task073-87828f1cde7741209e5b5da628d512b6",
"input": "The teens were trying to hide that they get drink, but when they walked in the door their what gave it away?\n(A)health (B)fall down (C)stagger (D)get arrested (E)vomit",
"output": [
"C"
]
},
{
"id": "task073-a77cafdae8164dfea5fc17f33b6c8e85",
"input": "You'll find a landing at the top of what?\n(A)ocean (B)apartment building (C)stairwell (D)airport (E)room",
"output": [
"C"
]
},
{
"id": "task073-1635e4cd083e4262908cb039ca99450a",
"input": "Anybody could be hired in the kitchen, what was needed of them?\n(A)forget (B)oil squeaky hinge (C)question authority (D)wash dishes (E)oik squeaky hinge",
"output": [
"D"
]
},
{
"id": "task073-aca90cb975ec458386d32811fe2d9f1b",
"input": "Where can you find a number of wind instruments together in public?\n(A)music store (B)create music (C)zoo (D)music room (E)symphony",
"output": [
"E"
]
},
{
"id": "task073-f39ec1539789404a8ca64b733c0767e6",
"input": "A mountie got off at a subway stop. What city might he be in?\n(A)urban area (B)metropolis (C)chicago (D)new york city (E)toronto",
"output": [
"E"
]
},
{
"id": "task073-d7bf2d098e5947029285ab4abaea0982",
"input": "What do you want someone to do when you illustrate point?\n(A)did not understand (B)accepting (C)make clear (D)understood (E)understanding",
"output": [
"E"
]
},
{
"id": "task073-374d25738ddb4d0dbffd738cff903844",
"input": "Billy set aside a block of time for having fun after work. Why might he do this?\n(A)happiness (B)stress relief (C)pleasure (D)ocean (E)may laugh",
"output": [
"B"
]
},
{
"id": "task073-548387b36a7a4ce8877a832f018d772c",
"input": "The man in the white suit was very lazy. He did nothing useful. Meanwhile, the ban in the blue had put in effort and was very what?\n(A)restless (B)active (C)lazybutt (D)productive (E)hard work",
"output": [
"D"
]
},
{
"id": "task073-8c3ec91997fd46659b8d496630be0906",
"input": "What would you be unable to do if you have too much greed?\n(A)keep things (B)make friends (C)play poker (D)conquer opponent (E)lie",
"output": [
"B"
]
},
{
"id": "task073-e7e64d14ca1d437a89ef2485a3c59526",
"input": "It was a long trip from the farm, so he stayed in a hotel when he arrived at the what?\n(A)bed away from home (B)wwii bunker (C)resort (D)las vegas (E)city",
"output": [
"E"
]
},
{
"id": "task073-503d240763d74266aad5cbd1fbc63bcf",
"input": "I did not need a servant. I was not a what?\n(A)freedom (B)rich person (C)hired help (D)in charge (E)busy",
"output": [
"B"
]
},
{
"id": "task073-c5c88ed4ea284f2b956fe6f5f5b14573",
"input": "How would you get from one side of a canal to another?\n(A)michigan (B)amsterdam (C)venice (D)bridge (E)barges to travel on",
"output": [
"D"
]
},
{
"id": "task073-b71c2eb5b7a744e3a61a218531e1bba8",
"input": "When learning about the world and different cultures, what is important if you are committed to eliminating preconceived notions\n(A)newness (B)loss of innocence (C)enlightenment (D)open mind (E)smartness",
"output": [
"D"
]
},
{
"id": "task073-a04488149189400793ef3c47ae510961",
"input": "An underrated thing about computers is how they manage workflow, at one time it was a big deal when they could first do what?\n(A)share files (B)do arithmetic (C)turn on (D)cost money (E)multitask",
"output": [
"E"
]
},
{
"id": "task073-1c85628722754447bb65fb96c67405a3",
"input": "Obstructing justice is sometimes an excuse used for police brutality which causes what in people?\n(A)committing perjury (B)prosecution (C)attack (D)getting hurt (E)riot",
"output": [
"D"
]
},
{
"id": "task073-ea2fcf0654a542bb80f9400097269adb",
"input": "While washing clothes they became what when caught on the sharp object?\n(A)damaged (B)wet clothes (C)wear out (D)torn (E)have fun",
"output": [
"D"
]
},
{
"id": "task073-3e9f4080c2184746b3566bd890a2a392",
"input": "Seafood restaurants are used to draw tourists where?\n(A)maine (B)shoe shop (C)city (D)boston (E)coastal cities",
"output": [
"E"
]
},
{
"id": "task073-11ddce8c5cea4f52908fe93810adc446",
"input": "James's nice asked him about her grandfather. She was interested in learning about what?\n(A)family tree (B)family reunion (C)babysitting (D)brother's house (E)heirlooms",
"output": [
"A"
]
},
{
"id": "task073-88d1b1ea94794d6eae72cddaa3ace524",
"input": "James looked up and saw the start twinkling in the black yonder. He marveled the sheer number of them and the size of what?\n(A)universe (B)orbit (C)night sky (D)outer space (E)his wallet",
"output": [
"A"
]
},
{
"id": "task073-edde5303e8864284a391278c21432d5b",
"input": "What would encourage someone to continue playing tennis?\n(A)becoming tired (B)tennis elbow (C)exercise (D)hunger (E)victory",
"output": [
"E"
]
},
{
"id": "task073-6727abb927f641eda1a03696de2c5daa",
"input": "James found the sound relaxing. It was so relaxing he almost did what despite his efforts?\n(A)deep breathing (B)worried (C)fall asleep (D)invigorating (E)feeling good",
"output": [
"C"
]
},
{
"id": "task073-542632d2f9d849c8b2accdb9b9886360",
"input": "What regions of a town would you have found a dime store?\n(A)commercial building (B)old movie (C)small neighborhood (D)past (E)mall",
"output": [
"C"
]
},
{
"id": "task073-3dc42a62361c4e18a8714271bd0e3e9f",
"input": "Where might an unused chess set be stored?\n(A)toy store (B)michigan (C)living room (D)attic (E)cupboard",
"output": [
"E"
]
},
{
"id": "task073-3504bf1262494347b837a622833a6367",
"input": "james told his son to settle down and be careful. There were many frogs mating in the area, and James didn't want his son to do what to them?\n(A)wander (B)migrate (C)scare (D)disturb (E)agitate",
"output": [
"D"
]
},
{
"id": "task073-2833f15016c7476996603f3882fc7de7",
"input": "A man wants air conditioning while we watches the game on Saturday, where will it likely be installed?\n(A)car (B)house (C)offices (D)park (E)movie theatre",
"output": [
"B"
]
},
{
"id": "task073-c68f6d740bc94174a656fc5f02a8e5b9",
"input": "What could be playing a balailaika?\n(A)movie dr (B)orchestra (C)music store (D)cat (E)symphony",
"output": [
"B"
]
},
{
"id": "task073-589ba5536632446bb802e681582b4cd2",
"input": "Sailors drive many different types of boats, what type of boat involves their namesake.\n(A)coming home (B)row boat (C)board ship (D)inflatable raft (E)sail boat",
"output": [
"E"
]
},
{
"id": "task073-69fdfcfdf3ec497c974ee8489e192bf3",
"input": "Where could a person avoid the rain?\n(A)bus stop (B)tunnel (C)synagogue (D)fairy tale (E)street corner",
"output": [
"C"
]
},
{
"id": "task073-aaea6af362894420937a22843b04ee7a",
"input": "Why would a person like to have a large house?\n(A)have choice (B)mentally challenged (C)own house (D)obesity (E)lots of space",
"output": [
"E"
]
},
{
"id": "task073-ec67e48f35b14ecd8c13035f226dfca9",
"input": "Where will a cheap book be found?\n(A)bookstore (B)classroom (C)discount store (D)school room (E)bedside table",
"output": [
"C"
]
},
{
"id": "task073-5bc4d125a5b7442d9bbf0952b81b8066",
"input": "John and James are idiots. They bought two tickets to the Falcons vs the Jets even though neither wanted to see the what?\n(A)internet cafe (B)sporting event (C)pressing wrong buttons (D)obesity (E)hockey game",
"output": [
"B"
]
},
{
"id": "task073-9f7eb8fffd45449399f042572ae29806",
"input": "James noticed that his penis was bigger. . How might he act toward his plastic surgeon?\n(A)accidental (B)detestable (C)effusive (D)enabled (E)apathetic",
"output": [
"C"
]
},
{
"id": "task073-eee1a51da18047e7b13f52ccc4ae820b",
"input": "Who do professors work with?\n(A)methods of facts (B)teach courses (C)wear wrinkled tweed jackets (D)school students (E)state facts",
"output": [
"D"
]
},
{
"id": "task073-a4a60406523141069bbc77e7446c0cc5",
"input": "Colorful anemone look somewhat like what object you find on window sills?\n(A)intertidal zone (B)coral sea (C)under water (D)flower bed (E)florida keys",
"output": [
"D"
]
},
{
"id": "task073-243095f5019d4c51a870b8a8e5afdd64",
"input": "From where do aliens arrive?\n(A)outer space (B)weekly world news (C)roswell (D)universe (E)mars",
"output": [
"A"
]
},
{
"id": "task073-7df3a255dbb74f76abe9cf65b6ad212a",
"input": "The hikers stopped to have a drink, simply put they what?\n(A)had a party (B)were thirsty (C)refreshment (D)getting drunk (E)celebrating",
"output": [
"B"
]
},
{
"id": "task073-a6ec8a48a4cd4678b58e28e93685dde2",
"input": "When you get up in the morning before you begin work you should do what?\n(A)apply for job (B)sleep (C)concentrate (D)shower (E)just do",
"output": [
"D"
]
},
{
"id": "task073-ffc5999b749d4a23937e4fa081a4fb42",
"input": "The kitten had nothing to dig it's claws into, so when it tried to stop it slid across what?\n(A)living room (B)floor (C)warm place (D)carpet (E)farmhouse",
"output": [
"B"
]
},
{
"id": "task073-a923ee74a6794d3cb6fc228c634fa0e5",
"input": "If a person is trying to keep something in their hand what should they do?\n(A)complete collection (B)own house (C)procrastinate (D)explode (E)have to hold",
"output": [
"E"
]
},
{
"id": "task073-2331352cf3bd488ba1f881c490c1ae58",
"input": "Where could you find hundreds of thousands of home?\n(A)field (B)neighborhood (C)star can (D)city or town (E)apartment building",
"output": [
"D"
]
},
{
"id": "task073-3419d538690641f28702b8610cdbedc6",
"input": "Playing baseball is a lot like any other sport, there is always a risk of what?\n(A)sore muscles (B)errors (C)happiness (D)injury (E)fun",
"output": [
"D"
]
},
{
"id": "task073-ac164b7aa1614199aa255be927d37eb1",
"input": "If I want to watch a movie without leaving my home what might I use?\n(A)drive in movie (B)drive in movie (C)television (D)video store (E)show",
"output": [
"C"
]
},
{
"id": "task073-918da5ea231640febb5ae83aeadf2ef9",
"input": "The victim was to take stand today, they were going to do what?\n(A)testify (B)runaway (C)witness (D)tell truth (E)go home",
"output": [
"A"
]
},
{
"id": "task073-1401df5da4e1457cb291021a2584cb0f",
"input": "What does a successful dog grooming session likely to make a owner feel?\n(A)cleanliness (B)mistakes (C)growth (D)satisfaction (E)late",
"output": [
"D"
]
},
{
"id": "task073-839b400b1e974ba8b8430ef862db0b07",
"input": "The runner was in third place, but he pushed harder and thought he might be able to reach second. What was beginning to do?\n(A)near finish line (B)finish (C)get tired (D)gain ground (E)trip over",
"output": [
"D"
]
},
{
"id": "task073-ef27c6c833024f20a85c2ca1b77335ce",
"input": "The tourist entered Mammoth cave, what state were they in?\n(A)west virginia (B)kentucky (C)rocky hills (D)scotland (E)canyon",
"output": [
"B"
]
},
{
"id": "task073-866d5165c5364a3fa82b25b2440a8d74",
"input": "What does someone typically feel when applying for a job?\n(A)horror (B)anxiety and fear (C)rejection (D)increased workload (E)being employed",
"output": [
"B"
]