File size: 34,764 Bytes
521df80 |
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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 |
{
"_name_or_path": "microsoft/beit-base-patch16-384",
"architectures": [
"BeitForImageClassification"
],
"attention_probs_dropout_prob": 0.0,
"auxiliary_channels": 256,
"auxiliary_concat_input": false,
"auxiliary_loss_weight": 0.4,
"auxiliary_num_convs": 1,
"drop_path_rate": 0.1,
"hidden_act": "gelu",
"hidden_dropout_prob": 0.0,
"hidden_size": 768,
"id2label": {
"0": "not_aesthetic",
"1": "aesthetic"
},
"image_size": 384,
"initializer_range": 0.02,
"intermediate_size": 3072,
"label2id": {
"Afghan hound, Afghan": 160,
"African chameleon, Chamaeleo chamaeleon": 47,
"African crocodile, Nile crocodile, Crocodylus niloticus": 49,
"African elephant, Loxodonta africana": 386,
"African grey, African gray, Psittacus erithacus": 87,
"African hunting dog, hyena dog, Cape hunting dog, Lycaon pictus": 275,
"Airedale, Airedale terrier": 191,
"American Staffordshire terrier, Staffordshire terrier, American pit bull terrier, pit bull terrier": 180,
"American alligator, Alligator mississipiensis": 50,
"American black bear, black bear, Ursus americanus, Euarctos americanus": 295,
"American chameleon, anole, Anolis carolinensis": 40,
"American coot, marsh hen, mud hen, water hen, Fulica americana": 137,
"American egret, great white heron, Egretta albus": 132,
"American lobster, Northern lobster, Maine lobster, Homarus americanus": 122,
"Angora, Angora rabbit": 332,
"Appenzeller": 240,
"Arabian camel, dromedary, Camelus dromedarius": 354,
"Arctic fox, white fox, Alopex lagopus": 279,
"Australian terrier": 193,
"Band Aid": 419,
"Bedlington terrier": 181,
"Bernese mountain dog": 239,
"Blenheim spaniel": 156,
"Border collie": 232,
"Border terrier": 182,
"Boston bull, Boston terrier": 195,
"Bouvier des Flandres, Bouviers des Flandres": 233,
"Brabancon griffon": 262,
"Brittany spaniel": 215,
"CD player": 485,
"Cardigan, Cardigan Welsh corgi": 264,
"Chesapeake Bay retriever": 209,
"Chihuahua": 151,
"Christmas stocking": 496,
"Crock Pot": 521,
"Dandie Dinmont, Dandie Dinmont terrier": 194,
"Doberman, Doberman pinscher": 236,
"Dungeness crab, Cancer magister": 118,
"Dutch oven": 544,
"Egyptian cat": 285,
"English foxhound": 167,
"English setter": 212,
"English springer, English springer spaniel": 217,
"EntleBucher": 241,
"Eskimo dog, husky": 248,
"European fire salamander, Salamandra salamandra": 25,
"European gallinule, Porphyrio porphyrio": 136,
"French bulldog": 245,
"French horn, horn": 566,
"French loaf": 930,
"German shepherd, German shepherd dog, German police dog, alsatian": 235,
"German short-haired pointer": 210,
"Gila monster, Heloderma suspectum": 45,
"Gordon setter": 214,
"Granny Smith": 948,
"Great Dane": 246,
"Great Pyrenees": 257,
"Greater Swiss Mountain dog": 238,
"Ibizan hound, Ibizan Podenco": 173,
"Indian cobra, Naja naja": 63,
"Indian elephant, Elephas maximus": 385,
"Irish setter, red setter": 213,
"Irish terrier": 184,
"Irish water spaniel": 221,
"Irish wolfhound": 170,
"Italian greyhound": 171,
"Japanese spaniel": 152,
"Kerry blue terrier": 183,
"Komodo dragon, Komodo lizard, dragon lizard, giant lizard, Varanus komodoensis": 48,
"Labrador retriever": 208,
"Lakeland terrier": 189,
"Leonberg": 255,
"Lhasa, Lhasa apso": 204,
"Loafer": 630,
"Madagascar cat, ring-tailed lemur, Lemur catta": 383,
"Maltese dog, Maltese terrier, Maltese": 153,
"Mexican hairless": 268,
"Model T": 661,
"Newfoundland, Newfoundland dog": 256,
"Norfolk terrier": 185,
"Norwegian elkhound, elkhound": 174,
"Norwich terrier": 186,
"Old English sheepdog, bobtail": 229,
"Pekinese, Pekingese, Peke": 154,
"Pembroke, Pembroke Welsh corgi": 263,
"Persian cat": 283,
"Petri dish": 712,
"Polaroid camera, Polaroid Land camera": 732,
"Pomeranian": 259,
"Rhodesian ridgeback": 159,
"Rottweiler": 234,
"Saint Bernard, St Bernard": 247,
"Saluki, gazelle hound": 176,
"Samoyed, Samoyede": 258,
"Scotch terrier, Scottish terrier, Scottie": 199,
"Scottish deerhound, deerhound": 177,
"Sealyham terrier, Sealyham": 190,
"Shetland sheepdog, Shetland sheep dog, Shetland": 230,
"Shih-Tzu": 155,
"Siamese cat, Siamese": 284,
"Siberian husky": 250,
"Staffordshire bullterrier, Staffordshire bull terrier": 179,
"Sussex spaniel": 220,
"Tibetan mastiff": 244,
"Tibetan terrier, chrysanthemum dog": 200,
"Walker hound, Walker foxhound": 166,
"Weimaraner": 178,
"Welsh springer spaniel": 218,
"West Highland white terrier": 203,
"Windsor tie": 906,
"Yorkshire terrier": 187,
"abacus": 398,
"abaya": 399,
"academic gown, academic robe, judge's robe": 400,
"accordion, piano accordion, squeeze box": 401,
"acorn": 988,
"acorn squash": 941,
"acoustic guitar": 402,
"admiral": 321,
"affenpinscher, monkey pinscher, monkey dog": 252,
"agama": 42,
"agaric": 992,
"aircraft carrier, carrier, flattop, attack aircraft carrier": 403,
"airliner": 404,
"airship, dirigible": 405,
"albatross, mollymawk": 146,
"alligator lizard": 44,
"alp": 970,
"altar": 406,
"ambulance": 407,
"amphibian, amphibious vehicle": 408,
"analog clock": 409,
"anemone fish": 393,
"ant, emmet, pismire": 310,
"apiary, bee house": 410,
"apron": 411,
"armadillo": 363,
"artichoke, globe artichoke": 944,
"ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin": 412,
"assault rifle, assault gun": 413,
"axolotl, mud puppy, Ambystoma mexicanum": 29,
"baboon": 372,
"backpack, back pack, knapsack, packsack, rucksack, haversack": 414,
"badger": 362,
"bagel, beigel": 931,
"bakery, bakeshop, bakehouse": 415,
"balance beam, beam": 416,
"bald eagle, American eagle, Haliaeetus leucocephalus": 22,
"balloon": 417,
"ballplayer, baseball player": 981,
"ballpoint, ballpoint pen, ballpen, Biro": 418,
"banana": 954,
"banded gecko": 38,
"banjo": 420,
"bannister, banister, balustrade, balusters, handrail": 421,
"barbell": 422,
"barber chair": 423,
"barbershop": 424,
"barn": 425,
"barn spider, Araneus cavaticus": 73,
"barometer": 426,
"barracouta, snoek": 389,
"barrel, cask": 427,
"barrow, garden cart, lawn cart, wheelbarrow": 428,
"baseball": 429,
"basenji": 253,
"basketball": 430,
"basset, basset hound": 161,
"bassinet": 431,
"bassoon": 432,
"bath towel": 434,
"bathing cap, swimming cap": 433,
"bathtub, bathing tub, bath, tub": 435,
"beach wagon, station wagon, wagon, estate car, beach waggon, station waggon, waggon": 436,
"beacon, lighthouse, beacon light, pharos": 437,
"beagle": 162,
"beaker": 438,
"bearskin, busby, shako": 439,
"beaver": 337,
"bee": 309,
"bee eater": 92,
"beer bottle": 440,
"beer glass": 441,
"bell cote, bell cot": 442,
"bell pepper": 945,
"bib": 443,
"bicycle-built-for-two, tandem bicycle, tandem": 444,
"bighorn, bighorn sheep, cimarron, Rocky Mountain bighorn, Rocky Mountain sheep, Ovis canadensis": 349,
"bikini, two-piece": 445,
"binder, ring-binder": 446,
"binoculars, field glasses, opera glasses": 447,
"birdhouse": 448,
"bison": 347,
"bittern": 133,
"black and gold garden spider, Argiope aurantia": 72,
"black grouse": 80,
"black stork, Ciconia nigra": 128,
"black swan, Cygnus atratus": 100,
"black widow, Latrodectus mactans": 75,
"black-and-tan coonhound": 165,
"black-footed ferret, ferret, Mustela nigripes": 359,
"bloodhound, sleuthhound": 163,
"bluetick": 164,
"boa constrictor, Constrictor constrictor": 61,
"boathouse": 449,
"bobsled, bobsleigh, bob": 450,
"bolete": 997,
"bolo tie, bolo, bola tie, bola": 451,
"bonnet, poke bonnet": 452,
"book jacket, dust cover, dust jacket, dust wrapper": 921,
"bookcase": 453,
"bookshop, bookstore, bookstall": 454,
"borzoi, Russian wolfhound": 169,
"bottlecap": 455,
"bow": 456,
"bow tie, bow-tie, bowtie": 457,
"box turtle, box tortoise": 37,
"boxer": 242,
"brain coral": 109,
"brambling, Fringilla montifringilla": 10,
"brass, memorial tablet, plaque": 458,
"brassiere, bra, bandeau": 459,
"breakwater, groin, groyne, mole, bulwark, seawall, jetty": 460,
"breastplate, aegis, egis": 461,
"briard": 226,
"broccoli": 937,
"broom": 462,
"brown bear, bruin, Ursus arctos": 294,
"bubble": 971,
"bucket, pail": 463,
"buckeye, horse chestnut, conker": 990,
"buckle": 464,
"bulbul": 16,
"bull mastiff": 243,
"bullet train, bullet": 466,
"bulletproof vest": 465,
"bullfrog, Rana catesbeiana": 30,
"burrito": 965,
"bustard": 138,
"butcher shop, meat market": 467,
"butternut squash": 942,
"cab, hack, taxi, taxicab": 468,
"cabbage butterfly": 324,
"cairn, cairn terrier": 192,
"caldron, cauldron": 469,
"can opener, tin opener": 473,
"candle, taper, wax light": 470,
"cannon": 471,
"canoe": 472,
"capuchin, ringtail, Cebus capucinus": 378,
"car mirror": 475,
"car wheel": 479,
"carbonara": 959,
"cardigan": 474,
"cardoon": 946,
"carousel, carrousel, merry-go-round, roundabout, whirligig": 476,
"carpenter's kit, tool kit": 477,
"carton": 478,
"cash machine, cash dispenser, automated teller machine, automatic teller machine, automated teller, automatic teller, ATM": 480,
"cassette": 481,
"cassette player": 482,
"castle": 483,
"catamaran": 484,
"cauliflower": 938,
"cello, violoncello": 486,
"cellular telephone, cellular phone, cellphone, cell, mobile phone": 487,
"centipede": 79,
"chain": 488,
"chain mail, ring mail, mail, chain armor, chain armour, ring armor, ring armour": 490,
"chain saw, chainsaw": 491,
"chainlink fence": 489,
"chambered nautilus, pearly nautilus, nautilus": 117,
"cheeseburger": 933,
"cheetah, chetah, Acinonyx jubatus": 293,
"chest": 492,
"chickadee": 19,
"chiffonier, commode": 493,
"chime, bell, gong": 494,
"chimpanzee, chimp, Pan troglodytes": 367,
"china cabinet, china closet": 495,
"chiton, coat-of-mail shell, sea cradle, polyplacophore": 116,
"chocolate sauce, chocolate syrup": 960,
"chow, chow chow": 260,
"church, church building": 497,
"cicada, cicala": 316,
"cinema, movie theater, movie theatre, movie house, picture palace": 498,
"cleaver, meat cleaver, chopper": 499,
"cliff dwelling": 500,
"cliff, drop, drop-off": 972,
"cloak": 501,
"clog, geta, patten, sabot": 502,
"clumber, clumber spaniel": 216,
"cock": 7,
"cocker spaniel, English cocker spaniel, cocker": 219,
"cockroach, roach": 314,
"cocktail shaker": 503,
"coffee mug": 504,
"coffeepot": 505,
"coho, cohoe, coho salmon, blue jack, silver salmon, Oncorhynchus kisutch": 391,
"coil, spiral, volute, whorl, helix": 506,
"collie": 231,
"colobus, colobus monkey": 375,
"combination lock": 507,
"comic book": 917,
"common iguana, iguana, Iguana iguana": 39,
"common newt, Triturus vulgaris": 26,
"computer keyboard, keypad": 508,
"conch": 112,
"confectionery, confectionary, candy store": 509,
"consomme": 925,
"container ship, containership, container vessel": 510,
"convertible": 511,
"coral fungus": 991,
"coral reef": 973,
"corkscrew, bottle screw": 512,
"corn": 987,
"cornet, horn, trumpet, trump": 513,
"coucal": 91,
"cougar, puma, catamount, mountain lion, painter, panther, Felis concolor": 286,
"cowboy boot": 514,
"cowboy hat, ten-gallon hat": 515,
"coyote, prairie wolf, brush wolf, Canis latrans": 272,
"cradle": 516,
"crane": 517,
"crash helmet": 518,
"crate": 519,
"crayfish, crawfish, crawdad, crawdaddy": 124,
"crib, cot": 520,
"cricket": 312,
"croquet ball": 522,
"crossword puzzle, crossword": 918,
"crutch": 523,
"cucumber, cuke": 943,
"cuirass": 524,
"cup": 968,
"curly-coated retriever": 206,
"custard apple": 956,
"daisy": 985,
"dalmatian, coach dog, carriage dog": 251,
"dam, dike, dyke": 525,
"damselfly": 320,
"desk": 526,
"desktop computer": 527,
"dhole, Cuon alpinus": 274,
"dial telephone, dial phone": 528,
"diamondback, diamondback rattlesnake, Crotalus adamanteus": 67,
"diaper, nappy, napkin": 529,
"digital clock": 530,
"digital watch": 531,
"dingo, warrigal, warragal, Canis dingo": 273,
"dining table, board": 532,
"dishrag, dishcloth": 533,
"dishwasher, dish washer, dishwashing machine": 534,
"disk brake, disc brake": 535,
"dock, dockage, docking facility": 536,
"dogsled, dog sled, dog sleigh": 537,
"dome": 538,
"doormat, welcome mat": 539,
"dough": 961,
"dowitcher": 142,
"dragonfly, darning needle, devil's darning needle, sewing needle, snake feeder, snake doctor, mosquito hawk, skeeter hawk": 319,
"drake": 97,
"drilling platform, offshore rig": 540,
"drum, membranophone, tympan": 541,
"drumstick": 542,
"dugong, Dugong dugon": 149,
"dumbbell": 543,
"dung beetle": 305,
"ear, spike, capitulum": 998,
"earthstar": 995,
"echidna, spiny anteater, anteater": 102,
"eel": 390,
"eft": 27,
"eggnog": 969,
"electric fan, blower": 545,
"electric guitar": 546,
"electric locomotive": 547,
"electric ray, crampfish, numbfish, torpedo": 5,
"entertainment center": 548,
"envelope": 549,
"espresso": 967,
"espresso maker": 550,
"face powder": 551,
"feather boa, boa": 552,
"fiddler crab": 120,
"fig": 952,
"file, file cabinet, filing cabinet": 553,
"fire engine, fire truck": 555,
"fire screen, fireguard": 556,
"fireboat": 554,
"flagpole, flagstaff": 557,
"flamingo": 130,
"flat-coated retriever": 205,
"flatworm, platyhelminth": 110,
"flute, transverse flute": 558,
"fly": 308,
"folding chair": 559,
"football helmet": 560,
"forklift": 561,
"fountain": 562,
"fountain pen": 563,
"four-poster": 564,
"fox squirrel, eastern fox squirrel, Sciurus niger": 335,
"freight car": 565,
"frilled lizard, Chlamydosaurus kingi": 43,
"frying pan, frypan, skillet": 567,
"fur coat": 568,
"gar, garfish, garpike, billfish, Lepisosteus osseus": 395,
"garbage truck, dustcart": 569,
"garden spider, Aranea diademata": 74,
"garter snake, grass snake": 57,
"gas pump, gasoline pump, petrol pump, island dispenser": 571,
"gasmask, respirator, gas helmet": 570,
"gazelle": 353,
"geyser": 974,
"giant panda, panda, panda bear, coon bear, Ailuropoda melanoleuca": 388,
"giant schnauzer": 197,
"gibbon, Hylobates lar": 368,
"go-kart": 573,
"goblet": 572,
"golden retriever": 207,
"goldfinch, Carduelis carduelis": 11,
"goldfish, Carassius auratus": 1,
"golf ball": 574,
"golfcart, golf cart": 575,
"gondola": 576,
"gong, tam-tam": 577,
"goose": 99,
"gorilla, Gorilla gorilla": 366,
"gown": 578,
"grand piano, grand": 579,
"grasshopper, hopper": 311,
"great grey owl, great gray owl, Strix nebulosa": 24,
"great white shark, white shark, man-eater, man-eating shark, Carcharodon carcharias": 2,
"green lizard, Lacerta viridis": 46,
"green mamba": 64,
"green snake, grass snake": 55,
"greenhouse, nursery, glasshouse": 580,
"grey fox, gray fox, Urocyon cinereoargenteus": 280,
"grey whale, gray whale, devilfish, Eschrichtius gibbosus, Eschrichtius robustus": 147,
"grille, radiator grille": 581,
"grocery store, grocery, food market, market": 582,
"groenendael": 224,
"groom, bridegroom": 982,
"ground beetle, carabid beetle": 302,
"guacamole": 924,
"guenon, guenon monkey": 370,
"guillotine": 583,
"guinea pig, Cavia cobaya": 338,
"gyromitra": 993,
"hair slide": 584,
"hair spray": 585,
"half track": 586,
"hammer": 587,
"hammerhead, hammerhead shark": 4,
"hamper": 588,
"hamster": 333,
"hand blower, blow dryer, blow drier, hair dryer, hair drier": 589,
"hand-held computer, hand-held microcomputer": 590,
"handkerchief, hankie, hanky, hankey": 591,
"hard disc, hard disk, fixed disk": 592,
"hare": 331,
"harmonica, mouth organ, harp, mouth harp": 593,
"harp": 594,
"hartebeest": 351,
"harvester, reaper": 595,
"harvestman, daddy longlegs, Phalangium opilio": 70,
"hatchet": 596,
"hay": 958,
"head cabbage": 936,
"hen": 8,
"hen-of-the-woods, hen of the woods, Polyporus frondosus, Grifola frondosa": 996,
"hermit crab": 125,
"hip, rose hip, rosehip": 989,
"hippopotamus, hippo, river horse, Hippopotamus amphibius": 344,
"hog, pig, grunter, squealer, Sus scrofa": 341,
"hognose snake, puff adder, sand viper": 54,
"holster": 597,
"home theater, home theatre": 598,
"honeycomb": 599,
"hook, claw": 600,
"hoopskirt, crinoline": 601,
"horizontal bar, high bar": 602,
"hornbill": 93,
"horned viper, cerastes, sand viper, horned asp, Cerastes cornutus": 66,
"horse cart, horse-cart": 603,
"hot pot, hotpot": 926,
"hotdog, hot dog, red hot": 934,
"hourglass": 604,
"house finch, linnet, Carpodacus mexicanus": 12,
"howler monkey, howler": 379,
"hummingbird": 94,
"hyena, hyaena": 276,
"iPod": 605,
"ibex, Capra ibex": 350,
"ice bear, polar bear, Ursus Maritimus, Thalarctos maritimus": 296,
"ice cream, icecream": 928,
"ice lolly, lolly, lollipop, popsicle": 929,
"impala, Aepyceros melampus": 352,
"indigo bunting, indigo finch, indigo bird, Passerina cyanea": 14,
"indri, indris, Indri indri, Indri brevicaudatus": 384,
"iron, smoothing iron": 606,
"isopod": 126,
"jacamar": 95,
"jack-o'-lantern": 607,
"jackfruit, jak, jack": 955,
"jaguar, panther, Panthera onca, Felis onca": 290,
"jay": 17,
"jean, blue jean, denim": 608,
"jeep, landrover": 609,
"jellyfish": 107,
"jersey, T-shirt, tee shirt": 610,
"jigsaw puzzle": 611,
"jinrikisha, ricksha, rickshaw": 612,
"joystick": 613,
"junco, snowbird": 13,
"keeshond": 261,
"kelpie": 227,
"killer whale, killer, orca, grampus, sea wolf, Orcinus orca": 148,
"kimono": 614,
"king crab, Alaska crab, Alaskan king crab, Alaska king crab, Paralithodes camtschatica": 121,
"king penguin, Aptenodytes patagonica": 145,
"king snake, kingsnake": 56,
"kit fox, Vulpes macrotis": 278,
"kite": 21,
"knee pad": 615,
"knot": 616,
"koala, koala bear, kangaroo bear, native bear, Phascolarctos cinereus": 105,
"komondor": 228,
"kuvasz": 222,
"lab coat, laboratory coat": 617,
"lacewing, lacewing fly": 318,
"ladle": 618,
"ladybug, ladybeetle, lady beetle, ladybird, ladybird beetle": 301,
"lakeside, lakeshore": 975,
"lampshade, lamp shade": 619,
"langur": 374,
"laptop, laptop computer": 620,
"lawn mower, mower": 621,
"leaf beetle, chrysomelid": 304,
"leafhopper": 317,
"leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea": 34,
"lemon": 951,
"lens cap, lens cover": 622,
"leopard, Panthera pardus": 288,
"lesser panda, red panda, panda, bear cat, cat bear, Ailurus fulgens": 387,
"letter opener, paper knife, paperknife": 623,
"library": 624,
"lifeboat": 625,
"lighter, light, igniter, ignitor": 626,
"limousine, limo": 627,
"limpkin, Aramus pictus": 135,
"liner, ocean liner": 628,
"lion, king of beasts, Panthera leo": 291,
"lionfish": 396,
"lipstick, lip rouge": 629,
"little blue heron, Egretta caerulea": 131,
"llama": 355,
"loggerhead, loggerhead turtle, Caretta caretta": 33,
"long-horned beetle, longicorn, longicorn beetle": 303,
"lorikeet": 90,
"lotion": 631,
"loudspeaker, speaker, speaker unit, loudspeaker system, speaker system": 632,
"loupe, jeweler's loupe": 633,
"lumbermill, sawmill": 634,
"lycaenid, lycaenid butterfly": 326,
"lynx, catamount": 287,
"macaque": 373,
"macaw": 88,
"magnetic compass": 635,
"magpie": 18,
"mailbag, postbag": 636,
"mailbox, letter box": 637,
"maillot": 638,
"maillot, tank suit": 639,
"malamute, malemute, Alaskan malamute": 249,
"malinois": 225,
"manhole cover": 640,
"mantis, mantid": 315,
"maraca": 641,
"marimba, xylophone": 642,
"marmoset": 377,
"marmot": 336,
"mashed potato": 935,
"mask": 643,
"matchstick": 644,
"maypole": 645,
"maze, labyrinth": 646,
"measuring cup": 647,
"meat loaf, meatloaf": 962,
"medicine chest, medicine cabinet": 648,
"meerkat, mierkat": 299,
"megalith, megalithic structure": 649,
"menu": 922,
"microphone, mike": 650,
"microwave, microwave oven": 651,
"military uniform": 652,
"milk can": 653,
"miniature pinscher": 237,
"miniature poodle": 266,
"miniature schnauzer": 196,
"minibus": 654,
"miniskirt, mini": 655,
"minivan": 656,
"mink": 357,
"missile": 657,
"mitten": 658,
"mixing bowl": 659,
"mobile home, manufactured home": 660,
"modem": 662,
"monarch, monarch butterfly, milkweed butterfly, Danaus plexippus": 323,
"monastery": 663,
"mongoose": 298,
"monitor": 664,
"moped": 665,
"mortar": 666,
"mortarboard": 667,
"mosque": 668,
"mosquito net": 669,
"motor scooter, scooter": 670,
"mountain bike, all-terrain bike, off-roader": 671,
"mountain tent": 672,
"mouse, computer mouse": 673,
"mousetrap": 674,
"moving van": 675,
"mud turtle": 35,
"mushroom": 947,
"muzzle": 676,
"nail": 677,
"neck brace": 678,
"necklace": 679,
"nematode, nematode worm, roundworm": 111,
"night snake, Hypsiglena torquata": 60,
"nipple": 680,
"notebook, notebook computer": 681,
"obelisk": 682,
"oboe, hautboy, hautbois": 683,
"ocarina, sweet potato": 684,
"odometer, hodometer, mileometer, milometer": 685,
"oil filter": 686,
"orange": 950,
"orangutan, orang, orangutang, Pongo pygmaeus": 365,
"organ, pipe organ": 687,
"oscilloscope, scope, cathode-ray oscilloscope, CRO": 688,
"ostrich, Struthio camelus": 9,
"otter": 360,
"otterhound, otter hound": 175,
"overskirt": 689,
"ox": 345,
"oxcart": 690,
"oxygen mask": 691,
"oystercatcher, oyster catcher": 143,
"packet": 692,
"paddle, boat paddle": 693,
"paddlewheel, paddle wheel": 694,
"padlock": 695,
"paintbrush": 696,
"pajama, pyjama, pj's, jammies": 697,
"palace": 698,
"panpipe, pandean pipe, syrinx": 699,
"paper towel": 700,
"papillon": 157,
"parachute, chute": 701,
"parallel bars, bars": 702,
"park bench": 703,
"parking meter": 704,
"partridge": 86,
"passenger car, coach, carriage": 705,
"patas, hussar monkey, Erythrocebus patas": 371,
"patio, terrace": 706,
"pay-phone, pay-station": 707,
"peacock": 84,
"pedestal, plinth, footstall": 708,
"pelican": 144,
"pencil box, pencil case": 709,
"pencil sharpener": 710,
"perfume, essence": 711,
"photocopier": 713,
"pick, plectrum, plectron": 714,
"pickelhaube": 715,
"picket fence, paling": 716,
"pickup, pickup truck": 717,
"pier": 718,
"piggy bank, penny bank": 719,
"pill bottle": 720,
"pillow": 721,
"pineapple, ananas": 953,
"ping-pong ball": 722,
"pinwheel": 723,
"pirate, pirate ship": 724,
"pitcher, ewer": 725,
"pizza, pizza pie": 963,
"plane, carpenter's plane, woodworking plane": 726,
"planetarium": 727,
"plastic bag": 728,
"plate": 923,
"plate rack": 729,
"platypus, duckbill, duckbilled platypus, duck-billed platypus, Ornithorhynchus anatinus": 103,
"plow, plough": 730,
"plunger, plumber's helper": 731,
"pole": 733,
"polecat, fitch, foulmart, foumart, Mustela putorius": 358,
"police van, police wagon, paddy wagon, patrol wagon, wagon, black Maria": 734,
"pomegranate": 957,
"poncho": 735,
"pool table, billiard table, snooker table": 736,
"pop bottle, soda bottle": 737,
"porcupine, hedgehog": 334,
"pot, flowerpot": 738,
"potpie": 964,
"potter's wheel": 739,
"power drill": 740,
"prairie chicken, prairie grouse, prairie fowl": 83,
"prayer rug, prayer mat": 741,
"pretzel": 932,
"printer": 742,
"prison, prison house": 743,
"proboscis monkey, Nasalis larvatus": 376,
"projectile, missile": 744,
"projector": 745,
"promontory, headland, head, foreland": 976,
"ptarmigan": 81,
"puck, hockey puck": 746,
"puffer, pufferfish, blowfish, globefish": 397,
"pug, pug-dog": 254,
"punching bag, punch bag, punching ball, punchball": 747,
"purse": 748,
"quail": 85,
"quill, quill pen": 749,
"quilt, comforter, comfort, puff": 750,
"racer, race car, racing car": 751,
"racket, racquet": 752,
"radiator": 753,
"radio telescope, radio reflector": 755,
"radio, wireless": 754,
"rain barrel": 756,
"ram, tup": 348,
"rapeseed": 984,
"recreational vehicle, RV, R.V.": 757,
"red fox, Vulpes vulpes": 277,
"red wine": 966,
"red wolf, maned wolf, Canis rufus, Canis niger": 271,
"red-backed sandpiper, dunlin, Erolia alpina": 140,
"red-breasted merganser, Mergus serrator": 98,
"redbone": 168,
"redshank, Tringa totanus": 141,
"reel": 758,
"reflex camera": 759,
"refrigerator, icebox": 760,
"remote control, remote": 761,
"restaurant, eating house, eating place, eatery": 762,
"revolver, six-gun, six-shooter": 763,
"rhinoceros beetle": 306,
"rifle": 764,
"ringlet, ringlet butterfly": 322,
"ringneck snake, ring-necked snake, ring snake": 53,
"robin, American robin, Turdus migratorius": 15,
"rock beauty, Holocanthus tricolor": 392,
"rock crab, Cancer irroratus": 119,
"rock python, rock snake, Python sebae": 62,
"rocking chair, rocker": 765,
"rotisserie": 766,
"rubber eraser, rubber, pencil eraser": 767,
"ruddy turnstone, Arenaria interpres": 139,
"ruffed grouse, partridge, Bonasa umbellus": 82,
"rugby ball": 768,
"rule, ruler": 769,
"running shoe": 770,
"safe": 771,
"safety pin": 772,
"saltshaker, salt shaker": 773,
"sandal": 774,
"sandbar, sand bar": 977,
"sarong": 775,
"sax, saxophone": 776,
"scabbard": 777,
"scale, weighing machine": 778,
"schipperke": 223,
"school bus": 779,
"schooner": 780,
"scoreboard": 781,
"scorpion": 71,
"screen, CRT screen": 782,
"screw": 783,
"screwdriver": 784,
"scuba diver": 983,
"sea anemone, anemone": 108,
"sea cucumber, holothurian": 329,
"sea lion": 150,
"sea slug, nudibranch": 115,
"sea snake": 65,
"sea urchin": 328,
"seashore, coast, seacoast, sea-coast": 978,
"seat belt, seatbelt": 785,
"sewing machine": 786,
"shield, buckler": 787,
"shoe shop, shoe-shop, shoe store": 788,
"shoji": 789,
"shopping basket": 790,
"shopping cart": 791,
"shovel": 792,
"shower cap": 793,
"shower curtain": 794,
"siamang, Hylobates syndactylus, Symphalangus syndactylus": 369,
"sidewinder, horned rattlesnake, Crotalus cerastes": 68,
"silky terrier, Sydney silky": 201,
"ski": 795,
"ski mask": 796,
"skunk, polecat, wood pussy": 361,
"sleeping bag": 797,
"slide rule, slipstick": 798,
"sliding door": 799,
"slot, one-armed bandit": 800,
"sloth bear, Melursus ursinus, Ursus ursinus": 297,
"slug": 114,
"snail": 113,
"snorkel": 801,
"snow leopard, ounce, Panthera uncia": 289,
"snowmobile": 802,
"snowplow, snowplough": 803,
"soap dispenser": 804,
"soccer ball": 805,
"sock": 806,
"soft-coated wheaten terrier": 202,
"solar dish, solar collector, solar furnace": 807,
"sombrero": 808,
"sorrel": 339,
"soup bowl": 809,
"space bar": 810,
"space heater": 811,
"space shuttle": 812,
"spaghetti squash": 940,
"spatula": 813,
"speedboat": 814,
"spider monkey, Ateles geoffroyi": 381,
"spider web, spider's web": 815,
"spindle": 816,
"spiny lobster, langouste, rock lobster, crawfish, crayfish, sea crawfish": 123,
"spoonbill": 129,
"sports car, sport car": 817,
"spotlight, spot": 818,
"spotted salamander, Ambystoma maculatum": 28,
"squirrel monkey, Saimiri sciureus": 382,
"stage": 819,
"standard poodle": 267,
"standard schnauzer": 198,
"starfish, sea star": 327,
"steam locomotive": 820,
"steel arch bridge": 821,
"steel drum": 822,
"stethoscope": 823,
"stingray": 6,
"stinkhorn, carrion fungus": 994,
"stole": 824,
"stone wall": 825,
"stopwatch, stop watch": 826,
"stove": 827,
"strainer": 828,
"strawberry": 949,
"street sign": 919,
"streetcar, tram, tramcar, trolley, trolley car": 829,
"stretcher": 830,
"studio couch, day bed": 831,
"stupa, tope": 832,
"sturgeon": 394,
"submarine, pigboat, sub, U-boat": 833,
"suit, suit of clothes": 834,
"sulphur butterfly, sulfur butterfly": 325,
"sulphur-crested cockatoo, Kakatoe galerita, Cacatua galerita": 89,
"sundial": 835,
"sunglass": 836,
"sunglasses, dark glasses, shades": 837,
"sunscreen, sunblock, sun blocker": 838,
"suspension bridge": 839,
"swab, swob, mop": 840,
"sweatshirt": 841,
"swimming trunks, bathing trunks": 842,
"swing": 843,
"switch, electric switch, electrical switch": 844,
"syringe": 845,
"tabby, tabby cat": 281,
"table lamp": 846,
"tailed frog, bell toad, ribbed toad, tailed toad, Ascaphus trui": 32,
"tank, army tank, armored combat vehicle, armoured combat vehicle": 847,
"tape player": 848,
"tarantula": 76,
"teapot": 849,
"teddy, teddy bear": 850,
"television, television system": 851,
"tench, Tinca tinca": 0,
"tennis ball": 852,
"terrapin": 36,
"thatch, thatched roof": 853,
"theater curtain, theatre curtain": 854,
"thimble": 855,
"three-toed sloth, ai, Bradypus tridactylus": 364,
"thresher, thrasher, threshing machine": 856,
"throne": 857,
"thunder snake, worm snake, Carphophis amoenus": 52,
"tick": 78,
"tiger beetle": 300,
"tiger cat": 282,
"tiger shark, Galeocerdo cuvieri": 3,
"tiger, Panthera tigris": 292,
"tile roof": 858,
"timber wolf, grey wolf, gray wolf, Canis lupus": 269,
"titi, titi monkey": 380,
"toaster": 859,
"tobacco shop, tobacconist shop, tobacconist": 860,
"toilet seat": 861,
"toilet tissue, toilet paper, bathroom tissue": 999,
"torch": 862,
"totem pole": 863,
"toucan": 96,
"tow truck, tow car, wrecker": 864,
"toy poodle": 265,
"toy terrier": 158,
"toyshop": 865,
"tractor": 866,
"traffic light, traffic signal, stoplight": 920,
"trailer truck, tractor trailer, trucking rig, rig, articulated lorry, semi": 867,
"tray": 868,
"tree frog, tree-frog": 31,
"trench coat": 869,
"triceratops": 51,
"tricycle, trike, velocipede": 870,
"trifle": 927,
"trilobite": 69,
"trimaran": 871,
"tripod": 872,
"triumphal arch": 873,
"trolleybus, trolley coach, trackless trolley": 874,
"trombone": 875,
"tub, vat": 876,
"turnstile": 877,
"tusker": 101,
"typewriter keyboard": 878,
"umbrella": 879,
"unicycle, monocycle": 880,
"upright, upright piano": 881,
"vacuum, vacuum cleaner": 882,
"valley, vale": 979,
"vase": 883,
"vault": 884,
"velvet": 885,
"vending machine": 886,
"vestment": 887,
"viaduct": 888,
"vine snake": 59,
"violin, fiddle": 889,
"vizsla, Hungarian pointer": 211,
"volcano": 980,
"volleyball": 890,
"vulture": 23,
"waffle iron": 891,
"walking stick, walkingstick, stick insect": 313,
"wall clock": 892,
"wallaby, brush kangaroo": 104,
"wallet, billfold, notecase, pocketbook": 893,
"wardrobe, closet, press": 894,
"warplane, military plane": 895,
"warthog": 343,
"washbasin, handbasin, washbowl, lavabo, wash-hand basin": 896,
"washer, automatic washer, washing machine": 897,
"water bottle": 898,
"water buffalo, water ox, Asiatic buffalo, Bubalus bubalis": 346,
"water jug": 899,
"water ouzel, dipper": 20,
"water snake": 58,
"water tower": 900,
"weasel": 356,
"web site, website, internet site, site": 916,
"weevil": 307,
"whippet": 172,
"whiptail, whiptail lizard": 41,
"whiskey jug": 901,
"whistle": 902,
"white stork, Ciconia ciconia": 127,
"white wolf, Arctic wolf, Canis lupus tundrarum": 270,
"wig": 903,
"wild boar, boar, Sus scrofa": 342,
"window screen": 904,
"window shade": 905,
"wine bottle": 907,
"wing": 908,
"wire-haired fox terrier": 188,
"wok": 909,
"wolf spider, hunting spider": 77,
"wombat": 106,
"wood rabbit, cottontail, cottontail rabbit": 330,
"wooden spoon": 910,
"wool, woolen, woollen": 911,
"worm fence, snake fence, snake-rail fence, Virginia fence": 912,
"wreck": 913,
"yawl": 914,
"yellow lady's slipper, yellow lady-slipper, Cypripedium calceolus, Cypripedium parviflorum": 986,
"yurt": 915,
"zebra": 340,
"zucchini, courgette": 939
},
"layer_norm_eps": 1e-12,
"layer_scale_init_value": 0.1,
"model_type": "beit",
"num_attention_heads": 12,
"num_channels": 3,
"num_hidden_layers": 12,
"out_indices": [
3,
5,
7,
11
],
"patch_size": 16,
"pool_scales": [
1,
2,
3,
6
],
"problem_type": "single_label_classification",
"semantic_loss_ignore_index": 255,
"torch_dtype": "float32",
"transformers_version": "4.24.0",
"use_absolute_position_embeddings": false,
"use_auxiliary_head": true,
"use_mask_token": false,
"use_mean_pooling": true,
"use_relative_position_bias": true,
"use_shared_relative_position_bias": false,
"vocab_size": 8192
}
|