-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathauto-categorisation.json
1617 lines (1617 loc) · 58.6 KB
/
auto-categorisation.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
{
"name": "auto_categorization",
"description": "To measure the model's ability in categorising elements into groups.",
"license": "",
"reference": "https://github.com/google/BIG-bench/tree/main/bigbench/benchmark_tasks/auto_categorization",
"examples": [
{
"input": "Cats and dogs are common",
"target": "pets"
},
{
"input": "yellow, blue, green are examples of",
"target": "colors"
},
{
"input": "2, 3, 5, 7 are all",
"target": "prime numbers"
},
{
"input": "Sushi, Ramen, Sukiyaki are famous",
"target": [
"Japanese foods",
"Japanese cuisine"
]
},
{
"input": "C++, python, Java are popular",
"target": "programming languages"
},
{
"input": "Orange and watermelon are my favourite",
"target": "fruits"
},
{
"input": "Reading, running, and cooking are my",
"target": "hobbies"
},
{
"input": "Hamlet, Romeo and Juliet, Othello are all",
"target": "works of William Shakespeare"
},
{
"input": "Guitar, piano, and drum are all",
"target": "musical instruments"
},
{
"input": "Cars, airplanes, and subway are means of",
"target": "transportation"
},
{
"input": "Carnegie Mellon Univerity, University of California, Berkeley, and Massachusetts Institute of Technology are top",
"target": [
"technology Universities",
"computer science Schools"
]
},
{
"input": "Washing machines, air conditioners, refrigerators are all",
"target": "electric appliances"
},
{
"input": "German Shepherd, Labrador Retriever, Poodle are common",
"target": "dog breeds"
},
{
"input": "sour, sweet, bitter are different",
"target": "tastes"
},
{
"input": "Square, circle, triangle are different",
"target": "shapes"
},
{
"input": "East, West, North,and South are four",
"target": "directions"
},
{
"input": "Epilepsy, autism, and Alzheimer's Disease are examples of",
"target": "neurological disorders"
},
{
"input": "Like Thomas Hobbes and John Locke, Jean-Jacques Rousseau is another well-knowned",
"target": "political philosophers"
},
{
"input": "Hurricanes, floods, and earthquakes are",
"target": "natural disasters"
},
{
"input": "Amazon, Apple, Facebook, Google, and Microsoft are",
"target": [
"Big Tech",
"Tech Giants",
"Big Five"
]
},
{
"input": "Marie Curie, Albert Einstein, Mo Yan, Michael Houghton have all won",
"target": "the Nobel Prize"
},
{
"input": "China, France, Russia, the United Kingdom, and the United States are five",
"target": "permanent members of the United Nations"
},
{
"input": "Earch, Mars, Jupiter are all",
"target": "planets"
},
{
"input": "Aurora, sunset, ocean waves are all",
"target": "natural phenomena"
},
{
"input": "Asia, Africa, the Americans, Antarctica are considered to be",
"target": "continents"
},
{
"input": "Ribosomes, plasmid, cell wall, and plasma membrane are parts of",
"target": "prokaryotic cells"
},
{
"input": "influential, significant, essential, important are",
"target": "synonyms"
},
{
"input": "tea, coffee, wine are examples of",
"target": [
"drinks",
"beverages"
]
},
{
"input": "dollar, euro, yuan are all",
"target": "currency"
},
{
"input": "water, glass, air are all",
"target": "transparent"
},
{
"input": "fart, rotten eggs, skunks all",
"target": "smells bad"
},
{
"input": "Rutherford B. Hayes, William Henry Harrison, and James A. Garfield can be classified as",
"target": "presidents of the U.S"
},
{
"input": "What are the commonality of John Adams, Millard Fillmore, and Grover Cleveland? Answer: They are all",
"target": "presidents of the U.S"
},
{
"input": "Ronald Reagan, Dwight D. Eisenhower, and Richard Nixon can be classified as",
"target": "presidents of the U.S"
},
{
"input": "William Howard Taft, Andrew Jackson, and Gerald Ford are instances of",
"target": "presidents of the U.S"
},
{
"input": "Jimmy Carter, Ulysses S. Grant, and Franklin D. Roosevelt are instances of",
"target": "presidents of the U.S"
},
{
"input": "John Tyler, Bill Clinton, and Herbert Hoover can be classified as",
"target": "presidents of the U.S"
},
{
"input": "What are the commonality of Theodore Roosevelt, Benjamin Harrison, and Martin Van Buren? Answer: They are all",
"target": "presidents of the U.S"
},
{
"input": "Franklin Pierce, Abraham Lincoln, and William McKinley are examples of",
"target": "presidents of the U.S"
},
{
"input": "Chester A. Arthur, James K. Polk, and George H. W. Bush can be classified as",
"target": "presidents of the U.S"
},
{
"input": "Woodrow Wilson, George W. Bush, and James Monroe are instances of",
"target": "presidents of the U.S"
},
{
"input": "The similarity among Andrew Johnson, Zachary Taylor, and Grover Cleveland (2nd term) is that they are all",
"target": "presidents of the U.S"
},
{
"input": "Thomas Jefferson, Lyndon B. Johnson, and John F. Kennedy are instances of",
"target": "presidents of the U.S"
},
{
"input": "James Buchanan, Barack Obama, and John Quincy Adams are all",
"target": "presidents of the U.S"
},
{
"input": "Warren G. Harding, James Madison, and George Washington are instances of",
"target": "presidents of the U.S"
},
{
"input": "What are the commonality of Tony Hawk's Pro Skater HD, ROSE Online, and Betrayer? Answer: They are all",
"target": "games on Steam"
},
{
"input": "Delta Force Black Hawk Down, Spartans Vs Zombies Defense, and Devil's Workshop pack are instances of",
"target": "games on Steam"
},
{
"input": "What are the commonality of Quantum of Solace, Poker Night 2, and Armello? Answer: They are all",
"target": "games on Steam"
},
{
"input": "Wildlife Park 2 - Crazy Zoo, Glorkian Warrior The Trials Of Glork, and Software Inc. can be classified as",
"target": "games on Steam"
},
{
"input": "What are the commonality of Alien Shooter Revisited, Pirates of Black Cove, and Rollers of the Realm? Answer: They are all",
"target": "games on Steam"
},
{
"input": "EverQuest II, Ikaruga, and State of Decay can be classified as",
"target": "games on Steam"
},
{
"input": "Heavy Weapon Deluxe, Planetside 2 Elite Soldier Bundle, and Survivalist can be classified as",
"target": "games on Steam"
},
{
"input": "Half-Life 2 Episode One, Elsword, and Realms of Chaos are instances of",
"target": "games on Steam"
},
{
"input": "Kingdom Wars, LUDWIG, and Nancy Drew Warnings at Waverly Academy can be classified as",
"target": "games on Steam"
},
{
"input": "FINAL FANTASY XIV Heavensward, Strife, and The Secret Of Hildegards are examples of",
"target": "games on Steam"
},
{
"input": "BMX, Baseball, and Rackets are instances of",
"target": "sports"
},
{
"input": "The similarity among Figure skating, Football, and Cycling Road is that they are all",
"target": "sports"
},
{
"input": "The similarity among Synchronized S., Gymnastics Rhythmic, and Polo is that they are all",
"target": "sports"
},
{
"input": "Taekwondo, Volleyball, and Judo are all",
"target": "sports"
},
{
"input": "Golf, Wrestling Freestyle, and Marathon swimming can be classified as",
"target": "sports"
},
{
"input": "Archery, Boxing, and Lacrosse are examples of",
"target": "sports"
},
{
"input": "Badminton, Jumping, and Beach Volleyball are all",
"target": "sports"
},
{
"input": "The similarity among Sailing, Fencing, and Roque is that they are all",
"target": "sports"
},
{
"input": "Table Tennis, Basketball, and Swimming can be classified as",
"target": "sports"
},
{
"input": "What are the commonality of Weightlifting, Vaulting, and Rowing? Answer: They are all",
"target": "sports"
},
{
"input": "The similarity among Wolf, European Hare, and Meerkat is that they are all",
"target": "animals"
},
{
"input": "Uinta Chipmunk, Dwarf Crocodile, and Black Rhinoceros are all",
"target": "animals"
},
{
"input": "Red Deer, African Bush Elephant, and Wood Duck can be classified as",
"target": "animals"
},
{
"input": "What are the commonality of Barbary Sheep, Yellow-Crested Cockatoo, and Leadbeater's Possum? Answer: They are all",
"target": "animals"
},
{
"input": "The similarity among Spotted Ground Squirrel, Hispid Cotton Rat, and Tufted Gray Langur is that they are all",
"target": "animals"
},
{
"input": "Inca Tern, Nile Crocodile, and Lion-Tailed Macaque can be classified as",
"target": "animals"
},
{
"input": "The similarity among Grizzled Giant Squirrel, Shingleback Lizard, and Spectacled Flying Fox is that they are all",
"target": "animals"
},
{
"input": "Squirrel Glider, Bighorn Sheep, and Bush Dog are examples of",
"target": "animals"
},
{
"input": "What are the commonality of Greek Tortoise, Pacific White-Sided Dolphin, and American Bison? Answer: They are all",
"target": "animals"
},
{
"input": "What are the commonality of African Spurred Tortoise, Humboldt Penguin, and Cheetah? Answer: They are all",
"target": "animals"
},
{
"input": "Benin, Zambia, and Mauritius are examples of",
"target": "African countries"
},
{
"input": "What are the commonality of Botswana, Cameroon, and Ivory Coast? Answer: They are all",
"target": "African countries"
},
{
"input": "What are the commonality of Sudan, Somaliland, and Madagascar? Answer: They are all",
"target": "African countries"
},
{
"input": "Democratic Republic of the Congo, Guinea-Bissau, and Djibouti are examples of",
"target": "African countries"
},
{
"input": "Senegal, Mozambique, and Tunisia are all",
"target": "African countries"
},
{
"input": "The similarity among Mali, Algeria, and Zimbabwe is that they are all",
"target": "African countries"
},
{
"input": "Niger, Comoros, and Seychelles can be classified as",
"target": "African countries"
},
{
"input": "What are the commonality of Libya, São Tomé and Príncipe, and Lesotho? Answer: They are all",
"target": "African countries"
},
{
"input": "Uganda, Namibia, and Kenya are instances of",
"target": "African countries"
},
{
"input": "The similarity among South Sudan, Sierra Leone, and Liberia is that they are all",
"target": "African countries"
},
{
"input": "The similarity among Egypt, Republic of the Congo, and Guinea is that they are all",
"target": "African countries"
},
{
"input": "What are the commonality of Tanzania, Rwanda, and Malawi? Answer: They are all",
"target": "African countries"
},
{
"input": "The Gambia, Burkina Faso, and South Africa are examples of",
"target": "African countries"
},
{
"input": "The similarity among Ethiopia, Nigeria, and Mauritania is that they are all",
"target": "African countries"
},
{
"input": "What are the commonality of Togo, Eritrea, and Burundi? Answer: They are all",
"target": "African countries"
},
{
"input": "Central African Republic, Cape Verde, and Somalia are examples of",
"target": "African countries"
},
{
"input": "Morocco, Ghana, and Chad can be classified as",
"target": "African countries"
},
{
"input": "TeenVogue.com, NME, and Tampa Bay Review are instances of",
"target": [
"the media",
"news outlet"
]
},
{
"input": "International Business Times UK, Indie Wire, and TechCrunch are all",
"target": [
"the media",
"news outlet"
]
},
{
"input": "Government of Ontario News, WMTV, and La Crosse Tribune are all",
"target": [
"the media",
"news outlet"
]
},
{
"input": "WhoWhatWhy / RealNewsProject (blog), Today.com, and Rockford Register Star are all",
"target": [
"the media",
"news outlet"
]
},
{
"input": "The similarity among TechNewsWorld, CAPA - Centre for Aviation, and Fairfield Daily Republic is that they are all",
"target": [
"the media",
"news outlet"
]
},
{
"input": "6abc.com, Supermarket News, and Khaama Press (press release) (blog) can be classified as",
"target": [
"the media",
"news outlet"
]
},
{
"input": "The similarity among Nasdaq, Finextra (press release), and TRT World is that they are all",
"target": [
"the media",
"news outlet"
]
},
{
"input": "ValueWalk, Queensland Country Life, and The Fresno Bee can be classified as",
"target": [
"the media",
"news outlet"
]
},
{
"input": "What are the commonality of The Fiscal Times via Yahoo! New Zealand Finance, ITProPortal, and PR Newswire via Yahoo! Finance? Answer: They are all",
"target": [
"the media",
"news outlet"
]
},
{
"input": "Ozy via Yahoo! News, Chronicle of Higher Education (subscription), and The News-Press are examples of",
"target": [
"the media",
"news outlet"
]
},
{
"input": "The similarity among DemandBase, InfusionSoft, and HotSchedules is that they are all",
"target": [
"tech companies",
"software companies"
]
},
{
"input": "WebPT, Jumio, and Atlassian are all",
"target": [
"tech companies",
"software companies"
]
},
{
"input": "DataStax, SocialBakers, and Coveo are all",
"target": [
"tech companies",
"software companies"
]
},
{
"input": "SmartSheet, Madwire, and iCIMS are instances of",
"target": [
"tech companies",
"software companies"
]
},
{
"input": "Wrike, SEMrush, and Sprinklr are all",
"target": [
"tech companies",
"software companies"
]
},
{
"input": "What are the commonality of Namely, Talend, and DiscoverOrg? Answer: They are all",
"target": [
"tech companies",
"software companies"
]
},
{
"input": "Cvent, Workfront, and Looker are examples of",
"target": [
"tech companies",
"software companies"
]
},
{
"input": "Malwarebytes, Brandwatch, and Qualtrics are instances of",
"target": [
"tech companies",
"software companies"
]
},
{
"input": "What are the commonality of Ping Identity, Zenefits, and SmartBear? Answer: They are all",
"target": [
"tech companies",
"software companies"
]
},
{
"input": "Xactly, Carbon Black, and Zoom are instances of",
"target": [
"tech companies",
"software companies"
]
},
{
"input": "Budapest, Tokyo, and La Paz are examples of",
"target": "capital cities"
},
{
"input": "The similarity among Lima, Pyongyang, and Dublin is that they are all",
"target": "capital cities"
},
{
"input": "Pretoria, Niamey, and Sanaa can be classified as",
"target": "capital cities"
},
{
"input": "The similarity among Cape Town, Apia, and Conakry is that they are all",
"target": "capital cities"
},
{
"input": "Bishkek, Yaoundé, and Mbabane are all",
"target": "capital cities"
},
{
"input": "Lomé, Ottawa, and Havana are examples of",
"target": "capital cities"
},
{
"input": "What are the commonality of Bridgetown, Libreville, and Castries? Answer: They are all",
"target": "capital cities"
},
{
"input": "N'Djamena, Harare, and Helsinki are all",
"target": "capital cities"
},
{
"input": "Kinshasa, Aden, and Bern can be classified as",
"target": "capital cities"
},
{
"input": "Sri Jayawardenepura Kotte, Mogadishu, and Beirut are examples of",
"target": "capital cities"
},
{
"input": "Afro-Eurasia, Americas, and North America are all",
"target": "continents"
},
{
"input": "mainland Australia, Africa, and Asia are examples of",
"target": "continents"
},
{
"input": "Europe, Australia, and South America can be classified as",
"target": "continents"
},
{
"input": "Antarctica, Zealandia, and Oceania are instances of",
"target": "continents"
},
{
"input": "What are the commonality of Arceus, Oshawott, and Dragonite? Answer: They are all",
"target": "pokeman"
},
{
"input": "Salamence, Zapdos, and Moltres are all",
"target": "pokeman"
},
{
"input": "Torchic, Butterfree, and Ho-Oh are instances of",
"target": "pokeman"
},
{
"input": "What are the commonality of Charizard, Lugia, and Piplup? Answer: They are all",
"target": "pokeman"
},
{
"input": "Drifblim, Squirtle, and Rayquaza are instances of",
"target": "pokeman"
},
{
"input": "What are the commonality of Shaymin, Chatot, and Reshiram? Answer: They are all",
"target": "pokeman"
},
{
"input": "Bulbasaur, Pelipper, and Snivy are instances of",
"target": "pokeman"
},
{
"input": "Turtwig, Seel, and Drifloon can be classified as",
"target": "pokeman"
},
{
"input": "Chimchar, Treecko, and Victini are all",
"target": "pokeman"
},
{
"input": "Lanturn, Pikachu, and Aerodactyl are all",
"target": "pokeman"
},
{
"input": "Rubella, Tetanus, and Varicella Hospitalizations are examples of",
"target": "vaccine preventable diseases"
},
{
"input": "Measles, Hepatitis, and Invasive Meningococcal Disease are all",
"target": "vaccine preventable diseases"
},
{
"input": "What are the commonality of Mumps, Pertussis, and Diphtheria? Answer: They are all",
"target": "vaccine preventable diseases"
},
{
"input": "The similarity among Giardiasis, Malaria, and Coccidioidomycosis is that they are all",
"target": "infectious diseases"
},
{
"input": "The similarity among Salmonellosis, Anaplasmosis and Ehrlichiosis, and Legionellosis is that they are all",
"target": "infectious diseases"
},
{
"input": "Hantavirus Infection, Q Fever, and Hansen's Disease are examples of",
"target": "infectious diseases"
},
{
"input": "Amebiasis, Cholera, and Babesiosis are examples of",
"target": "infectious diseases"
},
{
"input": "Cysticercosis or Taeniasis, Anthrax, and Listeriosis are all",
"target": "infectious diseases"
},
{
"input": "Botulism, Foodborne, Campylobacteriosis, and Lyme Disease are all",
"target": "infectious diseases"
},
{
"input": "What are the commonality of Plague, human, Dengue Virus Infection, and Cryptosporidiosis? Answer: They are all",
"target": "infectious diseases"
},
{
"input": "Domoic Acid Poisoning, Spotted Fever Rickettsiosis, and Brucellosis can be classified as",
"target": "infectious diseases"
},
{
"input": "What are the commonality of E. coli O157, Cyclosporiasis, and Relapsing Fever? Answer: They are all",
"target": "infectious diseases"
},
{
"input": "Shigellosis, Psittacosis, and Leptospirosis are all",
"target": "infectious diseases"
},
{
"input": "What are the commonality of 0.958333333, QUE PRETENDES, and Panini? Answer: They are all",
"target": [
"popular songs",
"top Spotify Songs"
]
},
{
"input": "It's You, Never Really Over, and Old Town Road - Remix are instances of",
"target": [
"popular songs",
"top Spotify Songs"
]
},
{
"input": "bad guy , Someone You Loved, and Lalala are examples of",
"target": [
"popular songs",
"top Spotify Songs"
]
},
{
"input": "How Do You Sleep?, I Don't Care , and Money In The Grave are all",
"target": [
"popular songs",
"top Spotify Songs"
]
},
{
"input": "Takeaway, Senorita, and Otro Trago - Remix are instances of",
"target": [
"popular songs",
"top Spotify Songs"
]
},
{
"input": "The similarity among boyfriend (with Social House), Ransom, and Loco Contigo is that they are all",
"target": [
"popular songs",
"top Spotify Songs"
]
},
{
"input": "The similarity among Con Calma, 7 rings, and Truth Hurts is that they are all",
"target": [
"popular songs",
"top Spotify Songs"
]
},
{
"input": "The similarity among Beautiful People (feat. Khalid), Soltera - Remix, and If I Can't Have You is that they are all",
"target": [
"popular songs",
"top Spotify Songs"
]
},
{
"input": "The London, China, and bad guy are examples of",
"target": [
"popular songs",
"top Spotify Songs"
]
},
{
"input": "Piece Of Your Heart, Goodbyes (Feat. Young Thug), and Dance Monkey are examples of",
"target": [
"popular songs",
"top Spotify Songs"
]
},
{
"input": "What are the commonality of Sandals, Ties, and Bracelet? Answer: They are all",
"target": "accessories"
},
{
"input": "What are the commonality of Night suits, Socks, and Sweatshirts? Answer: They are all",
"target": [
"Apparel",
"clothing"
]
},
{
"input": "Jeans, Tops, and Suits are examples of",
"target": [
"Apparel",
"clothing"
]
},
{
"input": "Bra, Nightdress, and Shirts are all",
"target": [
"Apparel",
"clothing"
]
},
{
"input": "Sunglasses, Pendant, and Watches are examples of",
"target": "accessories"
},
{
"input": "Earrings, Belts, and Heels can be classified as",
"target": "accessories"
},
{
"input": "Trousers, Innerwear Vests, and Rain Jacket are all",
"target": [
"Apparel",
"clothing",
"accessories"
]
},
{
"input": "Sports Shoes, Shorts, and Sweaters are all",
"target": [
"Apparel",
"clothing"
]
},
{
"input": "Skirts, Dresses, and Tshirts are instances of",
"target": [
"Apparel",
"clothing"
]
},
{
"input": "Waistcoat, Dresses, and Track Pants can be classified as",
"target": [
"Apparel",
"clothing"
]
},
{
"input": "The similarity among Pierre-Auguste Renoir, Pieter Bruegel, and Edouard Manet is that they are all",
"target": "artists"
},
{
"input": "The similarity among Mikhail Vrubel, Rene Magritte, and Amedeo Modigliani is that they are all",
"target": "artists"
},
{
"input": "What are the commonality of Pablo Picasso, Gustav Klimt, and Diego Velazquez? Answer: They are all",
"target": "artists"
},
{
"input": "Frida Kahlo, Kazimir Malevich, and Vasiliy Kandinskiy are all",
"target": "artists"
},
{
"input": "Jan van Eyck, Marc Chagall, and Edgar Degas are all",
"target": "artists"
},
{
"input": "Claude Monet, Titian, and Francisco Goya are all",
"target": "artists"
},
{
"input": "Alfred Sisley, Sandro Botticelli, and Henri Matisse are examples of",
"target": "artists"
},
{
"input": "Hieronymus Bosch, Leonardo da Vinci, and Andrei Rublev can be classified as",
"target": "artists"
},
{
"input": "The similarity among Giotto di Bondone, Caravaggio, and Peter Paul Rubens is that they are all",
"target": "artists"
},
{
"input": "What are the commonality of Rembrandt, Diego Rivera, and Vincent van Gogh? Answer: They are all",
"target": "artists"
},
{
"input": "US-MEXICAN WAR, WAR OF AUSTRIA WITH FRANCE AND PIEDMONT, and SECOND ENGLISH CIVIL WAR are instances of",
"target": "historical wars"
},
{
"input": "AUSTRO-ITALIAN WAR, JACOBITE REBELLION, and FRANCO-SPANISH WAR are instances of",
"target": "historical wars"
},
{
"input": "ZULU WAR, MONMOUTH'S REBELLION, and THIRTY YEAR'S WAR are all",
"target": "historical wars"
},
{
"input": "What are the commonality of DUTCH WAR, CRIMEAN WAR, and WAR OF THE FIRST COALITION? Answer: They are all",
"target": "historical wars"
},
{
"input": "AUSTRO-PRUSSIAN (SEVEN WEEK'S) WAR, GREAT NORTHERN WAR, and KING WILLIAM'S WAR can be classified as",
"target": "historical wars"
},
{
"input": "ITALO-ETHIOPIAN WAR, EGYPT AND THE SUDAN, and WAR OF THE SPANISH SUCCESSION can be classified as",
"target": "historical wars"
},
{
"input": "THE FRONDE, THE SEVEN YEAR'S WAR, and WAR OF THE SECOND COALITION can be classified as",
"target": "historical wars"
},
{
"input": "WAR OF TEXAN INDEPENDENCE, THE NAPOLEONIC WARS, and TRANSVAAL REVOLT can be classified as",
"target": "historical wars"
},
{
"input": "POLISH-TURKISH WAR, ENGLISH CIVIL WAR, and WAR OF THE AUSTRIAN SUCCESSION are all",
"target": "historical wars"
},
{
"input": "LATIN AMERICAN WARS OF INDEPENDENCE, AUSTRO-TURKISH WAR, and AMERICAN CIVIL WAR are all",
"target": "historical wars"
},
{
"input": "AMERICAN REVOLUTION, NETHERLAND'S WAR OF INDEPENDENCE, and FRANCO-PRUSSIAN WAR are examples of",
"target": "historical wars"
},
{
"input": "Building of meteorological station, Manor Kozhin, and Watch tower are instances of",
"target": [
"tourist_attractions",
"architecture in Russia",
"buildings in Russia"
]
},
{
"input": "The building of the gymnasium, Historical Reserve - the ruins of the mill them. KN Grudinina, and Chamber Stroganoff can be classified as",
"target": [
"tourist_attractions",
"architecture in Russia",
"architecture in Russia"
]
},
{
"input": "Signalno- watchtower in the village of Muni, Museum 'Old Sarepta'. House unmarried sisters, and The railway station of the XIX century in the village of Wärtsilä can be classified as",
"target": [
"tourist_attractions",
"architecture in Russia",
"architecture in Russia"
]
},
{
"input": "The similarity among House Society clerks, Transfiguration Cathedral., and The building of the Town Council is that they are all",
"target": [
"tourist_attractions",
"architecture in Russia",
"architecture in Russia"
]
},
{
"input": "The similarity among Volga-Don channel, Monument Dog Squad, and The building of the Medical Academy is that they are all",
"target": [
"tourist_attractions",
"architecture in Russia",
"architecture in Russia"
]
},
{
"input": "The similarity among Arbor on the Volga embankment, House AD Usanina, and Freedom Square in Tikhvin is that they are all",
"target": [
"tourist_attractions",
"architecture in Russia",
"architecture in Russia"
]
},
{
"input": "What are the commonality of post office, Mansion tradesman PF Blinov, and The building of the Russian-Chinese Bank? Answer: They are all",
"target": [
"tourist_attractions",
"architecture in Russia",
"architecture in Russia"
]
},
{
"input": "Profitable home Chelisheva, The House with Lions, and House under the steeple can be classified as",
"target": [
"tourist_attractions",
"architecture in Russia",
"architecture in Russia"
]
},
{
"input": "tower Kantemirovs, The building of the hotel 'cysts', and House of merchant A. Lebedev are instances of",
"target": [
"tourist_attractions",
"architecture in Russia",
"architecture in Russia"
]
},
{
"input": "The similarity among Signal and a watchtower in the village of Ali-Kuli, triumphal Arch, and Water tower with a chimney is that they are all",
"target": [
"tourist_attractions",
"architecture in Russia",
"architecture in Russia"
]
},
{
"input": "The similarity among Vegetables, maize, and Fibers is that they are all",
"target": [
"crops",
"agricultural products"
]
},
{
"input": "What are the commonality of Fruits, sugarcane, and rice? Answer: They are all",
"target": [
"crops",
"agricultural products"
]
},
{
"input": "Coarse Cereals, cotton, and wheat are instances of",
"target": [
"crops",
"agricultural products"
]
},
{
"input": "Oilseeds, Pulses, and jute are examples of",
"target": [
"crops",
"agricultural products"
]
},
{