Image-Text-to-Text
Transformers
Safetensors
inkling_mm_model
conversational
audio-text-to-text
Mixture of Experts
Eval Results
Instructions to use thinkingmachines/Inkling-Small with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use thinkingmachines/Inkling-Small with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="thinkingmachines/Inkling-Small") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("thinkingmachines/Inkling-Small") model = AutoModelForMultimodalLM.from_pretrained("thinkingmachines/Inkling-Small", device_map="auto") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] inputs = processor.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Inference
- HuggingChat
- Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use thinkingmachines/Inkling-Small with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "thinkingmachines/Inkling-Small" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "thinkingmachines/Inkling-Small", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker
docker model run hf.co/thinkingmachines/Inkling-Small
- SGLang
How to use thinkingmachines/Inkling-Small with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "thinkingmachines/Inkling-Small" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "thinkingmachines/Inkling-Small", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "thinkingmachines/Inkling-Small" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "thinkingmachines/Inkling-Small", "messages": [ { "role": "user", "content": [ { "type": "text", "text": "Describe this image in one sentence." }, { "type": "image_url", "image_url": { "url": "https://cdn.britannica.com/61/93061-050-99147DCE/Statue-of-Liberty-Island-New-York-Bay.jpg" } } ] } ] }' - Docker Model Runner
How to use thinkingmachines/Inkling-Small with Docker Model Runner:
docker model run hf.co/thinkingmachines/Inkling-Small
File size: 86,479 Bytes
21152b5 | 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 | {
"metadata": {
"total_size": 531912898740
},
"weight_map": {
"model.audio.encoder.weight": "model-00019-of-00032.safetensors",
"model.audio.final_norm.weight": "model-00022-of-00032.safetensors",
"model.llm.embed.weight": "model-00030-of-00032.safetensors",
"model.llm.embed_norm.weight": "model-00019-of-00032.safetensors",
"model.llm.layers.0.attn.k_norm.weight": "model-00009-of-00032.safetensors",
"model.llm.layers.0.attn.k_sconv.weight": "model-00030-of-00032.safetensors",
"model.llm.layers.0.attn.q_norm.weight": "model-00008-of-00032.safetensors",
"model.llm.layers.0.attn.rel_logits_proj.proj": "model-00028-of-00032.safetensors",
"model.llm.layers.0.attn.v_sconv.weight": "model-00007-of-00032.safetensors",
"model.llm.layers.0.attn.wk_dv.weight": "model-00025-of-00032.safetensors",
"model.llm.layers.0.attn.wo_ud.weight": "model-00012-of-00032.safetensors",
"model.llm.layers.0.attn.wq_du.weight": "model-00009-of-00032.safetensors",
"model.llm.layers.0.attn.wr_du.weight": "model-00026-of-00032.safetensors",
"model.llm.layers.0.attn.wv_dv.weight": "model-00026-of-00032.safetensors",
"model.llm.layers.0.attn_norm.weight": "model-00011-of-00032.safetensors",
"model.llm.layers.0.attn_sconv.weight": "model-00003-of-00032.safetensors",
"model.llm.layers.0.mlp.global_scale": "model-00007-of-00032.safetensors",
"model.llm.layers.0.mlp.w13_dn.weight": "model-00009-of-00032.safetensors",
"model.llm.layers.0.mlp.w2_md.weight": "model-00013-of-00032.safetensors",
"model.llm.layers.0.mlp_norm.weight": "model-00017-of-00032.safetensors",
"model.llm.layers.0.mlp_sconv.weight": "model-00018-of-00032.safetensors",
"model.llm.layers.1.attn.k_norm.weight": "model-00011-of-00032.safetensors",
"model.llm.layers.1.attn.k_sconv.weight": "model-00006-of-00032.safetensors",
"model.llm.layers.1.attn.q_norm.weight": "model-00017-of-00032.safetensors",
"model.llm.layers.1.attn.rel_logits_proj.proj": "model-00013-of-00032.safetensors",
"model.llm.layers.1.attn.v_sconv.weight": "model-00030-of-00032.safetensors",
"model.llm.layers.1.attn.wk_dv.weight": "model-00010-of-00032.safetensors",
"model.llm.layers.1.attn.wo_ud.weight": "model-00026-of-00032.safetensors",
"model.llm.layers.1.attn.wq_du.weight": "model-00027-of-00032.safetensors",
"model.llm.layers.1.attn.wr_du.weight": "model-00006-of-00032.safetensors",
"model.llm.layers.1.attn.wv_dv.weight": "model-00026-of-00032.safetensors",
"model.llm.layers.1.attn_norm.weight": "model-00012-of-00032.safetensors",
"model.llm.layers.1.attn_sconv.weight": "model-00009-of-00032.safetensors",
"model.llm.layers.1.mlp.global_scale": "model-00015-of-00032.safetensors",
"model.llm.layers.1.mlp.w13_dn.weight": "model-00029-of-00032.safetensors",
"model.llm.layers.1.mlp.w2_md.weight": "model-00010-of-00032.safetensors",
"model.llm.layers.1.mlp_norm.weight": "model-00026-of-00032.safetensors",
"model.llm.layers.1.mlp_sconv.weight": "model-00017-of-00032.safetensors",
"model.llm.layers.10.attn.k_norm.weight": "model-00013-of-00032.safetensors",
"model.llm.layers.10.attn.k_sconv.weight": "model-00005-of-00032.safetensors",
"model.llm.layers.10.attn.q_norm.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.10.attn.rel_logits_proj.proj": "model-00010-of-00032.safetensors",
"model.llm.layers.10.attn.v_sconv.weight": "model-00030-of-00032.safetensors",
"model.llm.layers.10.attn.wk_dv.weight": "model-00010-of-00032.safetensors",
"model.llm.layers.10.attn.wo_ud.weight": "model-00021-of-00032.safetensors",
"model.llm.layers.10.attn.wq_du.weight": "model-00012-of-00032.safetensors",
"model.llm.layers.10.attn.wr_du.weight": "model-00025-of-00032.safetensors",
"model.llm.layers.10.attn.wv_dv.weight": "model-00023-of-00032.safetensors",
"model.llm.layers.10.attn_norm.weight": "model-00014-of-00032.safetensors",
"model.llm.layers.10.attn_sconv.weight": "model-00029-of-00032.safetensors",
"model.llm.layers.10.mlp.experts.w13_weight": "model-00016-of-00032.safetensors",
"model.llm.layers.10.mlp.experts.w2_weight": "model-00027-of-00032.safetensors",
"model.llm.layers.10.mlp.gate.bias": "model-00017-of-00032.safetensors",
"model.llm.layers.10.mlp.gate.global_scale": "model-00023-of-00032.safetensors",
"model.llm.layers.10.mlp.gate.weight": "model-00012-of-00032.safetensors",
"model.llm.layers.10.mlp.shared_experts.shared_w13_weight": "model-00023-of-00032.safetensors",
"model.llm.layers.10.mlp.shared_experts.shared_w2_weight": "model-00021-of-00032.safetensors",
"model.llm.layers.10.mlp_norm.weight": "model-00031-of-00032.safetensors",
"model.llm.layers.10.mlp_sconv.weight": "model-00026-of-00032.safetensors",
"model.llm.layers.11.attn.k_norm.weight": "model-00021-of-00032.safetensors",
"model.llm.layers.11.attn.k_sconv.weight": "model-00009-of-00032.safetensors",
"model.llm.layers.11.attn.q_norm.weight": "model-00032-of-00032.safetensors",
"model.llm.layers.11.attn.rel_logits_proj.proj": "model-00005-of-00032.safetensors",
"model.llm.layers.11.attn.v_sconv.weight": "model-00024-of-00032.safetensors",
"model.llm.layers.11.attn.wk_dv.weight": "model-00007-of-00032.safetensors",
"model.llm.layers.11.attn.wo_ud.weight": "model-00006-of-00032.safetensors",
"model.llm.layers.11.attn.wq_du.weight": "model-00020-of-00032.safetensors",
"model.llm.layers.11.attn.wr_du.weight": "model-00023-of-00032.safetensors",
"model.llm.layers.11.attn.wv_dv.weight": "model-00014-of-00032.safetensors",
"model.llm.layers.11.attn_norm.weight": "model-00021-of-00032.safetensors",
"model.llm.layers.11.attn_sconv.weight": "model-00001-of-00032.safetensors",
"model.llm.layers.11.mlp.experts.w13_weight": "model-00030-of-00032.safetensors",
"model.llm.layers.11.mlp.experts.w2_weight": "model-00007-of-00032.safetensors",
"model.llm.layers.11.mlp.gate.bias": "model-00014-of-00032.safetensors",
"model.llm.layers.11.mlp.gate.global_scale": "model-00015-of-00032.safetensors",
"model.llm.layers.11.mlp.gate.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.11.mlp.shared_experts.shared_w13_weight": "model-00022-of-00032.safetensors",
"model.llm.layers.11.mlp.shared_experts.shared_w2_weight": "model-00004-of-00032.safetensors",
"model.llm.layers.11.mlp_norm.weight": "model-00007-of-00032.safetensors",
"model.llm.layers.11.mlp_sconv.weight": "model-00027-of-00032.safetensors",
"model.llm.layers.12.attn.k_norm.weight": "model-00029-of-00032.safetensors",
"model.llm.layers.12.attn.k_sconv.weight": "model-00011-of-00032.safetensors",
"model.llm.layers.12.attn.q_norm.weight": "model-00015-of-00032.safetensors",
"model.llm.layers.12.attn.rel_logits_proj.proj": "model-00012-of-00032.safetensors",
"model.llm.layers.12.attn.v_sconv.weight": "model-00017-of-00032.safetensors",
"model.llm.layers.12.attn.wk_dv.weight": "model-00017-of-00032.safetensors",
"model.llm.layers.12.attn.wo_ud.weight": "model-00028-of-00032.safetensors",
"model.llm.layers.12.attn.wq_du.weight": "model-00007-of-00032.safetensors",
"model.llm.layers.12.attn.wr_du.weight": "model-00029-of-00032.safetensors",
"model.llm.layers.12.attn.wv_dv.weight": "model-00023-of-00032.safetensors",
"model.llm.layers.12.attn_norm.weight": "model-00014-of-00032.safetensors",
"model.llm.layers.12.attn_sconv.weight": "model-00026-of-00032.safetensors",
"model.llm.layers.12.mlp.experts.w13_weight": "model-00013-of-00032.safetensors",
"model.llm.layers.12.mlp.experts.w2_weight": "model-00015-of-00032.safetensors",
"model.llm.layers.12.mlp.gate.bias": "model-00018-of-00032.safetensors",
"model.llm.layers.12.mlp.gate.global_scale": "model-00014-of-00032.safetensors",
"model.llm.layers.12.mlp.gate.weight": "model-00014-of-00032.safetensors",
"model.llm.layers.12.mlp.shared_experts.shared_w13_weight": "model-00015-of-00032.safetensors",
"model.llm.layers.12.mlp.shared_experts.shared_w2_weight": "model-00026-of-00032.safetensors",
"model.llm.layers.12.mlp_norm.weight": "model-00008-of-00032.safetensors",
"model.llm.layers.12.mlp_sconv.weight": "model-00030-of-00032.safetensors",
"model.llm.layers.13.attn.k_norm.weight": "model-00006-of-00032.safetensors",
"model.llm.layers.13.attn.k_sconv.weight": "model-00001-of-00032.safetensors",
"model.llm.layers.13.attn.q_norm.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.13.attn.rel_logits_proj.proj": "model-00009-of-00032.safetensors",
"model.llm.layers.13.attn.v_sconv.weight": "model-00007-of-00032.safetensors",
"model.llm.layers.13.attn.wk_dv.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.13.attn.wo_ud.weight": "model-00017-of-00032.safetensors",
"model.llm.layers.13.attn.wq_du.weight": "model-00011-of-00032.safetensors",
"model.llm.layers.13.attn.wr_du.weight": "model-00019-of-00032.safetensors",
"model.llm.layers.13.attn.wv_dv.weight": "model-00025-of-00032.safetensors",
"model.llm.layers.13.attn_norm.weight": "model-00027-of-00032.safetensors",
"model.llm.layers.13.attn_sconv.weight": "model-00012-of-00032.safetensors",
"model.llm.layers.13.mlp.experts.w13_weight": "model-00027-of-00032.safetensors",
"model.llm.layers.13.mlp.experts.w2_weight": "model-00027-of-00032.safetensors",
"model.llm.layers.13.mlp.gate.bias": "model-00009-of-00032.safetensors",
"model.llm.layers.13.mlp.gate.global_scale": "model-00004-of-00032.safetensors",
"model.llm.layers.13.mlp.gate.weight": "model-00032-of-00032.safetensors",
"model.llm.layers.13.mlp.shared_experts.shared_w13_weight": "model-00014-of-00032.safetensors",
"model.llm.layers.13.mlp.shared_experts.shared_w2_weight": "model-00005-of-00032.safetensors",
"model.llm.layers.13.mlp_norm.weight": "model-00008-of-00032.safetensors",
"model.llm.layers.13.mlp_sconv.weight": "model-00020-of-00032.safetensors",
"model.llm.layers.14.attn.k_norm.weight": "model-00019-of-00032.safetensors",
"model.llm.layers.14.attn.k_sconv.weight": "model-00030-of-00032.safetensors",
"model.llm.layers.14.attn.q_norm.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.14.attn.rel_logits_proj.proj": "model-00011-of-00032.safetensors",
"model.llm.layers.14.attn.v_sconv.weight": "model-00013-of-00032.safetensors",
"model.llm.layers.14.attn.wk_dv.weight": "model-00031-of-00032.safetensors",
"model.llm.layers.14.attn.wo_ud.weight": "model-00007-of-00032.safetensors",
"model.llm.layers.14.attn.wq_du.weight": "model-00028-of-00032.safetensors",
"model.llm.layers.14.attn.wr_du.weight": "model-00021-of-00032.safetensors",
"model.llm.layers.14.attn.wv_dv.weight": "model-00018-of-00032.safetensors",
"model.llm.layers.14.attn_norm.weight": "model-00026-of-00032.safetensors",
"model.llm.layers.14.attn_sconv.weight": "model-00026-of-00032.safetensors",
"model.llm.layers.14.mlp.experts.w13_weight": "model-00017-of-00032.safetensors",
"model.llm.layers.14.mlp.experts.w2_weight": "model-00026-of-00032.safetensors",
"model.llm.layers.14.mlp.gate.bias": "model-00027-of-00032.safetensors",
"model.llm.layers.14.mlp.gate.global_scale": "model-00014-of-00032.safetensors",
"model.llm.layers.14.mlp.gate.weight": "model-00009-of-00032.safetensors",
"model.llm.layers.14.mlp.shared_experts.shared_w13_weight": "model-00008-of-00032.safetensors",
"model.llm.layers.14.mlp.shared_experts.shared_w2_weight": "model-00011-of-00032.safetensors",
"model.llm.layers.14.mlp_norm.weight": "model-00021-of-00032.safetensors",
"model.llm.layers.14.mlp_sconv.weight": "model-00014-of-00032.safetensors",
"model.llm.layers.15.attn.k_norm.weight": "model-00021-of-00032.safetensors",
"model.llm.layers.15.attn.k_sconv.weight": "model-00003-of-00032.safetensors",
"model.llm.layers.15.attn.q_norm.weight": "model-00032-of-00032.safetensors",
"model.llm.layers.15.attn.rel_logits_proj.proj": "model-00009-of-00032.safetensors",
"model.llm.layers.15.attn.v_sconv.weight": "model-00024-of-00032.safetensors",
"model.llm.layers.15.attn.wk_dv.weight": "model-00007-of-00032.safetensors",
"model.llm.layers.15.attn.wo_ud.weight": "model-00016-of-00032.safetensors",
"model.llm.layers.15.attn.wq_du.weight": "model-00011-of-00032.safetensors",
"model.llm.layers.15.attn.wr_du.weight": "model-00025-of-00032.safetensors",
"model.llm.layers.15.attn.wv_dv.weight": "model-00021-of-00032.safetensors",
"model.llm.layers.15.attn_norm.weight": "model-00002-of-00032.safetensors",
"model.llm.layers.15.attn_sconv.weight": "model-00027-of-00032.safetensors",
"model.llm.layers.15.mlp.experts.w13_weight": "model-00003-of-00032.safetensors",
"model.llm.layers.15.mlp.experts.w2_weight": "model-00029-of-00032.safetensors",
"model.llm.layers.15.mlp.gate.bias": "model-00022-of-00032.safetensors",
"model.llm.layers.15.mlp.gate.global_scale": "model-00020-of-00032.safetensors",
"model.llm.layers.15.mlp.gate.weight": "model-00008-of-00032.safetensors",
"model.llm.layers.15.mlp.shared_experts.shared_w13_weight": "model-00022-of-00032.safetensors",
"model.llm.layers.15.mlp.shared_experts.shared_w2_weight": "model-00009-of-00032.safetensors",
"model.llm.layers.15.mlp_norm.weight": "model-00025-of-00032.safetensors",
"model.llm.layers.15.mlp_sconv.weight": "model-00007-of-00032.safetensors",
"model.llm.layers.16.attn.k_norm.weight": "model-00028-of-00032.safetensors",
"model.llm.layers.16.attn.k_sconv.weight": "model-00014-of-00032.safetensors",
"model.llm.layers.16.attn.q_norm.weight": "model-00005-of-00032.safetensors",
"model.llm.layers.16.attn.rel_logits_proj.proj": "model-00009-of-00032.safetensors",
"model.llm.layers.16.attn.v_sconv.weight": "model-00002-of-00032.safetensors",
"model.llm.layers.16.attn.wk_dv.weight": "model-00018-of-00032.safetensors",
"model.llm.layers.16.attn.wo_ud.weight": "model-00017-of-00032.safetensors",
"model.llm.layers.16.attn.wq_du.weight": "model-00011-of-00032.safetensors",
"model.llm.layers.16.attn.wr_du.weight": "model-00026-of-00032.safetensors",
"model.llm.layers.16.attn.wv_dv.weight": "model-00003-of-00032.safetensors",
"model.llm.layers.16.attn_norm.weight": "model-00002-of-00032.safetensors",
"model.llm.layers.16.attn_sconv.weight": "model-00021-of-00032.safetensors",
"model.llm.layers.16.mlp.experts.w13_weight": "model-00019-of-00032.safetensors",
"model.llm.layers.16.mlp.experts.w2_weight": "model-00025-of-00032.safetensors",
"model.llm.layers.16.mlp.gate.bias": "model-00011-of-00032.safetensors",
"model.llm.layers.16.mlp.gate.global_scale": "model-00009-of-00032.safetensors",
"model.llm.layers.16.mlp.gate.weight": "model-00006-of-00032.safetensors",
"model.llm.layers.16.mlp.shared_experts.shared_w13_weight": "model-00014-of-00032.safetensors",
"model.llm.layers.16.mlp.shared_experts.shared_w2_weight": "model-00008-of-00032.safetensors",
"model.llm.layers.16.mlp_norm.weight": "model-00006-of-00032.safetensors",
"model.llm.layers.16.mlp_sconv.weight": "model-00019-of-00032.safetensors",
"model.llm.layers.17.attn.k_norm.weight": "model-00009-of-00032.safetensors",
"model.llm.layers.17.attn.k_sconv.weight": "model-00020-of-00032.safetensors",
"model.llm.layers.17.attn.q_norm.weight": "model-00018-of-00032.safetensors",
"model.llm.layers.17.attn.rel_logits_proj.proj": "model-00007-of-00032.safetensors",
"model.llm.layers.17.attn.v_sconv.weight": "model-00005-of-00032.safetensors",
"model.llm.layers.17.attn.wk_dv.weight": "model-00005-of-00032.safetensors",
"model.llm.layers.17.attn.wo_ud.weight": "model-00025-of-00032.safetensors",
"model.llm.layers.17.attn.wq_du.weight": "model-00003-of-00032.safetensors",
"model.llm.layers.17.attn.wr_du.weight": "model-00010-of-00032.safetensors",
"model.llm.layers.17.attn.wv_dv.weight": "model-00005-of-00032.safetensors",
"model.llm.layers.17.attn_norm.weight": "model-00026-of-00032.safetensors",
"model.llm.layers.17.attn_sconv.weight": "model-00002-of-00032.safetensors",
"model.llm.layers.17.mlp.experts.w13_weight": "model-00014-of-00032.safetensors",
"model.llm.layers.17.mlp.experts.w2_weight": "model-00012-of-00032.safetensors",
"model.llm.layers.17.mlp.gate.bias": "model-00027-of-00032.safetensors",
"model.llm.layers.17.mlp.gate.global_scale": "model-00031-of-00032.safetensors",
"model.llm.layers.17.mlp.gate.weight": "model-00014-of-00032.safetensors",
"model.llm.layers.17.mlp.shared_experts.shared_w13_weight": "model-00007-of-00032.safetensors",
"model.llm.layers.17.mlp.shared_experts.shared_w2_weight": "model-00022-of-00032.safetensors",
"model.llm.layers.17.mlp_norm.weight": "model-00032-of-00032.safetensors",
"model.llm.layers.17.mlp_sconv.weight": "model-00012-of-00032.safetensors",
"model.llm.layers.18.attn.k_norm.weight": "model-00026-of-00032.safetensors",
"model.llm.layers.18.attn.k_sconv.weight": "model-00012-of-00032.safetensors",
"model.llm.layers.18.attn.q_norm.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.18.attn.rel_logits_proj.proj": "model-00030-of-00032.safetensors",
"model.llm.layers.18.attn.v_sconv.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.18.attn.wk_dv.weight": "model-00011-of-00032.safetensors",
"model.llm.layers.18.attn.wo_ud.weight": "model-00018-of-00032.safetensors",
"model.llm.layers.18.attn.wq_du.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.18.attn.wr_du.weight": "model-00006-of-00032.safetensors",
"model.llm.layers.18.attn.wv_dv.weight": "model-00013-of-00032.safetensors",
"model.llm.layers.18.attn_norm.weight": "model-00026-of-00032.safetensors",
"model.llm.layers.18.attn_sconv.weight": "model-00009-of-00032.safetensors",
"model.llm.layers.18.mlp.experts.w13_weight": "model-00021-of-00032.safetensors",
"model.llm.layers.18.mlp.experts.w2_weight": "model-00032-of-00032.safetensors",
"model.llm.layers.18.mlp.gate.bias": "model-00018-of-00032.safetensors",
"model.llm.layers.18.mlp.gate.global_scale": "model-00027-of-00032.safetensors",
"model.llm.layers.18.mlp.gate.weight": "model-00030-of-00032.safetensors",
"model.llm.layers.18.mlp.shared_experts.shared_w13_weight": "model-00027-of-00032.safetensors",
"model.llm.layers.18.mlp.shared_experts.shared_w2_weight": "model-00022-of-00032.safetensors",
"model.llm.layers.18.mlp_norm.weight": "model-00001-of-00032.safetensors",
"model.llm.layers.18.mlp_sconv.weight": "model-00006-of-00032.safetensors",
"model.llm.layers.19.attn.k_norm.weight": "model-00018-of-00032.safetensors",
"model.llm.layers.19.attn.k_sconv.weight": "model-00012-of-00032.safetensors",
"model.llm.layers.19.attn.q_norm.weight": "model-00008-of-00032.safetensors",
"model.llm.layers.19.attn.rel_logits_proj.proj": "model-00021-of-00032.safetensors",
"model.llm.layers.19.attn.v_sconv.weight": "model-00026-of-00032.safetensors",
"model.llm.layers.19.attn.wk_dv.weight": "model-00014-of-00032.safetensors",
"model.llm.layers.19.attn.wo_ud.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.19.attn.wq_du.weight": "model-00003-of-00032.safetensors",
"model.llm.layers.19.attn.wr_du.weight": "model-00014-of-00032.safetensors",
"model.llm.layers.19.attn.wv_dv.weight": "model-00012-of-00032.safetensors",
"model.llm.layers.19.attn_norm.weight": "model-00026-of-00032.safetensors",
"model.llm.layers.19.attn_sconv.weight": "model-00006-of-00032.safetensors",
"model.llm.layers.19.mlp.experts.w13_weight": "model-00015-of-00032.safetensors",
"model.llm.layers.19.mlp.experts.w2_weight": "model-00022-of-00032.safetensors",
"model.llm.layers.19.mlp.gate.bias": "model-00009-of-00032.safetensors",
"model.llm.layers.19.mlp.gate.global_scale": "model-00021-of-00032.safetensors",
"model.llm.layers.19.mlp.gate.weight": "model-00007-of-00032.safetensors",
"model.llm.layers.19.mlp.shared_experts.shared_w13_weight": "model-00025-of-00032.safetensors",
"model.llm.layers.19.mlp.shared_experts.shared_w2_weight": "model-00025-of-00032.safetensors",
"model.llm.layers.19.mlp_norm.weight": "model-00026-of-00032.safetensors",
"model.llm.layers.19.mlp_sconv.weight": "model-00017-of-00032.safetensors",
"model.llm.layers.2.attn.k_norm.weight": "model-00025-of-00032.safetensors",
"model.llm.layers.2.attn.k_sconv.weight": "model-00014-of-00032.safetensors",
"model.llm.layers.2.attn.q_norm.weight": "model-00025-of-00032.safetensors",
"model.llm.layers.2.attn.rel_logits_proj.proj": "model-00006-of-00032.safetensors",
"model.llm.layers.2.attn.v_sconv.weight": "model-00025-of-00032.safetensors",
"model.llm.layers.2.attn.wk_dv.weight": "model-00021-of-00032.safetensors",
"model.llm.layers.2.attn.wo_ud.weight": "model-00007-of-00032.safetensors",
"model.llm.layers.2.attn.wq_du.weight": "model-00001-of-00032.safetensors",
"model.llm.layers.2.attn.wr_du.weight": "model-00024-of-00032.safetensors",
"model.llm.layers.2.attn.wv_dv.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.2.attn_norm.weight": "model-00014-of-00032.safetensors",
"model.llm.layers.2.attn_sconv.weight": "model-00024-of-00032.safetensors",
"model.llm.layers.2.mlp.experts.w13_weight": "model-00001-of-00032.safetensors",
"model.llm.layers.2.mlp.experts.w2_weight": "model-00017-of-00032.safetensors",
"model.llm.layers.2.mlp.gate.bias": "model-00001-of-00032.safetensors",
"model.llm.layers.2.mlp.gate.global_scale": "model-00003-of-00032.safetensors",
"model.llm.layers.2.mlp.gate.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.2.mlp.shared_experts.shared_w13_weight": "model-00001-of-00032.safetensors",
"model.llm.layers.2.mlp.shared_experts.shared_w2_weight": "model-00025-of-00032.safetensors",
"model.llm.layers.2.mlp_norm.weight": "model-00011-of-00032.safetensors",
"model.llm.layers.2.mlp_sconv.weight": "model-00007-of-00032.safetensors",
"model.llm.layers.20.attn.k_norm.weight": "model-00003-of-00032.safetensors",
"model.llm.layers.20.attn.k_sconv.weight": "model-00006-of-00032.safetensors",
"model.llm.layers.20.attn.q_norm.weight": "model-00017-of-00032.safetensors",
"model.llm.layers.20.attn.rel_logits_proj.proj": "model-00022-of-00032.safetensors",
"model.llm.layers.20.attn.v_sconv.weight": "model-00017-of-00032.safetensors",
"model.llm.layers.20.attn.wk_dv.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.20.attn.wo_ud.weight": "model-00011-of-00032.safetensors",
"model.llm.layers.20.attn.wq_du.weight": "model-00013-of-00032.safetensors",
"model.llm.layers.20.attn.wr_du.weight": "model-00025-of-00032.safetensors",
"model.llm.layers.20.attn.wv_dv.weight": "model-00009-of-00032.safetensors",
"model.llm.layers.20.attn_norm.weight": "model-00021-of-00032.safetensors",
"model.llm.layers.20.attn_sconv.weight": "model-00024-of-00032.safetensors",
"model.llm.layers.20.mlp.experts.w13_weight": "model-00023-of-00032.safetensors",
"model.llm.layers.20.mlp.experts.w2_weight": "model-00031-of-00032.safetensors",
"model.llm.layers.20.mlp.gate.bias": "model-00011-of-00032.safetensors",
"model.llm.layers.20.mlp.gate.global_scale": "model-00011-of-00032.safetensors",
"model.llm.layers.20.mlp.gate.weight": "model-00027-of-00032.safetensors",
"model.llm.layers.20.mlp.shared_experts.shared_w13_weight": "model-00012-of-00032.safetensors",
"model.llm.layers.20.mlp.shared_experts.shared_w2_weight": "model-00013-of-00032.safetensors",
"model.llm.layers.20.mlp_norm.weight": "model-00019-of-00032.safetensors",
"model.llm.layers.20.mlp_sconv.weight": "model-00011-of-00032.safetensors",
"model.llm.layers.21.attn.k_norm.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.21.attn.k_sconv.weight": "model-00027-of-00032.safetensors",
"model.llm.layers.21.attn.q_norm.weight": "model-00006-of-00032.safetensors",
"model.llm.layers.21.attn.rel_logits_proj.proj": "model-00030-of-00032.safetensors",
"model.llm.layers.21.attn.v_sconv.weight": "model-00029-of-00032.safetensors",
"model.llm.layers.21.attn.wk_dv.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.21.attn.wo_ud.weight": "model-00012-of-00032.safetensors",
"model.llm.layers.21.attn.wq_du.weight": "model-00026-of-00032.safetensors",
"model.llm.layers.21.attn.wr_du.weight": "model-00023-of-00032.safetensors",
"model.llm.layers.21.attn.wv_dv.weight": "model-00026-of-00032.safetensors",
"model.llm.layers.21.attn_norm.weight": "model-00001-of-00032.safetensors",
"model.llm.layers.21.attn_sconv.weight": "model-00011-of-00032.safetensors",
"model.llm.layers.21.mlp.experts.w13_weight": "model-00024-of-00032.safetensors",
"model.llm.layers.21.mlp.experts.w2_weight": "model-00018-of-00032.safetensors",
"model.llm.layers.21.mlp.gate.bias": "model-00007-of-00032.safetensors",
"model.llm.layers.21.mlp.gate.global_scale": "model-00009-of-00032.safetensors",
"model.llm.layers.21.mlp.gate.weight": "model-00017-of-00032.safetensors",
"model.llm.layers.21.mlp.shared_experts.shared_w13_weight": "model-00024-of-00032.safetensors",
"model.llm.layers.21.mlp.shared_experts.shared_w2_weight": "model-00006-of-00032.safetensors",
"model.llm.layers.21.mlp_norm.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.21.mlp_sconv.weight": "model-00027-of-00032.safetensors",
"model.llm.layers.22.attn.k_norm.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.22.attn.k_sconv.weight": "model-00030-of-00032.safetensors",
"model.llm.layers.22.attn.q_norm.weight": "model-00002-of-00032.safetensors",
"model.llm.layers.22.attn.rel_logits_proj.proj": "model-00024-of-00032.safetensors",
"model.llm.layers.22.attn.v_sconv.weight": "model-00020-of-00032.safetensors",
"model.llm.layers.22.attn.wk_dv.weight": "model-00010-of-00032.safetensors",
"model.llm.layers.22.attn.wo_ud.weight": "model-00011-of-00032.safetensors",
"model.llm.layers.22.attn.wq_du.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.22.attn.wr_du.weight": "model-00005-of-00032.safetensors",
"model.llm.layers.22.attn.wv_dv.weight": "model-00018-of-00032.safetensors",
"model.llm.layers.22.attn_norm.weight": "model-00015-of-00032.safetensors",
"model.llm.layers.22.attn_sconv.weight": "model-00002-of-00032.safetensors",
"model.llm.layers.22.mlp.experts.w13_weight": "model-00024-of-00032.safetensors",
"model.llm.layers.22.mlp.experts.w2_weight": "model-00002-of-00032.safetensors",
"model.llm.layers.22.mlp.gate.bias": "model-00002-of-00032.safetensors",
"model.llm.layers.22.mlp.gate.global_scale": "model-00008-of-00032.safetensors",
"model.llm.layers.22.mlp.gate.weight": "model-00023-of-00032.safetensors",
"model.llm.layers.22.mlp.shared_experts.shared_w13_weight": "model-00018-of-00032.safetensors",
"model.llm.layers.22.mlp.shared_experts.shared_w2_weight": "model-00001-of-00032.safetensors",
"model.llm.layers.22.mlp_norm.weight": "model-00009-of-00032.safetensors",
"model.llm.layers.22.mlp_sconv.weight": "model-00003-of-00032.safetensors",
"model.llm.layers.23.attn.k_norm.weight": "model-00017-of-00032.safetensors",
"model.llm.layers.23.attn.k_sconv.weight": "model-00014-of-00032.safetensors",
"model.llm.layers.23.attn.q_norm.weight": "model-00026-of-00032.safetensors",
"model.llm.layers.23.attn.rel_logits_proj.proj": "model-00021-of-00032.safetensors",
"model.llm.layers.23.attn.v_sconv.weight": "model-00023-of-00032.safetensors",
"model.llm.layers.23.attn.wk_dv.weight": "model-00008-of-00032.safetensors",
"model.llm.layers.23.attn.wo_ud.weight": "model-00009-of-00032.safetensors",
"model.llm.layers.23.attn.wq_du.weight": "model-00009-of-00032.safetensors",
"model.llm.layers.23.attn.wr_du.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.23.attn.wv_dv.weight": "model-00009-of-00032.safetensors",
"model.llm.layers.23.attn_norm.weight": "model-00006-of-00032.safetensors",
"model.llm.layers.23.attn_sconv.weight": "model-00018-of-00032.safetensors",
"model.llm.layers.23.mlp.experts.w13_weight": "model-00016-of-00032.safetensors",
"model.llm.layers.23.mlp.experts.w2_weight": "model-00006-of-00032.safetensors",
"model.llm.layers.23.mlp.gate.bias": "model-00026-of-00032.safetensors",
"model.llm.layers.23.mlp.gate.global_scale": "model-00022-of-00032.safetensors",
"model.llm.layers.23.mlp.gate.weight": "model-00026-of-00032.safetensors",
"model.llm.layers.23.mlp.shared_experts.shared_w13_weight": "model-00006-of-00032.safetensors",
"model.llm.layers.23.mlp.shared_experts.shared_w2_weight": "model-00023-of-00032.safetensors",
"model.llm.layers.23.mlp_norm.weight": "model-00025-of-00032.safetensors",
"model.llm.layers.23.mlp_sconv.weight": "model-00017-of-00032.safetensors",
"model.llm.layers.24.attn.k_norm.weight": "model-00029-of-00032.safetensors",
"model.llm.layers.24.attn.k_sconv.weight": "model-00019-of-00032.safetensors",
"model.llm.layers.24.attn.q_norm.weight": "model-00006-of-00032.safetensors",
"model.llm.layers.24.attn.rel_logits_proj.proj": "model-00026-of-00032.safetensors",
"model.llm.layers.24.attn.v_sconv.weight": "model-00018-of-00032.safetensors",
"model.llm.layers.24.attn.wk_dv.weight": "model-00021-of-00032.safetensors",
"model.llm.layers.24.attn.wo_ud.weight": "model-00027-of-00032.safetensors",
"model.llm.layers.24.attn.wq_du.weight": "model-00009-of-00032.safetensors",
"model.llm.layers.24.attn.wr_du.weight": "model-00013-of-00032.safetensors",
"model.llm.layers.24.attn.wv_dv.weight": "model-00026-of-00032.safetensors",
"model.llm.layers.24.attn_norm.weight": "model-00010-of-00032.safetensors",
"model.llm.layers.24.attn_sconv.weight": "model-00010-of-00032.safetensors",
"model.llm.layers.24.mlp.experts.w13_weight": "model-00003-of-00032.safetensors",
"model.llm.layers.24.mlp.experts.w2_weight": "model-00021-of-00032.safetensors",
"model.llm.layers.24.mlp.gate.bias": "model-00022-of-00032.safetensors",
"model.llm.layers.24.mlp.gate.global_scale": "model-00010-of-00032.safetensors",
"model.llm.layers.24.mlp.gate.weight": "model-00007-of-00032.safetensors",
"model.llm.layers.24.mlp.shared_experts.shared_w13_weight": "model-00012-of-00032.safetensors",
"model.llm.layers.24.mlp.shared_experts.shared_w2_weight": "model-00018-of-00032.safetensors",
"model.llm.layers.24.mlp_norm.weight": "model-00025-of-00032.safetensors",
"model.llm.layers.24.mlp_sconv.weight": "model-00021-of-00032.safetensors",
"model.llm.layers.25.attn.k_norm.weight": "model-00024-of-00032.safetensors",
"model.llm.layers.25.attn.k_sconv.weight": "model-00008-of-00032.safetensors",
"model.llm.layers.25.attn.q_norm.weight": "model-00023-of-00032.safetensors",
"model.llm.layers.25.attn.rel_logits_proj.proj": "model-00012-of-00032.safetensors",
"model.llm.layers.25.attn.v_sconv.weight": "model-00028-of-00032.safetensors",
"model.llm.layers.25.attn.wk_dv.weight": "model-00013-of-00032.safetensors",
"model.llm.layers.25.attn.wo_ud.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.25.attn.wq_du.weight": "model-00026-of-00032.safetensors",
"model.llm.layers.25.attn.wr_du.weight": "model-00029-of-00032.safetensors",
"model.llm.layers.25.attn.wv_dv.weight": "model-00021-of-00032.safetensors",
"model.llm.layers.25.attn_norm.weight": "model-00003-of-00032.safetensors",
"model.llm.layers.25.attn_sconv.weight": "model-00032-of-00032.safetensors",
"model.llm.layers.25.mlp.experts.w13_weight": "model-00007-of-00032.safetensors",
"model.llm.layers.25.mlp.experts.w2_weight": "model-00028-of-00032.safetensors",
"model.llm.layers.25.mlp.gate.bias": "model-00021-of-00032.safetensors",
"model.llm.layers.25.mlp.gate.global_scale": "model-00022-of-00032.safetensors",
"model.llm.layers.25.mlp.gate.weight": "model-00027-of-00032.safetensors",
"model.llm.layers.25.mlp.shared_experts.shared_w13_weight": "model-00011-of-00032.safetensors",
"model.llm.layers.25.mlp.shared_experts.shared_w2_weight": "model-00017-of-00032.safetensors",
"model.llm.layers.25.mlp_norm.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.25.mlp_sconv.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.26.attn.k_norm.weight": "model-00018-of-00032.safetensors",
"model.llm.layers.26.attn.k_sconv.weight": "model-00030-of-00032.safetensors",
"model.llm.layers.26.attn.q_norm.weight": "model-00009-of-00032.safetensors",
"model.llm.layers.26.attn.rel_logits_proj.proj": "model-00008-of-00032.safetensors",
"model.llm.layers.26.attn.v_sconv.weight": "model-00001-of-00032.safetensors",
"model.llm.layers.26.attn.wk_dv.weight": "model-00026-of-00032.safetensors",
"model.llm.layers.26.attn.wo_ud.weight": "model-00006-of-00032.safetensors",
"model.llm.layers.26.attn.wq_du.weight": "model-00002-of-00032.safetensors",
"model.llm.layers.26.attn.wr_du.weight": "model-00021-of-00032.safetensors",
"model.llm.layers.26.attn.wv_dv.weight": "model-00006-of-00032.safetensors",
"model.llm.layers.26.attn_norm.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.26.attn_sconv.weight": "model-00030-of-00032.safetensors",
"model.llm.layers.26.mlp.experts.w13_weight": "model-00011-of-00032.safetensors",
"model.llm.layers.26.mlp.experts.w2_weight": "model-00029-of-00032.safetensors",
"model.llm.layers.26.mlp.gate.bias": "model-00021-of-00032.safetensors",
"model.llm.layers.26.mlp.gate.global_scale": "model-00002-of-00032.safetensors",
"model.llm.layers.26.mlp.gate.weight": "model-00009-of-00032.safetensors",
"model.llm.layers.26.mlp.shared_experts.shared_w13_weight": "model-00013-of-00032.safetensors",
"model.llm.layers.26.mlp.shared_experts.shared_w2_weight": "model-00023-of-00032.safetensors",
"model.llm.layers.26.mlp_norm.weight": "model-00023-of-00032.safetensors",
"model.llm.layers.26.mlp_sconv.weight": "model-00010-of-00032.safetensors",
"model.llm.layers.27.attn.k_norm.weight": "model-00003-of-00032.safetensors",
"model.llm.layers.27.attn.k_sconv.weight": "model-00006-of-00032.safetensors",
"model.llm.layers.27.attn.q_norm.weight": "model-00028-of-00032.safetensors",
"model.llm.layers.27.attn.rel_logits_proj.proj": "model-00029-of-00032.safetensors",
"model.llm.layers.27.attn.v_sconv.weight": "model-00006-of-00032.safetensors",
"model.llm.layers.27.attn.wk_dv.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.27.attn.wo_ud.weight": "model-00026-of-00032.safetensors",
"model.llm.layers.27.attn.wq_du.weight": "model-00009-of-00032.safetensors",
"model.llm.layers.27.attn.wr_du.weight": "model-00011-of-00032.safetensors",
"model.llm.layers.27.attn.wv_dv.weight": "model-00003-of-00032.safetensors",
"model.llm.layers.27.attn_norm.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.27.attn_sconv.weight": "model-00012-of-00032.safetensors",
"model.llm.layers.27.mlp.experts.w13_weight": "model-00002-of-00032.safetensors",
"model.llm.layers.27.mlp.experts.w2_weight": "model-00008-of-00032.safetensors",
"model.llm.layers.27.mlp.gate.bias": "model-00011-of-00032.safetensors",
"model.llm.layers.27.mlp.gate.global_scale": "model-00022-of-00032.safetensors",
"model.llm.layers.27.mlp.gate.weight": "model-00030-of-00032.safetensors",
"model.llm.layers.27.mlp.shared_experts.shared_w13_weight": "model-00018-of-00032.safetensors",
"model.llm.layers.27.mlp.shared_experts.shared_w2_weight": "model-00022-of-00032.safetensors",
"model.llm.layers.27.mlp_norm.weight": "model-00006-of-00032.safetensors",
"model.llm.layers.27.mlp_sconv.weight": "model-00002-of-00032.safetensors",
"model.llm.layers.28.attn.k_norm.weight": "model-00012-of-00032.safetensors",
"model.llm.layers.28.attn.k_sconv.weight": "model-00009-of-00032.safetensors",
"model.llm.layers.28.attn.q_norm.weight": "model-00018-of-00032.safetensors",
"model.llm.layers.28.attn.rel_logits_proj.proj": "model-00028-of-00032.safetensors",
"model.llm.layers.28.attn.v_sconv.weight": "model-00026-of-00032.safetensors",
"model.llm.layers.28.attn.wk_dv.weight": "model-00017-of-00032.safetensors",
"model.llm.layers.28.attn.wo_ud.weight": "model-00007-of-00032.safetensors",
"model.llm.layers.28.attn.wq_du.weight": "model-00028-of-00032.safetensors",
"model.llm.layers.28.attn.wr_du.weight": "model-00012-of-00032.safetensors",
"model.llm.layers.28.attn.wv_dv.weight": "model-00014-of-00032.safetensors",
"model.llm.layers.28.attn_norm.weight": "model-00021-of-00032.safetensors",
"model.llm.layers.28.attn_sconv.weight": "model-00017-of-00032.safetensors",
"model.llm.layers.28.mlp.experts.w13_weight": "model-00001-of-00032.safetensors",
"model.llm.layers.28.mlp.experts.w2_weight": "model-00009-of-00032.safetensors",
"model.llm.layers.28.mlp.gate.bias": "model-00032-of-00032.safetensors",
"model.llm.layers.28.mlp.gate.global_scale": "model-00007-of-00032.safetensors",
"model.llm.layers.28.mlp.gate.weight": "model-00018-of-00032.safetensors",
"model.llm.layers.28.mlp.shared_experts.shared_w13_weight": "model-00026-of-00032.safetensors",
"model.llm.layers.28.mlp.shared_experts.shared_w2_weight": "model-00021-of-00032.safetensors",
"model.llm.layers.28.mlp_norm.weight": "model-00029-of-00032.safetensors",
"model.llm.layers.28.mlp_sconv.weight": "model-00006-of-00032.safetensors",
"model.llm.layers.29.attn.k_norm.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.29.attn.k_sconv.weight": "model-00021-of-00032.safetensors",
"model.llm.layers.29.attn.q_norm.weight": "model-00015-of-00032.safetensors",
"model.llm.layers.29.attn.rel_logits_proj.proj": "model-00024-of-00032.safetensors",
"model.llm.layers.29.attn.v_sconv.weight": "model-00018-of-00032.safetensors",
"model.llm.layers.29.attn.wk_dv.weight": "model-00021-of-00032.safetensors",
"model.llm.layers.29.attn.wo_ud.weight": "model-00003-of-00032.safetensors",
"model.llm.layers.29.attn.wq_du.weight": "model-00026-of-00032.safetensors",
"model.llm.layers.29.attn.wr_du.weight": "model-00017-of-00032.safetensors",
"model.llm.layers.29.attn.wv_dv.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.29.attn_norm.weight": "model-00006-of-00032.safetensors",
"model.llm.layers.29.attn_sconv.weight": "model-00019-of-00032.safetensors",
"model.llm.layers.29.mlp.experts.w13_weight": "model-00020-of-00032.safetensors",
"model.llm.layers.29.mlp.experts.w2_weight": "model-00013-of-00032.safetensors",
"model.llm.layers.29.mlp.gate.bias": "model-00032-of-00032.safetensors",
"model.llm.layers.29.mlp.gate.global_scale": "model-00002-of-00032.safetensors",
"model.llm.layers.29.mlp.gate.weight": "model-00011-of-00032.safetensors",
"model.llm.layers.29.mlp.shared_experts.shared_w13_weight": "model-00024-of-00032.safetensors",
"model.llm.layers.29.mlp.shared_experts.shared_w2_weight": "model-00015-of-00032.safetensors",
"model.llm.layers.29.mlp_norm.weight": "model-00021-of-00032.safetensors",
"model.llm.layers.29.mlp_sconv.weight": "model-00009-of-00032.safetensors",
"model.llm.layers.3.attn.k_norm.weight": "model-00026-of-00032.safetensors",
"model.llm.layers.3.attn.k_sconv.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.3.attn.q_norm.weight": "model-00005-of-00032.safetensors",
"model.llm.layers.3.attn.rel_logits_proj.proj": "model-00017-of-00032.safetensors",
"model.llm.layers.3.attn.v_sconv.weight": "model-00006-of-00032.safetensors",
"model.llm.layers.3.attn.wk_dv.weight": "model-00007-of-00032.safetensors",
"model.llm.layers.3.attn.wo_ud.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.3.attn.wq_du.weight": "model-00013-of-00032.safetensors",
"model.llm.layers.3.attn.wr_du.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.3.attn.wv_dv.weight": "model-00023-of-00032.safetensors",
"model.llm.layers.3.attn_norm.weight": "model-00030-of-00032.safetensors",
"model.llm.layers.3.attn_sconv.weight": "model-00028-of-00032.safetensors",
"model.llm.layers.3.mlp.experts.w13_weight": "model-00032-of-00032.safetensors",
"model.llm.layers.3.mlp.experts.w2_weight": "model-00018-of-00032.safetensors",
"model.llm.layers.3.mlp.gate.bias": "model-00014-of-00032.safetensors",
"model.llm.layers.3.mlp.gate.global_scale": "model-00016-of-00032.safetensors",
"model.llm.layers.3.mlp.gate.weight": "model-00019-of-00032.safetensors",
"model.llm.layers.3.mlp.shared_experts.shared_w13_weight": "model-00012-of-00032.safetensors",
"model.llm.layers.3.mlp.shared_experts.shared_w2_weight": "model-00011-of-00032.safetensors",
"model.llm.layers.3.mlp_norm.weight": "model-00007-of-00032.safetensors",
"model.llm.layers.3.mlp_sconv.weight": "model-00024-of-00032.safetensors",
"model.llm.layers.30.attn.k_norm.weight": "model-00026-of-00032.safetensors",
"model.llm.layers.30.attn.k_sconv.weight": "model-00027-of-00032.safetensors",
"model.llm.layers.30.attn.q_norm.weight": "model-00026-of-00032.safetensors",
"model.llm.layers.30.attn.rel_logits_proj.proj": "model-00032-of-00032.safetensors",
"model.llm.layers.30.attn.v_sconv.weight": "model-00002-of-00032.safetensors",
"model.llm.layers.30.attn.wk_dv.weight": "model-00032-of-00032.safetensors",
"model.llm.layers.30.attn.wo_ud.weight": "model-00012-of-00032.safetensors",
"model.llm.layers.30.attn.wq_du.weight": "model-00030-of-00032.safetensors",
"model.llm.layers.30.attn.wr_du.weight": "model-00008-of-00032.safetensors",
"model.llm.layers.30.attn.wv_dv.weight": "model-00024-of-00032.safetensors",
"model.llm.layers.30.attn_norm.weight": "model-00007-of-00032.safetensors",
"model.llm.layers.30.attn_sconv.weight": "model-00018-of-00032.safetensors",
"model.llm.layers.30.mlp.experts.w13_weight": "model-00006-of-00032.safetensors",
"model.llm.layers.30.mlp.experts.w2_weight": "model-00019-of-00032.safetensors",
"model.llm.layers.30.mlp.gate.bias": "model-00012-of-00032.safetensors",
"model.llm.layers.30.mlp.gate.global_scale": "model-00025-of-00032.safetensors",
"model.llm.layers.30.mlp.gate.weight": "model-00016-of-00032.safetensors",
"model.llm.layers.30.mlp.shared_experts.shared_w13_weight": "model-00007-of-00032.safetensors",
"model.llm.layers.30.mlp.shared_experts.shared_w2_weight": "model-00002-of-00032.safetensors",
"model.llm.layers.30.mlp_norm.weight": "model-00012-of-00032.safetensors",
"model.llm.layers.30.mlp_sconv.weight": "model-00026-of-00032.safetensors",
"model.llm.layers.31.attn.k_norm.weight": "model-00026-of-00032.safetensors",
"model.llm.layers.31.attn.k_sconv.weight": "model-00002-of-00032.safetensors",
"model.llm.layers.31.attn.q_norm.weight": "model-00025-of-00032.safetensors",
"model.llm.layers.31.attn.rel_logits_proj.proj": "model-00022-of-00032.safetensors",
"model.llm.layers.31.attn.v_sconv.weight": "model-00012-of-00032.safetensors",
"model.llm.layers.31.attn.wk_dv.weight": "model-00015-of-00032.safetensors",
"model.llm.layers.31.attn.wo_ud.weight": "model-00016-of-00032.safetensors",
"model.llm.layers.31.attn.wq_du.weight": "model-00006-of-00032.safetensors",
"model.llm.layers.31.attn.wr_du.weight": "model-00028-of-00032.safetensors",
"model.llm.layers.31.attn.wv_dv.weight": "model-00015-of-00032.safetensors",
"model.llm.layers.31.attn_norm.weight": "model-00014-of-00032.safetensors",
"model.llm.layers.31.attn_sconv.weight": "model-00029-of-00032.safetensors",
"model.llm.layers.31.mlp.experts.w13_weight": "model-00030-of-00032.safetensors",
"model.llm.layers.31.mlp.experts.w2_weight": "model-00025-of-00032.safetensors",
"model.llm.layers.31.mlp.gate.bias": "model-00021-of-00032.safetensors",
"model.llm.layers.31.mlp.gate.global_scale": "model-00021-of-00032.safetensors",
"model.llm.layers.31.mlp.gate.weight": "model-00018-of-00032.safetensors",
"model.llm.layers.31.mlp.shared_experts.shared_w13_weight": "model-00017-of-00032.safetensors",
"model.llm.layers.31.mlp.shared_experts.shared_w2_weight": "model-00032-of-00032.safetensors",
"model.llm.layers.31.mlp_norm.weight": "model-00026-of-00032.safetensors",
"model.llm.layers.31.mlp_sconv.weight": "model-00012-of-00032.safetensors",
"model.llm.layers.32.attn.k_norm.weight": "model-00023-of-00032.safetensors",
"model.llm.layers.32.attn.k_sconv.weight": "model-00011-of-00032.safetensors",
"model.llm.layers.32.attn.q_norm.weight": "model-00001-of-00032.safetensors",
"model.llm.layers.32.attn.rel_logits_proj.proj": "model-00007-of-00032.safetensors",
"model.llm.layers.32.attn.v_sconv.weight": "model-00025-of-00032.safetensors",
"model.llm.layers.32.attn.wk_dv.weight": "model-00015-of-00032.safetensors",
"model.llm.layers.32.attn.wo_ud.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.32.attn.wq_du.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.32.attn.wr_du.weight": "model-00021-of-00032.safetensors",
"model.llm.layers.32.attn.wv_dv.weight": "model-00021-of-00032.safetensors",
"model.llm.layers.32.attn_norm.weight": "model-00009-of-00032.safetensors",
"model.llm.layers.32.attn_sconv.weight": "model-00023-of-00032.safetensors",
"model.llm.layers.32.mlp.experts.w13_weight": "model-00014-of-00032.safetensors",
"model.llm.layers.32.mlp.experts.w2_weight": "model-00012-of-00032.safetensors",
"model.llm.layers.32.mlp.gate.bias": "model-00022-of-00032.safetensors",
"model.llm.layers.32.mlp.gate.global_scale": "model-00009-of-00032.safetensors",
"model.llm.layers.32.mlp.gate.weight": "model-00002-of-00032.safetensors",
"model.llm.layers.32.mlp.shared_experts.shared_w13_weight": "model-00015-of-00032.safetensors",
"model.llm.layers.32.mlp.shared_experts.shared_w2_weight": "model-00014-of-00032.safetensors",
"model.llm.layers.32.mlp_norm.weight": "model-00030-of-00032.safetensors",
"model.llm.layers.32.mlp_sconv.weight": "model-00007-of-00032.safetensors",
"model.llm.layers.33.attn.k_norm.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.33.attn.k_sconv.weight": "model-00023-of-00032.safetensors",
"model.llm.layers.33.attn.q_norm.weight": "model-00027-of-00032.safetensors",
"model.llm.layers.33.attn.rel_logits_proj.proj": "model-00022-of-00032.safetensors",
"model.llm.layers.33.attn.v_sconv.weight": "model-00003-of-00032.safetensors",
"model.llm.layers.33.attn.wk_dv.weight": "model-00014-of-00032.safetensors",
"model.llm.layers.33.attn.wo_ud.weight": "model-00014-of-00032.safetensors",
"model.llm.layers.33.attn.wq_du.weight": "model-00013-of-00032.safetensors",
"model.llm.layers.33.attn.wr_du.weight": "model-00007-of-00032.safetensors",
"model.llm.layers.33.attn.wv_dv.weight": "model-00026-of-00032.safetensors",
"model.llm.layers.33.attn_norm.weight": "model-00005-of-00032.safetensors",
"model.llm.layers.33.attn_sconv.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.33.mlp.experts.w13_weight": "model-00010-of-00032.safetensors",
"model.llm.layers.33.mlp.experts.w2_weight": "model-00026-of-00032.safetensors",
"model.llm.layers.33.mlp.gate.bias": "model-00003-of-00032.safetensors",
"model.llm.layers.33.mlp.gate.global_scale": "model-00022-of-00032.safetensors",
"model.llm.layers.33.mlp.gate.weight": "model-00013-of-00032.safetensors",
"model.llm.layers.33.mlp.shared_experts.shared_w13_weight": "model-00021-of-00032.safetensors",
"model.llm.layers.33.mlp.shared_experts.shared_w2_weight": "model-00020-of-00032.safetensors",
"model.llm.layers.33.mlp_norm.weight": "model-00003-of-00032.safetensors",
"model.llm.layers.33.mlp_sconv.weight": "model-00006-of-00032.safetensors",
"model.llm.layers.34.attn.k_norm.weight": "model-00024-of-00032.safetensors",
"model.llm.layers.34.attn.k_sconv.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.34.attn.q_norm.weight": "model-00015-of-00032.safetensors",
"model.llm.layers.34.attn.rel_logits_proj.proj": "model-00014-of-00032.safetensors",
"model.llm.layers.34.attn.v_sconv.weight": "model-00009-of-00032.safetensors",
"model.llm.layers.34.attn.wk_dv.weight": "model-00019-of-00032.safetensors",
"model.llm.layers.34.attn.wo_ud.weight": "model-00017-of-00032.safetensors",
"model.llm.layers.34.attn.wq_du.weight": "model-00032-of-00032.safetensors",
"model.llm.layers.34.attn.wr_du.weight": "model-00007-of-00032.safetensors",
"model.llm.layers.34.attn.wv_dv.weight": "model-00008-of-00032.safetensors",
"model.llm.layers.34.attn_norm.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.34.attn_sconv.weight": "model-00030-of-00032.safetensors",
"model.llm.layers.34.mlp.experts.w13_weight": "model-00022-of-00032.safetensors",
"model.llm.layers.34.mlp.experts.w2_weight": "model-00031-of-00032.safetensors",
"model.llm.layers.34.mlp.gate.bias": "model-00021-of-00032.safetensors",
"model.llm.layers.34.mlp.gate.global_scale": "model-00022-of-00032.safetensors",
"model.llm.layers.34.mlp.gate.weight": "model-00001-of-00032.safetensors",
"model.llm.layers.34.mlp.shared_experts.shared_w13_weight": "model-00006-of-00032.safetensors",
"model.llm.layers.34.mlp.shared_experts.shared_w2_weight": "model-00009-of-00032.safetensors",
"model.llm.layers.34.mlp_norm.weight": "model-00028-of-00032.safetensors",
"model.llm.layers.34.mlp_sconv.weight": "model-00010-of-00032.safetensors",
"model.llm.layers.35.attn.k_norm.weight": "model-00021-of-00032.safetensors",
"model.llm.layers.35.attn.k_sconv.weight": "model-00002-of-00032.safetensors",
"model.llm.layers.35.attn.q_norm.weight": "model-00011-of-00032.safetensors",
"model.llm.layers.35.attn.rel_logits_proj.proj": "model-00006-of-00032.safetensors",
"model.llm.layers.35.attn.v_sconv.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.35.attn.wk_dv.weight": "model-00009-of-00032.safetensors",
"model.llm.layers.35.attn.wo_ud.weight": "model-00021-of-00032.safetensors",
"model.llm.layers.35.attn.wq_du.weight": "model-00012-of-00032.safetensors",
"model.llm.layers.35.attn.wr_du.weight": "model-00028-of-00032.safetensors",
"model.llm.layers.35.attn.wv_dv.weight": "model-00029-of-00032.safetensors",
"model.llm.layers.35.attn_norm.weight": "model-00010-of-00032.safetensors",
"model.llm.layers.35.attn_sconv.weight": "model-00007-of-00032.safetensors",
"model.llm.layers.35.mlp.experts.w13_weight": "model-00012-of-00032.safetensors",
"model.llm.layers.35.mlp.experts.w2_weight": "model-00010-of-00032.safetensors",
"model.llm.layers.35.mlp.gate.bias": "model-00014-of-00032.safetensors",
"model.llm.layers.35.mlp.gate.global_scale": "model-00021-of-00032.safetensors",
"model.llm.layers.35.mlp.gate.weight": "model-00007-of-00032.safetensors",
"model.llm.layers.35.mlp.shared_experts.shared_w13_weight": "model-00021-of-00032.safetensors",
"model.llm.layers.35.mlp.shared_experts.shared_w2_weight": "model-00014-of-00032.safetensors",
"model.llm.layers.35.mlp_norm.weight": "model-00012-of-00032.safetensors",
"model.llm.layers.35.mlp_sconv.weight": "model-00011-of-00032.safetensors",
"model.llm.layers.36.attn.k_norm.weight": "model-00024-of-00032.safetensors",
"model.llm.layers.36.attn.k_sconv.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.36.attn.q_norm.weight": "model-00005-of-00032.safetensors",
"model.llm.layers.36.attn.rel_logits_proj.proj": "model-00030-of-00032.safetensors",
"model.llm.layers.36.attn.v_sconv.weight": "model-00030-of-00032.safetensors",
"model.llm.layers.36.attn.wk_dv.weight": "model-00026-of-00032.safetensors",
"model.llm.layers.36.attn.wo_ud.weight": "model-00009-of-00032.safetensors",
"model.llm.layers.36.attn.wq_du.weight": "model-00006-of-00032.safetensors",
"model.llm.layers.36.attn.wr_du.weight": "model-00008-of-00032.safetensors",
"model.llm.layers.36.attn.wv_dv.weight": "model-00025-of-00032.safetensors",
"model.llm.layers.36.attn_norm.weight": "model-00017-of-00032.safetensors",
"model.llm.layers.36.attn_sconv.weight": "model-00016-of-00032.safetensors",
"model.llm.layers.36.mlp.experts.w13_weight": "model-00020-of-00032.safetensors",
"model.llm.layers.36.mlp.experts.w2_weight": "model-00028-of-00032.safetensors",
"model.llm.layers.36.mlp.gate.bias": "model-00022-of-00032.safetensors",
"model.llm.layers.36.mlp.gate.global_scale": "model-00003-of-00032.safetensors",
"model.llm.layers.36.mlp.gate.weight": "model-00029-of-00032.safetensors",
"model.llm.layers.36.mlp.shared_experts.shared_w13_weight": "model-00007-of-00032.safetensors",
"model.llm.layers.36.mlp.shared_experts.shared_w2_weight": "model-00028-of-00032.safetensors",
"model.llm.layers.36.mlp_norm.weight": "model-00010-of-00032.safetensors",
"model.llm.layers.36.mlp_sconv.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.37.attn.k_norm.weight": "model-00024-of-00032.safetensors",
"model.llm.layers.37.attn.k_sconv.weight": "model-00002-of-00032.safetensors",
"model.llm.layers.37.attn.q_norm.weight": "model-00023-of-00032.safetensors",
"model.llm.layers.37.attn.rel_logits_proj.proj": "model-00014-of-00032.safetensors",
"model.llm.layers.37.attn.v_sconv.weight": "model-00009-of-00032.safetensors",
"model.llm.layers.37.attn.wk_dv.weight": "model-00019-of-00032.safetensors",
"model.llm.layers.37.attn.wo_ud.weight": "model-00019-of-00032.safetensors",
"model.llm.layers.37.attn.wq_du.weight": "model-00006-of-00032.safetensors",
"model.llm.layers.37.attn.wr_du.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.37.attn.wv_dv.weight": "model-00020-of-00032.safetensors",
"model.llm.layers.37.attn_norm.weight": "model-00003-of-00032.safetensors",
"model.llm.layers.37.attn_sconv.weight": "model-00002-of-00032.safetensors",
"model.llm.layers.37.mlp.experts.w13_weight": "model-00025-of-00032.safetensors",
"model.llm.layers.37.mlp.experts.w2_weight": "model-00032-of-00032.safetensors",
"model.llm.layers.37.mlp.gate.bias": "model-00015-of-00032.safetensors",
"model.llm.layers.37.mlp.gate.global_scale": "model-00013-of-00032.safetensors",
"model.llm.layers.37.mlp.gate.weight": "model-00009-of-00032.safetensors",
"model.llm.layers.37.mlp.shared_experts.shared_w13_weight": "model-00012-of-00032.safetensors",
"model.llm.layers.37.mlp.shared_experts.shared_w2_weight": "model-00022-of-00032.safetensors",
"model.llm.layers.37.mlp_norm.weight": "model-00029-of-00032.safetensors",
"model.llm.layers.37.mlp_sconv.weight": "model-00008-of-00032.safetensors",
"model.llm.layers.38.attn.k_norm.weight": "model-00007-of-00032.safetensors",
"model.llm.layers.38.attn.k_sconv.weight": "model-00021-of-00032.safetensors",
"model.llm.layers.38.attn.q_norm.weight": "model-00011-of-00032.safetensors",
"model.llm.layers.38.attn.rel_logits_proj.proj": "model-00022-of-00032.safetensors",
"model.llm.layers.38.attn.v_sconv.weight": "model-00009-of-00032.safetensors",
"model.llm.layers.38.attn.wk_dv.weight": "model-00025-of-00032.safetensors",
"model.llm.layers.38.attn.wo_ud.weight": "model-00017-of-00032.safetensors",
"model.llm.layers.38.attn.wq_du.weight": "model-00028-of-00032.safetensors",
"model.llm.layers.38.attn.wr_du.weight": "model-00017-of-00032.safetensors",
"model.llm.layers.38.attn.wv_dv.weight": "model-00003-of-00032.safetensors",
"model.llm.layers.38.attn_norm.weight": "model-00013-of-00032.safetensors",
"model.llm.layers.38.attn_sconv.weight": "model-00024-of-00032.safetensors",
"model.llm.layers.38.mlp.experts.w13_weight": "model-00008-of-00032.safetensors",
"model.llm.layers.38.mlp.experts.w2_weight": "model-00017-of-00032.safetensors",
"model.llm.layers.38.mlp.gate.bias": "model-00031-of-00032.safetensors",
"model.llm.layers.38.mlp.gate.global_scale": "model-00019-of-00032.safetensors",
"model.llm.layers.38.mlp.gate.weight": "model-00010-of-00032.safetensors",
"model.llm.layers.38.mlp.shared_experts.shared_w13_weight": "model-00006-of-00032.safetensors",
"model.llm.layers.38.mlp.shared_experts.shared_w2_weight": "model-00017-of-00032.safetensors",
"model.llm.layers.38.mlp_norm.weight": "model-00024-of-00032.safetensors",
"model.llm.layers.38.mlp_sconv.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.39.attn.k_norm.weight": "model-00006-of-00032.safetensors",
"model.llm.layers.39.attn.k_sconv.weight": "model-00024-of-00032.safetensors",
"model.llm.layers.39.attn.q_norm.weight": "model-00009-of-00032.safetensors",
"model.llm.layers.39.attn.rel_logits_proj.proj": "model-00026-of-00032.safetensors",
"model.llm.layers.39.attn.v_sconv.weight": "model-00018-of-00032.safetensors",
"model.llm.layers.39.attn.wk_dv.weight": "model-00003-of-00032.safetensors",
"model.llm.layers.39.attn.wo_ud.weight": "model-00013-of-00032.safetensors",
"model.llm.layers.39.attn.wq_du.weight": "model-00006-of-00032.safetensors",
"model.llm.layers.39.attn.wr_du.weight": "model-00026-of-00032.safetensors",
"model.llm.layers.39.attn.wv_dv.weight": "model-00024-of-00032.safetensors",
"model.llm.layers.39.attn_norm.weight": "model-00030-of-00032.safetensors",
"model.llm.layers.39.attn_sconv.weight": "model-00018-of-00032.safetensors",
"model.llm.layers.39.mlp.experts.w13_weight": "model-00005-of-00032.safetensors",
"model.llm.layers.39.mlp.experts.w2_weight": "model-00011-of-00032.safetensors",
"model.llm.layers.39.mlp.gate.bias": "model-00029-of-00032.safetensors",
"model.llm.layers.39.mlp.gate.global_scale": "model-00023-of-00032.safetensors",
"model.llm.layers.39.mlp.gate.weight": "model-00024-of-00032.safetensors",
"model.llm.layers.39.mlp.shared_experts.shared_w13_weight": "model-00008-of-00032.safetensors",
"model.llm.layers.39.mlp.shared_experts.shared_w2_weight": "model-00026-of-00032.safetensors",
"model.llm.layers.39.mlp_norm.weight": "model-00014-of-00032.safetensors",
"model.llm.layers.39.mlp_sconv.weight": "model-00010-of-00032.safetensors",
"model.llm.layers.4.attn.k_norm.weight": "model-00029-of-00032.safetensors",
"model.llm.layers.4.attn.k_sconv.weight": "model-00031-of-00032.safetensors",
"model.llm.layers.4.attn.q_norm.weight": "model-00006-of-00032.safetensors",
"model.llm.layers.4.attn.rel_logits_proj.proj": "model-00026-of-00032.safetensors",
"model.llm.layers.4.attn.v_sconv.weight": "model-00013-of-00032.safetensors",
"model.llm.layers.4.attn.wk_dv.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.4.attn.wo_ud.weight": "model-00003-of-00032.safetensors",
"model.llm.layers.4.attn.wq_du.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.4.attn.wr_du.weight": "model-00017-of-00032.safetensors",
"model.llm.layers.4.attn.wv_dv.weight": "model-00017-of-00032.safetensors",
"model.llm.layers.4.attn_norm.weight": "model-00030-of-00032.safetensors",
"model.llm.layers.4.attn_sconv.weight": "model-00003-of-00032.safetensors",
"model.llm.layers.4.mlp.experts.w13_weight": "model-00009-of-00032.safetensors",
"model.llm.layers.4.mlp.experts.w2_weight": "model-00005-of-00032.safetensors",
"model.llm.layers.4.mlp.gate.bias": "model-00009-of-00032.safetensors",
"model.llm.layers.4.mlp.gate.global_scale": "model-00026-of-00032.safetensors",
"model.llm.layers.4.mlp.gate.weight": "model-00008-of-00032.safetensors",
"model.llm.layers.4.mlp.shared_experts.shared_w13_weight": "model-00011-of-00032.safetensors",
"model.llm.layers.4.mlp.shared_experts.shared_w2_weight": "model-00006-of-00032.safetensors",
"model.llm.layers.4.mlp_norm.weight": "model-00020-of-00032.safetensors",
"model.llm.layers.4.mlp_sconv.weight": "model-00007-of-00032.safetensors",
"model.llm.layers.40.attn.k_norm.weight": "model-00011-of-00032.safetensors",
"model.llm.layers.40.attn.k_sconv.weight": "model-00006-of-00032.safetensors",
"model.llm.layers.40.attn.q_norm.weight": "model-00018-of-00032.safetensors",
"model.llm.layers.40.attn.rel_logits_proj.proj": "model-00021-of-00032.safetensors",
"model.llm.layers.40.attn.v_sconv.weight": "model-00018-of-00032.safetensors",
"model.llm.layers.40.attn.wk_dv.weight": "model-00018-of-00032.safetensors",
"model.llm.layers.40.attn.wo_ud.weight": "model-00012-of-00032.safetensors",
"model.llm.layers.40.attn.wq_du.weight": "model-00006-of-00032.safetensors",
"model.llm.layers.40.attn.wr_du.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.40.attn.wv_dv.weight": "model-00014-of-00032.safetensors",
"model.llm.layers.40.attn_norm.weight": "model-00029-of-00032.safetensors",
"model.llm.layers.40.attn_sconv.weight": "model-00014-of-00032.safetensors",
"model.llm.layers.40.mlp.experts.w13_weight": "model-00031-of-00032.safetensors",
"model.llm.layers.40.mlp.experts.w2_weight": "model-00013-of-00032.safetensors",
"model.llm.layers.40.mlp.gate.bias": "model-00014-of-00032.safetensors",
"model.llm.layers.40.mlp.gate.global_scale": "model-00005-of-00032.safetensors",
"model.llm.layers.40.mlp.gate.weight": "model-00006-of-00032.safetensors",
"model.llm.layers.40.mlp.shared_experts.shared_w13_weight": "model-00013-of-00032.safetensors",
"model.llm.layers.40.mlp.shared_experts.shared_w2_weight": "model-00032-of-00032.safetensors",
"model.llm.layers.40.mlp_norm.weight": "model-00010-of-00032.safetensors",
"model.llm.layers.40.mlp_sconv.weight": "model-00010-of-00032.safetensors",
"model.llm.layers.41.attn.k_norm.weight": "model-00005-of-00032.safetensors",
"model.llm.layers.41.attn.k_sconv.weight": "model-00017-of-00032.safetensors",
"model.llm.layers.41.attn.q_norm.weight": "model-00023-of-00032.safetensors",
"model.llm.layers.41.attn.rel_logits_proj.proj": "model-00009-of-00032.safetensors",
"model.llm.layers.41.attn.v_sconv.weight": "model-00011-of-00032.safetensors",
"model.llm.layers.41.attn.wk_dv.weight": "model-00020-of-00032.safetensors",
"model.llm.layers.41.attn.wo_ud.weight": "model-00025-of-00032.safetensors",
"model.llm.layers.41.attn.wq_du.weight": "model-00032-of-00032.safetensors",
"model.llm.layers.41.attn.wr_du.weight": "model-00010-of-00032.safetensors",
"model.llm.layers.41.attn.wv_dv.weight": "model-00010-of-00032.safetensors",
"model.llm.layers.41.attn_norm.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.41.attn_sconv.weight": "model-00026-of-00032.safetensors",
"model.llm.layers.41.mlp.experts.w13_weight": "model-00028-of-00032.safetensors",
"model.llm.layers.41.mlp.experts.w2_weight": "model-00009-of-00032.safetensors",
"model.llm.layers.41.mlp.gate.bias": "model-00023-of-00032.safetensors",
"model.llm.layers.41.mlp.gate.global_scale": "model-00018-of-00032.safetensors",
"model.llm.layers.41.mlp.gate.weight": "model-00009-of-00032.safetensors",
"model.llm.layers.41.mlp.shared_experts.shared_w13_weight": "model-00010-of-00032.safetensors",
"model.llm.layers.41.mlp.shared_experts.shared_w2_weight": "model-00021-of-00032.safetensors",
"model.llm.layers.41.mlp_norm.weight": "model-00018-of-00032.safetensors",
"model.llm.layers.41.mlp_sconv.weight": "model-00032-of-00032.safetensors",
"model.llm.layers.5.attn.k_norm.weight": "model-00020-of-00032.safetensors",
"model.llm.layers.5.attn.k_sconv.weight": "model-00009-of-00032.safetensors",
"model.llm.layers.5.attn.q_norm.weight": "model-00026-of-00032.safetensors",
"model.llm.layers.5.attn.rel_logits_proj.proj": "model-00025-of-00032.safetensors",
"model.llm.layers.5.attn.v_sconv.weight": "model-00014-of-00032.safetensors",
"model.llm.layers.5.attn.wk_dv.weight": "model-00021-of-00032.safetensors",
"model.llm.layers.5.attn.wo_ud.weight": "model-00002-of-00032.safetensors",
"model.llm.layers.5.attn.wq_du.weight": "model-00032-of-00032.safetensors",
"model.llm.layers.5.attn.wr_du.weight": "model-00006-of-00032.safetensors",
"model.llm.layers.5.attn.wv_dv.weight": "model-00018-of-00032.safetensors",
"model.llm.layers.5.attn_norm.weight": "model-00003-of-00032.safetensors",
"model.llm.layers.5.attn_sconv.weight": "model-00016-of-00032.safetensors",
"model.llm.layers.5.mlp.experts.w13_weight": "model-00026-of-00032.safetensors",
"model.llm.layers.5.mlp.experts.w2_weight": "model-00021-of-00032.safetensors",
"model.llm.layers.5.mlp.gate.bias": "model-00026-of-00032.safetensors",
"model.llm.layers.5.mlp.gate.global_scale": "model-00022-of-00032.safetensors",
"model.llm.layers.5.mlp.gate.weight": "model-00009-of-00032.safetensors",
"model.llm.layers.5.mlp.shared_experts.shared_w13_weight": "model-00022-of-00032.safetensors",
"model.llm.layers.5.mlp.shared_experts.shared_w2_weight": "model-00022-of-00032.safetensors",
"model.llm.layers.5.mlp_norm.weight": "model-00009-of-00032.safetensors",
"model.llm.layers.5.mlp_sconv.weight": "model-00023-of-00032.safetensors",
"model.llm.layers.6.attn.k_norm.weight": "model-00006-of-00032.safetensors",
"model.llm.layers.6.attn.k_sconv.weight": "model-00029-of-00032.safetensors",
"model.llm.layers.6.attn.q_norm.weight": "model-00013-of-00032.safetensors",
"model.llm.layers.6.attn.rel_logits_proj.proj": "model-00025-of-00032.safetensors",
"model.llm.layers.6.attn.v_sconv.weight": "model-00017-of-00032.safetensors",
"model.llm.layers.6.attn.wk_dv.weight": "model-00021-of-00032.safetensors",
"model.llm.layers.6.attn.wo_ud.weight": "model-00007-of-00032.safetensors",
"model.llm.layers.6.attn.wq_du.weight": "model-00021-of-00032.safetensors",
"model.llm.layers.6.attn.wr_du.weight": "model-00008-of-00032.safetensors",
"model.llm.layers.6.attn.wv_dv.weight": "model-00021-of-00032.safetensors",
"model.llm.layers.6.attn_norm.weight": "model-00029-of-00032.safetensors",
"model.llm.layers.6.attn_sconv.weight": "model-00013-of-00032.safetensors",
"model.llm.layers.6.mlp.experts.w13_weight": "model-00004-of-00032.safetensors",
"model.llm.layers.6.mlp.experts.w2_weight": "model-00011-of-00032.safetensors",
"model.llm.layers.6.mlp.gate.bias": "model-00018-of-00032.safetensors",
"model.llm.layers.6.mlp.gate.global_scale": "model-00013-of-00032.safetensors",
"model.llm.layers.6.mlp.gate.weight": "model-00023-of-00032.safetensors",
"model.llm.layers.6.mlp.shared_experts.shared_w13_weight": "model-00014-of-00032.safetensors",
"model.llm.layers.6.mlp.shared_experts.shared_w2_weight": "model-00028-of-00032.safetensors",
"model.llm.layers.6.mlp_norm.weight": "model-00006-of-00032.safetensors",
"model.llm.layers.6.mlp_sconv.weight": "model-00008-of-00032.safetensors",
"model.llm.layers.7.attn.k_norm.weight": "model-00006-of-00032.safetensors",
"model.llm.layers.7.attn.k_sconv.weight": "model-00026-of-00032.safetensors",
"model.llm.layers.7.attn.q_norm.weight": "model-00012-of-00032.safetensors",
"model.llm.layers.7.attn.rel_logits_proj.proj": "model-00009-of-00032.safetensors",
"model.llm.layers.7.attn.v_sconv.weight": "model-00011-of-00032.safetensors",
"model.llm.layers.7.attn.wk_dv.weight": "model-00023-of-00032.safetensors",
"model.llm.layers.7.attn.wo_ud.weight": "model-00018-of-00032.safetensors",
"model.llm.layers.7.attn.wq_du.weight": "model-00032-of-00032.safetensors",
"model.llm.layers.7.attn.wr_du.weight": "model-00009-of-00032.safetensors",
"model.llm.layers.7.attn.wv_dv.weight": "model-00017-of-00032.safetensors",
"model.llm.layers.7.attn_norm.weight": "model-00032-of-00032.safetensors",
"model.llm.layers.7.attn_sconv.weight": "model-00015-of-00032.safetensors",
"model.llm.layers.7.mlp.experts.w13_weight": "model-00029-of-00032.safetensors",
"model.llm.layers.7.mlp.experts.w2_weight": "model-00022-of-00032.safetensors",
"model.llm.layers.7.mlp.gate.bias": "model-00021-of-00032.safetensors",
"model.llm.layers.7.mlp.gate.global_scale": "model-00001-of-00032.safetensors",
"model.llm.layers.7.mlp.gate.weight": "model-00024-of-00032.safetensors",
"model.llm.layers.7.mlp.shared_experts.shared_w13_weight": "model-00020-of-00032.safetensors",
"model.llm.layers.7.mlp.shared_experts.shared_w2_weight": "model-00023-of-00032.safetensors",
"model.llm.layers.7.mlp_norm.weight": "model-00020-of-00032.safetensors",
"model.llm.layers.7.mlp_sconv.weight": "model-00023-of-00032.safetensors",
"model.llm.layers.8.attn.k_norm.weight": "model-00011-of-00032.safetensors",
"model.llm.layers.8.attn.k_sconv.weight": "model-00009-of-00032.safetensors",
"model.llm.layers.8.attn.q_norm.weight": "model-00028-of-00032.safetensors",
"model.llm.layers.8.attn.rel_logits_proj.proj": "model-00011-of-00032.safetensors",
"model.llm.layers.8.attn.v_sconv.weight": "model-00032-of-00032.safetensors",
"model.llm.layers.8.attn.wk_dv.weight": "model-00010-of-00032.safetensors",
"model.llm.layers.8.attn.wo_ud.weight": "model-00028-of-00032.safetensors",
"model.llm.layers.8.attn.wq_du.weight": "model-00012-of-00032.safetensors",
"model.llm.layers.8.attn.wr_du.weight": "model-00008-of-00032.safetensors",
"model.llm.layers.8.attn.wv_dv.weight": "model-00006-of-00032.safetensors",
"model.llm.layers.8.attn_norm.weight": "model-00020-of-00032.safetensors",
"model.llm.layers.8.attn_sconv.weight": "model-00022-of-00032.safetensors",
"model.llm.layers.8.mlp.experts.w13_weight": "model-00004-of-00032.safetensors",
"model.llm.layers.8.mlp.experts.w2_weight": "model-00007-of-00032.safetensors",
"model.llm.layers.8.mlp.gate.bias": "model-00021-of-00032.safetensors",
"model.llm.layers.8.mlp.gate.global_scale": "model-00017-of-00032.safetensors",
"model.llm.layers.8.mlp.gate.weight": "model-00018-of-00032.safetensors",
"model.llm.layers.8.mlp.shared_experts.shared_w13_weight": "model-00023-of-00032.safetensors",
"model.llm.layers.8.mlp.shared_experts.shared_w2_weight": "model-00026-of-00032.safetensors",
"model.llm.layers.8.mlp_norm.weight": "model-00014-of-00032.safetensors",
"model.llm.layers.8.mlp_sconv.weight": "model-00024-of-00032.safetensors",
"model.llm.layers.9.attn.k_norm.weight": "model-00018-of-00032.safetensors",
"model.llm.layers.9.attn.k_sconv.weight": "model-00021-of-00032.safetensors",
"model.llm.layers.9.attn.q_norm.weight": "model-00014-of-00032.safetensors",
"model.llm.layers.9.attn.rel_logits_proj.proj": "model-00009-of-00032.safetensors",
"model.llm.layers.9.attn.v_sconv.weight": "model-00006-of-00032.safetensors",
"model.llm.layers.9.attn.wk_dv.weight": "model-00028-of-00032.safetensors",
"model.llm.layers.9.attn.wo_ud.weight": "model-00025-of-00032.safetensors",
"model.llm.layers.9.attn.wq_du.weight": "model-00021-of-00032.safetensors",
"model.llm.layers.9.attn.wr_du.weight": "model-00008-of-00032.safetensors",
"model.llm.layers.9.attn.wv_dv.weight": "model-00025-of-00032.safetensors",
"model.llm.layers.9.attn_norm.weight": "model-00013-of-00032.safetensors",
"model.llm.layers.9.attn_sconv.weight": "model-00030-of-00032.safetensors",
"model.llm.layers.9.mlp.experts.w13_weight": "model-00023-of-00032.safetensors",
"model.llm.layers.9.mlp.experts.w2_weight": "model-00018-of-00032.safetensors",
"model.llm.layers.9.mlp.gate.bias": "model-00012-of-00032.safetensors",
"model.llm.layers.9.mlp.gate.global_scale": "model-00006-of-00032.safetensors",
"model.llm.layers.9.mlp.gate.weight": "model-00006-of-00032.safetensors",
"model.llm.layers.9.mlp.shared_experts.shared_w13_weight": "model-00018-of-00032.safetensors",
"model.llm.layers.9.mlp.shared_experts.shared_w2_weight": "model-00017-of-00032.safetensors",
"model.llm.layers.9.mlp_norm.weight": "model-00018-of-00032.safetensors",
"model.llm.layers.9.mlp_sconv.weight": "model-00022-of-00032.safetensors",
"model.llm.norm.weight": "model-00025-of-00032.safetensors",
"model.llm.unembed.weight": "model-00019-of-00032.safetensors",
"model.mtp.layers.0.embed_norm.weight": "mtp.safetensors",
"model.mtp.layers.0.hidden_norm.weight": "mtp.safetensors",
"model.mtp.layers.0.input_proj.weight": "mtp.safetensors",
"model.mtp.layers.0.transformer_block.attn.k_norm.weight": "mtp.safetensors",
"model.mtp.layers.0.transformer_block.attn.k_sconv.weight": "mtp.safetensors",
"model.mtp.layers.0.transformer_block.attn.q_norm.weight": "mtp.safetensors",
"model.mtp.layers.0.transformer_block.attn.rel_logits_proj.proj": "mtp.safetensors",
"model.mtp.layers.0.transformer_block.attn.v_sconv.weight": "mtp.safetensors",
"model.mtp.layers.0.transformer_block.attn.wk_dv.weight": "mtp.safetensors",
"model.mtp.layers.0.transformer_block.attn.wo_ud.weight": "mtp.safetensors",
"model.mtp.layers.0.transformer_block.attn.wq_du.weight": "mtp.safetensors",
"model.mtp.layers.0.transformer_block.attn.wr_du.weight": "mtp.safetensors",
"model.mtp.layers.0.transformer_block.attn.wv_dv.weight": "mtp.safetensors",
"model.mtp.layers.0.transformer_block.attn_norm.weight": "mtp.safetensors",
"model.mtp.layers.0.transformer_block.attn_sconv.weight": "mtp.safetensors",
"model.mtp.layers.0.transformer_block.mlp.global_scale": "mtp.safetensors",
"model.mtp.layers.0.transformer_block.mlp.w13_dn.weight": "mtp.safetensors",
"model.mtp.layers.0.transformer_block.mlp.w2_md.weight": "mtp.safetensors",
"model.mtp.layers.0.transformer_block.mlp_norm.weight": "mtp.safetensors",
"model.mtp.layers.0.transformer_block.mlp_sconv.weight": "mtp.safetensors",
"model.mtp.layers.1.embed_norm.weight": "mtp.safetensors",
"model.mtp.layers.1.hidden_norm.weight": "mtp.safetensors",
"model.mtp.layers.1.input_proj.weight": "mtp.safetensors",
"model.mtp.layers.1.transformer_block.attn.k_norm.weight": "mtp.safetensors",
"model.mtp.layers.1.transformer_block.attn.k_sconv.weight": "mtp.safetensors",
"model.mtp.layers.1.transformer_block.attn.q_norm.weight": "mtp.safetensors",
"model.mtp.layers.1.transformer_block.attn.rel_logits_proj.proj": "mtp.safetensors",
"model.mtp.layers.1.transformer_block.attn.v_sconv.weight": "mtp.safetensors",
"model.mtp.layers.1.transformer_block.attn.wk_dv.weight": "mtp.safetensors",
"model.mtp.layers.1.transformer_block.attn.wo_ud.weight": "mtp.safetensors",
"model.mtp.layers.1.transformer_block.attn.wq_du.weight": "mtp.safetensors",
"model.mtp.layers.1.transformer_block.attn.wr_du.weight": "mtp.safetensors",
"model.mtp.layers.1.transformer_block.attn.wv_dv.weight": "mtp.safetensors",
"model.mtp.layers.1.transformer_block.attn_norm.weight": "mtp.safetensors",
"model.mtp.layers.1.transformer_block.attn_sconv.weight": "mtp.safetensors",
"model.mtp.layers.1.transformer_block.mlp.global_scale": "mtp.safetensors",
"model.mtp.layers.1.transformer_block.mlp.w13_dn.weight": "mtp.safetensors",
"model.mtp.layers.1.transformer_block.mlp.w2_md.weight": "mtp.safetensors",
"model.mtp.layers.1.transformer_block.mlp_norm.weight": "mtp.safetensors",
"model.mtp.layers.1.transformer_block.mlp_sconv.weight": "mtp.safetensors",
"model.mtp.layers.2.embed_norm.weight": "mtp.safetensors",
"model.mtp.layers.2.hidden_norm.weight": "mtp.safetensors",
"model.mtp.layers.2.input_proj.weight": "mtp.safetensors",
"model.mtp.layers.2.transformer_block.attn.k_norm.weight": "mtp.safetensors",
"model.mtp.layers.2.transformer_block.attn.k_sconv.weight": "mtp.safetensors",
"model.mtp.layers.2.transformer_block.attn.q_norm.weight": "mtp.safetensors",
"model.mtp.layers.2.transformer_block.attn.rel_logits_proj.proj": "mtp.safetensors",
"model.mtp.layers.2.transformer_block.attn.v_sconv.weight": "mtp.safetensors",
"model.mtp.layers.2.transformer_block.attn.wk_dv.weight": "mtp.safetensors",
"model.mtp.layers.2.transformer_block.attn.wo_ud.weight": "mtp.safetensors",
"model.mtp.layers.2.transformer_block.attn.wq_du.weight": "mtp.safetensors",
"model.mtp.layers.2.transformer_block.attn.wr_du.weight": "mtp.safetensors",
"model.mtp.layers.2.transformer_block.attn.wv_dv.weight": "mtp.safetensors",
"model.mtp.layers.2.transformer_block.attn_norm.weight": "mtp.safetensors",
"model.mtp.layers.2.transformer_block.attn_sconv.weight": "mtp.safetensors",
"model.mtp.layers.2.transformer_block.mlp.global_scale": "mtp.safetensors",
"model.mtp.layers.2.transformer_block.mlp.w13_dn.weight": "mtp.safetensors",
"model.mtp.layers.2.transformer_block.mlp.w2_md.weight": "mtp.safetensors",
"model.mtp.layers.2.transformer_block.mlp_norm.weight": "mtp.safetensors",
"model.mtp.layers.2.transformer_block.mlp_sconv.weight": "mtp.safetensors",
"model.mtp.layers.3.embed_norm.weight": "mtp.safetensors",
"model.mtp.layers.3.hidden_norm.weight": "mtp.safetensors",
"model.mtp.layers.3.input_proj.weight": "mtp.safetensors",
"model.mtp.layers.3.transformer_block.attn.k_norm.weight": "mtp.safetensors",
"model.mtp.layers.3.transformer_block.attn.k_sconv.weight": "mtp.safetensors",
"model.mtp.layers.3.transformer_block.attn.q_norm.weight": "mtp.safetensors",
"model.mtp.layers.3.transformer_block.attn.rel_logits_proj.proj": "mtp.safetensors",
"model.mtp.layers.3.transformer_block.attn.v_sconv.weight": "mtp.safetensors",
"model.mtp.layers.3.transformer_block.attn.wk_dv.weight": "mtp.safetensors",
"model.mtp.layers.3.transformer_block.attn.wo_ud.weight": "mtp.safetensors",
"model.mtp.layers.3.transformer_block.attn.wq_du.weight": "mtp.safetensors",
"model.mtp.layers.3.transformer_block.attn.wr_du.weight": "mtp.safetensors",
"model.mtp.layers.3.transformer_block.attn.wv_dv.weight": "mtp.safetensors",
"model.mtp.layers.3.transformer_block.attn_norm.weight": "mtp.safetensors",
"model.mtp.layers.3.transformer_block.attn_sconv.weight": "mtp.safetensors",
"model.mtp.layers.3.transformer_block.mlp.global_scale": "mtp.safetensors",
"model.mtp.layers.3.transformer_block.mlp.w13_dn.weight": "mtp.safetensors",
"model.mtp.layers.3.transformer_block.mlp.w2_md.weight": "mtp.safetensors",
"model.mtp.layers.3.transformer_block.mlp_norm.weight": "mtp.safetensors",
"model.mtp.layers.3.transformer_block.mlp_sconv.weight": "mtp.safetensors",
"model.mtp.layers.4.embed_norm.weight": "mtp.safetensors",
"model.mtp.layers.4.hidden_norm.weight": "mtp.safetensors",
"model.mtp.layers.4.input_proj.weight": "mtp.safetensors",
"model.mtp.layers.4.transformer_block.attn.k_norm.weight": "mtp.safetensors",
"model.mtp.layers.4.transformer_block.attn.k_sconv.weight": "mtp.safetensors",
"model.mtp.layers.4.transformer_block.attn.q_norm.weight": "mtp.safetensors",
"model.mtp.layers.4.transformer_block.attn.rel_logits_proj.proj": "mtp.safetensors",
"model.mtp.layers.4.transformer_block.attn.v_sconv.weight": "mtp.safetensors",
"model.mtp.layers.4.transformer_block.attn.wk_dv.weight": "mtp.safetensors",
"model.mtp.layers.4.transformer_block.attn.wo_ud.weight": "mtp.safetensors",
"model.mtp.layers.4.transformer_block.attn.wq_du.weight": "mtp.safetensors",
"model.mtp.layers.4.transformer_block.attn.wr_du.weight": "mtp.safetensors",
"model.mtp.layers.4.transformer_block.attn.wv_dv.weight": "mtp.safetensors",
"model.mtp.layers.4.transformer_block.attn_norm.weight": "mtp.safetensors",
"model.mtp.layers.4.transformer_block.attn_sconv.weight": "mtp.safetensors",
"model.mtp.layers.4.transformer_block.mlp.global_scale": "mtp.safetensors",
"model.mtp.layers.4.transformer_block.mlp.w13_dn.weight": "mtp.safetensors",
"model.mtp.layers.4.transformer_block.mlp.w2_md.weight": "mtp.safetensors",
"model.mtp.layers.4.transformer_block.mlp_norm.weight": "mtp.safetensors",
"model.mtp.layers.4.transformer_block.mlp_sconv.weight": "mtp.safetensors",
"model.mtp.layers.5.embed_norm.weight": "mtp.safetensors",
"model.mtp.layers.5.hidden_norm.weight": "mtp.safetensors",
"model.mtp.layers.5.input_proj.weight": "mtp.safetensors",
"model.mtp.layers.5.transformer_block.attn.k_norm.weight": "mtp.safetensors",
"model.mtp.layers.5.transformer_block.attn.k_sconv.weight": "mtp.safetensors",
"model.mtp.layers.5.transformer_block.attn.q_norm.weight": "mtp.safetensors",
"model.mtp.layers.5.transformer_block.attn.rel_logits_proj.proj": "mtp.safetensors",
"model.mtp.layers.5.transformer_block.attn.v_sconv.weight": "mtp.safetensors",
"model.mtp.layers.5.transformer_block.attn.wk_dv.weight": "mtp.safetensors",
"model.mtp.layers.5.transformer_block.attn.wo_ud.weight": "mtp.safetensors",
"model.mtp.layers.5.transformer_block.attn.wq_du.weight": "mtp.safetensors",
"model.mtp.layers.5.transformer_block.attn.wr_du.weight": "mtp.safetensors",
"model.mtp.layers.5.transformer_block.attn.wv_dv.weight": "mtp.safetensors",
"model.mtp.layers.5.transformer_block.attn_norm.weight": "mtp.safetensors",
"model.mtp.layers.5.transformer_block.attn_sconv.weight": "mtp.safetensors",
"model.mtp.layers.5.transformer_block.mlp.global_scale": "mtp.safetensors",
"model.mtp.layers.5.transformer_block.mlp.w13_dn.weight": "mtp.safetensors",
"model.mtp.layers.5.transformer_block.mlp.w2_md.weight": "mtp.safetensors",
"model.mtp.layers.5.transformer_block.mlp_norm.weight": "mtp.safetensors",
"model.mtp.layers.5.transformer_block.mlp_sconv.weight": "mtp.safetensors",
"model.mtp.layers.6.embed_norm.weight": "mtp.safetensors",
"model.mtp.layers.6.hidden_norm.weight": "mtp.safetensors",
"model.mtp.layers.6.input_proj.weight": "mtp.safetensors",
"model.mtp.layers.6.transformer_block.attn.k_norm.weight": "mtp.safetensors",
"model.mtp.layers.6.transformer_block.attn.k_sconv.weight": "mtp.safetensors",
"model.mtp.layers.6.transformer_block.attn.q_norm.weight": "mtp.safetensors",
"model.mtp.layers.6.transformer_block.attn.rel_logits_proj.proj": "mtp.safetensors",
"model.mtp.layers.6.transformer_block.attn.v_sconv.weight": "mtp.safetensors",
"model.mtp.layers.6.transformer_block.attn.wk_dv.weight": "mtp.safetensors",
"model.mtp.layers.6.transformer_block.attn.wo_ud.weight": "mtp.safetensors",
"model.mtp.layers.6.transformer_block.attn.wq_du.weight": "mtp.safetensors",
"model.mtp.layers.6.transformer_block.attn.wr_du.weight": "mtp.safetensors",
"model.mtp.layers.6.transformer_block.attn.wv_dv.weight": "mtp.safetensors",
"model.mtp.layers.6.transformer_block.attn_norm.weight": "mtp.safetensors",
"model.mtp.layers.6.transformer_block.attn_sconv.weight": "mtp.safetensors",
"model.mtp.layers.6.transformer_block.mlp.global_scale": "mtp.safetensors",
"model.mtp.layers.6.transformer_block.mlp.w13_dn.weight": "mtp.safetensors",
"model.mtp.layers.6.transformer_block.mlp.w2_md.weight": "mtp.safetensors",
"model.mtp.layers.6.transformer_block.mlp_norm.weight": "mtp.safetensors",
"model.mtp.layers.6.transformer_block.mlp_sconv.weight": "mtp.safetensors",
"model.mtp.layers.7.embed_norm.weight": "mtp.safetensors",
"model.mtp.layers.7.hidden_norm.weight": "mtp.safetensors",
"model.mtp.layers.7.input_proj.weight": "mtp.safetensors",
"model.mtp.layers.7.transformer_block.attn.k_norm.weight": "mtp.safetensors",
"model.mtp.layers.7.transformer_block.attn.k_sconv.weight": "mtp.safetensors",
"model.mtp.layers.7.transformer_block.attn.q_norm.weight": "mtp.safetensors",
"model.mtp.layers.7.transformer_block.attn.rel_logits_proj.proj": "mtp.safetensors",
"model.mtp.layers.7.transformer_block.attn.v_sconv.weight": "mtp.safetensors",
"model.mtp.layers.7.transformer_block.attn.wk_dv.weight": "mtp.safetensors",
"model.mtp.layers.7.transformer_block.attn.wo_ud.weight": "mtp.safetensors",
"model.mtp.layers.7.transformer_block.attn.wq_du.weight": "mtp.safetensors",
"model.mtp.layers.7.transformer_block.attn.wr_du.weight": "mtp.safetensors",
"model.mtp.layers.7.transformer_block.attn.wv_dv.weight": "mtp.safetensors",
"model.mtp.layers.7.transformer_block.attn_norm.weight": "mtp.safetensors",
"model.mtp.layers.7.transformer_block.attn_sconv.weight": "mtp.safetensors",
"model.mtp.layers.7.transformer_block.mlp.global_scale": "mtp.safetensors",
"model.mtp.layers.7.transformer_block.mlp.w13_dn.weight": "mtp.safetensors",
"model.mtp.layers.7.transformer_block.mlp.w2_md.weight": "mtp.safetensors",
"model.mtp.layers.7.transformer_block.mlp_norm.weight": "mtp.safetensors",
"model.mtp.layers.7.transformer_block.mlp_sconv.weight": "mtp.safetensors",
"model.visual.final_norm.weight": "model-00024-of-00032.safetensors",
"model.visual.layers.linear_0.weight": "model-00010-of-00032.safetensors",
"model.visual.layers.linear_1.weight": "model-00018-of-00032.safetensors",
"model.visual.layers.linear_2.weight": "model-00009-of-00032.safetensors",
"model.visual.layers.linear_3.weight": "model-00018-of-00032.safetensors",
"model.visual.layers.norm_0.weight": "model-00011-of-00032.safetensors",
"model.visual.layers.norm_1.weight": "model-00018-of-00032.safetensors",
"model.visual.layers.norm_2.weight": "model-00026-of-00032.safetensors"
}
}
|