File size: 37,280 Bytes
31dbe40 |
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 |
{
"_name_or_path": "D:/datascience/Gen-AI/text-classification-model-IAB-list",
"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": "Travel",
"1": "Books & Literature",
"2": "Hobbies & Leisure",
"3": "Outdoors",
"4": "Hiking & Camping",
"5": "Sports",
"6": "Team Sports",
"7": "Soccer",
"8": "Autos & Vehicles",
"9": "Motor Vehicles (By Type)",
"10": "Off-Road Vehicles",
"11": "Business & Industrial",
"12": "Construction & Maintenance",
"13": "Building Materials & Supplies",
"14": "Arts & Entertainment",
"15": "Home & Garden",
"16": "Home Furnishings",
"17": "Online Communities",
"18": "Fishing",
"19": "Science",
"20": "Special Occasions",
"21": "Shopping",
"22": "Apparel",
"23": "Clothing Accessories",
"24": "People & Society",
"25": "Religion & Belief",
"26": "Law & Government",
"27": "Public Safety",
"28": "Reference",
"29": "Language Resources",
"30": "Foreign Language Resources",
"31": "Business Services",
"32": "E-Commerce Services",
"33": "Beauty & Fitness",
"34": "Face & Body Care",
"35": "Make-Up & Cosmetics",
"36": "Visual Art & Design",
"37": "Tourist Destinations",
"38": "Home Improvement",
"39": "Home & Interior Decor",
"40": "Legal",
"41": "Legal Services",
"42": "Jobs & Education",
"43": "Education",
"44": "Primary & Secondary Schooling (K-12)",
"45": "Health",
"46": "Substance Abuse",
"47": "Directories & Listings",
"48": "Business & Personal Listings",
"49": "Computers & Electronics",
"50": "Agriculture & Forestry",
"51": "Blogging Resources & Services",
"52": "Comics & Animation",
"53": "Comics",
"54": "Electronics & Electrical",
"55": "Electronic Components",
"56": "Music & Audio",
"57": "Rock Music",
"58": "Social Networks",
"59": "News",
"60": "Social Issues & Advocacy",
"61": "Charity & Philanthropy",
"62": "Games",
"63": "Gambling",
"64": "Colleges & Universities",
"65": "Food & Drink",
"66": "Food",
"67": "Baked Goods",
"68": "Construction & Power Tools",
"69": "TV & Video",
"70": "Movies",
"71": "Adult",
"72": "Computer & Video Games",
"73": "Online Media",
"74": "Finance",
"75": "Consumer Resources",
"76": "Coupons & Discount Offers",
"77": "Anime & Manga",
"78": "Casual Apparel",
"79": "Standardized & Admissions Tests",
"80": "Painting",
"81": "Internet & Telecom",
"82": "Web Services",
"83": "Web Design & Development",
"84": "Cooking & Recipes",
"85": "Transportation & Logistics",
"86": "Mail & Package Delivery",
"87": "Home Appliances",
"88": "Office Supplies",
"89": "Bed & Bath",
"90": "Hospitality Industry",
"91": "Food Service",
"92": "Baseball",
"93": "Real Estate",
"94": "Real Estate Services",
"95": "Urban & Hip-Hop",
"96": "Credit & Lending",
"97": "Loans",
"98": "Kids & Teens",
"99": "Hair Care",
"100": "Sensitive Subjects",
"101": "Lamps & Lighting",
"102": "Beverages",
"103": "Coffee & Tea",
"104": "Nutrition",
"105": "Vehicle Shopping",
"106": "Used Vehicles",
"107": "Tobacco Products",
"108": "Military",
"109": "Sporting Goods",
"110": "Pest Control",
"111": "Fitness",
"112": "Pharmacy",
"113": "Drugs & Medications",
"114": "Libraries & Museums",
"115": "Energy & Utilities",
"116": "Oil & Gas",
"117": "Packaging",
"118": "Writers Resources",
"119": "Software",
"120": "Business & Productivity Software",
"121": "Individual Sports",
"122": "Golf",
"123": "Classifieds",
"124": "Consumer Electronics",
"125": "Audio Equipment",
"126": "Footwear",
"127": "Vehicle Parts & Services",
"128": "Vehicle Parts & Accessories",
"129": "Crafts",
"130": "Politics",
"131": "Alcoholic Beverages",
"132": "Small Business",
"133": "MLM & Business Opportunities",
"134": "Online Image Galleries",
"135": "Multimedia Software",
"136": "Jobs",
"137": "Job Listings",
"138": "Vehicle Repair & Maintenance",
"139": "Online Goodies",
"140": "Board Games",
"141": "Vitamins & Supplements",
"142": "Beaches & Islands",
"143": "Music Equipment & Technology",
"144": "Distance Learning",
"145": "Gifts & Special Event Items",
"146": "Flowers",
"147": "HVAC & Climate Control",
"148": "Manufacturing",
"149": "Industrial Materials & Equipment",
"150": "Heavy Machinery",
"151": "Domestic Services",
"152": "Cleaning Services",
"153": "Oral & Dental Care",
"154": "TV Shows & Programs",
"155": "Biological Sciences",
"156": "Radio",
"157": "Racquet Sports",
"158": "Skin & Nail Care",
"159": "Banking",
"160": "Insurance",
"161": "Dance & Electronic Music",
"162": "Events & Listings",
"163": "Design",
"164": "Architecture",
"165": "Children's Clothing",
"166": "American Football",
"167": "Computer Hardware",
"168": "Holidays & Seasonal Events",
"169": "Product Reviews & Price Comparisons",
"170": "Agricultural Equipment",
"171": "Family & Relationships",
"172": "Family",
"173": "Business Operations",
"174": "Air Travel",
"175": "Trucks & SUVs",
"176": "Mobile & Wireless",
"177": "Mobile Phones",
"178": "Real Estate Listings",
"179": "Residential Sales",
"180": "Water Activities",
"181": "Boating",
"182": "Photographic & Digital Arts",
"183": "Card Games",
"184": "Poker & Casino Games",
"185": "General Reference",
"186": "Investing",
"187": "Currencies & Foreign Exchange",
"188": "Toys",
"189": "Health Conditions",
"190": "Government",
"191": "Dating & Personals",
"192": "Women's Clothing",
"193": "Fiber & Textile Arts",
"194": "Commercial Vehicles",
"195": "Candy & Sweets",
"196": "Public Health",
"197": "Medical Devices & Equipment",
"198": "Motorcycles",
"199": "Gardening & Landscaping",
"200": "Bathroom",
"201": "TV & Video Equipment",
"202": "Roleplaying Games",
"203": "Yard & Patio",
"204": "Humor",
"205": "Retail Trade",
"206": "Food & Grocery Retailers",
"207": "Computer Security",
"208": "Perfumes & Fragrances",
"209": "Chemicals Industry",
"210": "Cycling",
"211": "Photo & Video Sharing",
"212": "Computer Science",
"213": "Eyewear",
"214": "Accounting & Auditing",
"215": "Tax Preparation & Planning",
"216": "Performing Arts",
"217": "Radio Control & Modeling",
"218": "Athletic Apparel",
"219": "Renewable & Alternative Energy",
"220": "Pets & Animals",
"221": "Kitchen & Dining",
"222": "Textiles & Nonwovens",
"223": "Online Video",
"224": "Enterprise Technology",
"225": "Crime & Justice",
"226": "Hotels & Accommodations",
"227": "Security Products & Services",
"228": "Poetry",
"229": "Cookware & Diningware",
"230": "Motor Sports",
"231": "Music Reference",
"232": "Combat Sports",
"233": "Restaurants",
"234": "Printing & Publishing",
"235": "Networking",
"236": "Pets",
"237": "Mobile Apps & Add-Ons",
"238": "Surf & Swim",
"239": "Medical Facilities & Services",
"240": "Hospitals & Treatment Centers",
"241": "Desktop Computers",
"242": "Laptops & Notebooks",
"243": "Bicycles & Accessories",
"244": "Infectious Diseases",
"245": "Collectible Card Games",
"246": "Basketball",
"247": "Operating Systems",
"248": "Weight Loss",
"249": "Teaching & Classroom Resources",
"250": "Programming",
"251": "Mental Health",
"252": "Geographic Reference",
"253": "Maps",
"254": "Extreme Sports",
"255": "Communications Equipment",
"256": "Green Living & Environmental Issues",
"257": "Bus & Rail",
"258": "Plastics & Polymers",
"259": "Engineering & Technology",
"260": "Desserts",
"261": "Power Supplies",
"262": "World Music",
"263": "Antiques & Collectibles",
"264": "Plumbing",
"265": "Living Room Furniture",
"266": "Humanities",
"267": "History",
"268": "Weather",
"269": "Fashion & Style",
"270": "Astronomy",
"271": "Online Games",
"272": "Computer Peripherals",
"273": "Martial Arts",
"274": "Email & Messaging",
"275": "Sports News",
"276": "Mass Merchants & Department Stores",
"277": "Moving & Relocation",
"278": "Reproductive Health",
"279": "Undergarments",
"280": "Flooring",
"281": "Mobile & Wireless Accessories",
"282": "Campers & RVs",
"283": "Costumes",
"284": "Weddings",
"285": "Gifts",
"286": "Theme Parks",
"287": "Pharmaceuticals & Biotech",
"288": "Business News",
"289": "Service Providers",
"290": "Vision Care",
"291": "House Painting & Finishing",
"292": "Residential Rentals",
"293": "Car Rental & Taxi Services",
"294": "Winter Sports",
"295": "Visa & Immigration",
"296": "Aerospace & Defense",
"297": "Lottery",
"298": "Vacation Rentals & Short-Term Stays",
"299": "Fun & Trivia",
"300": "Photo & Video Services",
"301": "Metals & Mining",
"302": "Men's Clothing",
"303": "Cosmetic Procedures",
"304": "Financial Planning & Management",
"305": "Family-Oriented Games & Activities",
"306": "Home Swimming Pools, Saunas & Spas",
"307": "Nursing",
"308": "Table Games",
"309": "Earth Sciences",
"310": "Camera & Photo Equipment",
"311": "Spas & Beauty Services",
"312": "Water Sports",
"313": "Body Art",
"314": "E-Books",
"315": "Animal Products & Services",
"316": "Entertainment Industry",
"317": "Clubs & Organizations",
"318": "Offbeat",
"319": "Social Sciences",
"320": "Advertising & Marketing",
"321": "Grants, Scholarships & Financial Aid",
"322": "Laundry",
"323": "International Sports Competitions",
"324": "Vehicle Codes & Driving Laws",
"325": "Mathematics",
"326": "Addictions",
"327": "Fun Tests & Silly Surveys",
"328": "Sports Memorabilia",
"329": "Virtual Worlds",
"330": "Geology",
"331": "Heart & Hypertension",
"332": "Public Records",
"333": "College Sports",
"334": "Precious Metals",
"335": "Business and Consumer Services",
"336": "Marketing and Advertising",
"337": "Puzzles & Brainteasers",
"338": "Youth Organizations & Resources",
"339": "Atmospheric Science",
"340": "Physics",
"341": "Printing & Self Publishing",
"342": "Auctions",
"343": "Gas Prices & Vehicle Fueling",
"344": "Dictionaries & Encyclopedias",
"345": "Cricket",
"346": "Parking",
"347": "Australian Football",
"348": "Computers Electronics and Technology",
"349": "Social Media Networks",
"350": "eCommerce & Shopping",
"351": "Graphics Multimedia and Web Design",
"352": "Marriage",
"353": "Opera",
"354": "Volleyball",
"355": "Chemistry",
"356": "Drug & Alcohol Treatment",
"357": "Science and Education",
"358": "Electricity",
"359": "Time & Calendars",
"360": "Smoking & Smoking Cessation",
"361": "Word Games",
"362": "Boxing",
"363": "Dance",
"364": "Chess & Abstract Strategy Games",
"365": "Vehicles",
"366": "Other Vehicles",
"367": "Reference Materials",
"368": "Social Services",
"369": "Mens Health",
"370": "Fighting Games",
"371": "Funny Pictures & Videos",
"372": "Study Grants & Scholarships",
"373": "Skins, Themes & Wallpapers",
"374": "Law and Government",
"375": "Law Enforcement and Protective Services",
"376": "Makes and Models",
"377": "Drones & RC Aircraft",
"378": "Clip Art & Animated GIFs",
"379": "Massage Therapy",
"380": "Commodities & Futures Trading",
"381": "Wrestling",
"382": "Aging & Geriatrics",
"383": "Fantasy Sports",
"384": "Rail Transport",
"385": "Psychology",
"386": "Drawing & Coloring",
"387": "Rugby",
"388": "Acting & Theater",
"389": "Skiing & Snowboarding",
"390": "Hockey",
"391": "Calculators & Reference Tools",
"392": "Depression",
"393": "Philosophy",
"394": "Birds",
"395": "GPS & Navigation",
"396": "CAD & CAM",
"397": "Assisted Living & Long Term Care",
"398": "Fish & Aquaria",
"399": "Skin Conditions",
"400": "Biographies & Quotations",
"401": "Diabetes",
"402": "Troubled Relationships",
"403": "Neurological Conditions",
"404": "Libraries and Museums",
"405": "Formal Wear",
"406": "Emergency Services",
"407": "Immigration and Visas",
"408": "Unwanted Body & Facial Hair Removal",
"409": "Women's Health",
"410": "Die-cast & Toy Vehicles",
"411": "Model Trains & Railroads",
"412": "Internet Software",
"413": "Animation and Comics",
"414": "Textiles",
"415": "Food and Drink",
"416": "Vegetarian and Vegan",
"417": "Travel and Tourism",
"418": "Tourist Attractions",
"419": "Tennis",
"420": "Alternative and Natural Medicine",
"421": "Dentist and Dental Services",
"422": "Community and Society",
"423": "Decease",
"424": "Other Community and Society",
"425": "Puzzles and Brainteasers",
"426": "Geriatric and Aging Care",
"427": "Web Hosting and Domain Names",
"428": "Casinos",
"429": "Boats",
"430": "Lifestyle",
"431": "Jewelry and Luxury Products",
"432": "Hobbies and Leisure",
"433": "Models",
"434": "Home and Garden",
"435": "Gardening",
"436": "Holidays and Seasonal Events",
"437": "Antiques and Collectibles",
"438": "Board and Card Games",
"439": "Ground Transportation",
"440": "Running",
"441": "Other Hobbies and Leisure",
"442": "Heavy Industry and Engineering",
"443": "Video Games Consoles and Accessories",
"444": "Programming and Developer Software",
"445": "Other Sports",
"446": "Other Computers Electronics and Technology",
"447": "Other Finance",
"448": "Jobs and Career",
"449": "Other Jobs and Career",
"450": "Dictionaries and Encyclopedias",
"451": "Dating and Relationships",
"452": "Public Records and Directories",
"453": "Visual Arts and Design",
"454": "Shipping and Logistics",
"455": "File Sharing and Hosting",
"456": "Streaming & Online TV",
"457": "Other Science and Education",
"458": "Other Lifestyle",
"459": "Photography",
"460": "Other Games",
"461": "Jobs and Employment",
"462": "Search Engines",
"463": "Other Arts and Entertainment",
"464": "Fashion and Apparel",
"465": "Other Travel and Tourism",
"466": "Other Health",
"467": "Books and Literature",
"468": "Construction and Maintenance",
"469": "Accounting and Auditing",
"470": "Pets and Animals",
"471": "Pet Food and Supplies",
"472": "Banking Credit and Lending",
"473": "Fan Fiction",
"474": "Restaurant Reviews & Reservations",
"475": "Stocks & Bonds",
"476": "Other Law and Government",
"477": "Bingo",
"478": "Marketplace",
"479": "Price Comparison",
"480": "Nutrition Diets and Fitness",
"481": "Energy Industry",
"482": "Other Pets and Animals",
"483": "Seniors & Retirement",
"484": "Interior Design",
"485": "Literature",
"486": "Faith and Beliefs",
"487": "Gifts and Flowers",
"488": "Other Gambling",
"489": "Beauty and Cosmetics",
"490": "Waste Water and Environmental",
"491": "Financial Planning and Management",
"492": "Chemical Industry",
"493": "Aerospace and Defense",
"494": "Other Home and Garden",
"495": "Cooking and Recipes",
"496": "Ancestry and Genealogy",
"497": "Philanthropy",
"498": "Transportation and Excursions",
"499": "Digital Marketing",
"500": "Automotive Industry",
"501": "Health Conditions and Concerns",
"502": "Physical Therapy",
"503": "National Security",
"504": "Business Training",
"505": "Restaurants and Delivery",
"506": "Metals and Mining",
"507": "Poker",
"508": "Aviation",
"509": "LGBTQ",
"510": "Special & Restricted Diets",
"511": "Consulting",
"512": "Credit Cards",
"513": "Sports Betting",
"514": "Homeschooling",
"515": "Film & TV Industry",
"516": "Museums",
"517": "Consumer Advocacy & Protection",
"518": "Men's Health",
"519": "Concerts & Music Festivals",
"520": "Fashion Designers & Collections",
"521": "Children's Interests",
"522": "Pain Management",
"523": "Horses",
"524": "Forms Guides & Templates",
"525": "Mountain & Ski Resorts",
"526": "Cards & Greetings",
"527": "Credit Reporting & Monitoring",
"528": "Sports Games",
"529": "Accommodation and Hotels",
"530": "Voice & Video Chat",
"531": "Sleep Disorders",
"532": "Health Insurance",
"533": "Livestock",
"534": "Grants Scholarships and Financial Aid",
"535": "Respiratory Conditions",
"536": "Cancer",
"537": "Building Toys",
"538": "Space Technology",
"539": "Computer Drives & Storage",
"540": "Stuffed Toys",
"541": "Animal Sports",
"542": "Vehicle Licensing & Registration",
"543": "Cable & Satellite Providers",
"544": "Soft Drinks",
"545": "Meat & Seafood",
"546": "Courts & Judiciary",
"547": "Statistics",
"548": "Endocrine Conditions",
"549": "Human Rights & Liberties",
"550": "Health Education & Medical Training",
"551": "Computer Components",
"552": "Sports Coaching & Training",
"553": "Fish and Aquaria",
"554": "Luxury Goods",
"555": "Strategy Games",
"556": "Literary Classics",
"557": "Tobacco",
"558": "Maritime Transport",
"559": "Juice",
"560": "Curtains & Window Treatments",
"561": "Cruises & Charters",
"562": "Career Resources & Planning",
"563": "Developmental and Physical Disabilities",
"564": "Veterinarians",
"565": "Vocational & Continuing Education",
"566": "Commercial Properties",
"567": "Boats & Watercraft",
"568": "Expos & Conventions",
"569": "Biology",
"570": "Scientific Institutions",
"571": "Pizzerias",
"572": "Affiliate Programs",
"573": "Fast Food",
"574": "Regional Parks & Gardens",
"575": "Corporate Events",
"576": "Coupons and Rebates",
"577": "Hacking & Cracking",
"578": "Circus",
"579": "Pop Music",
"580": "Poverty & Hunger",
"581": "Health News",
"582": "Health Foundations & Medical Research",
"583": "Doctors' Offices",
"584": "Lots & Land",
"585": "Miniatures & Wargaming",
"586": "Training & Certification"
},
"initializer_range": 0.02,
"intermediate_size": 3072,
"label2id": {
"Accommodation and Hotels": 529,
"Accounting & Auditing": 214,
"Accounting and Auditing": 469,
"Acting & Theater": 388,
"Addictions": 326,
"Adult": 71,
"Advertising & Marketing": 320,
"Aerospace & Defense": 296,
"Aerospace and Defense": 493,
"Affiliate Programs": 572,
"Aging & Geriatrics": 382,
"Agricultural Equipment": 170,
"Agriculture & Forestry": 50,
"Air Travel": 174,
"Alcoholic Beverages": 131,
"Alternative and Natural Medicine": 420,
"American Football": 166,
"Ancestry and Genealogy": 496,
"Animal Products & Services": 315,
"Animal Sports": 541,
"Animation and Comics": 413,
"Anime & Manga": 77,
"Antiques & Collectibles": 263,
"Antiques and Collectibles": 437,
"Apparel": 22,
"Architecture": 164,
"Arts & Entertainment": 14,
"Assisted Living & Long Term Care": 397,
"Astronomy": 270,
"Athletic Apparel": 218,
"Atmospheric Science": 339,
"Auctions": 342,
"Audio Equipment": 125,
"Australian Football": 347,
"Automotive Industry": 500,
"Autos & Vehicles": 8,
"Aviation": 508,
"Baked Goods": 67,
"Banking": 159,
"Banking Credit and Lending": 472,
"Baseball": 92,
"Basketball": 246,
"Bathroom": 200,
"Beaches & Islands": 142,
"Beauty & Fitness": 33,
"Beauty and Cosmetics": 489,
"Bed & Bath": 89,
"Beverages": 102,
"Bicycles & Accessories": 243,
"Bingo": 477,
"Biographies & Quotations": 400,
"Biological Sciences": 155,
"Biology": 569,
"Birds": 394,
"Blogging Resources & Services": 51,
"Board Games": 140,
"Board and Card Games": 438,
"Boating": 181,
"Boats": 429,
"Boats & Watercraft": 567,
"Body Art": 313,
"Books & Literature": 1,
"Books and Literature": 467,
"Boxing": 362,
"Building Materials & Supplies": 13,
"Building Toys": 537,
"Bus & Rail": 257,
"Business & Industrial": 11,
"Business & Personal Listings": 48,
"Business & Productivity Software": 120,
"Business News": 288,
"Business Operations": 173,
"Business Services": 31,
"Business Training": 504,
"Business and Consumer Services": 335,
"CAD & CAM": 396,
"Cable & Satellite Providers": 543,
"Calculators & Reference Tools": 391,
"Camera & Photo Equipment": 310,
"Campers & RVs": 282,
"Cancer": 536,
"Candy & Sweets": 195,
"Car Rental & Taxi Services": 293,
"Card Games": 183,
"Cards & Greetings": 526,
"Career Resources & Planning": 562,
"Casinos": 428,
"Casual Apparel": 78,
"Charity & Philanthropy": 61,
"Chemical Industry": 492,
"Chemicals Industry": 209,
"Chemistry": 355,
"Chess & Abstract Strategy Games": 364,
"Children's Clothing": 165,
"Children's Interests": 521,
"Circus": 578,
"Classifieds": 123,
"Cleaning Services": 152,
"Clip Art & Animated GIFs": 378,
"Clothing Accessories": 23,
"Clubs & Organizations": 317,
"Coffee & Tea": 103,
"Collectible Card Games": 245,
"College Sports": 333,
"Colleges & Universities": 64,
"Combat Sports": 232,
"Comics": 53,
"Comics & Animation": 52,
"Commercial Properties": 566,
"Commercial Vehicles": 194,
"Commodities & Futures Trading": 380,
"Communications Equipment": 255,
"Community and Society": 422,
"Computer & Video Games": 72,
"Computer Components": 551,
"Computer Drives & Storage": 539,
"Computer Hardware": 167,
"Computer Peripherals": 272,
"Computer Science": 212,
"Computer Security": 207,
"Computers & Electronics": 49,
"Computers Electronics and Technology": 348,
"Concerts & Music Festivals": 519,
"Construction & Maintenance": 12,
"Construction & Power Tools": 68,
"Construction and Maintenance": 468,
"Consulting": 511,
"Consumer Advocacy & Protection": 517,
"Consumer Electronics": 124,
"Consumer Resources": 75,
"Cooking & Recipes": 84,
"Cooking and Recipes": 495,
"Cookware & Diningware": 229,
"Corporate Events": 575,
"Cosmetic Procedures": 303,
"Costumes": 283,
"Coupons & Discount Offers": 76,
"Coupons and Rebates": 576,
"Courts & Judiciary": 546,
"Crafts": 129,
"Credit & Lending": 96,
"Credit Cards": 512,
"Credit Reporting & Monitoring": 527,
"Cricket": 345,
"Crime & Justice": 225,
"Cruises & Charters": 561,
"Currencies & Foreign Exchange": 187,
"Curtains & Window Treatments": 560,
"Cycling": 210,
"Dance": 363,
"Dance & Electronic Music": 161,
"Dating & Personals": 191,
"Dating and Relationships": 451,
"Decease": 423,
"Dentist and Dental Services": 421,
"Depression": 392,
"Design": 163,
"Desktop Computers": 241,
"Desserts": 260,
"Developmental and Physical Disabilities": 563,
"Diabetes": 401,
"Dictionaries & Encyclopedias": 344,
"Dictionaries and Encyclopedias": 450,
"Die-cast & Toy Vehicles": 410,
"Digital Marketing": 499,
"Directories & Listings": 47,
"Distance Learning": 144,
"Doctors' Offices": 583,
"Domestic Services": 151,
"Drawing & Coloring": 386,
"Drones & RC Aircraft": 377,
"Drug & Alcohol Treatment": 356,
"Drugs & Medications": 113,
"E-Books": 314,
"E-Commerce Services": 32,
"Earth Sciences": 309,
"Education": 43,
"Electricity": 358,
"Electronic Components": 55,
"Electronics & Electrical": 54,
"Email & Messaging": 274,
"Emergency Services": 406,
"Endocrine Conditions": 548,
"Energy & Utilities": 115,
"Energy Industry": 481,
"Engineering & Technology": 259,
"Enterprise Technology": 224,
"Entertainment Industry": 316,
"Events & Listings": 162,
"Expos & Conventions": 568,
"Extreme Sports": 254,
"Eyewear": 213,
"Face & Body Care": 34,
"Faith and Beliefs": 486,
"Family": 172,
"Family & Relationships": 171,
"Family-Oriented Games & Activities": 305,
"Fan Fiction": 473,
"Fantasy Sports": 383,
"Fashion & Style": 269,
"Fashion Designers & Collections": 520,
"Fashion and Apparel": 464,
"Fast Food": 573,
"Fiber & Textile Arts": 193,
"Fighting Games": 370,
"File Sharing and Hosting": 455,
"Film & TV Industry": 515,
"Finance": 74,
"Financial Planning & Management": 304,
"Financial Planning and Management": 491,
"Fish & Aquaria": 398,
"Fish and Aquaria": 553,
"Fishing": 18,
"Fitness": 111,
"Flooring": 280,
"Flowers": 146,
"Food": 66,
"Food & Drink": 65,
"Food & Grocery Retailers": 206,
"Food Service": 91,
"Food and Drink": 415,
"Footwear": 126,
"Foreign Language Resources": 30,
"Formal Wear": 405,
"Forms Guides & Templates": 524,
"Fun & Trivia": 299,
"Fun Tests & Silly Surveys": 327,
"Funny Pictures & Videos": 371,
"GPS & Navigation": 395,
"Gambling": 63,
"Games": 62,
"Gardening": 435,
"Gardening & Landscaping": 199,
"Gas Prices & Vehicle Fueling": 343,
"General Reference": 185,
"Geographic Reference": 252,
"Geology": 330,
"Geriatric and Aging Care": 426,
"Gifts": 285,
"Gifts & Special Event Items": 145,
"Gifts and Flowers": 487,
"Golf": 122,
"Government": 190,
"Grants Scholarships and Financial Aid": 534,
"Grants, Scholarships & Financial Aid": 321,
"Graphics Multimedia and Web Design": 351,
"Green Living & Environmental Issues": 256,
"Ground Transportation": 439,
"HVAC & Climate Control": 147,
"Hacking & Cracking": 577,
"Hair Care": 99,
"Health": 45,
"Health Conditions": 189,
"Health Conditions and Concerns": 501,
"Health Education & Medical Training": 550,
"Health Foundations & Medical Research": 582,
"Health Insurance": 532,
"Health News": 581,
"Heart & Hypertension": 331,
"Heavy Industry and Engineering": 442,
"Heavy Machinery": 150,
"Hiking & Camping": 4,
"History": 267,
"Hobbies & Leisure": 2,
"Hobbies and Leisure": 432,
"Hockey": 390,
"Holidays & Seasonal Events": 168,
"Holidays and Seasonal Events": 436,
"Home & Garden": 15,
"Home & Interior Decor": 39,
"Home Appliances": 87,
"Home Furnishings": 16,
"Home Improvement": 38,
"Home Swimming Pools, Saunas & Spas": 306,
"Home and Garden": 434,
"Homeschooling": 514,
"Horses": 523,
"Hospitality Industry": 90,
"Hospitals & Treatment Centers": 240,
"Hotels & Accommodations": 226,
"House Painting & Finishing": 291,
"Human Rights & Liberties": 549,
"Humanities": 266,
"Humor": 204,
"Immigration and Visas": 407,
"Individual Sports": 121,
"Industrial Materials & Equipment": 149,
"Infectious Diseases": 244,
"Insurance": 160,
"Interior Design": 484,
"International Sports Competitions": 323,
"Internet & Telecom": 81,
"Internet Software": 412,
"Investing": 186,
"Jewelry and Luxury Products": 431,
"Job Listings": 137,
"Jobs": 136,
"Jobs & Education": 42,
"Jobs and Career": 448,
"Jobs and Employment": 461,
"Juice": 559,
"Kids & Teens": 98,
"Kitchen & Dining": 221,
"LGBTQ": 509,
"Lamps & Lighting": 101,
"Language Resources": 29,
"Laptops & Notebooks": 242,
"Laundry": 322,
"Law & Government": 26,
"Law Enforcement and Protective Services": 375,
"Law and Government": 374,
"Legal": 40,
"Legal Services": 41,
"Libraries & Museums": 114,
"Libraries and Museums": 404,
"Lifestyle": 430,
"Literary Classics": 556,
"Literature": 485,
"Livestock": 533,
"Living Room Furniture": 265,
"Loans": 97,
"Lots & Land": 584,
"Lottery": 297,
"Luxury Goods": 554,
"MLM & Business Opportunities": 133,
"Mail & Package Delivery": 86,
"Make-Up & Cosmetics": 35,
"Makes and Models": 376,
"Manufacturing": 148,
"Maps": 253,
"Maritime Transport": 558,
"Marketing and Advertising": 336,
"Marketplace": 478,
"Marriage": 352,
"Martial Arts": 273,
"Mass Merchants & Department Stores": 276,
"Massage Therapy": 379,
"Mathematics": 325,
"Meat & Seafood": 545,
"Medical Devices & Equipment": 197,
"Medical Facilities & Services": 239,
"Men's Clothing": 302,
"Men's Health": 518,
"Mens Health": 369,
"Mental Health": 251,
"Metals & Mining": 301,
"Metals and Mining": 506,
"Military": 108,
"Miniatures & Wargaming": 585,
"Mobile & Wireless": 176,
"Mobile & Wireless Accessories": 281,
"Mobile Apps & Add-Ons": 237,
"Mobile Phones": 177,
"Model Trains & Railroads": 411,
"Models": 433,
"Motor Sports": 230,
"Motor Vehicles (By Type)": 9,
"Motorcycles": 198,
"Mountain & Ski Resorts": 525,
"Movies": 70,
"Moving & Relocation": 277,
"Multimedia Software": 135,
"Museums": 516,
"Music & Audio": 56,
"Music Equipment & Technology": 143,
"Music Reference": 231,
"National Security": 503,
"Networking": 235,
"Neurological Conditions": 403,
"News": 59,
"Nursing": 307,
"Nutrition": 104,
"Nutrition Diets and Fitness": 480,
"Off-Road Vehicles": 10,
"Offbeat": 318,
"Office Supplies": 88,
"Oil & Gas": 116,
"Online Communities": 17,
"Online Games": 271,
"Online Goodies": 139,
"Online Image Galleries": 134,
"Online Media": 73,
"Online Video": 223,
"Opera": 353,
"Operating Systems": 247,
"Oral & Dental Care": 153,
"Other Arts and Entertainment": 463,
"Other Community and Society": 424,
"Other Computers Electronics and Technology": 446,
"Other Finance": 447,
"Other Gambling": 488,
"Other Games": 460,
"Other Health": 466,
"Other Hobbies and Leisure": 441,
"Other Home and Garden": 494,
"Other Jobs and Career": 449,
"Other Law and Government": 476,
"Other Lifestyle": 458,
"Other Pets and Animals": 482,
"Other Science and Education": 457,
"Other Sports": 445,
"Other Travel and Tourism": 465,
"Other Vehicles": 366,
"Outdoors": 3,
"Packaging": 117,
"Pain Management": 522,
"Painting": 80,
"Parking": 346,
"People & Society": 24,
"Performing Arts": 216,
"Perfumes & Fragrances": 208,
"Pest Control": 110,
"Pet Food and Supplies": 471,
"Pets": 236,
"Pets & Animals": 220,
"Pets and Animals": 470,
"Pharmaceuticals & Biotech": 287,
"Pharmacy": 112,
"Philanthropy": 497,
"Philosophy": 393,
"Photo & Video Services": 300,
"Photo & Video Sharing": 211,
"Photographic & Digital Arts": 182,
"Photography": 459,
"Physical Therapy": 502,
"Physics": 340,
"Pizzerias": 571,
"Plastics & Polymers": 258,
"Plumbing": 264,
"Poetry": 228,
"Poker": 507,
"Poker & Casino Games": 184,
"Politics": 130,
"Pop Music": 579,
"Poverty & Hunger": 580,
"Power Supplies": 261,
"Precious Metals": 334,
"Price Comparison": 479,
"Primary & Secondary Schooling (K-12)": 44,
"Printing & Publishing": 234,
"Printing & Self Publishing": 341,
"Product Reviews & Price Comparisons": 169,
"Programming": 250,
"Programming and Developer Software": 444,
"Psychology": 385,
"Public Health": 196,
"Public Records": 332,
"Public Records and Directories": 452,
"Public Safety": 27,
"Puzzles & Brainteasers": 337,
"Puzzles and Brainteasers": 425,
"Racquet Sports": 157,
"Radio": 156,
"Radio Control & Modeling": 217,
"Rail Transport": 384,
"Real Estate": 93,
"Real Estate Listings": 178,
"Real Estate Services": 94,
"Reference": 28,
"Reference Materials": 367,
"Regional Parks & Gardens": 574,
"Religion & Belief": 25,
"Renewable & Alternative Energy": 219,
"Reproductive Health": 278,
"Residential Rentals": 292,
"Residential Sales": 179,
"Respiratory Conditions": 535,
"Restaurant Reviews & Reservations": 474,
"Restaurants": 233,
"Restaurants and Delivery": 505,
"Retail Trade": 205,
"Rock Music": 57,
"Roleplaying Games": 202,
"Rugby": 387,
"Running": 440,
"Science": 19,
"Science and Education": 357,
"Scientific Institutions": 570,
"Search Engines": 462,
"Security Products & Services": 227,
"Seniors & Retirement": 483,
"Sensitive Subjects": 100,
"Service Providers": 289,
"Shipping and Logistics": 454,
"Shopping": 21,
"Skiing & Snowboarding": 389,
"Skin & Nail Care": 158,
"Skin Conditions": 399,
"Skins, Themes & Wallpapers": 373,
"Sleep Disorders": 531,
"Small Business": 132,
"Smoking & Smoking Cessation": 360,
"Soccer": 7,
"Social Issues & Advocacy": 60,
"Social Media Networks": 349,
"Social Networks": 58,
"Social Sciences": 319,
"Social Services": 368,
"Soft Drinks": 544,
"Software": 119,
"Space Technology": 538,
"Spas & Beauty Services": 311,
"Special & Restricted Diets": 510,
"Special Occasions": 20,
"Sporting Goods": 109,
"Sports": 5,
"Sports Betting": 513,
"Sports Coaching & Training": 552,
"Sports Games": 528,
"Sports Memorabilia": 328,
"Sports News": 275,
"Standardized & Admissions Tests": 79,
"Statistics": 547,
"Stocks & Bonds": 475,
"Strategy Games": 555,
"Streaming & Online TV": 456,
"Study Grants & Scholarships": 372,
"Stuffed Toys": 540,
"Substance Abuse": 46,
"Surf & Swim": 238,
"TV & Video": 69,
"TV & Video Equipment": 201,
"TV Shows & Programs": 154,
"Table Games": 308,
"Tax Preparation & Planning": 215,
"Teaching & Classroom Resources": 249,
"Team Sports": 6,
"Tennis": 419,
"Textiles": 414,
"Textiles & Nonwovens": 222,
"Theme Parks": 286,
"Time & Calendars": 359,
"Tobacco": 557,
"Tobacco Products": 107,
"Tourist Attractions": 418,
"Tourist Destinations": 37,
"Toys": 188,
"Training & Certification": 586,
"Transportation & Logistics": 85,
"Transportation and Excursions": 498,
"Travel": 0,
"Travel and Tourism": 417,
"Troubled Relationships": 402,
"Trucks & SUVs": 175,
"Undergarments": 279,
"Unwanted Body & Facial Hair Removal": 408,
"Urban & Hip-Hop": 95,
"Used Vehicles": 106,
"Vacation Rentals & Short-Term Stays": 298,
"Vegetarian and Vegan": 416,
"Vehicle Codes & Driving Laws": 324,
"Vehicle Licensing & Registration": 542,
"Vehicle Parts & Accessories": 128,
"Vehicle Parts & Services": 127,
"Vehicle Repair & Maintenance": 138,
"Vehicle Shopping": 105,
"Vehicles": 365,
"Veterinarians": 564,
"Video Games Consoles and Accessories": 443,
"Virtual Worlds": 329,
"Visa & Immigration": 295,
"Vision Care": 290,
"Visual Art & Design": 36,
"Visual Arts and Design": 453,
"Vitamins & Supplements": 141,
"Vocational & Continuing Education": 565,
"Voice & Video Chat": 530,
"Volleyball": 354,
"Waste Water and Environmental": 490,
"Water Activities": 180,
"Water Sports": 312,
"Weather": 268,
"Web Design & Development": 83,
"Web Hosting and Domain Names": 427,
"Web Services": 82,
"Weddings": 284,
"Weight Loss": 248,
"Winter Sports": 294,
"Women's Clothing": 192,
"Women's Health": 409,
"Word Games": 361,
"World Music": 262,
"Wrestling": 381,
"Writers Resources": 118,
"Yard & Patio": 203,
"Youth Organizations & Resources": 338,
"eCommerce & Shopping": 350
},
"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.37.0",
"type_vocab_size": 2,
"use_cache": true,
"vocab_size": 30522
}
|