-
Notifications
You must be signed in to change notification settings - Fork 36
/
fig_qa-dataset.json
13130 lines (13130 loc) · 302 KB
/
fig_qa-dataset.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
[
{
"context": "The girl had the flightiness of a sparrow",
"question": "",
"answers": {
"text": "The girl was very fickle.",
"option_index": 0
},
"options": [
"The girl was very fickle.",
"The girl was very stable."
]
},
{
"context": "The girl had the flightiness of a rock",
"question": "",
"answers": {
"text": "The girl was very stable.",
"option_index": 1
},
"options": [
"The girl was very fickle.",
"The girl was very stable."
]
},
{
"context": "It was as peaceful as a church.",
"question": "",
"answers": {
"text": "It was very peaceful.",
"option_index": 0
},
"options": [
"It was very peaceful.",
"It was full of conflict and danger, not peace."
]
},
{
"context": "It was as peaceful as a battlefield.",
"question": "",
"answers": {
"text": "It was full of conflict and danger, not peace.",
"option_index": 1
},
"options": [
"It was very peaceful.",
"It was full of conflict and danger, not peace."
]
},
{
"context": "The leaves were as green as grass",
"question": "",
"answers": {
"text": "The leaves were very green",
"option_index": 0
},
"options": [
"The leaves were very green",
"The leaves were brown and not green at all."
]
},
{
"context": "The leaves were as green as dirt",
"question": "",
"answers": {
"text": "The leaves were brown and not green at all.",
"option_index": 1
},
"options": [
"The leaves were very green",
"The leaves were brown and not green at all."
]
},
{
"context": "Shopping for groceries is finding shells on a sunny beach",
"question": "",
"answers": {
"text": "Shopping for groceries is a fun, rewarding chore",
"option_index": 0
},
"options": [
"Shopping for groceries is a fun, rewarding chore",
"Shopping for groceries is a crazy, nearly impossible chore"
]
},
{
"context": "Shopping for groceries is a scavenger hunt with a list created by a lunatic",
"question": "",
"answers": {
"text": "Shopping for groceries is a crazy, nearly impossible chore",
"option_index": 1
},
"options": [
"Shopping for groceries is a fun, rewarding chore",
"Shopping for groceries is a crazy, nearly impossible chore"
]
},
{
"context": "War is an amputation on the wrong limb",
"question": "",
"answers": {
"text": "War is the wrong solution to a problem",
"option_index": 0
},
"options": [
"War is the wrong solution to a problem",
"War is a necessary solution"
]
},
{
"context": "War is an amputation to save your life",
"question": "",
"answers": {
"text": "War is a necessary solution",
"option_index": 1
},
"options": [
"War is the wrong solution to a problem",
"War is a necessary solution"
]
},
{
"context": "It's as green as grass in the spring",
"question": "",
"answers": {
"text": "It's fairy green",
"option_index": 0
},
"options": [
"It's fairy green",
"It's not too green"
]
},
{
"context": "It's as green as grass during a hot summer",
"question": "",
"answers": {
"text": "It's not too green",
"option_index": 1
},
"options": [
"It's fairy green",
"It's not too green"
]
},
{
"context": "This is as peaceful as a sleeping puppy",
"question": "",
"answers": {
"text": "It's very peaceful",
"option_index": 0
},
"options": [
"It's very peaceful",
"It's not very peaceful"
]
},
{
"context": "This is as peaceful as European in the '40s",
"question": "",
"answers": {
"text": "It's not very peaceful",
"option_index": 1
},
"options": [
"It's very peaceful",
"It's not very peaceful"
]
},
{
"context": "The music was loud like a siren.",
"question": "",
"answers": {
"text": "The music was very loud.",
"option_index": 0
},
"options": [
"The music was very loud.",
"The music was very quiet."
]
},
{
"context": "The music was loud like a whisper.",
"question": "",
"answers": {
"text": "The music was very quiet.",
"option_index": 1
},
"options": [
"The music was very loud.",
"The music was very quiet."
]
},
{
"context": "Jobs are as available as a marriage man.",
"question": "",
"answers": {
"text": "Jobs are not available.",
"option_index": 0
},
"options": [
"Jobs are not available.",
"Jobs are very available."
]
},
{
"context": "Jobs are as available as a bachelor.",
"question": "",
"answers": {
"text": "Jobs are very available.",
"option_index": 1
},
"options": [
"Jobs are not available.",
"Jobs are very available."
]
},
{
"context": "Peace is a human flying",
"question": "",
"answers": {
"text": "Peace is impossible",
"option_index": 0
},
"options": [
"Peace is impossible",
"Peace is possible"
]
},
{
"context": "Peace is a human walking",
"question": "",
"answers": {
"text": "Peace is possible",
"option_index": 1
},
"options": [
"Peace is impossible",
"Peace is possible"
]
},
{
"context": "Plants are a lullaby",
"question": "",
"answers": {
"text": "Plants are calming",
"option_index": 0
},
"options": [
"Plants are calming",
"Plants are disturbing"
]
},
{
"context": "Plants are a loud drum",
"question": "",
"answers": {
"text": "Plants are disturbing",
"option_index": 1
},
"options": [
"Plants are calming",
"Plants are disturbing"
]
},
{
"context": "The car was as ugly as a one eyed rat",
"question": "",
"answers": {
"text": "it was hideous",
"option_index": 0
},
"options": [
"it was hideous",
"it was beautiful"
]
},
{
"context": "The car was as ugly as a swan",
"question": "",
"answers": {
"text": "it was beautiful",
"option_index": 1
},
"options": [
"it was hideous",
"it was beautiful"
]
},
{
"context": "The man was as handsome as a prince",
"question": "",
"answers": {
"text": "he was good looking",
"option_index": 0
},
"options": [
"he was good looking",
"he was ugly"
]
},
{
"context": "The man was as handsome as a hobo",
"question": "",
"answers": {
"text": "he was ugly",
"option_index": 1
},
"options": [
"he was good looking",
"he was ugly"
]
},
{
"context": "The conversation was sharp as a tack",
"question": "",
"answers": {
"text": "The conversation was sharp and witty.",
"option_index": 0
},
"options": [
"The conversation was sharp and witty.",
"The conversation was dull and not sharp."
]
},
{
"context": "The conversation was sharp as a rock",
"question": "",
"answers": {
"text": "The conversation was dull and not sharp.",
"option_index": 1
},
"options": [
"The conversation was sharp and witty.",
"The conversation was dull and not sharp."
]
},
{
"context": "He ate it like a fat boy eats cake",
"question": "",
"answers": {
"text": "The food was tasty to him",
"option_index": 0
},
"options": [
"The food was tasty to him",
"The food was unpalatable to him"
]
},
{
"context": "He ate it like a young boy eats broccoli",
"question": "",
"answers": {
"text": "The food was unpalatable to him",
"option_index": 1
},
"options": [
"The food was tasty to him",
"The food was unpalatable to him"
]
},
{
"context": "He picked it up like a mother holding a baby",
"question": "",
"answers": {
"text": "He held it with pride and care",
"option_index": 0
},
"options": [
"He held it with pride and care",
"He held it with disgust and caution"
]
},
{
"context": "He picked it up like a playboy holding a condom",
"question": "",
"answers": {
"text": "He held it with disgust and caution",
"option_index": 1
},
"options": [
"He held it with pride and care",
"He held it with disgust and caution"
]
},
{
"context": "He rushed through the math test like an ape",
"question": "",
"answers": {
"text": "He rushed because he is dumb",
"option_index": 0
},
"options": [
"He rushed because he is dumb",
"He rushed because he is smart"
]
},
{
"context": "He rushed through the math test like a rocket scientist",
"question": "",
"answers": {
"text": "He rushed because he is smart",
"option_index": 1
},
"options": [
"He rushed because he is dumb",
"He rushed because he is smart"
]
},
{
"context": "The bear was as hungry as a lion",
"question": "",
"answers": {
"text": "it was starving",
"option_index": 0
},
"options": [
"it was starving",
"it didn't need food"
]
},
{
"context": "The bear was as hungry as a piece of paper",
"question": "",
"answers": {
"text": "it didn't need food",
"option_index": 1
},
"options": [
"it was starving",
"it didn't need food"
]
},
{
"context": "That conversation had the ease of doing your taxes blindfolded.",
"question": "",
"answers": {
"text": "Having that conversation was difficult",
"option_index": 0
},
"options": [
"Having that conversation was difficult",
"Having that conversation was easy."
]
},
{
"context": "That conversation had the ease of a Sunday morning.",
"question": "",
"answers": {
"text": "Having that conversation was easy.",
"option_index": 1
},
"options": [
"Having that conversation was difficult",
"Having that conversation was easy."
]
},
{
"context": "Their conversations were artillery bombardments.",
"question": "",
"answers": {
"text": "Their conversations were heated and antagonistic.",
"option_index": 0
},
"options": [
"Their conversations were heated and antagonistic.",
"Their conversations were friendly."
]
},
{
"context": "Their conversations were a hug with words.",
"question": "",
"answers": {
"text": "Their conversations were friendly.",
"option_index": 1
},
"options": [
"Their conversations were heated and antagonistic.",
"Their conversations were friendly."
]
},
{
"context": "The story was as disturbing as a nightmare",
"question": "",
"answers": {
"text": "The story was very disturbing.",
"option_index": 0
},
"options": [
"The story was very disturbing.",
"The story failed to be disturbing, and in fact seemed cute."
]
},
{
"context": "The story was as disturbing as a newborn puppy",
"question": "",
"answers": {
"text": "The story failed to be disturbing, and in fact seemed cute.",
"option_index": 1
},
"options": [
"The story was very disturbing.",
"The story failed to be disturbing, and in fact seemed cute."
]
},
{
"context": "Their expectations of the house they could afford turned into melted ice.",
"question": "",
"answers": {
"text": "Their expectations were not met.",
"option_index": 0
},
"options": [
"Their expectations were not met.",
"Their expectations were exceeded."
]
},
{
"context": "Their expectations of the house they could afford leapt past the second story.",
"question": "",
"answers": {
"text": "Their expectations were exceeded.",
"option_index": 1
},
"options": [
"Their expectations were not met.",
"Their expectations were exceeded."
]
},
{
"context": "Those that heard the child sing were carried away on gentle waves.",
"question": "",
"answers": {
"text": "Those that heard the singing were pleasantly entertained.",
"option_index": 0
},
"options": [
"Those that heard the singing were pleasantly entertained.",
"Those that heard the singing were unpleasantly inundated."
]
},
{
"context": "Those that heard the child sing were tortured by the intruding notes.",
"question": "",
"answers": {
"text": "Those that heard the singing were unpleasantly inundated.",
"option_index": 1
},
"options": [
"Those that heard the singing were pleasantly entertained.",
"Those that heard the singing were unpleasantly inundated."
]
},
{
"context": "She sings like an angel",
"question": "",
"answers": {
"text": "her voice is magical",
"option_index": 0
},
"options": [
"her voice is magical",
"her voice is awful"
]
},
{
"context": "She sings like a bullfrog",
"question": "",
"answers": {
"text": "her voice is awful",
"option_index": 1
},
"options": [
"her voice is magical",
"her voice is awful"
]
},
{
"context": "HIs opinions were as firm as concrete",
"question": "",
"answers": {
"text": "He was very certain of his opinion",
"option_index": 0
},
"options": [
"He was very certain of his opinion",
"He was very uncertain of his opinion"
]
},
{
"context": "HIs opinions were as firm as a cotton ball",
"question": "",
"answers": {
"text": "He was very uncertain of his opinion",
"option_index": 1
},
"options": [
"He was very certain of his opinion",
"He was very uncertain of his opinion"
]
},
{
"context": "The pilot landed the plane like he was handling a new born baby.",
"question": "",
"answers": {
"text": "The landing was smooth and gentle",
"option_index": 0
},
"options": [
"The landing was smooth and gentle",
"The landing was bumpy and rough"
]
},
{
"context": "The pilot landed the plane like it was on a roller coaster.",
"question": "",
"answers": {
"text": "The landing was bumpy and rough",
"option_index": 1
},
"options": [
"The landing was smooth and gentle",
"The landing was bumpy and rough"
]
},
{
"context": "The man's personality is like a Beanie Baby",
"question": "",
"answers": {
"text": "The man has a soft personality.",
"option_index": 0
},
"options": [
"The man has a soft personality.",
"The man has a hard personality."
]
},
{
"context": "The man's personality is like a drill sergeant",
"question": "",
"answers": {
"text": "The man has a hard personality.",
"option_index": 1
},
"options": [
"The man has a soft personality.",
"The man has a hard personality."
]
},
{
"context": "The poster was as colorful as a rainbow",
"question": "",
"answers": {
"text": "The poster has a lot of color.",
"option_index": 0
},
"options": [
"The poster has a lot of color.",
"The poster was dull and colorless."
]
},
{
"context": "The poster was as colorful as a sidewalk",
"question": "",
"answers": {
"text": "The poster was dull and colorless.",
"option_index": 1
},
"options": [
"The poster has a lot of color.",
"The poster was dull and colorless."
]
},
{
"context": "She is as eager as a beaver",
"question": "",
"answers": {
"text": "she is excited",
"option_index": 0
},
"options": [
"she is excited",
"she is bored"
]
},
{
"context": "She is as eager as a sloth",
"question": "",
"answers": {
"text": "she is bored",
"option_index": 1
},
"options": [
"she is excited",
"she is bored"
]
},
{
"context": "The motor on the boat is a Babbling drunk",
"question": "",
"answers": {
"text": "It is barely running",
"option_index": 0
},
"options": [
"It is barely running",
"It is running strong"
]
},
{
"context": "The motor on the boat is a Roaring lion",
"question": "",
"answers": {
"text": "It is running strong",
"option_index": 1
},
"options": [
"It is barely running",
"It is running strong"
]
},
{
"context": "The lawyer's opening argument was a Russian novel.",
"question": "",
"answers": {
"text": "The lawyer's opening argument was long.",
"option_index": 0
},
"options": [
"The lawyer's opening argument was long.",
"The lawyer's opening argument was tawdry."
]
},
{
"context": "The lawyer's opening argument was an airport paperback.",
"question": "",
"answers": {
"text": "The lawyer's opening argument was tawdry.",
"option_index": 1
},
"options": [
"The lawyer's opening argument was long.",
"The lawyer's opening argument was tawdry."
]
},
{
"context": "The house had the cleanliness of a museum",
"question": "",
"answers": {
"text": "The house was very clean.",
"option_index": 0
},
"options": [
"The house was very clean.",
"The house was a mess."
]
},
{
"context": "The house had the cleanliness of a paintball arena",
"question": "",
"answers": {
"text": "The house was a mess.",
"option_index": 1
},
"options": [
"The house was very clean.",
"The house was a mess."
]
},
{
"context": "The grapes had the freshness of a secondhand toy.",
"question": "",
"answers": {
"text": "The grapes weren't fresh.",
"option_index": 0
},
"options": [
"The grapes weren't fresh.",
"The grapes were very fresh."
]
},
{
"context": "The grapes had the freshness of an early summer morning.",
"question": "",
"answers": {
"text": "The grapes were very fresh.",
"option_index": 1
},
"options": [
"The grapes weren't fresh.",
"The grapes were very fresh."
]
},
{
"context": "The toy had the enjoyment of an execution",
"question": "",
"answers": {
"text": "The toy was not fun",
"option_index": 0
},
"options": [
"The toy was not fun",
"The toy was fun"
]
},
{
"context": "The toy had the enjoyment of roller coaster",
"question": "",
"answers": {
"text": "The toy was fun",
"option_index": 1
},
"options": [
"The toy was not fun",
"The toy was fun"
]
},
{
"context": "The movie's message was as heartwarming as a cup of mint tea",
"question": "",
"answers": {
"text": "The movie message was very heartwarming.",
"option_index": 0
},
"options": [
"The movie message was very heartwarming.",
"The movie's message wasn't heartwarming at all."
]
},
{
"context": "The movie's message was as heartwarming as a Popsicle",
"question": "",
"answers": {
"text": "The movie's message wasn't heartwarming at all.",
"option_index": 1
},
"options": [
"The movie message was very heartwarming.",
"The movie's message wasn't heartwarming at all."
]
},
{
"context": "The book was as classic as pancakes for breakfast",
"question": "",
"answers": {
"text": "The book was very classic.",
"option_index": 0
},
"options": [
"The book was very classic.",
"The book wasn't a classic."
]
},
{
"context": "The book was as classic as a bride wearing purple",
"question": "",
"answers": {
"text": "The book wasn't a classic.",
"option_index": 1
},
"options": [
"The book was very classic.",
"The book wasn't a classic."
]
},
{
"context": "The toy was as new as A quarter from this year.",
"question": "",
"answers": {
"text": "The toy was recent",
"option_index": 0
},
"options": [
"The toy was recent",
"The toy was dated."
]
},
{
"context": "The toy was as new as A quarter from the year you were born.",
"question": "",
"answers": {
"text": "The toy was dated.",
"option_index": 1
},
"options": [
"The toy was recent",
"The toy was dated."
]
},
{
"context": "The woman was as tall as a tree",
"question": "",
"answers": {
"text": "The woman was tall",
"option_index": 0
},
"options": [
"The woman was tall",
"The woman was short"
]
},
{
"context": "The woman was as tall as a footstool",
"question": "",
"answers": {
"text": "The woman was short",
"option_index": 1
},
"options": [
"The woman was tall",
"The woman was short"
]
},
{
"context": "Tom had the joy of a robot.",
"question": "",
"answers": {
"text": "Tom is not very joyful.",
"option_index": 0
},
"options": [
"Tom is not very joyful.",
"Tom is very joyful."
]
},
{
"context": "Tom had the joy of a dog.",
"question": "",
"answers": {
"text": "Tom is very joyful.",
"option_index": 1
},
"options": [
"Tom is not very joyful.",
"Tom is very joyful."
]
},
{
"context": "The movie has a depth of A canyon.",
"question": "",
"answers": {
"text": "The movie is deeply philosophical.",
"option_index": 0
},
"options": [
"The movie is deeply philosophical.",
"The movie has little substance."
]
},
{
"context": "The movie has a depth of A pothole.",
"question": "",
"answers": {
"text": "The movie has little substance.",
"option_index": 1
},
"options": [
"The movie is deeply philosophical.",
"The movie has little substance."
]
},
{
"context": "The movie has a depth of A valley.",
"question": "",
"answers": {
"text": "The movie is expansive in it's meaning.",
"option_index": 0
},
"options": [
"The movie is expansive in it's meaning.",
"The movie lacks depth."
]
},
{
"context": "The movie has a depth of A flatland.",
"question": "",
"answers": {
"text": "The movie lacks depth.",
"option_index": 1
},
"options": [
"The movie is expansive in it's meaning.",
"The movie lacks depth."
]
},
{
"context": "She was as delicate as An elephant",
"question": "",
"answers": {
"text": "She was a lumbering clod",
"option_index": 0
},
"options": [
"She was a lumbering clod",
"She was fragile"
]
},
{
"context": "She was as delicate as A snowflake",
"question": "",