File size: 58,289 Bytes
0708f11 |
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 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 |
{
"_out_features": [
"stage12"
],
"_out_indices": [
12
],
"apply_layernorm": true,
"architectures": [
"Dinov2ForImageClassification"
],
"attention_probs_dropout_prob": 0.0,
"drop_path_rate": 0.0,
"hidden_act": "gelu",
"hidden_dropout_prob": 0.0,
"hidden_size": 1024,
"id2label": {
"0": "tench, Tinca tinca",
"1": "goldfish, Carassius auratus",
"2": "great white shark, white shark, man-eater, man-eating shark, Carcharodon carcharias",
"3": "tiger shark, Galeocerdo cuvieri",
"4": "hammerhead, hammerhead shark",
"5": "electric ray, crampfish, numbfish, torpedo",
"6": "stingray",
"7": "cock",
"8": "hen",
"9": "ostrich, Struthio camelus",
"10": "brambling, Fringilla montifringilla",
"11": "goldfinch, Carduelis carduelis",
"12": "house finch, linnet, Carpodacus mexicanus",
"13": "junco, snowbird",
"14": "indigo bunting, indigo finch, indigo bird, Passerina cyanea",
"15": "robin, American robin, Turdus migratorius",
"16": "bulbul",
"17": "jay",
"18": "magpie",
"19": "chickadee",
"20": "water ouzel, dipper",
"21": "kite",
"22": "bald eagle, American eagle, Haliaeetus leucocephalus",
"23": "vulture",
"24": "great grey owl, great gray owl, Strix nebulosa",
"25": "European fire salamander, Salamandra salamandra",
"26": "common newt, Triturus vulgaris",
"27": "eft",
"28": "spotted salamander, Ambystoma maculatum",
"29": "axolotl, mud puppy, Ambystoma mexicanum",
"30": "bullfrog, Rana catesbeiana",
"31": "tree frog, tree-frog",
"32": "tailed frog, bell toad, ribbed toad, tailed toad, Ascaphus trui",
"33": "loggerhead, loggerhead turtle, Caretta caretta",
"34": "leatherback turtle, leatherback, leathery turtle, Dermochelys coriacea",
"35": "mud turtle",
"36": "terrapin",
"37": "box turtle, box tortoise",
"38": "banded gecko",
"39": "common iguana, iguana, Iguana iguana",
"40": "American chameleon, anole, Anolis carolinensis",
"41": "whiptail, whiptail lizard",
"42": "agama",
"43": "frilled lizard, Chlamydosaurus kingi",
"44": "alligator lizard",
"45": "Gila monster, Heloderma suspectum",
"46": "green lizard, Lacerta viridis",
"47": "African chameleon, Chamaeleo chamaeleon",
"48": "Komodo dragon, Komodo lizard, dragon lizard, giant lizard, Varanus komodoensis",
"49": "African crocodile, Nile crocodile, Crocodylus niloticus",
"50": "American alligator, Alligator mississipiensis",
"51": "triceratops",
"52": "thunder snake, worm snake, Carphophis amoenus",
"53": "ringneck snake, ring-necked snake, ring snake",
"54": "hognose snake, puff adder, sand viper",
"55": "green snake, grass snake",
"56": "king snake, kingsnake",
"57": "garter snake, grass snake",
"58": "water snake",
"59": "vine snake",
"60": "night snake, Hypsiglena torquata",
"61": "boa constrictor, Constrictor constrictor",
"62": "rock python, rock snake, Python sebae",
"63": "Indian cobra, Naja naja",
"64": "green mamba",
"65": "sea snake",
"66": "horned viper, cerastes, sand viper, horned asp, Cerastes cornutus",
"67": "diamondback, diamondback rattlesnake, Crotalus adamanteus",
"68": "sidewinder, horned rattlesnake, Crotalus cerastes",
"69": "trilobite",
"70": "harvestman, daddy longlegs, Phalangium opilio",
"71": "scorpion",
"72": "black and gold garden spider, Argiope aurantia",
"73": "barn spider, Araneus cavaticus",
"74": "garden spider, Aranea diademata",
"75": "black widow, Latrodectus mactans",
"76": "tarantula",
"77": "wolf spider, hunting spider",
"78": "tick",
"79": "centipede",
"80": "black grouse",
"81": "ptarmigan",
"82": "ruffed grouse, partridge, Bonasa umbellus",
"83": "prairie chicken, prairie grouse, prairie fowl",
"84": "peacock",
"85": "quail",
"86": "partridge",
"87": "African grey, African gray, Psittacus erithacus",
"88": "macaw",
"89": "sulphur-crested cockatoo, Kakatoe galerita, Cacatua galerita",
"90": "lorikeet",
"91": "coucal",
"92": "bee eater",
"93": "hornbill",
"94": "hummingbird",
"95": "jacamar",
"96": "toucan",
"97": "drake",
"98": "red-breasted merganser, Mergus serrator",
"99": "goose",
"100": "black swan, Cygnus atratus",
"101": "tusker",
"102": "echidna, spiny anteater, anteater",
"103": "platypus, duckbill, duckbilled platypus, duck-billed platypus, Ornithorhynchus anatinus",
"104": "wallaby, brush kangaroo",
"105": "koala, koala bear, kangaroo bear, native bear, Phascolarctos cinereus",
"106": "wombat",
"107": "jellyfish",
"108": "sea anemone, anemone",
"109": "brain coral",
"110": "flatworm, platyhelminth",
"111": "nematode, nematode worm, roundworm",
"112": "conch",
"113": "snail",
"114": "slug",
"115": "sea slug, nudibranch",
"116": "chiton, coat-of-mail shell, sea cradle, polyplacophore",
"117": "chambered nautilus, pearly nautilus, nautilus",
"118": "Dungeness crab, Cancer magister",
"119": "rock crab, Cancer irroratus",
"120": "fiddler crab",
"121": "king crab, Alaska crab, Alaskan king crab, Alaska king crab, Paralithodes camtschatica",
"122": "American lobster, Northern lobster, Maine lobster, Homarus americanus",
"123": "spiny lobster, langouste, rock lobster, crawfish, crayfish, sea crawfish",
"124": "crayfish, crawfish, crawdad, crawdaddy",
"125": "hermit crab",
"126": "isopod",
"127": "white stork, Ciconia ciconia",
"128": "black stork, Ciconia nigra",
"129": "spoonbill",
"130": "flamingo",
"131": "little blue heron, Egretta caerulea",
"132": "American egret, great white heron, Egretta albus",
"133": "bittern",
"134": "crane",
"135": "limpkin, Aramus pictus",
"136": "European gallinule, Porphyrio porphyrio",
"137": "American coot, marsh hen, mud hen, water hen, Fulica americana",
"138": "bustard",
"139": "ruddy turnstone, Arenaria interpres",
"140": "red-backed sandpiper, dunlin, Erolia alpina",
"141": "redshank, Tringa totanus",
"142": "dowitcher",
"143": "oystercatcher, oyster catcher",
"144": "pelican",
"145": "king penguin, Aptenodytes patagonica",
"146": "albatross, mollymawk",
"147": "grey whale, gray whale, devilfish, Eschrichtius gibbosus, Eschrichtius robustus",
"148": "killer whale, killer, orca, grampus, sea wolf, Orcinus orca",
"149": "dugong, Dugong dugon",
"150": "sea lion",
"151": "Chihuahua",
"152": "Japanese spaniel",
"153": "Maltese dog, Maltese terrier, Maltese",
"154": "Pekinese, Pekingese, Peke",
"155": "Shih-Tzu",
"156": "Blenheim spaniel",
"157": "papillon",
"158": "toy terrier",
"159": "Rhodesian ridgeback",
"160": "Afghan hound, Afghan",
"161": "basset, basset hound",
"162": "beagle",
"163": "bloodhound, sleuthhound",
"164": "bluetick",
"165": "black-and-tan coonhound",
"166": "Walker hound, Walker foxhound",
"167": "English foxhound",
"168": "redbone",
"169": "borzoi, Russian wolfhound",
"170": "Irish wolfhound",
"171": "Italian greyhound",
"172": "whippet",
"173": "Ibizan hound, Ibizan Podenco",
"174": "Norwegian elkhound, elkhound",
"175": "otterhound, otter hound",
"176": "Saluki, gazelle hound",
"177": "Scottish deerhound, deerhound",
"178": "Weimaraner",
"179": "Staffordshire bullterrier, Staffordshire bull terrier",
"180": "American Staffordshire terrier, Staffordshire terrier, American pit bull terrier, pit bull terrier",
"181": "Bedlington terrier",
"182": "Border terrier",
"183": "Kerry blue terrier",
"184": "Irish terrier",
"185": "Norfolk terrier",
"186": "Norwich terrier",
"187": "Yorkshire terrier",
"188": "wire-haired fox terrier",
"189": "Lakeland terrier",
"190": "Sealyham terrier, Sealyham",
"191": "Airedale, Airedale terrier",
"192": "cairn, cairn terrier",
"193": "Australian terrier",
"194": "Dandie Dinmont, Dandie Dinmont terrier",
"195": "Boston bull, Boston terrier",
"196": "miniature schnauzer",
"197": "giant schnauzer",
"198": "standard schnauzer",
"199": "Scotch terrier, Scottish terrier, Scottie",
"200": "Tibetan terrier, chrysanthemum dog",
"201": "silky terrier, Sydney silky",
"202": "soft-coated wheaten terrier",
"203": "West Highland white terrier",
"204": "Lhasa, Lhasa apso",
"205": "flat-coated retriever",
"206": "curly-coated retriever",
"207": "golden retriever",
"208": "Labrador retriever",
"209": "Chesapeake Bay retriever",
"210": "German short-haired pointer",
"211": "vizsla, Hungarian pointer",
"212": "English setter",
"213": "Irish setter, red setter",
"214": "Gordon setter",
"215": "Brittany spaniel",
"216": "clumber, clumber spaniel",
"217": "English springer, English springer spaniel",
"218": "Welsh springer spaniel",
"219": "cocker spaniel, English cocker spaniel, cocker",
"220": "Sussex spaniel",
"221": "Irish water spaniel",
"222": "kuvasz",
"223": "schipperke",
"224": "groenendael",
"225": "malinois",
"226": "briard",
"227": "kelpie",
"228": "komondor",
"229": "Old English sheepdog, bobtail",
"230": "Shetland sheepdog, Shetland sheep dog, Shetland",
"231": "collie",
"232": "Border collie",
"233": "Bouvier des Flandres, Bouviers des Flandres",
"234": "Rottweiler",
"235": "German shepherd, German shepherd dog, German police dog, alsatian",
"236": "Doberman, Doberman pinscher",
"237": "miniature pinscher",
"238": "Greater Swiss Mountain dog",
"239": "Bernese mountain dog",
"240": "Appenzeller",
"241": "EntleBucher",
"242": "boxer",
"243": "bull mastiff",
"244": "Tibetan mastiff",
"245": "French bulldog",
"246": "Great Dane",
"247": "Saint Bernard, St Bernard",
"248": "Eskimo dog, husky",
"249": "malamute, malemute, Alaskan malamute",
"250": "Siberian husky",
"251": "dalmatian, coach dog, carriage dog",
"252": "affenpinscher, monkey pinscher, monkey dog",
"253": "basenji",
"254": "pug, pug-dog",
"255": "Leonberg",
"256": "Newfoundland, Newfoundland dog",
"257": "Great Pyrenees",
"258": "Samoyed, Samoyede",
"259": "Pomeranian",
"260": "chow, chow chow",
"261": "keeshond",
"262": "Brabancon griffon",
"263": "Pembroke, Pembroke Welsh corgi",
"264": "Cardigan, Cardigan Welsh corgi",
"265": "toy poodle",
"266": "miniature poodle",
"267": "standard poodle",
"268": "Mexican hairless",
"269": "timber wolf, grey wolf, gray wolf, Canis lupus",
"270": "white wolf, Arctic wolf, Canis lupus tundrarum",
"271": "red wolf, maned wolf, Canis rufus, Canis niger",
"272": "coyote, prairie wolf, brush wolf, Canis latrans",
"273": "dingo, warrigal, warragal, Canis dingo",
"274": "dhole, Cuon alpinus",
"275": "African hunting dog, hyena dog, Cape hunting dog, Lycaon pictus",
"276": "hyena, hyaena",
"277": "red fox, Vulpes vulpes",
"278": "kit fox, Vulpes macrotis",
"279": "Arctic fox, white fox, Alopex lagopus",
"280": "grey fox, gray fox, Urocyon cinereoargenteus",
"281": "tabby, tabby cat",
"282": "tiger cat",
"283": "Persian cat",
"284": "Siamese cat, Siamese",
"285": "Egyptian cat",
"286": "cougar, puma, catamount, mountain lion, painter, panther, Felis concolor",
"287": "lynx, catamount",
"288": "leopard, Panthera pardus",
"289": "snow leopard, ounce, Panthera uncia",
"290": "jaguar, panther, Panthera onca, Felis onca",
"291": "lion, king of beasts, Panthera leo",
"292": "tiger, Panthera tigris",
"293": "cheetah, chetah, Acinonyx jubatus",
"294": "brown bear, bruin, Ursus arctos",
"295": "American black bear, black bear, Ursus americanus, Euarctos americanus",
"296": "ice bear, polar bear, Ursus Maritimus, Thalarctos maritimus",
"297": "sloth bear, Melursus ursinus, Ursus ursinus",
"298": "mongoose",
"299": "meerkat, mierkat",
"300": "tiger beetle",
"301": "ladybug, ladybeetle, lady beetle, ladybird, ladybird beetle",
"302": "ground beetle, carabid beetle",
"303": "long-horned beetle, longicorn, longicorn beetle",
"304": "leaf beetle, chrysomelid",
"305": "dung beetle",
"306": "rhinoceros beetle",
"307": "weevil",
"308": "fly",
"309": "bee",
"310": "ant, emmet, pismire",
"311": "grasshopper, hopper",
"312": "cricket",
"313": "walking stick, walkingstick, stick insect",
"314": "cockroach, roach",
"315": "mantis, mantid",
"316": "cicada, cicala",
"317": "leafhopper",
"318": "lacewing, lacewing fly",
"319": "dragonfly, darning needle, devil's darning needle, sewing needle, snake feeder, snake doctor, mosquito hawk, skeeter hawk",
"320": "damselfly",
"321": "admiral",
"322": "ringlet, ringlet butterfly",
"323": "monarch, monarch butterfly, milkweed butterfly, Danaus plexippus",
"324": "cabbage butterfly",
"325": "sulphur butterfly, sulfur butterfly",
"326": "lycaenid, lycaenid butterfly",
"327": "starfish, sea star",
"328": "sea urchin",
"329": "sea cucumber, holothurian",
"330": "wood rabbit, cottontail, cottontail rabbit",
"331": "hare",
"332": "Angora, Angora rabbit",
"333": "hamster",
"334": "porcupine, hedgehog",
"335": "fox squirrel, eastern fox squirrel, Sciurus niger",
"336": "marmot",
"337": "beaver",
"338": "guinea pig, Cavia cobaya",
"339": "sorrel",
"340": "zebra",
"341": "hog, pig, grunter, squealer, Sus scrofa",
"342": "wild boar, boar, Sus scrofa",
"343": "warthog",
"344": "hippopotamus, hippo, river horse, Hippopotamus amphibius",
"345": "ox",
"346": "water buffalo, water ox, Asiatic buffalo, Bubalus bubalis",
"347": "bison",
"348": "ram, tup",
"349": "bighorn, bighorn sheep, cimarron, Rocky Mountain bighorn, Rocky Mountain sheep, Ovis canadensis",
"350": "ibex, Capra ibex",
"351": "hartebeest",
"352": "impala, Aepyceros melampus",
"353": "gazelle",
"354": "Arabian camel, dromedary, Camelus dromedarius",
"355": "llama",
"356": "weasel",
"357": "mink",
"358": "polecat, fitch, foulmart, foumart, Mustela putorius",
"359": "black-footed ferret, ferret, Mustela nigripes",
"360": "otter",
"361": "skunk, polecat, wood pussy",
"362": "badger",
"363": "armadillo",
"364": "three-toed sloth, ai, Bradypus tridactylus",
"365": "orangutan, orang, orangutang, Pongo pygmaeus",
"366": "gorilla, Gorilla gorilla",
"367": "chimpanzee, chimp, Pan troglodytes",
"368": "gibbon, Hylobates lar",
"369": "siamang, Hylobates syndactylus, Symphalangus syndactylus",
"370": "guenon, guenon monkey",
"371": "patas, hussar monkey, Erythrocebus patas",
"372": "baboon",
"373": "macaque",
"374": "langur",
"375": "colobus, colobus monkey",
"376": "proboscis monkey, Nasalis larvatus",
"377": "marmoset",
"378": "capuchin, ringtail, Cebus capucinus",
"379": "howler monkey, howler",
"380": "titi, titi monkey",
"381": "spider monkey, Ateles geoffroyi",
"382": "squirrel monkey, Saimiri sciureus",
"383": "Madagascar cat, ring-tailed lemur, Lemur catta",
"384": "indri, indris, Indri indri, Indri brevicaudatus",
"385": "Indian elephant, Elephas maximus",
"386": "African elephant, Loxodonta africana",
"387": "lesser panda, red panda, panda, bear cat, cat bear, Ailurus fulgens",
"388": "giant panda, panda, panda bear, coon bear, Ailuropoda melanoleuca",
"389": "barracouta, snoek",
"390": "eel",
"391": "coho, cohoe, coho salmon, blue jack, silver salmon, Oncorhynchus kisutch",
"392": "rock beauty, Holocanthus tricolor",
"393": "anemone fish",
"394": "sturgeon",
"395": "gar, garfish, garpike, billfish, Lepisosteus osseus",
"396": "lionfish",
"397": "puffer, pufferfish, blowfish, globefish",
"398": "abacus",
"399": "abaya",
"400": "academic gown, academic robe, judge's robe",
"401": "accordion, piano accordion, squeeze box",
"402": "acoustic guitar",
"403": "aircraft carrier, carrier, flattop, attack aircraft carrier",
"404": "airliner",
"405": "airship, dirigible",
"406": "altar",
"407": "ambulance",
"408": "amphibian, amphibious vehicle",
"409": "analog clock",
"410": "apiary, bee house",
"411": "apron",
"412": "ashcan, trash can, garbage can, wastebin, ash bin, ash-bin, ashbin, dustbin, trash barrel, trash bin",
"413": "assault rifle, assault gun",
"414": "backpack, back pack, knapsack, packsack, rucksack, haversack",
"415": "bakery, bakeshop, bakehouse",
"416": "balance beam, beam",
"417": "balloon",
"418": "ballpoint, ballpoint pen, ballpen, Biro",
"419": "Band Aid",
"420": "banjo",
"421": "bannister, banister, balustrade, balusters, handrail",
"422": "barbell",
"423": "barber chair",
"424": "barbershop",
"425": "barn",
"426": "barometer",
"427": "barrel, cask",
"428": "barrow, garden cart, lawn cart, wheelbarrow",
"429": "baseball",
"430": "basketball",
"431": "bassinet",
"432": "bassoon",
"433": "bathing cap, swimming cap",
"434": "bath towel",
"435": "bathtub, bathing tub, bath, tub",
"436": "beach wagon, station wagon, wagon, estate car, beach waggon, station waggon, waggon",
"437": "beacon, lighthouse, beacon light, pharos",
"438": "beaker",
"439": "bearskin, busby, shako",
"440": "beer bottle",
"441": "beer glass",
"442": "bell cote, bell cot",
"443": "bib",
"444": "bicycle-built-for-two, tandem bicycle, tandem",
"445": "bikini, two-piece",
"446": "binder, ring-binder",
"447": "binoculars, field glasses, opera glasses",
"448": "birdhouse",
"449": "boathouse",
"450": "bobsled, bobsleigh, bob",
"451": "bolo tie, bolo, bola tie, bola",
"452": "bonnet, poke bonnet",
"453": "bookcase",
"454": "bookshop, bookstore, bookstall",
"455": "bottlecap",
"456": "bow",
"457": "bow tie, bow-tie, bowtie",
"458": "brass, memorial tablet, plaque",
"459": "brassiere, bra, bandeau",
"460": "breakwater, groin, groyne, mole, bulwark, seawall, jetty",
"461": "breastplate, aegis, egis",
"462": "broom",
"463": "bucket, pail",
"464": "buckle",
"465": "bulletproof vest",
"466": "bullet train, bullet",
"467": "butcher shop, meat market",
"468": "cab, hack, taxi, taxicab",
"469": "caldron, cauldron",
"470": "candle, taper, wax light",
"471": "cannon",
"472": "canoe",
"473": "can opener, tin opener",
"474": "cardigan",
"475": "car mirror",
"476": "carousel, carrousel, merry-go-round, roundabout, whirligig",
"477": "carpenter's kit, tool kit",
"478": "carton",
"479": "car wheel",
"480": "cash machine, cash dispenser, automated teller machine, automatic teller machine, automated teller, automatic teller, ATM",
"481": "cassette",
"482": "cassette player",
"483": "castle",
"484": "catamaran",
"485": "CD player",
"486": "cello, violoncello",
"487": "cellular telephone, cellular phone, cellphone, cell, mobile phone",
"488": "chain",
"489": "chainlink fence",
"490": "chain mail, ring mail, mail, chain armor, chain armour, ring armor, ring armour",
"491": "chain saw, chainsaw",
"492": "chest",
"493": "chiffonier, commode",
"494": "chime, bell, gong",
"495": "china cabinet, china closet",
"496": "Christmas stocking",
"497": "church, church building",
"498": "cinema, movie theater, movie theatre, movie house, picture palace",
"499": "cleaver, meat cleaver, chopper",
"500": "cliff dwelling",
"501": "cloak",
"502": "clog, geta, patten, sabot",
"503": "cocktail shaker",
"504": "coffee mug",
"505": "coffeepot",
"506": "coil, spiral, volute, whorl, helix",
"507": "combination lock",
"508": "computer keyboard, keypad",
"509": "confectionery, confectionary, candy store",
"510": "container ship, containership, container vessel",
"511": "convertible",
"512": "corkscrew, bottle screw",
"513": "cornet, horn, trumpet, trump",
"514": "cowboy boot",
"515": "cowboy hat, ten-gallon hat",
"516": "cradle",
"517": "crane",
"518": "crash helmet",
"519": "crate",
"520": "crib, cot",
"521": "Crock Pot",
"522": "croquet ball",
"523": "crutch",
"524": "cuirass",
"525": "dam, dike, dyke",
"526": "desk",
"527": "desktop computer",
"528": "dial telephone, dial phone",
"529": "diaper, nappy, napkin",
"530": "digital clock",
"531": "digital watch",
"532": "dining table, board",
"533": "dishrag, dishcloth",
"534": "dishwasher, dish washer, dishwashing machine",
"535": "disk brake, disc brake",
"536": "dock, dockage, docking facility",
"537": "dogsled, dog sled, dog sleigh",
"538": "dome",
"539": "doormat, welcome mat",
"540": "drilling platform, offshore rig",
"541": "drum, membranophone, tympan",
"542": "drumstick",
"543": "dumbbell",
"544": "Dutch oven",
"545": "electric fan, blower",
"546": "electric guitar",
"547": "electric locomotive",
"548": "entertainment center",
"549": "envelope",
"550": "espresso maker",
"551": "face powder",
"552": "feather boa, boa",
"553": "file, file cabinet, filing cabinet",
"554": "fireboat",
"555": "fire engine, fire truck",
"556": "fire screen, fireguard",
"557": "flagpole, flagstaff",
"558": "flute, transverse flute",
"559": "folding chair",
"560": "football helmet",
"561": "forklift",
"562": "fountain",
"563": "fountain pen",
"564": "four-poster",
"565": "freight car",
"566": "French horn, horn",
"567": "frying pan, frypan, skillet",
"568": "fur coat",
"569": "garbage truck, dustcart",
"570": "gasmask, respirator, gas helmet",
"571": "gas pump, gasoline pump, petrol pump, island dispenser",
"572": "goblet",
"573": "go-kart",
"574": "golf ball",
"575": "golfcart, golf cart",
"576": "gondola",
"577": "gong, tam-tam",
"578": "gown",
"579": "grand piano, grand",
"580": "greenhouse, nursery, glasshouse",
"581": "grille, radiator grille",
"582": "grocery store, grocery, food market, market",
"583": "guillotine",
"584": "hair slide",
"585": "hair spray",
"586": "half track",
"587": "hammer",
"588": "hamper",
"589": "hand blower, blow dryer, blow drier, hair dryer, hair drier",
"590": "hand-held computer, hand-held microcomputer",
"591": "handkerchief, hankie, hanky, hankey",
"592": "hard disc, hard disk, fixed disk",
"593": "harmonica, mouth organ, harp, mouth harp",
"594": "harp",
"595": "harvester, reaper",
"596": "hatchet",
"597": "holster",
"598": "home theater, home theatre",
"599": "honeycomb",
"600": "hook, claw",
"601": "hoopskirt, crinoline",
"602": "horizontal bar, high bar",
"603": "horse cart, horse-cart",
"604": "hourglass",
"605": "iPod",
"606": "iron, smoothing iron",
"607": "jack-o'-lantern",
"608": "jean, blue jean, denim",
"609": "jeep, landrover",
"610": "jersey, T-shirt, tee shirt",
"611": "jigsaw puzzle",
"612": "jinrikisha, ricksha, rickshaw",
"613": "joystick",
"614": "kimono",
"615": "knee pad",
"616": "knot",
"617": "lab coat, laboratory coat",
"618": "ladle",
"619": "lampshade, lamp shade",
"620": "laptop, laptop computer",
"621": "lawn mower, mower",
"622": "lens cap, lens cover",
"623": "letter opener, paper knife, paperknife",
"624": "library",
"625": "lifeboat",
"626": "lighter, light, igniter, ignitor",
"627": "limousine, limo",
"628": "liner, ocean liner",
"629": "lipstick, lip rouge",
"630": "Loafer",
"631": "lotion",
"632": "loudspeaker, speaker, speaker unit, loudspeaker system, speaker system",
"633": "loupe, jeweler's loupe",
"634": "lumbermill, sawmill",
"635": "magnetic compass",
"636": "mailbag, postbag",
"637": "mailbox, letter box",
"638": "maillot",
"639": "maillot, tank suit",
"640": "manhole cover",
"641": "maraca",
"642": "marimba, xylophone",
"643": "mask",
"644": "matchstick",
"645": "maypole",
"646": "maze, labyrinth",
"647": "measuring cup",
"648": "medicine chest, medicine cabinet",
"649": "megalith, megalithic structure",
"650": "microphone, mike",
"651": "microwave, microwave oven",
"652": "military uniform",
"653": "milk can",
"654": "minibus",
"655": "miniskirt, mini",
"656": "minivan",
"657": "missile",
"658": "mitten",
"659": "mixing bowl",
"660": "mobile home, manufactured home",
"661": "Model T",
"662": "modem",
"663": "monastery",
"664": "monitor",
"665": "moped",
"666": "mortar",
"667": "mortarboard",
"668": "mosque",
"669": "mosquito net",
"670": "motor scooter, scooter",
"671": "mountain bike, all-terrain bike, off-roader",
"672": "mountain tent",
"673": "mouse, computer mouse",
"674": "mousetrap",
"675": "moving van",
"676": "muzzle",
"677": "nail",
"678": "neck brace",
"679": "necklace",
"680": "nipple",
"681": "notebook, notebook computer",
"682": "obelisk",
"683": "oboe, hautboy, hautbois",
"684": "ocarina, sweet potato",
"685": "odometer, hodometer, mileometer, milometer",
"686": "oil filter",
"687": "organ, pipe organ",
"688": "oscilloscope, scope, cathode-ray oscilloscope, CRO",
"689": "overskirt",
"690": "oxcart",
"691": "oxygen mask",
"692": "packet",
"693": "paddle, boat paddle",
"694": "paddlewheel, paddle wheel",
"695": "padlock",
"696": "paintbrush",
"697": "pajama, pyjama, pj's, jammies",
"698": "palace",
"699": "panpipe, pandean pipe, syrinx",
"700": "paper towel",
"701": "parachute, chute",
"702": "parallel bars, bars",
"703": "park bench",
"704": "parking meter",
"705": "passenger car, coach, carriage",
"706": "patio, terrace",
"707": "pay-phone, pay-station",
"708": "pedestal, plinth, footstall",
"709": "pencil box, pencil case",
"710": "pencil sharpener",
"711": "perfume, essence",
"712": "Petri dish",
"713": "photocopier",
"714": "pick, plectrum, plectron",
"715": "pickelhaube",
"716": "picket fence, paling",
"717": "pickup, pickup truck",
"718": "pier",
"719": "piggy bank, penny bank",
"720": "pill bottle",
"721": "pillow",
"722": "ping-pong ball",
"723": "pinwheel",
"724": "pirate, pirate ship",
"725": "pitcher, ewer",
"726": "plane, carpenter's plane, woodworking plane",
"727": "planetarium",
"728": "plastic bag",
"729": "plate rack",
"730": "plow, plough",
"731": "plunger, plumber's helper",
"732": "Polaroid camera, Polaroid Land camera",
"733": "pole",
"734": "police van, police wagon, paddy wagon, patrol wagon, wagon, black Maria",
"735": "poncho",
"736": "pool table, billiard table, snooker table",
"737": "pop bottle, soda bottle",
"738": "pot, flowerpot",
"739": "potter's wheel",
"740": "power drill",
"741": "prayer rug, prayer mat",
"742": "printer",
"743": "prison, prison house",
"744": "projectile, missile",
"745": "projector",
"746": "puck, hockey puck",
"747": "punching bag, punch bag, punching ball, punchball",
"748": "purse",
"749": "quill, quill pen",
"750": "quilt, comforter, comfort, puff",
"751": "racer, race car, racing car",
"752": "racket, racquet",
"753": "radiator",
"754": "radio, wireless",
"755": "radio telescope, radio reflector",
"756": "rain barrel",
"757": "recreational vehicle, RV, R.V.",
"758": "reel",
"759": "reflex camera",
"760": "refrigerator, icebox",
"761": "remote control, remote",
"762": "restaurant, eating house, eating place, eatery",
"763": "revolver, six-gun, six-shooter",
"764": "rifle",
"765": "rocking chair, rocker",
"766": "rotisserie",
"767": "rubber eraser, rubber, pencil eraser",
"768": "rugby ball",
"769": "rule, ruler",
"770": "running shoe",
"771": "safe",
"772": "safety pin",
"773": "saltshaker, salt shaker",
"774": "sandal",
"775": "sarong",
"776": "sax, saxophone",
"777": "scabbard",
"778": "scale, weighing machine",
"779": "school bus",
"780": "schooner",
"781": "scoreboard",
"782": "screen, CRT screen",
"783": "screw",
"784": "screwdriver",
"785": "seat belt, seatbelt",
"786": "sewing machine",
"787": "shield, buckler",
"788": "shoe shop, shoe-shop, shoe store",
"789": "shoji",
"790": "shopping basket",
"791": "shopping cart",
"792": "shovel",
"793": "shower cap",
"794": "shower curtain",
"795": "ski",
"796": "ski mask",
"797": "sleeping bag",
"798": "slide rule, slipstick",
"799": "sliding door",
"800": "slot, one-armed bandit",
"801": "snorkel",
"802": "snowmobile",
"803": "snowplow, snowplough",
"804": "soap dispenser",
"805": "soccer ball",
"806": "sock",
"807": "solar dish, solar collector, solar furnace",
"808": "sombrero",
"809": "soup bowl",
"810": "space bar",
"811": "space heater",
"812": "space shuttle",
"813": "spatula",
"814": "speedboat",
"815": "spider web, spider's web",
"816": "spindle",
"817": "sports car, sport car",
"818": "spotlight, spot",
"819": "stage",
"820": "steam locomotive",
"821": "steel arch bridge",
"822": "steel drum",
"823": "stethoscope",
"824": "stole",
"825": "stone wall",
"826": "stopwatch, stop watch",
"827": "stove",
"828": "strainer",
"829": "streetcar, tram, tramcar, trolley, trolley car",
"830": "stretcher",
"831": "studio couch, day bed",
"832": "stupa, tope",
"833": "submarine, pigboat, sub, U-boat",
"834": "suit, suit of clothes",
"835": "sundial",
"836": "sunglass",
"837": "sunglasses, dark glasses, shades",
"838": "sunscreen, sunblock, sun blocker",
"839": "suspension bridge",
"840": "swab, swob, mop",
"841": "sweatshirt",
"842": "swimming trunks, bathing trunks",
"843": "swing",
"844": "switch, electric switch, electrical switch",
"845": "syringe",
"846": "table lamp",
"847": "tank, army tank, armored combat vehicle, armoured combat vehicle",
"848": "tape player",
"849": "teapot",
"850": "teddy, teddy bear",
"851": "television, television system",
"852": "tennis ball",
"853": "thatch, thatched roof",
"854": "theater curtain, theatre curtain",
"855": "thimble",
"856": "thresher, thrasher, threshing machine",
"857": "throne",
"858": "tile roof",
"859": "toaster",
"860": "tobacco shop, tobacconist shop, tobacconist",
"861": "toilet seat",
"862": "torch",
"863": "totem pole",
"864": "tow truck, tow car, wrecker",
"865": "toyshop",
"866": "tractor",
"867": "trailer truck, tractor trailer, trucking rig, rig, articulated lorry, semi",
"868": "tray",
"869": "trench coat",
"870": "tricycle, trike, velocipede",
"871": "trimaran",
"872": "tripod",
"873": "triumphal arch",
"874": "trolleybus, trolley coach, trackless trolley",
"875": "trombone",
"876": "tub, vat",
"877": "turnstile",
"878": "typewriter keyboard",
"879": "umbrella",
"880": "unicycle, monocycle",
"881": "upright, upright piano",
"882": "vacuum, vacuum cleaner",
"883": "vase",
"884": "vault",
"885": "velvet",
"886": "vending machine",
"887": "vestment",
"888": "viaduct",
"889": "violin, fiddle",
"890": "volleyball",
"891": "waffle iron",
"892": "wall clock",
"893": "wallet, billfold, notecase, pocketbook",
"894": "wardrobe, closet, press",
"895": "warplane, military plane",
"896": "washbasin, handbasin, washbowl, lavabo, wash-hand basin",
"897": "washer, automatic washer, washing machine",
"898": "water bottle",
"899": "water jug",
"900": "water tower",
"901": "whiskey jug",
"902": "whistle",
"903": "wig",
"904": "window screen",
"905": "window shade",
"906": "Windsor tie",
"907": "wine bottle",
"908": "wing",
"909": "wok",
"910": "wooden spoon",
"911": "wool, woolen, woollen",
"912": "worm fence, snake fence, snake-rail fence, Virginia fence",
"913": "wreck",
"914": "yawl",
"915": "yurt",
"916": "web site, website, internet site, site",
"917": "comic book",
"918": "crossword puzzle, crossword",
"919": "street sign",
"920": "traffic light, traffic signal, stoplight",
"921": "book jacket, dust cover, dust jacket, dust wrapper",
"922": "menu",
"923": "plate",
"924": "guacamole",
"925": "consomme",
"926": "hot pot, hotpot",
"927": "trifle",
"928": "ice cream, icecream",
"929": "ice lolly, lolly, lollipop, popsicle",
"930": "French loaf",
"931": "bagel, beigel",
"932": "pretzel",
"933": "cheeseburger",
"934": "hotdog, hot dog, red hot",
"935": "mashed potato",
"936": "head cabbage",
"937": "broccoli",
"938": "cauliflower",
"939": "zucchini, courgette",
"940": "spaghetti squash",
"941": "acorn squash",
"942": "butternut squash",
"943": "cucumber, cuke",
"944": "artichoke, globe artichoke",
"945": "bell pepper",
"946": "cardoon",
"947": "mushroom",
"948": "Granny Smith",
"949": "strawberry",
"950": "orange",
"951": "lemon",
"952": "fig",
"953": "pineapple, ananas",
"954": "banana",
"955": "jackfruit, jak, jack",
"956": "custard apple",
"957": "pomegranate",
"958": "hay",
"959": "carbonara",
"960": "chocolate sauce, chocolate syrup",
"961": "dough",
"962": "meat loaf, meatloaf",
"963": "pizza, pizza pie",
"964": "potpie",
"965": "burrito",
"966": "red wine",
"967": "espresso",
"968": "cup",
"969": "eggnog",
"970": "alp",
"971": "bubble",
"972": "cliff, drop, drop-off",
"973": "coral reef",
"974": "geyser",
"975": "lakeside, lakeshore",
"976": "promontory, headland, head, foreland",
"977": "sandbar, sand bar",
"978": "seashore, coast, seacoast, sea-coast",
"979": "valley, vale",
"980": "volcano",
"981": "ballplayer, baseball player",
"982": "groom, bridegroom",
"983": "scuba diver",
"984": "rapeseed",
"985": "daisy",
"986": "yellow lady's slipper, yellow lady-slipper, Cypripedium calceolus, Cypripedium parviflorum",
"987": "corn",
"988": "acorn",
"989": "hip, rose hip, rosehip",
"990": "buckeye, horse chestnut, conker",
"991": "coral fungus",
"992": "agaric",
"993": "gyromitra",
"994": "stinkhorn, carrion fungus",
"995": "earthstar",
"996": "hen-of-the-woods, hen of the woods, Polyporus frondosus, Grifola frondosa",
"997": "bolete",
"998": "ear, spike, capitulum",
"999": "toilet tissue, toilet paper, bathroom tissue"
},
"image_size": 518,
"initializer_range": 0.02,
"label2id": {
"LABEL_0": 0,
"LABEL_1": 1,
"LABEL_10": 10,
"LABEL_100": 100,
"LABEL_101": 101,
"LABEL_102": 102,
"LABEL_103": 103,
"LABEL_104": 104,
"LABEL_105": 105,
"LABEL_106": 106,
"LABEL_107": 107,
"LABEL_108": 108,
"LABEL_109": 109,
"LABEL_11": 11,
"LABEL_110": 110,
"LABEL_111": 111,
"LABEL_112": 112,
"LABEL_113": 113,
"LABEL_114": 114,
"LABEL_115": 115,
"LABEL_116": 116,
"LABEL_117": 117,
"LABEL_118": 118,
"LABEL_119": 119,
"LABEL_12": 12,
"LABEL_120": 120,
"LABEL_121": 121,
"LABEL_122": 122,
"LABEL_123": 123,
"LABEL_124": 124,
"LABEL_125": 125,
"LABEL_126": 126,
"LABEL_127": 127,
"LABEL_128": 128,
"LABEL_129": 129,
"LABEL_13": 13,
"LABEL_130": 130,
"LABEL_131": 131,
"LABEL_132": 132,
"LABEL_133": 133,
"LABEL_134": 134,
"LABEL_135": 135,
"LABEL_136": 136,
"LABEL_137": 137,
"LABEL_138": 138,
"LABEL_139": 139,
"LABEL_14": 14,
"LABEL_140": 140,
"LABEL_141": 141,
"LABEL_142": 142,
"LABEL_143": 143,
"LABEL_144": 144,
"LABEL_145": 145,
"LABEL_146": 146,
"LABEL_147": 147,
"LABEL_148": 148,
"LABEL_149": 149,
"LABEL_15": 15,
"LABEL_150": 150,
"LABEL_151": 151,
"LABEL_152": 152,
"LABEL_153": 153,
"LABEL_154": 154,
"LABEL_155": 155,
"LABEL_156": 156,
"LABEL_157": 157,
"LABEL_158": 158,
"LABEL_159": 159,
"LABEL_16": 16,
"LABEL_160": 160,
"LABEL_161": 161,
"LABEL_162": 162,
"LABEL_163": 163,
"LABEL_164": 164,
"LABEL_165": 165,
"LABEL_166": 166,
"LABEL_167": 167,
"LABEL_168": 168,
"LABEL_169": 169,
"LABEL_17": 17,
"LABEL_170": 170,
"LABEL_171": 171,
"LABEL_172": 172,
"LABEL_173": 173,
"LABEL_174": 174,
"LABEL_175": 175,
"LABEL_176": 176,
"LABEL_177": 177,
"LABEL_178": 178,
"LABEL_179": 179,
"LABEL_18": 18,
"LABEL_180": 180,
"LABEL_181": 181,
"LABEL_182": 182,
"LABEL_183": 183,
"LABEL_184": 184,
"LABEL_185": 185,
"LABEL_186": 186,
"LABEL_187": 187,
"LABEL_188": 188,
"LABEL_189": 189,
"LABEL_19": 19,
"LABEL_190": 190,
"LABEL_191": 191,
"LABEL_192": 192,
"LABEL_193": 193,
"LABEL_194": 194,
"LABEL_195": 195,
"LABEL_196": 196,
"LABEL_197": 197,
"LABEL_198": 198,
"LABEL_199": 199,
"LABEL_2": 2,
"LABEL_20": 20,
"LABEL_200": 200,
"LABEL_201": 201,
"LABEL_202": 202,
"LABEL_203": 203,
"LABEL_204": 204,
"LABEL_205": 205,
"LABEL_206": 206,
"LABEL_207": 207,
"LABEL_208": 208,
"LABEL_209": 209,
"LABEL_21": 21,
"LABEL_210": 210,
"LABEL_211": 211,
"LABEL_212": 212,
"LABEL_213": 213,
"LABEL_214": 214,
"LABEL_215": 215,
"LABEL_216": 216,
"LABEL_217": 217,
"LABEL_218": 218,
"LABEL_219": 219,
"LABEL_22": 22,
"LABEL_220": 220,
"LABEL_221": 221,
"LABEL_222": 222,
"LABEL_223": 223,
"LABEL_224": 224,
"LABEL_225": 225,
"LABEL_226": 226,
"LABEL_227": 227,
"LABEL_228": 228,
"LABEL_229": 229,
"LABEL_23": 23,
"LABEL_230": 230,
"LABEL_231": 231,
"LABEL_232": 232,
"LABEL_233": 233,
"LABEL_234": 234,
"LABEL_235": 235,
"LABEL_236": 236,
"LABEL_237": 237,
"LABEL_238": 238,
"LABEL_239": 239,
"LABEL_24": 24,
"LABEL_240": 240,
"LABEL_241": 241,
"LABEL_242": 242,
"LABEL_243": 243,
"LABEL_244": 244,
"LABEL_245": 245,
"LABEL_246": 246,
"LABEL_247": 247,
"LABEL_248": 248,
"LABEL_249": 249,
"LABEL_25": 25,
"LABEL_250": 250,
"LABEL_251": 251,
"LABEL_252": 252,
"LABEL_253": 253,
"LABEL_254": 254,
"LABEL_255": 255,
"LABEL_256": 256,
"LABEL_257": 257,
"LABEL_258": 258,
"LABEL_259": 259,
"LABEL_26": 26,
"LABEL_260": 260,
"LABEL_261": 261,
"LABEL_262": 262,
"LABEL_263": 263,
"LABEL_264": 264,
"LABEL_265": 265,
"LABEL_266": 266,
"LABEL_267": 267,
"LABEL_268": 268,
"LABEL_269": 269,
"LABEL_27": 27,
"LABEL_270": 270,
"LABEL_271": 271,
"LABEL_272": 272,
"LABEL_273": 273,
"LABEL_274": 274,
"LABEL_275": 275,
"LABEL_276": 276,
"LABEL_277": 277,
"LABEL_278": 278,
"LABEL_279": 279,
"LABEL_28": 28,
"LABEL_280": 280,
"LABEL_281": 281,
"LABEL_282": 282,
"LABEL_283": 283,
"LABEL_284": 284,
"LABEL_285": 285,
"LABEL_286": 286,
"LABEL_287": 287,
"LABEL_288": 288,
"LABEL_289": 289,
"LABEL_29": 29,
"LABEL_290": 290,
"LABEL_291": 291,
"LABEL_292": 292,
"LABEL_293": 293,
"LABEL_294": 294,
"LABEL_295": 295,
"LABEL_296": 296,
"LABEL_297": 297,
"LABEL_298": 298,
"LABEL_299": 299,
"LABEL_3": 3,
"LABEL_30": 30,
"LABEL_300": 300,
"LABEL_301": 301,
"LABEL_302": 302,
"LABEL_303": 303,
"LABEL_304": 304,
"LABEL_305": 305,
"LABEL_306": 306,
"LABEL_307": 307,
"LABEL_308": 308,
"LABEL_309": 309,
"LABEL_31": 31,
"LABEL_310": 310,
"LABEL_311": 311,
"LABEL_312": 312,
"LABEL_313": 313,
"LABEL_314": 314,
"LABEL_315": 315,
"LABEL_316": 316,
"LABEL_317": 317,
"LABEL_318": 318,
"LABEL_319": 319,
"LABEL_32": 32,
"LABEL_320": 320,
"LABEL_321": 321,
"LABEL_322": 322,
"LABEL_323": 323,
"LABEL_324": 324,
"LABEL_325": 325,
"LABEL_326": 326,
"LABEL_327": 327,
"LABEL_328": 328,
"LABEL_329": 329,
"LABEL_33": 33,
"LABEL_330": 330,
"LABEL_331": 331,
"LABEL_332": 332,
"LABEL_333": 333,
"LABEL_334": 334,
"LABEL_335": 335,
"LABEL_336": 336,
"LABEL_337": 337,
"LABEL_338": 338,
"LABEL_339": 339,
"LABEL_34": 34,
"LABEL_340": 340,
"LABEL_341": 341,
"LABEL_342": 342,
"LABEL_343": 343,
"LABEL_344": 344,
"LABEL_345": 345,
"LABEL_346": 346,
"LABEL_347": 347,
"LABEL_348": 348,
"LABEL_349": 349,
"LABEL_35": 35,
"LABEL_350": 350,
"LABEL_351": 351,
"LABEL_352": 352,
"LABEL_353": 353,
"LABEL_354": 354,
"LABEL_355": 355,
"LABEL_356": 356,
"LABEL_357": 357,
"LABEL_358": 358,
"LABEL_359": 359,
"LABEL_36": 36,
"LABEL_360": 360,
"LABEL_361": 361,
"LABEL_362": 362,
"LABEL_363": 363,
"LABEL_364": 364,
"LABEL_365": 365,
"LABEL_366": 366,
"LABEL_367": 367,
"LABEL_368": 368,
"LABEL_369": 369,
"LABEL_37": 37,
"LABEL_370": 370,
"LABEL_371": 371,
"LABEL_372": 372,
"LABEL_373": 373,
"LABEL_374": 374,
"LABEL_375": 375,
"LABEL_376": 376,
"LABEL_377": 377,
"LABEL_378": 378,
"LABEL_379": 379,
"LABEL_38": 38,
"LABEL_380": 380,
"LABEL_381": 381,
"LABEL_382": 382,
"LABEL_383": 383,
"LABEL_384": 384,
"LABEL_385": 385,
"LABEL_386": 386,
"LABEL_387": 387,
"LABEL_388": 388,
"LABEL_389": 389,
"LABEL_39": 39,
"LABEL_390": 390,
"LABEL_391": 391,
"LABEL_392": 392,
"LABEL_393": 393,
"LABEL_394": 394,
"LABEL_395": 395,
"LABEL_396": 396,
"LABEL_397": 397,
"LABEL_398": 398,
"LABEL_399": 399,
"LABEL_4": 4,
"LABEL_40": 40,
"LABEL_400": 400,
"LABEL_401": 401,
"LABEL_402": 402,
"LABEL_403": 403,
"LABEL_404": 404,
"LABEL_405": 405,
"LABEL_406": 406,
"LABEL_407": 407,
"LABEL_408": 408,
"LABEL_409": 409,
"LABEL_41": 41,
"LABEL_410": 410,
"LABEL_411": 411,
"LABEL_412": 412,
"LABEL_413": 413,
"LABEL_414": 414,
"LABEL_415": 415,
"LABEL_416": 416,
"LABEL_417": 417,
"LABEL_418": 418,
"LABEL_419": 419,
"LABEL_42": 42,
"LABEL_420": 420,
"LABEL_421": 421,
"LABEL_422": 422,
"LABEL_423": 423,
"LABEL_424": 424,
"LABEL_425": 425,
"LABEL_426": 426,
"LABEL_427": 427,
"LABEL_428": 428,
"LABEL_429": 429,
"LABEL_43": 43,
"LABEL_430": 430,
"LABEL_431": 431,
"LABEL_432": 432,
"LABEL_433": 433,
"LABEL_434": 434,
"LABEL_435": 435,
"LABEL_436": 436,
"LABEL_437": 437,
"LABEL_438": 438,
"LABEL_439": 439,
"LABEL_44": 44,
"LABEL_440": 440,
"LABEL_441": 441,
"LABEL_442": 442,
"LABEL_443": 443,
"LABEL_444": 444,
"LABEL_445": 445,
"LABEL_446": 446,
"LABEL_447": 447,
"LABEL_448": 448,
"LABEL_449": 449,
"LABEL_45": 45,
"LABEL_450": 450,
"LABEL_451": 451,
"LABEL_452": 452,
"LABEL_453": 453,
"LABEL_454": 454,
"LABEL_455": 455,
"LABEL_456": 456,
"LABEL_457": 457,
"LABEL_458": 458,
"LABEL_459": 459,
"LABEL_46": 46,
"LABEL_460": 460,
"LABEL_461": 461,
"LABEL_462": 462,
"LABEL_463": 463,
"LABEL_464": 464,
"LABEL_465": 465,
"LABEL_466": 466,
"LABEL_467": 467,
"LABEL_468": 468,
"LABEL_469": 469,
"LABEL_47": 47,
"LABEL_470": 470,
"LABEL_471": 471,
"LABEL_472": 472,
"LABEL_473": 473,
"LABEL_474": 474,
"LABEL_475": 475,
"LABEL_476": 476,
"LABEL_477": 477,
"LABEL_478": 478,
"LABEL_479": 479,
"LABEL_48": 48,
"LABEL_480": 480,
"LABEL_481": 481,
"LABEL_482": 482,
"LABEL_483": 483,
"LABEL_484": 484,
"LABEL_485": 485,
"LABEL_486": 486,
"LABEL_487": 487,
"LABEL_488": 488,
"LABEL_489": 489,
"LABEL_49": 49,
"LABEL_490": 490,
"LABEL_491": 491,
"LABEL_492": 492,
"LABEL_493": 493,
"LABEL_494": 494,
"LABEL_495": 495,
"LABEL_496": 496,
"LABEL_497": 497,
"LABEL_498": 498,
"LABEL_499": 499,
"LABEL_5": 5,
"LABEL_50": 50,
"LABEL_500": 500,
"LABEL_501": 501,
"LABEL_502": 502,
"LABEL_503": 503,
"LABEL_504": 504,
"LABEL_505": 505,
"LABEL_506": 506,
"LABEL_507": 507,
"LABEL_508": 508,
"LABEL_509": 509,
"LABEL_51": 51,
"LABEL_510": 510,
"LABEL_511": 511,
"LABEL_512": 512,
"LABEL_513": 513,
"LABEL_514": 514,
"LABEL_515": 515,
"LABEL_516": 516,
"LABEL_517": 517,
"LABEL_518": 518,
"LABEL_519": 519,
"LABEL_52": 52,
"LABEL_520": 520,
"LABEL_521": 521,
"LABEL_522": 522,
"LABEL_523": 523,
"LABEL_524": 524,
"LABEL_525": 525,
"LABEL_526": 526,
"LABEL_527": 527,
"LABEL_528": 528,
"LABEL_529": 529,
"LABEL_53": 53,
"LABEL_530": 530,
"LABEL_531": 531,
"LABEL_532": 532,
"LABEL_533": 533,
"LABEL_534": 534,
"LABEL_535": 535,
"LABEL_536": 536,
"LABEL_537": 537,
"LABEL_538": 538,
"LABEL_539": 539,
"LABEL_54": 54,
"LABEL_540": 540,
"LABEL_541": 541,
"LABEL_542": 542,
"LABEL_543": 543,
"LABEL_544": 544,
"LABEL_545": 545,
"LABEL_546": 546,
"LABEL_547": 547,
"LABEL_548": 548,
"LABEL_549": 549,
"LABEL_55": 55,
"LABEL_550": 550,
"LABEL_551": 551,
"LABEL_552": 552,
"LABEL_553": 553,
"LABEL_554": 554,
"LABEL_555": 555,
"LABEL_556": 556,
"LABEL_557": 557,
"LABEL_558": 558,
"LABEL_559": 559,
"LABEL_56": 56,
"LABEL_560": 560,
"LABEL_561": 561,
"LABEL_562": 562,
"LABEL_563": 563,
"LABEL_564": 564,
"LABEL_565": 565,
"LABEL_566": 566,
"LABEL_567": 567,
"LABEL_568": 568,
"LABEL_569": 569,
"LABEL_57": 57,
"LABEL_570": 570,
"LABEL_571": 571,
"LABEL_572": 572,
"LABEL_573": 573,
"LABEL_574": 574,
"LABEL_575": 575,
"LABEL_576": 576,
"LABEL_577": 577,
"LABEL_578": 578,
"LABEL_579": 579,
"LABEL_58": 58,
"LABEL_580": 580,
"LABEL_581": 581,
"LABEL_582": 582,
"LABEL_583": 583,
"LABEL_584": 584,
"LABEL_585": 585,
"LABEL_586": 586,
"LABEL_587": 587,
"LABEL_588": 588,
"LABEL_589": 589,
"LABEL_59": 59,
"LABEL_590": 590,
"LABEL_591": 591,
"LABEL_592": 592,
"LABEL_593": 593,
"LABEL_594": 594,
"LABEL_595": 595,
"LABEL_596": 596,
"LABEL_597": 597,
"LABEL_598": 598,
"LABEL_599": 599,
"LABEL_6": 6,
"LABEL_60": 60,
"LABEL_600": 600,
"LABEL_601": 601,
"LABEL_602": 602,
"LABEL_603": 603,
"LABEL_604": 604,
"LABEL_605": 605,
"LABEL_606": 606,
"LABEL_607": 607,
"LABEL_608": 608,
"LABEL_609": 609,
"LABEL_61": 61,
"LABEL_610": 610,
"LABEL_611": 611,
"LABEL_612": 612,
"LABEL_613": 613,
"LABEL_614": 614,
"LABEL_615": 615,
"LABEL_616": 616,
"LABEL_617": 617,
"LABEL_618": 618,
"LABEL_619": 619,
"LABEL_62": 62,
"LABEL_620": 620,
"LABEL_621": 621,
"LABEL_622": 622,
"LABEL_623": 623,
"LABEL_624": 624,
"LABEL_625": 625,
"LABEL_626": 626,
"LABEL_627": 627,
"LABEL_628": 628,
"LABEL_629": 629,
"LABEL_63": 63,
"LABEL_630": 630,
"LABEL_631": 631,
"LABEL_632": 632,
"LABEL_633": 633,
"LABEL_634": 634,
"LABEL_635": 635,
"LABEL_636": 636,
"LABEL_637": 637,
"LABEL_638": 638,
"LABEL_639": 639,
"LABEL_64": 64,
"LABEL_640": 640,
"LABEL_641": 641,
"LABEL_642": 642,
"LABEL_643": 643,
"LABEL_644": 644,
"LABEL_645": 645,
"LABEL_646": 646,
"LABEL_647": 647,
"LABEL_648": 648,
"LABEL_649": 649,
"LABEL_65": 65,
"LABEL_650": 650,
"LABEL_651": 651,
"LABEL_652": 652,
"LABEL_653": 653,
"LABEL_654": 654,
"LABEL_655": 655,
"LABEL_656": 656,
"LABEL_657": 657,
"LABEL_658": 658,
"LABEL_659": 659,
"LABEL_66": 66,
"LABEL_660": 660,
"LABEL_661": 661,
"LABEL_662": 662,
"LABEL_663": 663,
"LABEL_664": 664,
"LABEL_665": 665,
"LABEL_666": 666,
"LABEL_667": 667,
"LABEL_668": 668,
"LABEL_669": 669,
"LABEL_67": 67,
"LABEL_670": 670,
"LABEL_671": 671,
"LABEL_672": 672,
"LABEL_673": 673,
"LABEL_674": 674,
"LABEL_675": 675,
"LABEL_676": 676,
"LABEL_677": 677,
"LABEL_678": 678,
"LABEL_679": 679,
"LABEL_68": 68,
"LABEL_680": 680,
"LABEL_681": 681,
"LABEL_682": 682,
"LABEL_683": 683,
"LABEL_684": 684,
"LABEL_685": 685,
"LABEL_686": 686,
"LABEL_687": 687,
"LABEL_688": 688,
"LABEL_689": 689,
"LABEL_69": 69,
"LABEL_690": 690,
"LABEL_691": 691,
"LABEL_692": 692,
"LABEL_693": 693,
"LABEL_694": 694,
"LABEL_695": 695,
"LABEL_696": 696,
"LABEL_697": 697,
"LABEL_698": 698,
"LABEL_699": 699,
"LABEL_7": 7,
"LABEL_70": 70,
"LABEL_700": 700,
"LABEL_701": 701,
"LABEL_702": 702,
"LABEL_703": 703,
"LABEL_704": 704,
"LABEL_705": 705,
"LABEL_706": 706,
"LABEL_707": 707,
"LABEL_708": 708,
"LABEL_709": 709,
"LABEL_71": 71,
"LABEL_710": 710,
"LABEL_711": 711,
"LABEL_712": 712,
"LABEL_713": 713,
"LABEL_714": 714,
"LABEL_715": 715,
"LABEL_716": 716,
"LABEL_717": 717,
"LABEL_718": 718,
"LABEL_719": 719,
"LABEL_72": 72,
"LABEL_720": 720,
"LABEL_721": 721,
"LABEL_722": 722,
"LABEL_723": 723,
"LABEL_724": 724,
"LABEL_725": 725,
"LABEL_726": 726,
"LABEL_727": 727,
"LABEL_728": 728,
"LABEL_729": 729,
"LABEL_73": 73,
"LABEL_730": 730,
"LABEL_731": 731,
"LABEL_732": 732,
"LABEL_733": 733,
"LABEL_734": 734,
"LABEL_735": 735,
"LABEL_736": 736,
"LABEL_737": 737,
"LABEL_738": 738,
"LABEL_739": 739,
"LABEL_74": 74,
"LABEL_740": 740,
"LABEL_741": 741,
"LABEL_742": 742,
"LABEL_743": 743,
"LABEL_744": 744,
"LABEL_745": 745,
"LABEL_746": 746,
"LABEL_747": 747,
"LABEL_748": 748,
"LABEL_749": 749,
"LABEL_75": 75,
"LABEL_750": 750,
"LABEL_751": 751,
"LABEL_752": 752,
"LABEL_753": 753,
"LABEL_754": 754,
"LABEL_755": 755,
"LABEL_756": 756,
"LABEL_757": 757,
"LABEL_758": 758,
"LABEL_759": 759,
"LABEL_76": 76,
"LABEL_760": 760,
"LABEL_761": 761,
"LABEL_762": 762,
"LABEL_763": 763,
"LABEL_764": 764,
"LABEL_765": 765,
"LABEL_766": 766,
"LABEL_767": 767,
"LABEL_768": 768,
"LABEL_769": 769,
"LABEL_77": 77,
"LABEL_770": 770,
"LABEL_771": 771,
"LABEL_772": 772,
"LABEL_773": 773,
"LABEL_774": 774,
"LABEL_775": 775,
"LABEL_776": 776,
"LABEL_777": 777,
"LABEL_778": 778,
"LABEL_779": 779,
"LABEL_78": 78,
"LABEL_780": 780,
"LABEL_781": 781,
"LABEL_782": 782,
"LABEL_783": 783,
"LABEL_784": 784,
"LABEL_785": 785,
"LABEL_786": 786,
"LABEL_787": 787,
"LABEL_788": 788,
"LABEL_789": 789,
"LABEL_79": 79,
"LABEL_790": 790,
"LABEL_791": 791,
"LABEL_792": 792,
"LABEL_793": 793,
"LABEL_794": 794,
"LABEL_795": 795,
"LABEL_796": 796,
"LABEL_797": 797,
"LABEL_798": 798,
"LABEL_799": 799,
"LABEL_8": 8,
"LABEL_80": 80,
"LABEL_800": 800,
"LABEL_801": 801,
"LABEL_802": 802,
"LABEL_803": 803,
"LABEL_804": 804,
"LABEL_805": 805,
"LABEL_806": 806,
"LABEL_807": 807,
"LABEL_808": 808,
"LABEL_809": 809,
"LABEL_81": 81,
"LABEL_810": 810,
"LABEL_811": 811,
"LABEL_812": 812,
"LABEL_813": 813,
"LABEL_814": 814,
"LABEL_815": 815,
"LABEL_816": 816,
"LABEL_817": 817,
"LABEL_818": 818,
"LABEL_819": 819,
"LABEL_82": 82,
"LABEL_820": 820,
"LABEL_821": 821,
"LABEL_822": 822,
"LABEL_823": 823,
"LABEL_824": 824,
"LABEL_825": 825,
"LABEL_826": 826,
"LABEL_827": 827,
"LABEL_828": 828,
"LABEL_829": 829,
"LABEL_83": 83,
"LABEL_830": 830,
"LABEL_831": 831,
"LABEL_832": 832,
"LABEL_833": 833,
"LABEL_834": 834,
"LABEL_835": 835,
"LABEL_836": 836,
"LABEL_837": 837,
"LABEL_838": 838,
"LABEL_839": 839,
"LABEL_84": 84,
"LABEL_840": 840,
"LABEL_841": 841,
"LABEL_842": 842,
"LABEL_843": 843,
"LABEL_844": 844,
"LABEL_845": 845,
"LABEL_846": 846,
"LABEL_847": 847,
"LABEL_848": 848,
"LABEL_849": 849,
"LABEL_85": 85,
"LABEL_850": 850,
"LABEL_851": 851,
"LABEL_852": 852,
"LABEL_853": 853,
"LABEL_854": 854,
"LABEL_855": 855,
"LABEL_856": 856,
"LABEL_857": 857,
"LABEL_858": 858,
"LABEL_859": 859,
"LABEL_86": 86,
"LABEL_860": 860,
"LABEL_861": 861,
"LABEL_862": 862,
"LABEL_863": 863,
"LABEL_864": 864,
"LABEL_865": 865,
"LABEL_866": 866,
"LABEL_867": 867,
"LABEL_868": 868,
"LABEL_869": 869,
"LABEL_87": 87,
"LABEL_870": 870,
"LABEL_871": 871,
"LABEL_872": 872,
"LABEL_873": 873,
"LABEL_874": 874,
"LABEL_875": 875,
"LABEL_876": 876,
"LABEL_877": 877,
"LABEL_878": 878,
"LABEL_879": 879,
"LABEL_88": 88,
"LABEL_880": 880,
"LABEL_881": 881,
"LABEL_882": 882,
"LABEL_883": 883,
"LABEL_884": 884,
"LABEL_885": 885,
"LABEL_886": 886,
"LABEL_887": 887,
"LABEL_888": 888,
"LABEL_889": 889,
"LABEL_89": 89,
"LABEL_890": 890,
"LABEL_891": 891,
"LABEL_892": 892,
"LABEL_893": 893,
"LABEL_894": 894,
"LABEL_895": 895,
"LABEL_896": 896,
"LABEL_897": 897,
"LABEL_898": 898,
"LABEL_899": 899,
"LABEL_9": 9,
"LABEL_90": 90,
"LABEL_900": 900,
"LABEL_901": 901,
"LABEL_902": 902,
"LABEL_903": 903,
"LABEL_904": 904,
"LABEL_905": 905,
"LABEL_906": 906,
"LABEL_907": 907,
"LABEL_908": 908,
"LABEL_909": 909,
"LABEL_91": 91,
"LABEL_910": 910,
"LABEL_911": 911,
"LABEL_912": 912,
"LABEL_913": 913,
"LABEL_914": 914,
"LABEL_915": 915,
"LABEL_916": 916,
"LABEL_917": 917,
"LABEL_918": 918,
"LABEL_919": 919,
"LABEL_92": 92,
"LABEL_920": 920,
"LABEL_921": 921,
"LABEL_922": 922,
"LABEL_923": 923,
"LABEL_924": 924,
"LABEL_925": 925,
"LABEL_926": 926,
"LABEL_927": 927,
"LABEL_928": 928,
"LABEL_929": 929,
"LABEL_93": 93,
"LABEL_930": 930,
"LABEL_931": 931,
"LABEL_932": 932,
"LABEL_933": 933,
"LABEL_934": 934,
"LABEL_935": 935,
"LABEL_936": 936,
"LABEL_937": 937,
"LABEL_938": 938,
"LABEL_939": 939,
"LABEL_94": 94,
"LABEL_940": 940,
"LABEL_941": 941,
"LABEL_942": 942,
"LABEL_943": 943,
"LABEL_944": 944,
"LABEL_945": 945,
"LABEL_946": 946,
"LABEL_947": 947,
"LABEL_948": 948,
"LABEL_949": 949,
"LABEL_95": 95,
"LABEL_950": 950,
"LABEL_951": 951,
"LABEL_952": 952,
"LABEL_953": 953,
"LABEL_954": 954,
"LABEL_955": 955,
"LABEL_956": 956,
"LABEL_957": 957,
"LABEL_958": 958,
"LABEL_959": 959,
"LABEL_96": 96,
"LABEL_960": 960,
"LABEL_961": 961,
"LABEL_962": 962,
"LABEL_963": 963,
"LABEL_964": 964,
"LABEL_965": 965,
"LABEL_966": 966,
"LABEL_967": 967,
"LABEL_968": 968,
"LABEL_969": 969,
"LABEL_97": 97,
"LABEL_970": 970,
"LABEL_971": 971,
"LABEL_972": 972,
"LABEL_973": 973,
"LABEL_974": 974,
"LABEL_975": 975,
"LABEL_976": 976,
"LABEL_977": 977,
"LABEL_978": 978,
"LABEL_979": 979,
"LABEL_98": 98,
"LABEL_980": 980,
"LABEL_981": 981,
"LABEL_982": 982,
"LABEL_983": 983,
"LABEL_984": 984,
"LABEL_985": 985,
"LABEL_986": 986,
"LABEL_987": 987,
"LABEL_988": 988,
"LABEL_989": 989,
"LABEL_99": 99,
"LABEL_990": 990,
"LABEL_991": 991,
"LABEL_992": 992,
"LABEL_993": 993,
"LABEL_994": 994,
"LABEL_995": 995,
"LABEL_996": 996,
"LABEL_997": 997,
"LABEL_998": 998,
"LABEL_999": 999
},
"layer_norm_eps": 1e-06,
"layerscale_value": 1.0,
"mlp_ratio": 4,
"model_type": "dinov2",
"num_attention_heads": 16,
"num_channels": 3,
"num_hidden_layers": 24,
"patch_size": 14,
"qkv_bias": true,
"reshape_hidden_states": true,
"stage_names": [
"stem",
"stage1",
"stage2",
"stage3",
"stage4",
"stage5",
"stage6",
"stage7",
"stage8",
"stage9",
"stage10",
"stage11",
"stage12"
],
"torch_dtype": "float32",
"transformers_version": "4.34.0.dev0",
"use_swiglu_ffn": false
}
|