File size: 63,163 Bytes
a2d50fd | 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 | {
"_name_or_path": "irfanamal/bert-base-uncased-finetuned-amazonreviews",
"architectures": [
"BertForSequenceClassification"
],
"attention_probs_dropout_prob": 0.1,
"classifier_dropout": null,
"gradient_checkpointing": false,
"hidden_act": "gelu",
"hidden_dropout_prob": 0.1,
"hidden_size": 768,
"id2label": {
"0": "grocery gourmet food/meat poultry/jerky",
"1": "toys games/games/unknown",
"2": "toys games/puzzles/jigsaw puzzles",
"3": "toys games/games/board games",
"4": "grocery gourmet food/beverages/juices",
"5": "beauty/makeup/nails",
"6": "toys games/arts crafts/drawing painting supplies",
"7": "toys games/action toy figures/figures",
"8": "toys games/dolls accessories/dolls",
"9": "toys games/games/card games",
"10": "toys games/arts crafts/drawing sketching tablets",
"11": "toys games/baby toddler toys/shape sorters",
"12": "health personal care/personal care/deodorants antiperspirants",
"13": "health personal care/nutrition wellness/nutrition bars drinks",
"14": "toys games/learning education/habitats",
"15": "toys games/electronics for kids/unknown",
"16": "health personal care/household supplies/household batteries",
"17": "toys games/baby toddler toys/push pull toys",
"18": "toys games/stuffed animals plush/unknown",
"19": "toys games/tricycles/scooters wagons",
"20": "toys games/arts crafts/clay dough",
"21": "toys games/baby toddler toys/unknown",
"22": "health personal care/health care/allergy",
"23": "baby products/gear/baby gyms playmats",
"24": "health personal care/personal care/shaving hair removal",
"25": "beauty/skin care/face",
"26": "toys games/stuffed animals plush/animals figures",
"27": "health personal care/personal care/feminine care",
"28": "toys games/baby toddler toys/music sound",
"29": "health personal care/personal care/oral hygiene",
"30": "toys games/grown up toys/unknown",
"31": "toys games/dress up pretend play/pretend play",
"32": "toys games/novelty gag toys/unknown",
"33": "beauty/bath body/cleansers",
"34": "toys games/dolls accessories/playsets",
"35": "toys games/puzzles/d puzzles",
"36": "toys games/dolls accessories/dollhouses",
"37": "health personal care/personal care/lip care products",
"38": "beauty/tools accessories/nail tools",
"39": "health personal care/personal care/eye care",
"40": "health personal care/health care/pill cases splitters",
"41": "beauty/hair care/styling products",
"42": "toys games/electronics for kids/electronic toys",
"43": "beauty/skin care/body",
"44": "toys games/novelty gag toys/toy balls",
"45": "beauty/makeup/eyes",
"46": "toys games/games/trading card games",
"47": "beauty/makeup/face",
"48": "health personal care/health care/foot care",
"49": "beauty/skin care/hands nails",
"50": "beauty/skin care/sun",
"51": "health personal care/medical supplies equipment/daily living aids",
"52": "health personal care/baby child care/personal care",
"53": "health personal care/household supplies/paper plastic",
"54": "health personal care/health care/incontinence",
"55": "toys games/puzzles/unknown",
"56": "beauty/hair care/shampoos",
"57": "beauty/hair care/unknown",
"58": "beauty/hair care/conditioners",
"59": "toys games/electronics for kids/music players karaoke",
"60": "health personal care/health care/cough cold",
"61": "beauty/bath body/bath",
"62": "health personal care/medical supplies equipment/tests",
"63": "toys games/building toys/building sets",
"64": "health personal care/health care/stress reduction",
"65": "health personal care/household supplies/unknown",
"66": "health personal care/health care/family planning contraceptives",
"67": "health personal care/nutrition wellness/vitamins supplements",
"68": "toys games/action toy figures/playsets",
"69": "beauty/hair care/hair color",
"70": "health personal care/health care/pain relievers",
"71": "beauty/tools accessories/cotton swabs",
"72": "beauty/hair care/styling tools",
"73": "health personal care/health care/first aid",
"74": "beauty/bath body/scrubs body treatments",
"75": "health personal care/household supplies/cleaning tools",
"76": "toys games/puzzles/pegged puzzles",
"77": "health personal care/health care/unknown",
"78": "health personal care/health care/diabetes",
"79": "toys games/novelty gag toys/magic kits accessories",
"80": "toys games/arts crafts/unknown",
"81": "baby products/gifts/albums",
"82": "toys games/baby toddler toys/crib toys attachments",
"83": "health personal care/health care/digestion nausea",
"84": "toys games/electronics for kids/electronic pets",
"85": "health personal care/sexual wellness/safer sex",
"86": "health personal care/health care/thermometers",
"87": "toys games/baby toddler toys/stacking nesting toys",
"88": "beauty/makeup/makeup remover",
"89": "toys games/novelty gag toys/temporary tattoos",
"90": "toys games/sports outdoor play/play tents tunnels",
"91": "toys games/learning education/science",
"92": "toys games/sports outdoor play/sports",
"93": "toys games/baby toddler toys/bath toys",
"94": "toys games/stuffed animals plush/puppets",
"95": "toys games/electronics for kids/systems accessories",
"96": "toys games/grown up toys/action toy figures",
"97": "health personal care/medical supplies equipment/health monitors",
"98": "toys games/sports outdoor play/inflatable bouncers",
"99": "toys games/hobbies/model building kits tools",
"100": "toys games/arts crafts/blackboards whiteboards",
"101": "toys games/sports outdoor play/pools water fun",
"102": "toys games/baby toddler toys/rattles",
"103": "toys games/sports outdoor play/sandboxes accessories",
"104": "toys games/baby toddler toys/activity play centers",
"105": "toys games/baby toddler toys/car seat stroller toys",
"106": "baby products/feeding/bottle feeding",
"107": "baby products/feeding/breastfeeding",
"108": "baby products/diapering/diaper changing kits",
"109": "toys games/puzzles/puzzle accessories",
"110": "baby products/diapering/diaper pails refills",
"111": "baby products/safety/bathroom safety",
"112": "health personal care/health care/massage relaxation",
"113": "baby products/safety/gates doorways",
"114": "baby products/nursery/furniture",
"115": "baby products/safety/monitors",
"116": "baby products/diapering/cloth diapers",
"117": "toys games/stuffed animals plush/plush backpacks purses",
"118": "toys games/learning education/unknown",
"119": "toys games/action toy figures/statues",
"120": "baby products/bathing skin care/bathing tubs seats",
"121": "toys games/vehicles remote control/play vehicles",
"122": "baby products/gear/backpacks carriers",
"123": "toys games/arts crafts/craft kits",
"124": "baby products/car seats accessories/car seats",
"125": "baby products/nursery/nursery d cor",
"126": "toys games/baby toddler toys/hammering pounding toys",
"127": "baby products/nursery/bedding",
"128": "toys games/vehicles remote control/play trains railway sets",
"129": "toys games/hobbies/rockets",
"130": "toys games/building toys/stacking blocks",
"131": "baby products/diapering/diaper bags",
"132": "baby products/strollers/unknown",
"133": "toys games/sports outdoor play/gym sets swings",
"134": "baby products/pregnancy maternity/maternity pillows",
"135": "toys games/baby toddler toys/rocking spring ride ons",
"136": "health personal care/medical supplies equipment/braces",
"137": "baby products/strollers/accessories",
"138": "toys games/vehicles remote control/vehicle playsets",
"139": "baby products/bathing skin care/unknown",
"140": "toys games/dolls accessories/doll accessories",
"141": "pet supplies/cats/litter housebreaking",
"142": "toys games/baby toddler toys/spinning tops",
"143": "beauty/skin care/sets",
"144": "toys games/games/travel games",
"145": "baby products/car seats accessories/accessories",
"146": "toys games/action toy figures/accessories",
"147": "baby products/feeding/pillows stools",
"148": "toys games/games/battling tops",
"149": "toys games/electronics for kids/cameras camcorders",
"150": "toys games/electronics for kids/dance mats",
"151": "baby products/feeding/food",
"152": "toys games/hobbies/radio control",
"153": "baby products/nursery/unknown",
"154": "baby products/bathing skin care/grooming healthcare kits",
"155": "toys games/building toys/unknown",
"156": "toys games/baby toddler toys/balls",
"157": "toys games/games/tile games",
"158": "baby products/potty training/potties seats",
"159": "baby products/feeding/highchairs booster seats",
"160": "beauty/skin care/eyes",
"161": "toys games/baby toddler toys/stuffed animals toys",
"162": "toys games/games/dvd games",
"163": "baby products/safety/edge corner guards",
"164": "toys games/learning education/basic life skills toys",
"165": "baby products/gear/activity centers entertainers",
"166": "health personal care/health care/thermometer accessories",
"167": "baby products/diapering/wipes holders",
"168": "baby products/feeding/gift sets",
"169": "baby products/feeding/solid feeding",
"170": "baby products/strollers/joggers",
"171": "health personal care/baby child care/health care",
"172": "beauty/tools accessories/facial steamers",
"173": "toys games/sports outdoor play/kites wind spinners",
"174": "pet supplies/dogs/toys",
"175": "baby products/gear/walkers",
"176": "health personal care/personal care/unknown",
"177": "health personal care/medical supplies equipment/unknown",
"178": "toys games/sports outdoor play/slumber bags",
"179": "toys games/vehicles remote control/die cast vehicles",
"180": "toys games/arts crafts/easels",
"181": "toys games/sports outdoor play/unknown",
"182": "beauty/makeup/lips",
"183": "grocery gourmet food/beverages/tea",
"184": "toys games/learning education/reading writing",
"185": "grocery gourmet food/gourmet gifts/snack gifts",
"186": "toys games/games/stacking games",
"187": "grocery gourmet food/sauces dips/sauces",
"188": "grocery gourmet food/breakfast foods/cereals",
"189": "baby products/gear/shopping cart covers",
"190": "grocery gourmet food/pantry staples/unknown",
"191": "toys games/hobbies/scaled model vehicles",
"192": "grocery gourmet food/pantry staples/cooking baking supplies",
"193": "toys games/electronics for kids/personal video players accessories",
"194": "beauty/fragrance/women s",
"195": "baby products/gifts/keepsakes",
"196": "pet supplies/dogs/treats",
"197": "baby products/gear/swings",
"198": "toys games/hobbies/trains accessories",
"199": "baby products/diapering/disposable diapers",
"200": "toys games/electronics for kids/plug play video games",
"201": "toys games/puzzles/floor puzzles",
"202": "grocery gourmet food/fresh flowers live indoor plants/live indoor plants",
"203": "health personal care/nutrition wellness/weight loss products",
"204": "health personal care/health care/smoking cessation",
"205": "toys games/dress up pretend play/beauty fashion",
"206": "toys games/baby toddler toys/mirrors",
"207": "grocery gourmet food/beverages/coffee",
"208": "pet supplies/dogs/litter housebreaking",
"209": "baby products/safety/cabinet locks straps",
"210": "toys games/stuffed animals plush/plush pillows",
"211": "toys games/games/floor games",
"212": "beauty/tools accessories/makeup brushes tools",
"213": "health personal care/health care/alternative medicine",
"214": "baby products/diapering/changing table pads covers",
"215": "beauty/fragrance/men s",
"216": "baby products/potty training/step stools",
"217": "baby products/safety/rails rail guards",
"218": "health personal care/household supplies/laundry",
"219": "health personal care/health care/women s health",
"220": "baby products/strollers/standard",
"221": "pet supplies/dogs/beds furniture",
"222": "grocery gourmet food/pantry staples/herbs",
"223": "baby products/safety/sleep positioners",
"224": "pet supplies/dogs/food",
"225": "pet supplies/cats/health supplies",
"226": "grocery gourmet food/breakfast foods/breakfast cereal bars",
"227": "health personal care/personal care/body art",
"228": "grocery gourmet food/pantry staples/condiments",
"229": "grocery gourmet food/breads bakery/cakes",
"230": "grocery gourmet food/pantry staples/dried beans",
"231": "health personal care/household supplies/household cleaning",
"232": "pet supplies/dogs/collars",
"233": "pet supplies/cats/beds furniture",
"234": "pet supplies/cats/educational repellents",
"235": "grocery gourmet food/gourmet gifts/dessert gifts",
"236": "health personal care/sexual wellness/adult toys games",
"237": "toys games/stuffed animals plush/teddy bears",
"238": "health personal care/health care/therapeutic skin care",
"239": "grocery gourmet food/candy chocolate/chocolate assortments",
"240": "toys games/sports outdoor play/sand water tables",
"241": "toys games/hobbies/slot cars",
"242": "grocery gourmet food/cooking baking supplies/chocolate",
"243": "grocery gourmet food/pantry staples/sauces",
"244": "grocery gourmet food/beverages/soft drinks",
"245": "grocery gourmet food/snack food/chips crisps",
"246": "grocery gourmet food/candy chocolate/licorice",
"247": "pet supplies/cats/feeding watering supplies",
"248": "beauty/fragrance/unknown",
"249": "toys games/sports outdoor play/blasters foam play",
"250": "health personal care/nutrition wellness/unknown",
"251": "baby products/bathing skin care/skin care",
"252": "grocery gourmet food/candy chocolate/chocolate bars",
"253": "grocery gourmet food/meat seafood/wild game fowl",
"254": "grocery gourmet food/herbs/spices seasonings",
"255": "grocery gourmet food/snack food/cookies",
"256": "health personal care/sexual wellness/unknown",
"257": "pet supplies/dogs/training behavior aids",
"258": "toys games/sports outdoor play/gardening tools",
"259": "health personal care/medical supplies equipment/bathroom aids safety",
"260": "toys games/sports outdoor play/pogo sticks hoppers",
"261": "grocery gourmet food/beverages/powdered drink mixes",
"262": "baby products/gear/playards",
"263": "health personal care/personal care/foot care",
"264": "toys games/novelty gag toys/gag toys practical jokes",
"265": "grocery gourmet food/baby food/baby formula",
"266": "health personal care/household supplies/lighters",
"267": "grocery gourmet food/beverages/unknown",
"268": "grocery gourmet food/breads bakery/cookies",
"269": "grocery gourmet food/snack food/dried fruit raisins",
"270": "toys games/novelty gag toys/money banks",
"271": "toys games/building toys/marble runs",
"272": "toys games/games/game collections",
"273": "baby products/safety/kitchen safety",
"274": "pet supplies/fish aquatic pets/food",
"275": "grocery gourmet food/candy chocolate/gum",
"276": "baby products/safety/outdoor safety",
"277": "toys games/dress up pretend play/hair nails",
"278": "beauty/bath body/unknown",
"279": "pet supplies/fish aquatic pets/aquarium lights",
"280": "baby products/diapering/unknown",
"281": "toys games/baby toddler toys/blocks",
"282": "baby products/strollers/tandem",
"283": "health personal care/medical supplies equipment/occupational physical therapy aids",
"284": "pet supplies/cats/treats",
"285": "grocery gourmet food/pantry staples/packaged meals side dishes",
"286": "toys games/baby toddler toys/indoor climbers play structures",
"287": "pet supplies/fish aquatic pets/pumps filters",
"288": "health personal care/medical supplies equipment/beds accessories",
"289": "grocery gourmet food/beverages/energy drinks",
"290": "health personal care/health care/sleep snoring",
"291": "toys games/learning education/geography",
"292": "pet supplies/small animals/houses habitats",
"293": "grocery gourmet food/dairy eggs/cheese",
"294": "baby products/strollers/travel systems",
"295": "toys games/electronics for kids/walkie talkies",
"296": "health personal care/medical supplies equipment/mobility aids equipment",
"297": "health personal care/sexual wellness/sexual enhancers",
"298": "grocery gourmet food/sauces dips/dips",
"299": "toys games/dolls accessories/dollhouse accessories",
"300": "grocery gourmet food/snack food/party mix",
"301": "beauty/bath body/bathing accessories",
"302": "pet supplies/cats/grooming",
"303": "beauty/bath body/sets",
"304": "baby products/gear/baby seats",
"305": "toys games/novelty gag toys/wind up toys",
"306": "pet supplies/cats/food",
"307": "beauty/skin care/unknown",
"308": "health personal care/sexual wellness/sensual delights",
"309": "grocery gourmet food/beverages/hot cocoa",
"310": "beauty/tools accessories/mirrors",
"311": "health personal care/household supplies/dishwashing",
"312": "pet supplies/cats/carriers strollers",
"313": "toys games/learning education/flash cards",
"314": "baby products/safety/unknown",
"315": "toys games/grown up toys/novelty gag toys",
"316": "toys games/puzzles/brain teasers",
"317": "pet supplies/dogs/health supplies",
"318": "toys games/novelty gag toys/nesting dolls",
"319": "health personal care/baby child care/unknown",
"320": "pet supplies/fish aquatic pets/test kits",
"321": "baby products/strollers/lightweight",
"322": "beauty/hair care/hair loss products",
"323": "beauty/makeup/body",
"324": "pet supplies/fish aquatic pets/water treatments",
"325": "baby products/gear/unknown",
"326": "pet supplies/dogs/feeding watering supplies",
"327": "pet supplies/birds/food",
"328": "beauty/hair care/hair scalp treatments",
"329": "pet supplies/birds/cages accessories",
"330": "pet supplies/cats/collars",
"331": "grocery gourmet food/candy chocolate/gummy candies",
"332": "grocery gourmet food/candy chocolate/gummy candy",
"333": "grocery gourmet food/snack food/jerky dried meats",
"334": "pet supplies/dogs/houses",
"335": "grocery gourmet food/candy chocolate/chocolate truffles",
"336": "health personal care/personal care/ear care",
"337": "grocery gourmet food/snack food/unknown",
"338": "grocery gourmet food/dairy eggs/milk",
"339": "grocery gourmet food/breads bakery/pizza crusts",
"340": "pet supplies/dogs/grooming",
"341": "grocery gourmet food/breads bakery/fresh baked cookies",
"342": "grocery gourmet food/candy chocolate/hard candies",
"343": "health personal care/nutrition wellness/sports supplements",
"344": "grocery gourmet food/cooking baking supplies/baking mixes",
"345": "grocery gourmet food/snack food/crackers",
"346": "grocery gourmet food/snack food/pork rinds",
"347": "grocery gourmet food/pantry staples/pasta noodles",
"348": "grocery gourmet food/snack food/trail mix",
"349": "pet supplies/dogs/carriers travel products",
"350": "grocery gourmet food/produce/fresh fruits",
"351": "grocery gourmet food/breakfast foods/toaster pastries",
"352": "grocery gourmet food/snack food/rice cakes",
"353": "grocery gourmet food/snack food/chips",
"354": "grocery gourmet food/snack food/puffed snacks",
"355": "grocery gourmet food/candy chocolate/unknown",
"356": "grocery gourmet food/snack food/pretzels",
"357": "toys games/learning education/mathematics counting",
"358": "grocery gourmet food/candy chocolate/suckers lollipops",
"359": "grocery gourmet food/snack food/popcorn",
"360": "baby products/gifts/toy banks",
"361": "baby products/potty training/training pants",
"362": "grocery gourmet food/gourmet gifts/tea gifts",
"363": "grocery gourmet food/pantry staples/oils",
"364": "pet supplies/fish aquatic pets/aquarium hoods",
"365": "grocery gourmet food/breads bakery/tortillas",
"366": "grocery gourmet food/gourmet gifts/cheese gifts",
"367": "baby products/gifts/unknown",
"368": "pet supplies/dogs/doors",
"369": "toys games/games/standard playing card decks",
"370": "grocery gourmet food/candy chocolate/fudge",
"371": "grocery gourmet food/cooking baking supplies/syrups",
"372": "toys games/arts crafts/printing stamping",
"373": "toys games/baby toddler toys/toy gift sets",
"374": "grocery gourmet food/pantry staples/canned jarred food",
"375": "grocery gourmet food/produce/fresh vegetables",
"376": "pet supplies/dogs/apparel accessories",
"377": "grocery gourmet food/gourmet gifts/candy gifts",
"378": "grocery gourmet food/candy chocolate/chewing gum",
"379": "toys games/puzzles/puzzle play mats",
"380": "baby products/safety/electrical safety",
"381": "grocery gourmet food/cooking baking supplies/sugars sweeteners",
"382": "toys games/sports outdoor play/marble games",
"383": "toys games/novelty gag toys/miniatures",
"384": "toys games/novelty gag toys/finger boards finger bikes",
"385": "grocery gourmet food/beverages/coconut water",
"386": "toys games/games/handheld games",
"387": "toys games/novelty gag toys/slime putty toys",
"388": "grocery gourmet food/breads bakery/unknown",
"389": "grocery gourmet food/breads bakery/pastries",
"390": "baby products/health baby care/teethers",
"391": "grocery gourmet food/dairy eggs/butter",
"392": "grocery gourmet food/candy chocolate/fruits",
"393": "grocery gourmet food/candy chocolate/chocolate pretzels",
"394": "grocery gourmet food/breads bakery/breakfast bakery",
"395": "toys games/arts crafts/stickers",
"396": "baby products/bathing skin care/soaps cleansers",
"397": "grocery gourmet food/gourmet gifts/sauces gifts",
"398": "pet supplies/birds/feeding watering supplies",
"399": "pet supplies/cats/toys",
"400": "toys games/grown up toys/hobbies",
"401": "toys games/sports outdoor play/fitness equipment",
"402": "beauty/makeup/unknown",
"403": "grocery gourmet food/beverages/water",
"404": "baby products/diapering/portable changing pads",
"405": "toys games/games/dice gaming dice",
"406": "baby products/feeding/pacifiers accessories",
"407": "grocery gourmet food/candy chocolate/bars",
"408": "grocery gourmet food/beverages/cocktail mixers",
"409": "pet supplies/fish aquatic pets/aquariums",
"410": "toys games/sports outdoor play/ball pits accessories",
"411": "grocery gourmet food/meat seafood/seafood",
"412": "beauty/tools accessories/bags cases",
"413": "grocery gourmet food/candy chocolate/jelly beans",
"414": "toys games/novelty gag toys/novelty spinning tops",
"415": "pet supplies/fish aquatic pets/automatic feeders",
"416": "toys games/vehicles remote control/unknown",
"417": "grocery gourmet food/candy chocolate/mints",
"418": "beauty/makeup/makeup sets",
"419": "pet supplies/fish aquatic pets/cleaners",
"420": "grocery gourmet food/fresh flowers live indoor plants/fresh cut flowers",
"421": "baby products/feeding/unknown",
"422": "grocery gourmet food/pantry staples/jams",
"423": "baby products/strollers/prams",
"424": "grocery gourmet food/cooking baking supplies/nuts seeds",
"425": "grocery gourmet food/candy chocolate/taffy",
"426": "pet supplies/birds/treats",
"427": "pet supplies/bunny rabbit central/rabbit hutches",
"428": "beauty/tools accessories/unknown",
"429": "pet supplies/fish aquatic pets/aquarium d cor",
"430": "pet supplies/birds/toys",
"431": "toys games/action toy figures/unknown",
"432": "grocery gourmet food/snack food/granola bars",
"433": "grocery gourmet food/dairy eggs/unknown",
"434": "pet supplies/birds/health supplies",
"435": "toys games/novelty gag toys/viewfinders",
"436": "baby products/safety/harnesses leashes",
"437": "pet supplies/bunny rabbit central/feeding watering supplies",
"438": "toys games/grown up toys/puzzles",
"439": "grocery gourmet food/meat seafood/foie gras p t s",
"440": "toys games/games/game accessories",
"441": "grocery gourmet food/meat poultry/p t s",
"442": "toys games/games/game room games",
"443": "pet supplies/cats/cages",
"444": "baby products/bathing skin care/non slip bath mats",
"445": "grocery gourmet food/candy chocolate/halva",
"446": "toys games/grown up toys/games",
"447": "grocery gourmet food/meat seafood/unknown",
"448": "pet supplies/bunny rabbit central/houses habitats",
"449": "grocery gourmet food/gourmet gifts/seafood gifts",
"450": "health personal care/health care/stimulants",
"451": "toys games/sports outdoor play/beanbags foot bags",
"452": "beauty/hair care/shampoo conditioner sets",
"453": "grocery gourmet food/candy chocolate/nut clusters",
"454": "grocery gourmet food/snack food/raisins",
"455": "grocery gourmet food/breads bakery/breadcrumbs",
"456": "grocery gourmet food/cooking baking supplies/extracts flavoring",
"457": "toys games/stuffed animals plush/plush puppets",
"458": "beauty/hair care/shampoo plus conditioner",
"459": "grocery gourmet food/snack food/salsas",
"460": "pet supplies/cats/memorials",
"461": "toys games/grown up toys/die cast toy vehicles",
"462": "pet supplies/fish aquatic pets/aquarium starter kits",
"463": "pet supplies/small animals/food",
"464": "grocery gourmet food/gourmet gifts/coffee gifts",
"465": "health personal care/household supplies/air fresheners",
"466": "grocery gourmet food/snack food/fruit leather",
"467": "grocery gourmet food/snack food/granola trail mix bars",
"468": "grocery gourmet food/cooking baking supplies/sugar substitutes",
"469": "grocery gourmet food/snack food/nuts seeds",
"470": "grocery gourmet food/meat seafood/bacon",
"471": "pet supplies/cats/cat flaps",
"472": "pet supplies/fish aquatic pets/aquarium heaters",
"473": "beauty/hair care/hair relaxers",
"474": "grocery gourmet food/breads bakery/breads",
"475": "grocery gourmet food/breads bakery/packaged breads",
"476": "grocery gourmet food/meat seafood/sausages",
"477": "grocery gourmet food/meat poultry/seafood",
"478": "grocery gourmet food/cooking baking supplies/dessert toppings",
"479": "baby products/diapering/diaper stackers caddies",
"480": "toys games/novelty gag toys/prisms kaleidoscopes",
"481": "beauty/skin care/maternity",
"482": "pet supplies/bunny rabbit central/treats",
"483": "pet supplies/small animals/collars",
"484": "grocery gourmet food/baby food/crackers biscuits",
"485": "baby products/bathing skin care/gift sets",
"486": "pet supplies/bunny rabbit central/collars",
"487": "toys games/hobbies/coin collecting",
"488": "grocery gourmet food/gourmet gifts/chocolate gifts",
"489": "toys games/hobbies/unknown",
"490": "toys games/sports outdoor play/kickball playground balls",
"491": "beauty/hair care/hair perms texturizers",
"492": "toys games/sports outdoor play/yo yos",
"493": "pet supplies/small animals/treats",
"494": "grocery gourmet food/cooking baking supplies/flours meals",
"495": "grocery gourmet food/gourmet gifts/unknown",
"496": "grocery gourmet food/meat seafood/beef",
"497": "toys games/arts crafts/molding sculpting sticks",
"498": "baby products/bathing skin care/washcloths towels",
"499": "grocery gourmet food/gourmet gifts/fruit gifts",
"500": "grocery gourmet food/breads bakery/stuffing",
"501": "grocery gourmet food/cooking baking supplies/baking powder",
"502": "grocery gourmet food/baby food/cereal",
"503": "grocery gourmet food/meat poultry/exotic meats",
"504": "grocery gourmet food/breads bakery/breadsticks",
"505": "pet supplies/bunny rabbit central/food",
"506": "grocery gourmet food/dairy eggs/eggs",
"507": "pet supplies/cats/unknown",
"508": "baby products/diapering/cloth diaper accessories",
"509": "pet supplies/bunny rabbit central/carriers",
"510": "grocery gourmet food/candy chocolate/toffee",
"511": "pet supplies/small animals/toys",
"512": "beauty/tools accessories/hair coloring tools",
"513": "grocery gourmet food/candy chocolate/chocolate covered fruit",
"514": "pet supplies/small animals/feeding watering supplies",
"515": "grocery gourmet food/candy chocolate/caramels",
"516": "grocery gourmet food/candy chocolate/assortments",
"517": "baby products/bathing skin care/aromatherapy",
"518": "baby products/potty training/seat covers",
"519": "health personal care/sexual wellness/bondage gear accessories",
"520": "baby products/health baby care/sun protection",
"521": "grocery gourmet food/baby food/dinners",
"522": "grocery gourmet food/baby food/fruit",
"523": "toys games/dolls accessories/unknown",
"524": "pet supplies/fish aquatic pets/aquarium stands",
"525": "toys games/baby toddler toys/teaching clocks",
"526": "grocery gourmet food/dairy eggs/milk substitutes",
"527": "pet supplies/fish aquatic pets/health supplies",
"528": "baby products/bathing skin care/bubble bath",
"529": "health personal care/sexual wellness/novelties",
"530": "grocery gourmet food/gourmet gifts/jams preserves gifts",
"531": "grocery gourmet food/cooking baking supplies/unknown",
"532": "grocery gourmet food/gourmet gifts/meat gifts",
"533": "grocery gourmet food/meat poultry/sausages",
"534": "toys games/arts crafts/beads",
"535": "pet supplies/fish aquatic pets/fish bowls",
"536": "toys games/dress up pretend play/unknown",
"537": "pet supplies/bunny rabbit central/odor stain removers",
"538": "grocery gourmet food/baby food/beverages",
"539": "grocery gourmet food/cooking baking supplies/food coloring",
"540": "beauty/fragrance/children s",
"541": "grocery gourmet food/dairy eggs/ice cream frozen desserts",
"542": "grocery gourmet food/cooking baking supplies/pastry decorations",
"543": "grocery gourmet food/meat seafood/chicken",
"544": "grocery gourmet food/beverages/sports drinks",
"545": "grocery gourmet food/candy chocolate/marshmallows",
"546": "grocery gourmet food/snack food/pudding",
"547": "toys games/arts crafts/aprons smocks",
"548": "grocery gourmet food/meat poultry/unknown",
"549": "baby products/potty training/unknown",
"550": "toys games/learning education/electronics",
"551": "pet supplies/small animals/unknown",
"552": "health personal care/sexual wellness/sex furniture",
"553": "grocery gourmet food/meat poultry/pork",
"554": "grocery gourmet food/gourmet gifts/spices gifts",
"555": "grocery gourmet food/snack food/dried fruit",
"556": "toys games/novelty gag toys/flying toys",
"557": "baby products/bathing skin care/shampoo",
"558": "grocery gourmet food/cooking baking supplies/coatings batters",
"559": "pet supplies/fish aquatic pets/hydrometers",
"560": "grocery gourmet food/meat poultry/lamb",
"561": "pet supplies/small animals/exercise wheels",
"562": "grocery gourmet food/candy chocolate/chocolate covered nuts",
"563": "pet supplies/fish aquatic pets/breeding tanks"
},
"initializer_range": 0.02,
"intermediate_size": 3072,
"label2id": {
"baby products/bathing skin care/aromatherapy": 517,
"baby products/bathing skin care/bathing tubs seats": 120,
"baby products/bathing skin care/bubble bath": 528,
"baby products/bathing skin care/gift sets": 485,
"baby products/bathing skin care/grooming healthcare kits": 154,
"baby products/bathing skin care/non slip bath mats": 444,
"baby products/bathing skin care/shampoo": 557,
"baby products/bathing skin care/skin care": 251,
"baby products/bathing skin care/soaps cleansers": 396,
"baby products/bathing skin care/unknown": 139,
"baby products/bathing skin care/washcloths towels": 498,
"baby products/car seats accessories/accessories": 145,
"baby products/car seats accessories/car seats": 124,
"baby products/diapering/changing table pads covers": 214,
"baby products/diapering/cloth diaper accessories": 508,
"baby products/diapering/cloth diapers": 116,
"baby products/diapering/diaper bags": 131,
"baby products/diapering/diaper changing kits": 108,
"baby products/diapering/diaper pails refills": 110,
"baby products/diapering/diaper stackers caddies": 479,
"baby products/diapering/disposable diapers": 199,
"baby products/diapering/portable changing pads": 404,
"baby products/diapering/unknown": 280,
"baby products/diapering/wipes holders": 167,
"baby products/feeding/bottle feeding": 106,
"baby products/feeding/breastfeeding": 107,
"baby products/feeding/food": 151,
"baby products/feeding/gift sets": 168,
"baby products/feeding/highchairs booster seats": 159,
"baby products/feeding/pacifiers accessories": 406,
"baby products/feeding/pillows stools": 147,
"baby products/feeding/solid feeding": 169,
"baby products/feeding/unknown": 421,
"baby products/gear/activity centers entertainers": 165,
"baby products/gear/baby gyms playmats": 23,
"baby products/gear/baby seats": 304,
"baby products/gear/backpacks carriers": 122,
"baby products/gear/playards": 262,
"baby products/gear/shopping cart covers": 189,
"baby products/gear/swings": 197,
"baby products/gear/unknown": 325,
"baby products/gear/walkers": 175,
"baby products/gifts/albums": 81,
"baby products/gifts/keepsakes": 195,
"baby products/gifts/toy banks": 360,
"baby products/gifts/unknown": 367,
"baby products/health baby care/sun protection": 520,
"baby products/health baby care/teethers": 390,
"baby products/nursery/bedding": 127,
"baby products/nursery/furniture": 114,
"baby products/nursery/nursery d cor": 125,
"baby products/nursery/unknown": 153,
"baby products/potty training/potties seats": 158,
"baby products/potty training/seat covers": 518,
"baby products/potty training/step stools": 216,
"baby products/potty training/training pants": 361,
"baby products/potty training/unknown": 549,
"baby products/pregnancy maternity/maternity pillows": 134,
"baby products/safety/bathroom safety": 111,
"baby products/safety/cabinet locks straps": 209,
"baby products/safety/edge corner guards": 163,
"baby products/safety/electrical safety": 380,
"baby products/safety/gates doorways": 113,
"baby products/safety/harnesses leashes": 436,
"baby products/safety/kitchen safety": 273,
"baby products/safety/monitors": 115,
"baby products/safety/outdoor safety": 276,
"baby products/safety/rails rail guards": 217,
"baby products/safety/sleep positioners": 223,
"baby products/safety/unknown": 314,
"baby products/strollers/accessories": 137,
"baby products/strollers/joggers": 170,
"baby products/strollers/lightweight": 321,
"baby products/strollers/prams": 423,
"baby products/strollers/standard": 220,
"baby products/strollers/tandem": 282,
"baby products/strollers/travel systems": 294,
"baby products/strollers/unknown": 132,
"beauty/bath body/bath": 61,
"beauty/bath body/bathing accessories": 301,
"beauty/bath body/cleansers": 33,
"beauty/bath body/scrubs body treatments": 74,
"beauty/bath body/sets": 303,
"beauty/bath body/unknown": 278,
"beauty/fragrance/children s": 540,
"beauty/fragrance/men s": 215,
"beauty/fragrance/unknown": 248,
"beauty/fragrance/women s": 194,
"beauty/hair care/conditioners": 58,
"beauty/hair care/hair color": 69,
"beauty/hair care/hair loss products": 322,
"beauty/hair care/hair perms texturizers": 491,
"beauty/hair care/hair relaxers": 473,
"beauty/hair care/hair scalp treatments": 328,
"beauty/hair care/shampoo conditioner sets": 452,
"beauty/hair care/shampoo plus conditioner": 458,
"beauty/hair care/shampoos": 56,
"beauty/hair care/styling products": 41,
"beauty/hair care/styling tools": 72,
"beauty/hair care/unknown": 57,
"beauty/makeup/body": 323,
"beauty/makeup/eyes": 45,
"beauty/makeup/face": 47,
"beauty/makeup/lips": 182,
"beauty/makeup/makeup remover": 88,
"beauty/makeup/makeup sets": 418,
"beauty/makeup/nails": 5,
"beauty/makeup/unknown": 402,
"beauty/skin care/body": 43,
"beauty/skin care/eyes": 160,
"beauty/skin care/face": 25,
"beauty/skin care/hands nails": 49,
"beauty/skin care/maternity": 481,
"beauty/skin care/sets": 143,
"beauty/skin care/sun": 50,
"beauty/skin care/unknown": 307,
"beauty/tools accessories/bags cases": 412,
"beauty/tools accessories/cotton swabs": 71,
"beauty/tools accessories/facial steamers": 172,
"beauty/tools accessories/hair coloring tools": 512,
"beauty/tools accessories/makeup brushes tools": 212,
"beauty/tools accessories/mirrors": 310,
"beauty/tools accessories/nail tools": 38,
"beauty/tools accessories/unknown": 428,
"grocery gourmet food/baby food/baby formula": 265,
"grocery gourmet food/baby food/beverages": 538,
"grocery gourmet food/baby food/cereal": 502,
"grocery gourmet food/baby food/crackers biscuits": 484,
"grocery gourmet food/baby food/dinners": 521,
"grocery gourmet food/baby food/fruit": 522,
"grocery gourmet food/beverages/cocktail mixers": 408,
"grocery gourmet food/beverages/coconut water": 385,
"grocery gourmet food/beverages/coffee": 207,
"grocery gourmet food/beverages/energy drinks": 289,
"grocery gourmet food/beverages/hot cocoa": 309,
"grocery gourmet food/beverages/juices": 4,
"grocery gourmet food/beverages/powdered drink mixes": 261,
"grocery gourmet food/beverages/soft drinks": 244,
"grocery gourmet food/beverages/sports drinks": 544,
"grocery gourmet food/beverages/tea": 183,
"grocery gourmet food/beverages/unknown": 267,
"grocery gourmet food/beverages/water": 403,
"grocery gourmet food/breads bakery/breadcrumbs": 455,
"grocery gourmet food/breads bakery/breads": 474,
"grocery gourmet food/breads bakery/breadsticks": 504,
"grocery gourmet food/breads bakery/breakfast bakery": 394,
"grocery gourmet food/breads bakery/cakes": 229,
"grocery gourmet food/breads bakery/cookies": 268,
"grocery gourmet food/breads bakery/fresh baked cookies": 341,
"grocery gourmet food/breads bakery/packaged breads": 475,
"grocery gourmet food/breads bakery/pastries": 389,
"grocery gourmet food/breads bakery/pizza crusts": 339,
"grocery gourmet food/breads bakery/stuffing": 500,
"grocery gourmet food/breads bakery/tortillas": 365,
"grocery gourmet food/breads bakery/unknown": 388,
"grocery gourmet food/breakfast foods/breakfast cereal bars": 226,
"grocery gourmet food/breakfast foods/cereals": 188,
"grocery gourmet food/breakfast foods/toaster pastries": 351,
"grocery gourmet food/candy chocolate/assortments": 516,
"grocery gourmet food/candy chocolate/bars": 407,
"grocery gourmet food/candy chocolate/caramels": 515,
"grocery gourmet food/candy chocolate/chewing gum": 378,
"grocery gourmet food/candy chocolate/chocolate assortments": 239,
"grocery gourmet food/candy chocolate/chocolate bars": 252,
"grocery gourmet food/candy chocolate/chocolate covered fruit": 513,
"grocery gourmet food/candy chocolate/chocolate covered nuts": 562,
"grocery gourmet food/candy chocolate/chocolate pretzels": 393,
"grocery gourmet food/candy chocolate/chocolate truffles": 335,
"grocery gourmet food/candy chocolate/fruits": 392,
"grocery gourmet food/candy chocolate/fudge": 370,
"grocery gourmet food/candy chocolate/gum": 275,
"grocery gourmet food/candy chocolate/gummy candies": 331,
"grocery gourmet food/candy chocolate/gummy candy": 332,
"grocery gourmet food/candy chocolate/halva": 445,
"grocery gourmet food/candy chocolate/hard candies": 342,
"grocery gourmet food/candy chocolate/jelly beans": 413,
"grocery gourmet food/candy chocolate/licorice": 246,
"grocery gourmet food/candy chocolate/marshmallows": 545,
"grocery gourmet food/candy chocolate/mints": 417,
"grocery gourmet food/candy chocolate/nut clusters": 453,
"grocery gourmet food/candy chocolate/suckers lollipops": 358,
"grocery gourmet food/candy chocolate/taffy": 425,
"grocery gourmet food/candy chocolate/toffee": 510,
"grocery gourmet food/candy chocolate/unknown": 355,
"grocery gourmet food/cooking baking supplies/baking mixes": 344,
"grocery gourmet food/cooking baking supplies/baking powder": 501,
"grocery gourmet food/cooking baking supplies/chocolate": 242,
"grocery gourmet food/cooking baking supplies/coatings batters": 558,
"grocery gourmet food/cooking baking supplies/dessert toppings": 478,
"grocery gourmet food/cooking baking supplies/extracts flavoring": 456,
"grocery gourmet food/cooking baking supplies/flours meals": 494,
"grocery gourmet food/cooking baking supplies/food coloring": 539,
"grocery gourmet food/cooking baking supplies/nuts seeds": 424,
"grocery gourmet food/cooking baking supplies/pastry decorations": 542,
"grocery gourmet food/cooking baking supplies/sugar substitutes": 468,
"grocery gourmet food/cooking baking supplies/sugars sweeteners": 381,
"grocery gourmet food/cooking baking supplies/syrups": 371,
"grocery gourmet food/cooking baking supplies/unknown": 531,
"grocery gourmet food/dairy eggs/butter": 391,
"grocery gourmet food/dairy eggs/cheese": 293,
"grocery gourmet food/dairy eggs/eggs": 506,
"grocery gourmet food/dairy eggs/ice cream frozen desserts": 541,
"grocery gourmet food/dairy eggs/milk": 338,
"grocery gourmet food/dairy eggs/milk substitutes": 526,
"grocery gourmet food/dairy eggs/unknown": 433,
"grocery gourmet food/fresh flowers live indoor plants/fresh cut flowers": 420,
"grocery gourmet food/fresh flowers live indoor plants/live indoor plants": 202,
"grocery gourmet food/gourmet gifts/candy gifts": 377,
"grocery gourmet food/gourmet gifts/cheese gifts": 366,
"grocery gourmet food/gourmet gifts/chocolate gifts": 488,
"grocery gourmet food/gourmet gifts/coffee gifts": 464,
"grocery gourmet food/gourmet gifts/dessert gifts": 235,
"grocery gourmet food/gourmet gifts/fruit gifts": 499,
"grocery gourmet food/gourmet gifts/jams preserves gifts": 530,
"grocery gourmet food/gourmet gifts/meat gifts": 532,
"grocery gourmet food/gourmet gifts/sauces gifts": 397,
"grocery gourmet food/gourmet gifts/seafood gifts": 449,
"grocery gourmet food/gourmet gifts/snack gifts": 185,
"grocery gourmet food/gourmet gifts/spices gifts": 554,
"grocery gourmet food/gourmet gifts/tea gifts": 362,
"grocery gourmet food/gourmet gifts/unknown": 495,
"grocery gourmet food/herbs/spices seasonings": 254,
"grocery gourmet food/meat poultry/exotic meats": 503,
"grocery gourmet food/meat poultry/jerky": 0,
"grocery gourmet food/meat poultry/lamb": 560,
"grocery gourmet food/meat poultry/p t s": 441,
"grocery gourmet food/meat poultry/pork": 553,
"grocery gourmet food/meat poultry/sausages": 533,
"grocery gourmet food/meat poultry/seafood": 477,
"grocery gourmet food/meat poultry/unknown": 548,
"grocery gourmet food/meat seafood/bacon": 470,
"grocery gourmet food/meat seafood/beef": 496,
"grocery gourmet food/meat seafood/chicken": 543,
"grocery gourmet food/meat seafood/foie gras p t s": 439,
"grocery gourmet food/meat seafood/sausages": 476,
"grocery gourmet food/meat seafood/seafood": 411,
"grocery gourmet food/meat seafood/unknown": 447,
"grocery gourmet food/meat seafood/wild game fowl": 253,
"grocery gourmet food/pantry staples/canned jarred food": 374,
"grocery gourmet food/pantry staples/condiments": 228,
"grocery gourmet food/pantry staples/cooking baking supplies": 192,
"grocery gourmet food/pantry staples/dried beans": 230,
"grocery gourmet food/pantry staples/herbs": 222,
"grocery gourmet food/pantry staples/jams": 422,
"grocery gourmet food/pantry staples/oils": 363,
"grocery gourmet food/pantry staples/packaged meals side dishes": 285,
"grocery gourmet food/pantry staples/pasta noodles": 347,
"grocery gourmet food/pantry staples/sauces": 243,
"grocery gourmet food/pantry staples/unknown": 190,
"grocery gourmet food/produce/fresh fruits": 350,
"grocery gourmet food/produce/fresh vegetables": 375,
"grocery gourmet food/sauces dips/dips": 298,
"grocery gourmet food/sauces dips/sauces": 187,
"grocery gourmet food/snack food/chips": 353,
"grocery gourmet food/snack food/chips crisps": 245,
"grocery gourmet food/snack food/cookies": 255,
"grocery gourmet food/snack food/crackers": 345,
"grocery gourmet food/snack food/dried fruit": 555,
"grocery gourmet food/snack food/dried fruit raisins": 269,
"grocery gourmet food/snack food/fruit leather": 466,
"grocery gourmet food/snack food/granola bars": 432,
"grocery gourmet food/snack food/granola trail mix bars": 467,
"grocery gourmet food/snack food/jerky dried meats": 333,
"grocery gourmet food/snack food/nuts seeds": 469,
"grocery gourmet food/snack food/party mix": 300,
"grocery gourmet food/snack food/popcorn": 359,
"grocery gourmet food/snack food/pork rinds": 346,
"grocery gourmet food/snack food/pretzels": 356,
"grocery gourmet food/snack food/pudding": 546,
"grocery gourmet food/snack food/puffed snacks": 354,
"grocery gourmet food/snack food/raisins": 454,
"grocery gourmet food/snack food/rice cakes": 352,
"grocery gourmet food/snack food/salsas": 459,
"grocery gourmet food/snack food/trail mix": 348,
"grocery gourmet food/snack food/unknown": 337,
"health personal care/baby child care/health care": 171,
"health personal care/baby child care/personal care": 52,
"health personal care/baby child care/unknown": 319,
"health personal care/health care/allergy": 22,
"health personal care/health care/alternative medicine": 213,
"health personal care/health care/cough cold": 60,
"health personal care/health care/diabetes": 78,
"health personal care/health care/digestion nausea": 83,
"health personal care/health care/family planning contraceptives": 66,
"health personal care/health care/first aid": 73,
"health personal care/health care/foot care": 48,
"health personal care/health care/incontinence": 54,
"health personal care/health care/massage relaxation": 112,
"health personal care/health care/pain relievers": 70,
"health personal care/health care/pill cases splitters": 40,
"health personal care/health care/sleep snoring": 290,
"health personal care/health care/smoking cessation": 204,
"health personal care/health care/stimulants": 450,
"health personal care/health care/stress reduction": 64,
"health personal care/health care/therapeutic skin care": 238,
"health personal care/health care/thermometer accessories": 166,
"health personal care/health care/thermometers": 86,
"health personal care/health care/unknown": 77,
"health personal care/health care/women s health": 219,
"health personal care/household supplies/air fresheners": 465,
"health personal care/household supplies/cleaning tools": 75,
"health personal care/household supplies/dishwashing": 311,
"health personal care/household supplies/household batteries": 16,
"health personal care/household supplies/household cleaning": 231,
"health personal care/household supplies/laundry": 218,
"health personal care/household supplies/lighters": 266,
"health personal care/household supplies/paper plastic": 53,
"health personal care/household supplies/unknown": 65,
"health personal care/medical supplies equipment/bathroom aids safety": 259,
"health personal care/medical supplies equipment/beds accessories": 288,
"health personal care/medical supplies equipment/braces": 136,
"health personal care/medical supplies equipment/daily living aids": 51,
"health personal care/medical supplies equipment/health monitors": 97,
"health personal care/medical supplies equipment/mobility aids equipment": 296,
"health personal care/medical supplies equipment/occupational physical therapy aids": 283,
"health personal care/medical supplies equipment/tests": 62,
"health personal care/medical supplies equipment/unknown": 177,
"health personal care/nutrition wellness/nutrition bars drinks": 13,
"health personal care/nutrition wellness/sports supplements": 343,
"health personal care/nutrition wellness/unknown": 250,
"health personal care/nutrition wellness/vitamins supplements": 67,
"health personal care/nutrition wellness/weight loss products": 203,
"health personal care/personal care/body art": 227,
"health personal care/personal care/deodorants antiperspirants": 12,
"health personal care/personal care/ear care": 336,
"health personal care/personal care/eye care": 39,
"health personal care/personal care/feminine care": 27,
"health personal care/personal care/foot care": 263,
"health personal care/personal care/lip care products": 37,
"health personal care/personal care/oral hygiene": 29,
"health personal care/personal care/shaving hair removal": 24,
"health personal care/personal care/unknown": 176,
"health personal care/sexual wellness/adult toys games": 236,
"health personal care/sexual wellness/bondage gear accessories": 519,
"health personal care/sexual wellness/novelties": 529,
"health personal care/sexual wellness/safer sex": 85,
"health personal care/sexual wellness/sensual delights": 308,
"health personal care/sexual wellness/sex furniture": 552,
"health personal care/sexual wellness/sexual enhancers": 297,
"health personal care/sexual wellness/unknown": 256,
"pet supplies/birds/cages accessories": 329,
"pet supplies/birds/feeding watering supplies": 398,
"pet supplies/birds/food": 327,
"pet supplies/birds/health supplies": 434,
"pet supplies/birds/toys": 430,
"pet supplies/birds/treats": 426,
"pet supplies/bunny rabbit central/carriers": 509,
"pet supplies/bunny rabbit central/collars": 486,
"pet supplies/bunny rabbit central/feeding watering supplies": 437,
"pet supplies/bunny rabbit central/food": 505,
"pet supplies/bunny rabbit central/houses habitats": 448,
"pet supplies/bunny rabbit central/odor stain removers": 537,
"pet supplies/bunny rabbit central/rabbit hutches": 427,
"pet supplies/bunny rabbit central/treats": 482,
"pet supplies/cats/beds furniture": 233,
"pet supplies/cats/cages": 443,
"pet supplies/cats/carriers strollers": 312,
"pet supplies/cats/cat flaps": 471,
"pet supplies/cats/collars": 330,
"pet supplies/cats/educational repellents": 234,
"pet supplies/cats/feeding watering supplies": 247,
"pet supplies/cats/food": 306,
"pet supplies/cats/grooming": 302,
"pet supplies/cats/health supplies": 225,
"pet supplies/cats/litter housebreaking": 141,
"pet supplies/cats/memorials": 460,
"pet supplies/cats/toys": 399,
"pet supplies/cats/treats": 284,
"pet supplies/cats/unknown": 507,
"pet supplies/dogs/apparel accessories": 376,
"pet supplies/dogs/beds furniture": 221,
"pet supplies/dogs/carriers travel products": 349,
"pet supplies/dogs/collars": 232,
"pet supplies/dogs/doors": 368,
"pet supplies/dogs/feeding watering supplies": 326,
"pet supplies/dogs/food": 224,
"pet supplies/dogs/grooming": 340,
"pet supplies/dogs/health supplies": 317,
"pet supplies/dogs/houses": 334,
"pet supplies/dogs/litter housebreaking": 208,
"pet supplies/dogs/toys": 174,
"pet supplies/dogs/training behavior aids": 257,
"pet supplies/dogs/treats": 196,
"pet supplies/fish aquatic pets/aquarium d cor": 429,
"pet supplies/fish aquatic pets/aquarium heaters": 472,
"pet supplies/fish aquatic pets/aquarium hoods": 364,
"pet supplies/fish aquatic pets/aquarium lights": 279,
"pet supplies/fish aquatic pets/aquarium stands": 524,
"pet supplies/fish aquatic pets/aquarium starter kits": 462,
"pet supplies/fish aquatic pets/aquariums": 409,
"pet supplies/fish aquatic pets/automatic feeders": 415,
"pet supplies/fish aquatic pets/breeding tanks": 563,
"pet supplies/fish aquatic pets/cleaners": 419,
"pet supplies/fish aquatic pets/fish bowls": 535,
"pet supplies/fish aquatic pets/food": 274,
"pet supplies/fish aquatic pets/health supplies": 527,
"pet supplies/fish aquatic pets/hydrometers": 559,
"pet supplies/fish aquatic pets/pumps filters": 287,
"pet supplies/fish aquatic pets/test kits": 320,
"pet supplies/fish aquatic pets/water treatments": 324,
"pet supplies/small animals/collars": 483,
"pet supplies/small animals/exercise wheels": 561,
"pet supplies/small animals/feeding watering supplies": 514,
"pet supplies/small animals/food": 463,
"pet supplies/small animals/houses habitats": 292,
"pet supplies/small animals/toys": 511,
"pet supplies/small animals/treats": 493,
"pet supplies/small animals/unknown": 551,
"toys games/action toy figures/accessories": 146,
"toys games/action toy figures/figures": 7,
"toys games/action toy figures/playsets": 68,
"toys games/action toy figures/statues": 119,
"toys games/action toy figures/unknown": 431,
"toys games/arts crafts/aprons smocks": 547,
"toys games/arts crafts/beads": 534,
"toys games/arts crafts/blackboards whiteboards": 100,
"toys games/arts crafts/clay dough": 20,
"toys games/arts crafts/craft kits": 123,
"toys games/arts crafts/drawing painting supplies": 6,
"toys games/arts crafts/drawing sketching tablets": 10,
"toys games/arts crafts/easels": 180,
"toys games/arts crafts/molding sculpting sticks": 497,
"toys games/arts crafts/printing stamping": 372,
"toys games/arts crafts/stickers": 395,
"toys games/arts crafts/unknown": 80,
"toys games/baby toddler toys/activity play centers": 104,
"toys games/baby toddler toys/balls": 156,
"toys games/baby toddler toys/bath toys": 93,
"toys games/baby toddler toys/blocks": 281,
"toys games/baby toddler toys/car seat stroller toys": 105,
"toys games/baby toddler toys/crib toys attachments": 82,
"toys games/baby toddler toys/hammering pounding toys": 126,
"toys games/baby toddler toys/indoor climbers play structures": 286,
"toys games/baby toddler toys/mirrors": 206,
"toys games/baby toddler toys/music sound": 28,
"toys games/baby toddler toys/push pull toys": 17,
"toys games/baby toddler toys/rattles": 102,
"toys games/baby toddler toys/rocking spring ride ons": 135,
"toys games/baby toddler toys/shape sorters": 11,
"toys games/baby toddler toys/spinning tops": 142,
"toys games/baby toddler toys/stacking nesting toys": 87,
"toys games/baby toddler toys/stuffed animals toys": 161,
"toys games/baby toddler toys/teaching clocks": 525,
"toys games/baby toddler toys/toy gift sets": 373,
"toys games/baby toddler toys/unknown": 21,
"toys games/building toys/building sets": 63,
"toys games/building toys/marble runs": 271,
"toys games/building toys/stacking blocks": 130,
"toys games/building toys/unknown": 155,
"toys games/dolls accessories/doll accessories": 140,
"toys games/dolls accessories/dollhouse accessories": 299,
"toys games/dolls accessories/dollhouses": 36,
"toys games/dolls accessories/dolls": 8,
"toys games/dolls accessories/playsets": 34,
"toys games/dolls accessories/unknown": 523,
"toys games/dress up pretend play/beauty fashion": 205,
"toys games/dress up pretend play/hair nails": 277,
"toys games/dress up pretend play/pretend play": 31,
"toys games/dress up pretend play/unknown": 536,
"toys games/electronics for kids/cameras camcorders": 149,
"toys games/electronics for kids/dance mats": 150,
"toys games/electronics for kids/electronic pets": 84,
"toys games/electronics for kids/electronic toys": 42,
"toys games/electronics for kids/music players karaoke": 59,
"toys games/electronics for kids/personal video players accessories": 193,
"toys games/electronics for kids/plug play video games": 200,
"toys games/electronics for kids/systems accessories": 95,
"toys games/electronics for kids/unknown": 15,
"toys games/electronics for kids/walkie talkies": 295,
"toys games/games/battling tops": 148,
"toys games/games/board games": 3,
"toys games/games/card games": 9,
"toys games/games/dice gaming dice": 405,
"toys games/games/dvd games": 162,
"toys games/games/floor games": 211,
"toys games/games/game accessories": 440,
"toys games/games/game collections": 272,
"toys games/games/game room games": 442,
"toys games/games/handheld games": 386,
"toys games/games/stacking games": 186,
"toys games/games/standard playing card decks": 369,
"toys games/games/tile games": 157,
"toys games/games/trading card games": 46,
"toys games/games/travel games": 144,
"toys games/games/unknown": 1,
"toys games/grown up toys/action toy figures": 96,
"toys games/grown up toys/die cast toy vehicles": 461,
"toys games/grown up toys/games": 446,
"toys games/grown up toys/hobbies": 400,
"toys games/grown up toys/novelty gag toys": 315,
"toys games/grown up toys/puzzles": 438,
"toys games/grown up toys/unknown": 30,
"toys games/hobbies/coin collecting": 487,
"toys games/hobbies/model building kits tools": 99,
"toys games/hobbies/radio control": 152,
"toys games/hobbies/rockets": 129,
"toys games/hobbies/scaled model vehicles": 191,
"toys games/hobbies/slot cars": 241,
"toys games/hobbies/trains accessories": 198,
"toys games/hobbies/unknown": 489,
"toys games/learning education/basic life skills toys": 164,
"toys games/learning education/electronics": 550,
"toys games/learning education/flash cards": 313,
"toys games/learning education/geography": 291,
"toys games/learning education/habitats": 14,
"toys games/learning education/mathematics counting": 357,
"toys games/learning education/reading writing": 184,
"toys games/learning education/science": 91,
"toys games/learning education/unknown": 118,
"toys games/novelty gag toys/finger boards finger bikes": 384,
"toys games/novelty gag toys/flying toys": 556,
"toys games/novelty gag toys/gag toys practical jokes": 264,
"toys games/novelty gag toys/magic kits accessories": 79,
"toys games/novelty gag toys/miniatures": 383,
"toys games/novelty gag toys/money banks": 270,
"toys games/novelty gag toys/nesting dolls": 318,
"toys games/novelty gag toys/novelty spinning tops": 414,
"toys games/novelty gag toys/prisms kaleidoscopes": 480,
"toys games/novelty gag toys/slime putty toys": 387,
"toys games/novelty gag toys/temporary tattoos": 89,
"toys games/novelty gag toys/toy balls": 44,
"toys games/novelty gag toys/unknown": 32,
"toys games/novelty gag toys/viewfinders": 435,
"toys games/novelty gag toys/wind up toys": 305,
"toys games/puzzles/brain teasers": 316,
"toys games/puzzles/d puzzles": 35,
"toys games/puzzles/floor puzzles": 201,
"toys games/puzzles/jigsaw puzzles": 2,
"toys games/puzzles/pegged puzzles": 76,
"toys games/puzzles/puzzle accessories": 109,
"toys games/puzzles/puzzle play mats": 379,
"toys games/puzzles/unknown": 55,
"toys games/sports outdoor play/ball pits accessories": 410,
"toys games/sports outdoor play/beanbags foot bags": 451,
"toys games/sports outdoor play/blasters foam play": 249,
"toys games/sports outdoor play/fitness equipment": 401,
"toys games/sports outdoor play/gardening tools": 258,
"toys games/sports outdoor play/gym sets swings": 133,
"toys games/sports outdoor play/inflatable bouncers": 98,
"toys games/sports outdoor play/kickball playground balls": 490,
"toys games/sports outdoor play/kites wind spinners": 173,
"toys games/sports outdoor play/marble games": 382,
"toys games/sports outdoor play/play tents tunnels": 90,
"toys games/sports outdoor play/pogo sticks hoppers": 260,
"toys games/sports outdoor play/pools water fun": 101,
"toys games/sports outdoor play/sand water tables": 240,
"toys games/sports outdoor play/sandboxes accessories": 103,
"toys games/sports outdoor play/slumber bags": 178,
"toys games/sports outdoor play/sports": 92,
"toys games/sports outdoor play/unknown": 181,
"toys games/sports outdoor play/yo yos": 492,
"toys games/stuffed animals plush/animals figures": 26,
"toys games/stuffed animals plush/plush backpacks purses": 117,
"toys games/stuffed animals plush/plush pillows": 210,
"toys games/stuffed animals plush/plush puppets": 457,
"toys games/stuffed animals plush/puppets": 94,
"toys games/stuffed animals plush/teddy bears": 237,
"toys games/stuffed animals plush/unknown": 18,
"toys games/tricycles/scooters wagons": 19,
"toys games/vehicles remote control/die cast vehicles": 179,
"toys games/vehicles remote control/play trains railway sets": 128,
"toys games/vehicles remote control/play vehicles": 121,
"toys games/vehicles remote control/unknown": 416,
"toys games/vehicles remote control/vehicle playsets": 138
},
"layer_norm_eps": 1e-12,
"max_position_embeddings": 512,
"model_type": "bert",
"num_attention_heads": 12,
"num_hidden_layers": 12,
"pad_token_id": 0,
"position_embedding_type": "absolute",
"problem_type": "single_label_classification",
"torch_dtype": "float32",
"transformers_version": "4.29.2",
"type_vocab_size": 2,
"use_cache": true,
"vocab_size": 30522
}
|