Image-Text-to-Text
Transformers
Safetensors
qwen3_5_moe
openmle
frontis-ma1
machine-learning-engineering
autoresearch
agent
coding
qwen3
qwen3.6
Mixture of Experts
multimodal
post-training
conversational
Instructions to use FrontisAI/Frontis-MA1-35B with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use FrontisAI/Frontis-MA1-35B with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("image-text-to-text", model="FrontisAI/Frontis-MA1-35B") 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("FrontisAI/Frontis-MA1-35B") model = AutoModelForMultimodalLM.from_pretrained("FrontisAI/Frontis-MA1-35B", 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]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use FrontisAI/Frontis-MA1-35B with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "FrontisAI/Frontis-MA1-35B" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "FrontisAI/Frontis-MA1-35B", "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/FrontisAI/Frontis-MA1-35B
- SGLang
How to use FrontisAI/Frontis-MA1-35B 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 "FrontisAI/Frontis-MA1-35B" \ --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": "FrontisAI/Frontis-MA1-35B", "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 "FrontisAI/Frontis-MA1-35B" \ --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": "FrontisAI/Frontis-MA1-35B", "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 FrontisAI/Frontis-MA1-35B with Docker Model Runner:
docker model run hf.co/FrontisAI/Frontis-MA1-35B
Add files using upload-large-folder tool
Browse files- .gitattributes +4 -0
- LICENSE +20 -0
- LICENSE-UPSTREAM-APACHE-2.0 +202 -0
- NOTICE +8 -0
- README.md +284 -0
- assets/paper-figure-main-results.png +3 -0
- assets/paper-figure-openmle-framework.png +3 -0
- chat_template.jinja +154 -0
- config.json +119 -0
- configuration.json +1 -0
- generation_config.json +12 -0
- merges.txt +0 -0
- model-00003-of-00015.safetensors +3 -0
- model-00004-of-00015.safetensors +3 -0
- model.safetensors.index.json +1052 -0
- preprocessor_config.json +21 -0
- tokenizer.json +3 -0
- tokenizer_config.json +305 -0
- video_preprocessor_config.json +21 -0
- vocab.json +0 -0
.gitattributes
CHANGED
|
@@ -5,6 +5,7 @@
|
|
| 5 |
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
| 6 |
*.ftz filter=lfs diff=lfs merge=lfs -text
|
| 7 |
*.gz filter=lfs diff=lfs merge=lfs -text
|
|
|
|
| 8 |
*.h5 filter=lfs diff=lfs merge=lfs -text
|
| 9 |
*.joblib filter=lfs diff=lfs merge=lfs -text
|
| 10 |
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
|
@@ -33,3 +34,6 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
|
|
|
|
|
|
| 5 |
*.ckpt filter=lfs diff=lfs merge=lfs -text
|
| 6 |
*.ftz filter=lfs diff=lfs merge=lfs -text
|
| 7 |
*.gz filter=lfs diff=lfs merge=lfs -text
|
| 8 |
+
*.gguf filter=lfs diff=lfs merge=lfs -text
|
| 9 |
*.h5 filter=lfs diff=lfs merge=lfs -text
|
| 10 |
*.joblib filter=lfs diff=lfs merge=lfs -text
|
| 11 |
*.lfs.* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
| 34 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 36 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
assets/paper-figure-openmle-framework.png filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
assets/paper-figure-main-results.png filter=lfs diff=lfs merge=lfs -text
|
LICENSE
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Creative Commons Attribution-NonCommercial 4.0 International
|
| 2 |
+
CC BY-NC 4.0
|
| 3 |
+
|
| 4 |
+
Copyright (c) 2026 Frontis AI and the OpenMLE contributors.
|
| 5 |
+
|
| 6 |
+
Except for third-party material identified in NOTICE, the Frontis-MA1 model weights, configuration changes, and documentation distributed in this repository are licensed under the Creative Commons Attribution-NonCommercial 4.0 International Public License.
|
| 7 |
+
|
| 8 |
+
You may share and adapt the licensed material provided that you:
|
| 9 |
+
|
| 10 |
+
1. give appropriate credit, provide a link to the license, and indicate if changes were made; and
|
| 11 |
+
2. do not use the licensed material for commercial purposes.
|
| 12 |
+
|
| 13 |
+
The canonical license and full legal code are available at:
|
| 14 |
+
|
| 15 |
+
https://creativecommons.org/licenses/by-nc/4.0/
|
| 16 |
+
https://creativecommons.org/licenses/by-nc/4.0/legalcode
|
| 17 |
+
|
| 18 |
+
SPDX-License-Identifier: CC-BY-NC-4.0
|
| 19 |
+
|
| 20 |
+
This notice is a convenient repository-level pointer. If it conflicts with the full legal code, the full legal code controls. Upstream material remains subject to the terms and notices identified in NOTICE and LICENSE-UPSTREAM-APACHE-2.0.
|
LICENSE-UPSTREAM-APACHE-2.0
ADDED
|
@@ -0,0 +1,202 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
|
| 2 |
+
Apache License
|
| 3 |
+
Version 2.0, January 2004
|
| 4 |
+
http://www.apache.org/licenses/
|
| 5 |
+
|
| 6 |
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
| 7 |
+
|
| 8 |
+
1. Definitions.
|
| 9 |
+
|
| 10 |
+
"License" shall mean the terms and conditions for use, reproduction,
|
| 11 |
+
and distribution as defined by Sections 1 through 9 of this document.
|
| 12 |
+
|
| 13 |
+
"Licensor" shall mean the copyright owner or entity authorized by
|
| 14 |
+
the copyright owner that is granting the License.
|
| 15 |
+
|
| 16 |
+
"Legal Entity" shall mean the union of the acting entity and all
|
| 17 |
+
other entities that control, are controlled by, or are under common
|
| 18 |
+
control with that entity. For the purposes of this definition,
|
| 19 |
+
"control" means (i) the power, direct or indirect, to cause the
|
| 20 |
+
direction or management of such entity, whether by contract or
|
| 21 |
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
| 22 |
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
| 23 |
+
|
| 24 |
+
"You" (or "Your") shall mean an individual or Legal Entity
|
| 25 |
+
exercising permissions granted by this License.
|
| 26 |
+
|
| 27 |
+
"Source" form shall mean the preferred form for making modifications,
|
| 28 |
+
including but not limited to software source code, documentation
|
| 29 |
+
source, and configuration files.
|
| 30 |
+
|
| 31 |
+
"Object" form shall mean any form resulting from mechanical
|
| 32 |
+
transformation or translation of a Source form, including but
|
| 33 |
+
not limited to compiled object code, generated documentation,
|
| 34 |
+
and conversions to other media types.
|
| 35 |
+
|
| 36 |
+
"Work" shall mean the work of authorship, whether in Source or
|
| 37 |
+
Object form, made available under the License, as indicated by a
|
| 38 |
+
copyright notice that is included in or attached to the work
|
| 39 |
+
(an example is provided in the Appendix below).
|
| 40 |
+
|
| 41 |
+
"Derivative Works" shall mean any work, whether in Source or Object
|
| 42 |
+
form, that is based on (or derived from) the Work and for which the
|
| 43 |
+
editorial revisions, annotations, elaborations, or other modifications
|
| 44 |
+
represent, as a whole, an original work of authorship. For the purposes
|
| 45 |
+
of this License, Derivative Works shall not include works that remain
|
| 46 |
+
separable from, or merely link (or bind by name) to the interfaces of,
|
| 47 |
+
the Work and Derivative Works thereof.
|
| 48 |
+
|
| 49 |
+
"Contribution" shall mean any work of authorship, including
|
| 50 |
+
the original version of the Work and any modifications or additions
|
| 51 |
+
to that Work or Derivative Works thereof, that is intentionally
|
| 52 |
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
| 53 |
+
or by an individual or Legal Entity authorized to submit on behalf of
|
| 54 |
+
the copyright owner. For the purposes of this definition, "submitted"
|
| 55 |
+
means any form of electronic, verbal, or written communication sent
|
| 56 |
+
to the Licensor or its representatives, including but not limited to
|
| 57 |
+
communication on electronic mailing lists, source code control systems,
|
| 58 |
+
and issue tracking systems that are managed by, or on behalf of, the
|
| 59 |
+
Licensor for the purpose of discussing and improving the Work, but
|
| 60 |
+
excluding communication that is conspicuously marked or otherwise
|
| 61 |
+
designated in writing by the copyright owner as "Not a Contribution."
|
| 62 |
+
|
| 63 |
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
| 64 |
+
on behalf of whom a Contribution has been received by Licensor and
|
| 65 |
+
subsequently incorporated within the Work.
|
| 66 |
+
|
| 67 |
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
| 68 |
+
this License, each Contributor hereby grants to You a perpetual,
|
| 69 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
| 70 |
+
copyright license to reproduce, prepare Derivative Works of,
|
| 71 |
+
publicly display, publicly perform, sublicense, and distribute the
|
| 72 |
+
Work and such Derivative Works in Source or Object form.
|
| 73 |
+
|
| 74 |
+
3. Grant of Patent License. Subject to the terms and conditions of
|
| 75 |
+
this License, each Contributor hereby grants to You a perpetual,
|
| 76 |
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
| 77 |
+
(except as stated in this section) patent license to make, have made,
|
| 78 |
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
| 79 |
+
where such license applies only to those patent claims licensable
|
| 80 |
+
by such Contributor that are necessarily infringed by their
|
| 81 |
+
Contribution(s) alone or by combination of their Contribution(s)
|
| 82 |
+
with the Work to which such Contribution(s) was submitted. If You
|
| 83 |
+
institute patent litigation against any entity (including a
|
| 84 |
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
| 85 |
+
or a Contribution incorporated within the Work constitutes direct
|
| 86 |
+
or contributory patent infringement, then any patent licenses
|
| 87 |
+
granted to You under this License for that Work shall terminate
|
| 88 |
+
as of the date such litigation is filed.
|
| 89 |
+
|
| 90 |
+
4. Redistribution. You may reproduce and distribute copies of the
|
| 91 |
+
Work or Derivative Works thereof in any medium, with or without
|
| 92 |
+
modifications, and in Source or Object form, provided that You
|
| 93 |
+
meet the following conditions:
|
| 94 |
+
|
| 95 |
+
(a) You must give any other recipients of the Work or
|
| 96 |
+
Derivative Works a copy of this License; and
|
| 97 |
+
|
| 98 |
+
(b) You must cause any modified files to carry prominent notices
|
| 99 |
+
stating that You changed the files; and
|
| 100 |
+
|
| 101 |
+
(c) You must retain, in the Source form of any Derivative Works
|
| 102 |
+
that You distribute, all copyright, patent, trademark, and
|
| 103 |
+
attribution notices from the Source form of the Work,
|
| 104 |
+
excluding those notices that do not pertain to any part of
|
| 105 |
+
the Derivative Works; and
|
| 106 |
+
|
| 107 |
+
(d) If the Work includes a "NOTICE" text file as part of its
|
| 108 |
+
distribution, then any Derivative Works that You distribute must
|
| 109 |
+
include a readable copy of the attribution notices contained
|
| 110 |
+
within such NOTICE file, excluding those notices that do not
|
| 111 |
+
pertain to any part of the Derivative Works, in at least one
|
| 112 |
+
of the following places: within a NOTICE text file distributed
|
| 113 |
+
as part of the Derivative Works; within the Source form or
|
| 114 |
+
documentation, if provided along with the Derivative Works; or,
|
| 115 |
+
within a display generated by the Derivative Works, if and
|
| 116 |
+
wherever such third-party notices normally appear. The contents
|
| 117 |
+
of the NOTICE file are for informational purposes only and
|
| 118 |
+
do not modify the License. You may add Your own attribution
|
| 119 |
+
notices within Derivative Works that You distribute, alongside
|
| 120 |
+
or as an addendum to the NOTICE text from the Work, provided
|
| 121 |
+
that such additional attribution notices cannot be construed
|
| 122 |
+
as modifying the License.
|
| 123 |
+
|
| 124 |
+
You may add Your own copyright statement to Your modifications and
|
| 125 |
+
may provide additional or different license terms and conditions
|
| 126 |
+
for use, reproduction, or distribution of Your modifications, or
|
| 127 |
+
for any such Derivative Works as a whole, provided Your use,
|
| 128 |
+
reproduction, and distribution of the Work otherwise complies with
|
| 129 |
+
the conditions stated in this License.
|
| 130 |
+
|
| 131 |
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
| 132 |
+
any Contribution intentionally submitted for inclusion in the Work
|
| 133 |
+
by You to the Licensor shall be under the terms and conditions of
|
| 134 |
+
this License, without any additional terms or conditions.
|
| 135 |
+
Notwithstanding the above, nothing herein shall supersede or modify
|
| 136 |
+
the terms of any separate license agreement you may have executed
|
| 137 |
+
with Licensor regarding such Contributions.
|
| 138 |
+
|
| 139 |
+
6. Trademarks. This License does not grant permission to use the trade
|
| 140 |
+
names, trademarks, service marks, or product names of the Licensor,
|
| 141 |
+
except as required for reasonable and customary use in describing the
|
| 142 |
+
origin of the Work and reproducing the content of the NOTICE file.
|
| 143 |
+
|
| 144 |
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
| 145 |
+
agreed to in writing, Licensor provides the Work (and each
|
| 146 |
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
| 147 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
| 148 |
+
implied, including, without limitation, any warranties or conditions
|
| 149 |
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
| 150 |
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
| 151 |
+
appropriateness of using or redistributing the Work and assume any
|
| 152 |
+
risks associated with Your exercise of permissions under this License.
|
| 153 |
+
|
| 154 |
+
8. Limitation of Liability. In no event and under no legal theory,
|
| 155 |
+
whether in tort (including negligence), contract, or otherwise,
|
| 156 |
+
unless required by applicable law (such as deliberate and grossly
|
| 157 |
+
negligent acts) or agreed to in writing, shall any Contributor be
|
| 158 |
+
liable to You for damages, including any direct, indirect, special,
|
| 159 |
+
incidental, or consequential damages of any character arising as a
|
| 160 |
+
result of this License or out of the use or inability to use the
|
| 161 |
+
Work (including but not limited to damages for loss of goodwill,
|
| 162 |
+
work stoppage, computer failure or malfunction, or any and all
|
| 163 |
+
other commercial damages or losses), even if such Contributor
|
| 164 |
+
has been advised of the possibility of such damages.
|
| 165 |
+
|
| 166 |
+
9. Accepting Warranty or Additional Liability. While redistributing
|
| 167 |
+
the Work or Derivative Works thereof, You may choose to offer,
|
| 168 |
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
| 169 |
+
or other liability obligations and/or rights consistent with this
|
| 170 |
+
License. However, in accepting such obligations, You may act only
|
| 171 |
+
on Your own behalf and on Your sole responsibility, not on behalf
|
| 172 |
+
of any other Contributor, and only if You agree to indemnify,
|
| 173 |
+
defend, and hold each Contributor harmless for any liability
|
| 174 |
+
incurred by, or claims asserted against, such Contributor by reason
|
| 175 |
+
of your accepting any such warranty or additional liability.
|
| 176 |
+
|
| 177 |
+
END OF TERMS AND CONDITIONS
|
| 178 |
+
|
| 179 |
+
APPENDIX: How to apply the Apache License to your work.
|
| 180 |
+
|
| 181 |
+
To apply the Apache License to your work, attach the following
|
| 182 |
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
| 183 |
+
replaced with your own identifying information. (Don't include
|
| 184 |
+
the brackets!) The text should be enclosed in the appropriate
|
| 185 |
+
comment syntax for the file format. We also recommend that a
|
| 186 |
+
file or class name and description of purpose be included on the
|
| 187 |
+
same "printed page" as the copyright notice for easier
|
| 188 |
+
identification within third-party archives.
|
| 189 |
+
|
| 190 |
+
Copyright 2026 Alibaba Cloud
|
| 191 |
+
|
| 192 |
+
Licensed under the Apache License, Version 2.0 (the "License");
|
| 193 |
+
you may not use this file except in compliance with the License.
|
| 194 |
+
You may obtain a copy of the License at
|
| 195 |
+
|
| 196 |
+
http://www.apache.org/licenses/LICENSE-2.0
|
| 197 |
+
|
| 198 |
+
Unless required by applicable law or agreed to in writing, software
|
| 199 |
+
distributed under the License is distributed on an "AS IS" BASIS,
|
| 200 |
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 201 |
+
See the License for the specific language governing permissions and
|
| 202 |
+
limitations under the License.
|
NOTICE
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
Frontis-MA1-35B
|
| 2 |
+
Copyright 2026 Frontis AI and the OpenMLE contributors.
|
| 3 |
+
|
| 4 |
+
This model is derived from Qwen3.6-35B-A3B, which is Copyright 2026 Alibaba Cloud and licensed under the Apache License 2.0.
|
| 5 |
+
|
| 6 |
+
The language-model weights contain modifications produced through execution-grounded supervised fine-tuning and reinforcement learning. The vision encoder and MTP components are inherited unchanged from Qwen3.6-35B-A3B to provide a complete, base-compatible release. See README.md for the model lineage, component scope, intended use, evaluation scope, and limitations.
|
| 7 |
+
|
| 8 |
+
Original Frontis-MA1 material is released under CC BY-NC 4.0 as stated in LICENSE. The upstream Apache License 2.0 text is preserved in LICENSE-UPSTREAM-APACHE-2.0; that upstream notice is not replaced by the Frontis-MA1 license.
|
README.md
CHANGED
|
@@ -1,3 +1,287 @@
|
|
| 1 |
---
|
| 2 |
license: cc-by-nc-4.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: cc-by-nc-4.0
|
| 3 |
+
base_model: Qwen/Qwen3.6-35B-A3B
|
| 4 |
+
base_model_relation: finetune
|
| 5 |
+
library_name: transformers
|
| 6 |
+
pipeline_tag: image-text-to-text
|
| 7 |
+
tags:
|
| 8 |
+
- openmle
|
| 9 |
+
- frontis-ma1
|
| 10 |
+
- machine-learning-engineering
|
| 11 |
+
- autoresearch
|
| 12 |
+
- agent
|
| 13 |
+
- coding
|
| 14 |
+
- qwen3
|
| 15 |
+
- qwen3.6
|
| 16 |
+
- moe
|
| 17 |
+
- multimodal
|
| 18 |
+
- post-training
|
| 19 |
---
|
| 20 |
+
|
| 21 |
+
<p align="center">
|
| 22 |
+
<img src="assets/frontis-logo.png" width="360" alt="Frontis AI">
|
| 23 |
+
</p>
|
| 24 |
+
|
| 25 |
+
<h1 align="center">Frontis-MA1-35B</h1>
|
| 26 |
+
|
| 27 |
+
<p align="center">
|
| 28 |
+
<b>An execution-grounded model for evolutionary machine learning engineering and AutoResearch</b>
|
| 29 |
+
</p>
|
| 30 |
+
|
| 31 |
+
<p align="center">
|
| 32 |
+
<a href="#paper-and-citation">📄 Paper</a>
|
| 33 |
+
•
|
| 34 |
+
<a href="https://github.com/rc314159-creator/OpenRSI">💻 Code</a>
|
| 35 |
+
•
|
| 36 |
+
<a href="https://rc314159-creator.github.io/OpenRSI/">🌐 Project</a>
|
| 37 |
+
•
|
| 38 |
+
<a href="https://huggingface.co/FrontisAI">🤗 Models</a>
|
| 39 |
+
•
|
| 40 |
+
<a href="https://huggingface.co/datasets/FrontisAI/OpenMLE-Tasks">🧩 Tasks</a>
|
| 41 |
+
•
|
| 42 |
+
<a href="https://huggingface.co/datasets/FrontisAI/OpenMLE-SFT-Traces">📚 SFT Traces</a>
|
| 43 |
+
</p>
|
| 44 |
+
|
| 45 |
+
## Introduction
|
| 46 |
+
|
| 47 |
+
**Frontis-MA1-35B** is the flagship open-weight research model released with **OpenMLE**, an execution-grounded system for studying meta-evolution in machine learning engineering (MLE).
|
| 48 |
+
|
| 49 |
+
Starting from [Qwen3.6-35B-A3B](https://huggingface.co/Qwen/Qwen3.6-35B-A3B), we apply execution-grounded supervised fine-tuning and reinforcement learning so that the model learns four reusable program-transformation operators:
|
| 50 |
+
|
| 51 |
+
- **Draft** — create a complete initial solution;
|
| 52 |
+
- **Improve** — refine a parent program using its score and execution evidence;
|
| 53 |
+
- **Debug** — repair invalid or failing code;
|
| 54 |
+
- **Crossover** — recombine useful elements from two parent solutions.
|
| 55 |
+
|
| 56 |
+
At inference time, OpenMLE-Evo composes these operators into a long-horizon search loop. Frontis-MA1 is therefore both a product of the OpenMLE training stack and the model that drives its evolutionary search.
|
| 57 |
+
|
| 58 |
+
> **Component composition.** The Frontis-MA1 checkpoint contains the
|
| 59 |
+
> post-trained language-model weights used by OpenMLE. For a complete,
|
| 60 |
+
> base-compatible release, this repository also includes the unchanged vision
|
| 61 |
+
> encoder and MTP components from Qwen3.6-35B-A3B. OpenMLE post-training and the
|
| 62 |
+
> reported evaluations are text/code-only; they do not establish improved or
|
| 63 |
+
> fully validated visual capability or MTP decoding quality.
|
| 64 |
+
|
| 65 |
+
## Highlights
|
| 66 |
+
|
| 67 |
+
- **Execution-grounded post-training.** SFT examples and RL rewards are constructed from programs executed in isolated MLE sandboxes.
|
| 68 |
+
- **Trainable evolutionary operators.** Draft, Improve, Debug, and Crossover provide a shared action space across training and test-time search.
|
| 69 |
+
- **Linked research release.** The model card connects the weights to the OpenMLE training code, search protocol, task environments, and evaluation boundary.
|
| 70 |
+
- **Strong controlled model gain.** Under the same OpenMLE-Evo harness on MLE-Bench Lite, Frontis-MA1-35B improves Medal Average from **39.39% to 60.61%** and Human Rank from **0.5828 to 0.7647** over its base model.
|
| 71 |
+
- **Composable search gain.** With OpenMLE-Evo-Max, the model–harness system reaches **71.21% Medal Average** and **0.8126 Human Rank** under the paper's fixed evaluation protocol.
|
| 72 |
+
|
| 73 |
+
> The reported scores measure **model–harness systems**, not standalone one-shot generation. Reproduction requires the same OpenMLE-Evo or OpenMLE-Evo-Max configuration, task environments, sandbox budget, and evaluation protocol.
|
| 74 |
+
|
| 75 |
+
## Model family
|
| 76 |
+
|
| 77 |
+
| Model | Base model | Release format | Status |
|
| 78 |
+
| --- | --- | --- | --- |
|
| 79 |
+
| [Frontis-MA1-30B](https://huggingface.co/FrontisAI/Frontis-MA1-30B) | Qwen3-30B-A3B-Thinking-2507 | BF16 Transformers | Companion release |
|
| 80 |
+
| **Frontis-MA1-35B** | Qwen3.6-35B-A3B | BF16 Transformers | This repository |
|
| 81 |
+
| [Frontis-MA1-35B-GGUF](https://huggingface.co/FrontisAI/Frontis-MA1-35B-GGUF) | Frontis-MA1-35B | Q4_K_M GGUF + F16 mmproj | Local deployment |
|
| 82 |
+
|
| 83 |
+
## Model details
|
| 84 |
+
|
| 85 |
+
| Field | Value |
|
| 86 |
+
| --- | --- |
|
| 87 |
+
| Model family | Frontis-MA1 |
|
| 88 |
+
| Architecture | Multimodal conditional-generation model with a hybrid-attention MoE text backbone |
|
| 89 |
+
| Parameters | 35B total, approximately 3B activated |
|
| 90 |
+
| Layers | 40 |
|
| 91 |
+
| Experts | 256 routed experts; 8 routed plus 1 shared expert activated per token |
|
| 92 |
+
| Weight precision | BF16 |
|
| 93 |
+
| Native configuration context | 262,144 tokens |
|
| 94 |
+
| Post-training SFT cutoff | 32,768 tokens |
|
| 95 |
+
| Primary evaluated modality | Text and code |
|
| 96 |
+
| Vision encoder | Included; inherited unchanged from Qwen3.6-35B-A3B |
|
| 97 |
+
| MTP weights | Included; inherited unchanged from Qwen3.6-35B-A3B |
|
| 98 |
+
| License | CC BY-NC 4.0 |
|
| 99 |
+
|
| 100 |
+
The 262,144-token context length is inherited from the base-model configuration. OpenMLE post-training used a 32,768-token SFT cutoff; substantially longer contexts have not yet been validated to the same standard as the reported experiments.
|
| 101 |
+
|
| 102 |
+
## Training
|
| 103 |
+
|
| 104 |
+
Frontis-MA1-35B uses full-parameter supervised fine-tuning followed by reinforcement learning from executable task feedback.
|
| 105 |
+
|
| 106 |
+
### Supervised fine-tuning
|
| 107 |
+
|
| 108 |
+
- 26,259 released execution-grounded examples: 17,245 full responses and 9,014 trajectory steps;
|
| 109 |
+
- full-solution and trajectory-step supervision;
|
| 110 |
+
- BF16 full-parameter training on 8 NVIDIA H200 GPUs;
|
| 111 |
+
- global batch size 128;
|
| 112 |
+
- learning rate `3e-5` with cosine decay and 0.1 warmup fraction;
|
| 113 |
+
- three epochs;
|
| 114 |
+
- Qwen-compatible thinking-loss masking.
|
| 115 |
+
|
| 116 |
+
### Reinforcement learning
|
| 117 |
+
|
| 118 |
+
- online generation and evaluation in isolated task sandboxes;
|
| 119 |
+
- operator mixture: Draft 0.50, Improve 0.17, Debug 0.17, Crossover 0.16;
|
| 120 |
+
- 16 prompts per rollout and 16 samples per prompt;
|
| 121 |
+
- maximum response length 24,576 tokens;
|
| 122 |
+
- GSPO with execution-grounded reward post-processing;
|
| 123 |
+
- Adam optimizer with learning rate `1e-6`.
|
| 124 |
+
|
| 125 |
+
See the paper and [OpenRSI code](https://github.com/rc314159-creator/OpenRSI) for the complete data-construction, training, search, and evaluation protocol.
|
| 126 |
+
|
| 127 |
+
<p align="center">
|
| 128 |
+
<img src="assets/paper-figure-openmle-framework.png" width="95%" alt="Paper framework figure: OpenMLE training and inference workflow">
|
| 129 |
+
</p>
|
| 130 |
+
|
| 131 |
+
<p align="center"><sub>
|
| 132 |
+
Paper framework figure. Frontis-MA1 learns the same four atomic operators used by OpenMLE-Evo, first from executable SFT rollouts and then from online RL execution feedback.
|
| 133 |
+
</sub></p>
|
| 134 |
+
|
| 135 |
+
## Benchmark results
|
| 136 |
+
|
| 137 |
+
The headline results are evaluated as **model–harness systems**, rather than as standalone one-shot generations. The controlled comparison that isolates the effect of post-training holds the OpenMLE-Evo harness fixed and changes only the model from Qwen3.6-35B-A3B to Frontis-MA1-35B.
|
| 138 |
+
|
| 139 |
+
### MLE-Bench Lite protocol
|
| 140 |
+
|
| 141 |
+
| Item | Setting |
|
| 142 |
+
| --- | --- |
|
| 143 |
+
| Benchmark | Official 22-task MLE-Bench Lite split |
|
| 144 |
+
| Independent runs | 3 per OpenMLE-Evo configuration, unless stated otherwise |
|
| 145 |
+
| Sandbox budget | 12 hours on 0.5 NVIDIA RTX 4090 equivalent per task |
|
| 146 |
+
| Equivalent compute | 6 RTX 4090 GPU-hours per task |
|
| 147 |
+
| Execution | Generated programs are run and scored in isolated task sandboxes |
|
| 148 |
+
| OpenMLE-Evo-Max | MLE-Bench-disjoint task-agnostic priors plus asynchronous multi-GPU search |
|
| 149 |
+
| Budget comparison | OpenMLE-Evo-Max keeps the same total sandbox-compute budget |
|
| 150 |
+
|
| 151 |
+
We report three aggregate metrics:
|
| 152 |
+
|
| 153 |
+
- **Valid Rate** is the mean number of the 22 tasks for which a run produces a valid submission, written as `x/22`.
|
| 154 |
+
- **Medal Average** is the mean fraction of tasks receiving any Kaggle medal.
|
| 155 |
+
- **Human Rank** is the fraction of human leaderboard participants surpassed by the submitted solution, averaged across tasks and runs.
|
| 156 |
+
|
| 157 |
+
All three metrics are higher-is-better.
|
| 158 |
+
|
| 159 |
+
### Main results from the paper
|
| 160 |
+
|
| 161 |
+
<p align="center">
|
| 162 |
+
<img src="assets/paper-figure-main-results.png" width="98%" alt="Paper main figure: model-harness results on MLE-Bench Lite">
|
| 163 |
+
</p>
|
| 164 |
+
|
| 165 |
+
<p align="center"><sub>
|
| 166 |
+
Current paper main-results figure. The left panel shows all completed model–harness results on MLE-Bench Lite; the right panel compares model size with Medal Average. Orange denotes Frontis-MA1 with OpenMLE-Evo, cyan denotes other models with OpenMLE-Evo, hatching denotes OpenMLE-Evo-Max, and gray denotes general-purpose coding harnesses.
|
| 167 |
+
</sub></p>
|
| 168 |
+
|
| 169 |
+
### Controlled 35B comparison
|
| 170 |
+
|
| 171 |
+
| Model | Harness | Valid Rate ↑ | Medal Average ↑ | Human Rank ↑ |
|
| 172 |
+
| --- | --- | ---: | ---: | ---: |
|
| 173 |
+
| Qwen3.6-35B-A3B | OpenMLE-Evo | 19.67/22 | 39.39% | 0.5828 |
|
| 174 |
+
| **Frontis-MA1-35B** | OpenMLE-Evo | **21.67/22** | **60.61%** | **0.7647** |
|
| 175 |
+
| **Frontis-MA1-35B** | OpenMLE-Evo-Max | **22.00/22** | **71.21%** | **0.8126** |
|
| 176 |
+
|
| 177 |
+
| Comparison | Δ Valid Rate | Δ Medal Average | Δ Human Rank | What it measures |
|
| 178 |
+
| --- | ---: | ---: | ---: | --- |
|
| 179 |
+
| Frontis-MA1-35B vs. Qwen3.6-35B-A3B, both with OpenMLE-Evo | +2.00 tasks | +21.22 pp | +0.1819 | Post-training gain under a fixed harness |
|
| 180 |
+
| OpenMLE-Evo-Max vs. OpenMLE-Evo, both with Frontis-MA1-35B | +0.33 task | +10.60 pp | +0.0479 | Additional system-level search gain |
|
| 181 |
+
|
| 182 |
+
The first comparison above is the primary evidence for the model improvement: the base and post-trained checkpoints are evaluated under the same standard OpenMLE-Evo harness. The second comparison holds the model fixed but changes the search system, so it should not be interpreted as a pure model gain.
|
| 183 |
+
|
| 184 |
+
### Public-weight model comparison under OpenMLE-Evo
|
| 185 |
+
|
| 186 |
+
The following rows use the same OpenMLE-Evo harness, benchmark split, and sandbox-compute budget. This is the closest available comparison with strong public-weight models, although model scale, pretraining data, and architecture still differ.
|
| 187 |
+
|
| 188 |
+
| Public-weight model | Valid Rate ↑ | Medal Average ↑ | Human Rank ↑ |
|
| 189 |
+
| --- | ---: | ---: | ---: |
|
| 190 |
+
| [Kimi K2.6](https://huggingface.co/moonshotai/Kimi-K2.6) | 21.67/22 | **66.67%** | 0.7859 |
|
| 191 |
+
| [GLM-5.2](https://huggingface.co/zai-org/GLM-5.2) | 19.67/22 | 62.12% | 0.7069 |
|
| 192 |
+
| **Frontis-MA1-35B** | 21.67/22 | 60.61% | 0.7647 |
|
| 193 |
+
| [MiniMax M3](https://huggingface.co/MiniMaxAI/MiniMax-M3) | **22.00/22** | 59.09% | **0.7994** |
|
| 194 |
+
| [Frontis-MA1-30B](https://huggingface.co/FrontisAI/Frontis-MA1-30B) | 21.67/22 | 53.03% | 0.7055 |
|
| 195 |
+
| [DeepSeek-V4-Flash](https://huggingface.co/deepseek-ai/DeepSeek-V4-Flash) | 21.33/22 | 51.52% | 0.6957 |
|
| 196 |
+
| [Qwen3.6-35B-A3B](https://huggingface.co/Qwen/Qwen3.6-35B-A3B) | 19.67/22 | 39.39% | 0.5828 |
|
| 197 |
+
| [Qwen3-30B-A3B-Thinking-2507](https://huggingface.co/Qwen/Qwen3-30B-A3B-Thinking-2507) | 17.33/22 | 34.85% | 0.5573 |
|
| 198 |
+
|
| 199 |
+
These are model–harness results rather than standalone one-shot model scores. The full paper figure above additionally includes OpenMLE-Evo-Max and general-purpose coding-agent systems, whose harnesses are not directly interchangeable with this fixed-harness table.
|
| 200 |
+
|
| 201 |
+
### Transfer to NatureBench Lite
|
| 202 |
+
|
| 203 |
+
We additionally evaluate transfer beyond competition-style MLE on a fixed 10-task NatureBench Lite subset. The subset spans all six NatureBench scientific domains, six represented input-modality families, and four ML task types. The evaluation retains the original task containers, hidden evaluator, validity rules, web-search-disabled setting, and a four-hour search budget per task.
|
| 204 |
+
|
| 205 |
+
NatureBench direction-normalizes each task's metric relative to the published result. We report:
|
| 206 |
+
|
| 207 |
+
- **Match-SOTA (All M):** the fraction of tasks with normalized gap `g ≥ 0`;
|
| 208 |
+
- **Surpass-SOTA (All S):** the fraction of tasks with `g > 0.1`.
|
| 209 |
+
|
| 210 |
+
| Model | Harness | Surpass-SOTA ↑ | Match-SOTA ↑ |
|
| 211 |
+
| --- | --- | ---: | ---: |
|
| 212 |
+
| **Frontis-MA1-35B** | OpenMLE-Evo NatureBench adapter | **30.0% (3/10)** | **70.0% (7/10)** |
|
| 213 |
+
| Qwen3.6-35B-A3B | OpenMLE-Evo NatureBench adapter | 20.0% (2/10) | 50.0% (5/10) |
|
| 214 |
+
| Qwen3.6-35B-A3B | Original AIRA-Evo | 10.0% (1/10) | 20.0% (2/10) |
|
| 215 |
+
|
| 216 |
+
Holding the NatureBench adapter fixed, Frontis-MA1-35B improves over its base model by 10 percentage points on Surpass-SOTA and 20 points on Match-SOTA. Holding the base model fixed, the adapted OpenMLE-Evo harness improves over original AIRA-Evo by 10 and 30 points, respectively. Because this study contains only ten tasks, it is evidence of focused transfer rather than a claim of general scientific autonomy or performance on the full 90-task benchmark.
|
| 217 |
+
|
| 218 |
+
### Long-horizon search behavior
|
| 219 |
+
|
| 220 |
+
Two detailed MLE-Bench trajectories in the paper examine whether the system continues improving after it has already found an executable program.
|
| 221 |
+
|
| 222 |
+
| Task | Validation Human Rank | Held-out Human Rank | Medal | Share of validation gain from late Improve/Crossover |
|
| 223 |
+
| --- | ---: | ---: | --- | ---: |
|
| 224 |
+
| `leaf-classification` | 0.7713 | 0.9455 | Bronze | 85.0% |
|
| 225 |
+
| `mlsp-2013-birds` | 0.7284 | 0.8889 | Silver | 91.9% |
|
| 226 |
+
|
| 227 |
+
These task-level traces support the intended use of Frontis-MA1-35B inside a long-horizon evolutionary loop: Debug establishes executable solutions, while later Improve and Crossover operations account for most of the measured validation improvement in the two analyzed cases. They are mechanism case studies, not additional aggregate benchmark scores.
|
| 228 |
+
|
| 229 |
+
## Usage
|
| 230 |
+
|
| 231 |
+
Qwen3.6 uses the newer `qwen3_5_moe` architecture. Install a recent Transformers build that includes this architecture; older releases such as Transformers 4.57.1 do not recognize the configuration. The upstream Qwen3.6 model currently recommends installing the latest `transformers[serving]`.
|
| 232 |
+
|
| 233 |
+
### vLLM
|
| 234 |
+
|
| 235 |
+
The paper's evaluated text/code path should be served in language-model-only mode:
|
| 236 |
+
|
| 237 |
+
```bash
|
| 238 |
+
vllm serve FrontisAI/Frontis-MA1-35B \
|
| 239 |
+
--served-model-name Frontis-MA1-35B \
|
| 240 |
+
--tensor-parallel-size 8 \
|
| 241 |
+
--max-model-len 32768 \
|
| 242 |
+
--reasoning-parser qwen3 \
|
| 243 |
+
--language-model-only
|
| 244 |
+
```
|
| 245 |
+
|
| 246 |
+
## Intended use
|
| 247 |
+
|
| 248 |
+
Frontis-MA1-35B is intended for:
|
| 249 |
+
|
| 250 |
+
- research on machine learning engineering and AutoResearch agents;
|
| 251 |
+
- generation and iterative improvement of ML experiment code;
|
| 252 |
+
- execution-grounded program search;
|
| 253 |
+
- use with OpenMLE-Evo or compatible sandboxed harnesses.
|
| 254 |
+
|
| 255 |
+
Generated code may be incorrect, insecure, destructive, or expensive to execute. Run it inside an isolated environment with explicit CPU, memory, GPU, network, filesystem, and time limits.
|
| 256 |
+
|
| 257 |
+
## Limitations
|
| 258 |
+
|
| 259 |
+
- OpenMLE post-training and the reported evaluations cover text/code behavior; the inherited vision encoder and MTP components were not post-trained or evaluated by this work.
|
| 260 |
+
- The main evaluation centers on MLE-Bench Lite and does not establish general performance across all software-engineering or scientific-research tasks.
|
| 261 |
+
- The paper results depend on an external evolutionary search harness and sandbox feedback.
|
| 262 |
+
- Execution reward does not fully measure maintainability, robustness, security, or responsible data handling.
|
| 263 |
+
- Context lengths beyond the post-training cutoff require additional validation.
|
| 264 |
+
- Outputs may contain reasoning traces and should be handled according to downstream requirements.
|
| 265 |
+
|
| 266 |
+
## Release artifacts
|
| 267 |
+
|
| 268 |
+
This repository is the canonical BF16 Transformers release. The [Frontis-MA1-35B-GGUF](https://huggingface.co/FrontisAI/Frontis-MA1-35B-GGUF) repository provides the Q4_K_M local-deployment derivative and its required F16 multimodal projector.
|
| 269 |
+
|
| 270 |
+
<a id="paper"></a>
|
| 271 |
+
## Paper and citation
|
| 272 |
+
|
| 273 |
+
**OpenMLE: Scaling Evolutionary MLE Agents toward Recursive Self-Improvement**
|
| 274 |
+
|
| 275 |
+
The public preprint URL and archival BibTeX will be added when the paper record is available.
|
| 276 |
+
|
| 277 |
+
## License
|
| 278 |
+
|
| 279 |
+
Original Frontis-MA1 material is released under [CC BY-NC 4.0](LICENSE) for attribution-required, non-commercial use. Commercial use is not granted.
|
| 280 |
+
|
| 281 |
+
The upstream Qwen Apache License 2.0 notice is preserved in [LICENSE-UPSTREAM-APACHE-2.0](LICENSE-UPSTREAM-APACHE-2.0) and [NOTICE](NOTICE).
|
| 282 |
+
|
| 283 |
+
The license in this repository applies to the model weights, configuration files, and model documentation distributed here. Training and evaluation datasets and third-party software remain subject to their respective terms.
|
| 284 |
+
|
| 285 |
+
## Acknowledgements
|
| 286 |
+
|
| 287 |
+
We thank the Qwen team and the open-source communities behind Transformers, SLIME, Ray, Megatron-LM, SGLang, MLE-Bench, and the broader executable MLE research ecosystem.
|
assets/paper-figure-main-results.png
ADDED
|
Git LFS Details
|
assets/paper-figure-openmle-framework.png
ADDED
|
Git LFS Details
|
chat_template.jinja
ADDED
|
@@ -0,0 +1,154 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%- set image_count = namespace(value=0) %}
|
| 2 |
+
{%- set video_count = namespace(value=0) %}
|
| 3 |
+
{%- macro render_content(content, do_vision_count, is_system_content=false) %}
|
| 4 |
+
{%- if content is string %}
|
| 5 |
+
{{- content }}
|
| 6 |
+
{%- elif content is iterable and content is not mapping %}
|
| 7 |
+
{%- for item in content %}
|
| 8 |
+
{%- if 'image' in item or 'image_url' in item or item.type == 'image' %}
|
| 9 |
+
{%- if is_system_content %}
|
| 10 |
+
{{- raise_exception('System message cannot contain images.') }}
|
| 11 |
+
{%- endif %}
|
| 12 |
+
{%- if do_vision_count %}
|
| 13 |
+
{%- set image_count.value = image_count.value + 1 %}
|
| 14 |
+
{%- endif %}
|
| 15 |
+
{%- if add_vision_id %}
|
| 16 |
+
{{- 'Picture ' ~ image_count.value ~ ': ' }}
|
| 17 |
+
{%- endif %}
|
| 18 |
+
{{- '<|vision_start|><|image_pad|><|vision_end|>' }}
|
| 19 |
+
{%- elif 'video' in item or item.type == 'video' %}
|
| 20 |
+
{%- if is_system_content %}
|
| 21 |
+
{{- raise_exception('System message cannot contain videos.') }}
|
| 22 |
+
{%- endif %}
|
| 23 |
+
{%- if do_vision_count %}
|
| 24 |
+
{%- set video_count.value = video_count.value + 1 %}
|
| 25 |
+
{%- endif %}
|
| 26 |
+
{%- if add_vision_id %}
|
| 27 |
+
{{- 'Video ' ~ video_count.value ~ ': ' }}
|
| 28 |
+
{%- endif %}
|
| 29 |
+
{{- '<|vision_start|><|video_pad|><|vision_end|>' }}
|
| 30 |
+
{%- elif 'text' in item %}
|
| 31 |
+
{{- item.text }}
|
| 32 |
+
{%- else %}
|
| 33 |
+
{{- raise_exception('Unexpected item type in content.') }}
|
| 34 |
+
{%- endif %}
|
| 35 |
+
{%- endfor %}
|
| 36 |
+
{%- elif content is none or content is undefined %}
|
| 37 |
+
{{- '' }}
|
| 38 |
+
{%- else %}
|
| 39 |
+
{{- raise_exception('Unexpected content type.') }}
|
| 40 |
+
{%- endif %}
|
| 41 |
+
{%- endmacro %}
|
| 42 |
+
{%- if not messages %}
|
| 43 |
+
{{- raise_exception('No messages provided.') }}
|
| 44 |
+
{%- endif %}
|
| 45 |
+
{%- if tools and tools is iterable and tools is not mapping %}
|
| 46 |
+
{{- '<|im_start|>system\n' }}
|
| 47 |
+
{{- "# Tools\n\nYou have access to the following functions:\n\n<tools>" }}
|
| 48 |
+
{%- for tool in tools %}
|
| 49 |
+
{{- "\n" }}
|
| 50 |
+
{{- tool | tojson }}
|
| 51 |
+
{%- endfor %}
|
| 52 |
+
{{- "\n</tools>" }}
|
| 53 |
+
{{- '\n\nIf you choose to call a function ONLY reply in the following format with NO suffix:\n\n<tool_call>\n<function=example_function_name>\n<parameter=example_parameter_1>\nvalue_1\n</parameter>\n<parameter=example_parameter_2>\nThis is the value for the second parameter\nthat can span\nmultiple lines\n</parameter>\n</function>\n</tool_call>\n\n<IMPORTANT>\nReminder:\n- Function calls MUST follow the specified format: an inner <function=...></function> block must be nested within <tool_call></tool_call> XML tags\n- Required parameters MUST be specified\n- You may provide optional reasoning for your function call in natural language BEFORE the function call, but NOT after\n- If there is no function call available, answer the question like normal with your current knowledge and do not tell the user about function calls\n</IMPORTANT>' }}
|
| 54 |
+
{%- if messages[0].role == 'system' %}
|
| 55 |
+
{%- set content = render_content(messages[0].content, false, true)|trim %}
|
| 56 |
+
{%- if content %}
|
| 57 |
+
{{- '\n\n' + content }}
|
| 58 |
+
{%- endif %}
|
| 59 |
+
{%- endif %}
|
| 60 |
+
{{- '<|im_end|>\n' }}
|
| 61 |
+
{%- else %}
|
| 62 |
+
{%- if messages[0].role == 'system' %}
|
| 63 |
+
{%- set content = render_content(messages[0].content, false, true)|trim %}
|
| 64 |
+
{{- '<|im_start|>system\n' + content + '<|im_end|>\n' }}
|
| 65 |
+
{%- endif %}
|
| 66 |
+
{%- endif %}
|
| 67 |
+
{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
|
| 68 |
+
{%- for message in messages[::-1] %}
|
| 69 |
+
{%- set index = (messages|length - 1) - loop.index0 %}
|
| 70 |
+
{%- if ns.multi_step_tool and message.role == "user" %}
|
| 71 |
+
{%- set content = render_content(message.content, false)|trim %}
|
| 72 |
+
{%- if not(content.startswith('<tool_response>') and content.endswith('</tool_response>')) %}
|
| 73 |
+
{%- set ns.multi_step_tool = false %}
|
| 74 |
+
{%- set ns.last_query_index = index %}
|
| 75 |
+
{%- endif %}
|
| 76 |
+
{%- endif %}
|
| 77 |
+
{%- endfor %}
|
| 78 |
+
{%- if ns.multi_step_tool %}
|
| 79 |
+
{{- raise_exception('No user query found in messages.') }}
|
| 80 |
+
{%- endif %}
|
| 81 |
+
{%- for message in messages %}
|
| 82 |
+
{%- set content = render_content(message.content, true)|trim %}
|
| 83 |
+
{%- if message.role == "system" %}
|
| 84 |
+
{%- if not loop.first %}
|
| 85 |
+
{{- raise_exception('System message must be at the beginning.') }}
|
| 86 |
+
{%- endif %}
|
| 87 |
+
{%- elif message.role == "user" %}
|
| 88 |
+
{{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
|
| 89 |
+
{%- elif message.role == "assistant" %}
|
| 90 |
+
{%- set reasoning_content = '' %}
|
| 91 |
+
{%- if message.reasoning_content is string %}
|
| 92 |
+
{%- set reasoning_content = message.reasoning_content %}
|
| 93 |
+
{%- else %}
|
| 94 |
+
{%- if '</think>' in content %}
|
| 95 |
+
{%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
|
| 96 |
+
{%- set content = content.split('</think>')[-1].lstrip('\n') %}
|
| 97 |
+
{%- endif %}
|
| 98 |
+
{%- endif %}
|
| 99 |
+
{%- set reasoning_content = reasoning_content|trim %}
|
| 100 |
+
{%- if (preserve_thinking is defined and preserve_thinking is true) or (loop.index0 > ns.last_query_index) %}
|
| 101 |
+
{{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content + '\n</think>\n\n' + content }}
|
| 102 |
+
{%- else %}
|
| 103 |
+
{{- '<|im_start|>' + message.role + '\n' + content }}
|
| 104 |
+
{%- endif %}
|
| 105 |
+
{%- if message.tool_calls and message.tool_calls is iterable and message.tool_calls is not mapping %}
|
| 106 |
+
{%- for tool_call in message.tool_calls %}
|
| 107 |
+
{%- if tool_call.function is defined %}
|
| 108 |
+
{%- set tool_call = tool_call.function %}
|
| 109 |
+
{%- endif %}
|
| 110 |
+
{%- if loop.first %}
|
| 111 |
+
{%- if content|trim %}
|
| 112 |
+
{{- '\n\n<tool_call>\n<function=' + tool_call.name + '>\n' }}
|
| 113 |
+
{%- else %}
|
| 114 |
+
{{- '<tool_call>\n<function=' + tool_call.name + '>\n' }}
|
| 115 |
+
{%- endif %}
|
| 116 |
+
{%- else %}
|
| 117 |
+
{{- '\n<tool_call>\n<function=' + tool_call.name + '>\n' }}
|
| 118 |
+
{%- endif %}
|
| 119 |
+
{%- if tool_call.arguments is defined %}
|
| 120 |
+
{%- for args_name, args_value in tool_call.arguments|items %}
|
| 121 |
+
{{- '<parameter=' + args_name + '>\n' }}
|
| 122 |
+
{%- set args_value = args_value | string if args_value is string else args_value | tojson | safe %}
|
| 123 |
+
{{- args_value }}
|
| 124 |
+
{{- '\n</parameter>\n' }}
|
| 125 |
+
{%- endfor %}
|
| 126 |
+
{%- endif %}
|
| 127 |
+
{{- '</function>\n</tool_call>' }}
|
| 128 |
+
{%- endfor %}
|
| 129 |
+
{%- endif %}
|
| 130 |
+
{{- '<|im_end|>\n' }}
|
| 131 |
+
{%- elif message.role == "tool" %}
|
| 132 |
+
{%- if loop.previtem and loop.previtem.role != "tool" %}
|
| 133 |
+
{{- '<|im_start|>user' }}
|
| 134 |
+
{%- endif %}
|
| 135 |
+
{{- '\n<tool_response>\n' }}
|
| 136 |
+
{{- content }}
|
| 137 |
+
{{- '\n</tool_response>' }}
|
| 138 |
+
{%- if not loop.last and loop.nextitem.role != "tool" %}
|
| 139 |
+
{{- '<|im_end|>\n' }}
|
| 140 |
+
{%- elif loop.last %}
|
| 141 |
+
{{- '<|im_end|>\n' }}
|
| 142 |
+
{%- endif %}
|
| 143 |
+
{%- else %}
|
| 144 |
+
{{- raise_exception('Unexpected message role.') }}
|
| 145 |
+
{%- endif %}
|
| 146 |
+
{%- endfor %}
|
| 147 |
+
{%- if add_generation_prompt %}
|
| 148 |
+
{{- '<|im_start|>assistant\n' }}
|
| 149 |
+
{%- if enable_thinking is defined and enable_thinking is false %}
|
| 150 |
+
{{- '<think>\n\n</think>\n\n' }}
|
| 151 |
+
{%- else %}
|
| 152 |
+
{{- '<think>\n' }}
|
| 153 |
+
{%- endif %}
|
| 154 |
+
{%- endif %}
|
config.json
ADDED
|
@@ -0,0 +1,119 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"Qwen3_5MoeForConditionalGeneration"
|
| 4 |
+
],
|
| 5 |
+
"image_token_id": 248056,
|
| 6 |
+
"model_type": "qwen3_5_moe",
|
| 7 |
+
"text_config": {
|
| 8 |
+
"attention_bias": false,
|
| 9 |
+
"attention_dropout": 0.0,
|
| 10 |
+
"attn_output_gate": true,
|
| 11 |
+
"bos_token_id": 248044,
|
| 12 |
+
"dtype": "bfloat16",
|
| 13 |
+
"eos_token_id": 248044,
|
| 14 |
+
"full_attention_interval": 4,
|
| 15 |
+
"head_dim": 256,
|
| 16 |
+
"hidden_act": "silu",
|
| 17 |
+
"hidden_size": 2048,
|
| 18 |
+
"initializer_range": 0.02,
|
| 19 |
+
"layer_types": [
|
| 20 |
+
"linear_attention",
|
| 21 |
+
"linear_attention",
|
| 22 |
+
"linear_attention",
|
| 23 |
+
"full_attention",
|
| 24 |
+
"linear_attention",
|
| 25 |
+
"linear_attention",
|
| 26 |
+
"linear_attention",
|
| 27 |
+
"full_attention",
|
| 28 |
+
"linear_attention",
|
| 29 |
+
"linear_attention",
|
| 30 |
+
"linear_attention",
|
| 31 |
+
"full_attention",
|
| 32 |
+
"linear_attention",
|
| 33 |
+
"linear_attention",
|
| 34 |
+
"linear_attention",
|
| 35 |
+
"full_attention",
|
| 36 |
+
"linear_attention",
|
| 37 |
+
"linear_attention",
|
| 38 |
+
"linear_attention",
|
| 39 |
+
"full_attention",
|
| 40 |
+
"linear_attention",
|
| 41 |
+
"linear_attention",
|
| 42 |
+
"linear_attention",
|
| 43 |
+
"full_attention",
|
| 44 |
+
"linear_attention",
|
| 45 |
+
"linear_attention",
|
| 46 |
+
"linear_attention",
|
| 47 |
+
"full_attention",
|
| 48 |
+
"linear_attention",
|
| 49 |
+
"linear_attention",
|
| 50 |
+
"linear_attention",
|
| 51 |
+
"full_attention",
|
| 52 |
+
"linear_attention",
|
| 53 |
+
"linear_attention",
|
| 54 |
+
"linear_attention",
|
| 55 |
+
"full_attention",
|
| 56 |
+
"linear_attention",
|
| 57 |
+
"linear_attention",
|
| 58 |
+
"linear_attention",
|
| 59 |
+
"full_attention"
|
| 60 |
+
],
|
| 61 |
+
"linear_conv_kernel_dim": 4,
|
| 62 |
+
"linear_key_head_dim": 128,
|
| 63 |
+
"linear_num_key_heads": 16,
|
| 64 |
+
"linear_num_value_heads": 32,
|
| 65 |
+
"linear_value_head_dim": 128,
|
| 66 |
+
"mamba_ssm_dtype": "float32",
|
| 67 |
+
"max_position_embeddings": 262144,
|
| 68 |
+
"model_type": "qwen3_5_moe_text",
|
| 69 |
+
"moe_intermediate_size": 512,
|
| 70 |
+
"mtp_num_hidden_layers": 1,
|
| 71 |
+
"mtp_use_dedicated_embeddings": false,
|
| 72 |
+
"num_attention_heads": 16,
|
| 73 |
+
"num_experts": 256,
|
| 74 |
+
"num_experts_per_tok": 8,
|
| 75 |
+
"num_hidden_layers": 40,
|
| 76 |
+
"num_key_value_heads": 2,
|
| 77 |
+
"output_router_logits": false,
|
| 78 |
+
"pad_token_id": null,
|
| 79 |
+
"partial_rotary_factor": 0.25,
|
| 80 |
+
"rms_norm_eps": 1e-06,
|
| 81 |
+
"rope_parameters": {
|
| 82 |
+
"mrope_interleaved": true,
|
| 83 |
+
"mrope_section": [
|
| 84 |
+
11,
|
| 85 |
+
11,
|
| 86 |
+
10
|
| 87 |
+
],
|
| 88 |
+
"partial_rotary_factor": 0.25,
|
| 89 |
+
"rope_theta": 10000000,
|
| 90 |
+
"rope_type": "default"
|
| 91 |
+
},
|
| 92 |
+
"router_aux_loss_coef": 0.001,
|
| 93 |
+
"shared_expert_intermediate_size": 512,
|
| 94 |
+
"tie_word_embeddings": false,
|
| 95 |
+
"use_cache": true,
|
| 96 |
+
"vocab_size": 248320
|
| 97 |
+
},
|
| 98 |
+
"tie_word_embeddings": false,
|
| 99 |
+
"transformers_version": "4.57.1",
|
| 100 |
+
"video_token_id": 248057,
|
| 101 |
+
"vision_config": {
|
| 102 |
+
"deepstack_visual_indexes": [],
|
| 103 |
+
"depth": 27,
|
| 104 |
+
"hidden_act": "gelu_pytorch_tanh",
|
| 105 |
+
"hidden_size": 1152,
|
| 106 |
+
"in_channels": 3,
|
| 107 |
+
"initializer_range": 0.02,
|
| 108 |
+
"intermediate_size": 4304,
|
| 109 |
+
"model_type": "qwen3_5_moe",
|
| 110 |
+
"num_heads": 16,
|
| 111 |
+
"num_position_embeddings": 2304,
|
| 112 |
+
"out_hidden_size": 2048,
|
| 113 |
+
"patch_size": 16,
|
| 114 |
+
"spatial_merge_size": 2,
|
| 115 |
+
"temporal_patch_size": 2
|
| 116 |
+
},
|
| 117 |
+
"vision_end_token_id": 248054,
|
| 118 |
+
"vision_start_token_id": 248053
|
| 119 |
+
}
|
configuration.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
{"framework":"Pytorch","task":"visual-question-answering"}
|
generation_config.json
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token_id": 248044,
|
| 3 |
+
"do_sample": true,
|
| 4 |
+
"eos_token_id": [
|
| 5 |
+
248046,
|
| 6 |
+
248044
|
| 7 |
+
],
|
| 8 |
+
"pad_token_id": 248044,
|
| 9 |
+
"temperature": 1.0,
|
| 10 |
+
"top_k": 20,
|
| 11 |
+
"top_p": 0.95
|
| 12 |
+
}
|
merges.txt
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
model-00003-of-00015.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b061e3e2e2318ed5b738718880f531814626c5fc0be343b81dded3355bc118cb
|
| 3 |
+
size 4879030400
|
model-00004-of-00015.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:03bab6fab63ddec8233ffe067167fb4b63134e3f80f10f89c55dfff5c782b12e
|
| 3 |
+
size 4861265992
|
model.safetensors.index.json
ADDED
|
@@ -0,0 +1,1052 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata": {
|
| 3 |
+
"total_size": 71903645408
|
| 4 |
+
},
|
| 5 |
+
"weight_map": {
|
| 6 |
+
"lm_head.weight": "model-00013-of-00015.safetensors",
|
| 7 |
+
"model.language_model.embed_tokens.weight": "model-00000-of-00015.safetensors",
|
| 8 |
+
"model.language_model.layers.0.input_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 9 |
+
"model.language_model.layers.0.linear_attn.A_log": "model-00013-of-00015.safetensors",
|
| 10 |
+
"model.language_model.layers.0.linear_attn.conv1d.weight": "model-00000-of-00015.safetensors",
|
| 11 |
+
"model.language_model.layers.0.linear_attn.dt_bias": "model-00013-of-00015.safetensors",
|
| 12 |
+
"model.language_model.layers.0.linear_attn.in_proj_a.weight": "model-00013-of-00015.safetensors",
|
| 13 |
+
"model.language_model.layers.0.linear_attn.in_proj_b.weight": "model-00013-of-00015.safetensors",
|
| 14 |
+
"model.language_model.layers.0.linear_attn.in_proj_qkv.weight": "model-00013-of-00015.safetensors",
|
| 15 |
+
"model.language_model.layers.0.linear_attn.in_proj_z.weight": "model-00000-of-00015.safetensors",
|
| 16 |
+
"model.language_model.layers.0.linear_attn.norm.weight": "model-00013-of-00015.safetensors",
|
| 17 |
+
"model.language_model.layers.0.linear_attn.out_proj.weight": "model-00013-of-00015.safetensors",
|
| 18 |
+
"model.language_model.layers.0.mlp.experts.down_proj": "model-00000-of-00015.safetensors",
|
| 19 |
+
"model.language_model.layers.0.mlp.experts.gate_up_proj": "model-00000-of-00015.safetensors",
|
| 20 |
+
"model.language_model.layers.0.mlp.gate.weight": "model-00000-of-00015.safetensors",
|
| 21 |
+
"model.language_model.layers.0.mlp.shared_expert.down_proj.weight": "model-00013-of-00015.safetensors",
|
| 22 |
+
"model.language_model.layers.0.mlp.shared_expert.gate_proj.weight": "model-00000-of-00015.safetensors",
|
| 23 |
+
"model.language_model.layers.0.mlp.shared_expert.up_proj.weight": "model-00000-of-00015.safetensors",
|
| 24 |
+
"model.language_model.layers.0.mlp.shared_expert_gate.weight": "model-00013-of-00015.safetensors",
|
| 25 |
+
"model.language_model.layers.0.post_attention_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 26 |
+
"model.language_model.layers.1.input_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 27 |
+
"model.language_model.layers.1.linear_attn.A_log": "model-00013-of-00015.safetensors",
|
| 28 |
+
"model.language_model.layers.1.linear_attn.conv1d.weight": "model-00013-of-00015.safetensors",
|
| 29 |
+
"model.language_model.layers.1.linear_attn.dt_bias": "model-00013-of-00015.safetensors",
|
| 30 |
+
"model.language_model.layers.1.linear_attn.in_proj_a.weight": "model-00013-of-00015.safetensors",
|
| 31 |
+
"model.language_model.layers.1.linear_attn.in_proj_b.weight": "model-00013-of-00015.safetensors",
|
| 32 |
+
"model.language_model.layers.1.linear_attn.in_proj_qkv.weight": "model-00013-of-00015.safetensors",
|
| 33 |
+
"model.language_model.layers.1.linear_attn.in_proj_z.weight": "model-00013-of-00015.safetensors",
|
| 34 |
+
"model.language_model.layers.1.linear_attn.norm.weight": "model-00013-of-00015.safetensors",
|
| 35 |
+
"model.language_model.layers.1.linear_attn.out_proj.weight": "model-00013-of-00015.safetensors",
|
| 36 |
+
"model.language_model.layers.1.mlp.experts.down_proj": "model-00000-of-00015.safetensors",
|
| 37 |
+
"model.language_model.layers.1.mlp.experts.gate_up_proj": "model-00000-of-00015.safetensors",
|
| 38 |
+
"model.language_model.layers.1.mlp.gate.weight": "model-00000-of-00015.safetensors",
|
| 39 |
+
"model.language_model.layers.1.mlp.shared_expert.down_proj.weight": "model-00013-of-00015.safetensors",
|
| 40 |
+
"model.language_model.layers.1.mlp.shared_expert.gate_proj.weight": "model-00000-of-00015.safetensors",
|
| 41 |
+
"model.language_model.layers.1.mlp.shared_expert.up_proj.weight": "model-00000-of-00015.safetensors",
|
| 42 |
+
"model.language_model.layers.1.mlp.shared_expert_gate.weight": "model-00013-of-00015.safetensors",
|
| 43 |
+
"model.language_model.layers.1.post_attention_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 44 |
+
"model.language_model.layers.10.input_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 45 |
+
"model.language_model.layers.10.linear_attn.A_log": "model-00013-of-00015.safetensors",
|
| 46 |
+
"model.language_model.layers.10.linear_attn.conv1d.weight": "model-00013-of-00015.safetensors",
|
| 47 |
+
"model.language_model.layers.10.linear_attn.dt_bias": "model-00013-of-00015.safetensors",
|
| 48 |
+
"model.language_model.layers.10.linear_attn.in_proj_a.weight": "model-00013-of-00015.safetensors",
|
| 49 |
+
"model.language_model.layers.10.linear_attn.in_proj_b.weight": "model-00013-of-00015.safetensors",
|
| 50 |
+
"model.language_model.layers.10.linear_attn.in_proj_qkv.weight": "model-00013-of-00015.safetensors",
|
| 51 |
+
"model.language_model.layers.10.linear_attn.in_proj_z.weight": "model-00003-of-00015.safetensors",
|
| 52 |
+
"model.language_model.layers.10.linear_attn.norm.weight": "model-00013-of-00015.safetensors",
|
| 53 |
+
"model.language_model.layers.10.linear_attn.out_proj.weight": "model-00013-of-00015.safetensors",
|
| 54 |
+
"model.language_model.layers.10.mlp.experts.down_proj": "model-00003-of-00015.safetensors",
|
| 55 |
+
"model.language_model.layers.10.mlp.experts.gate_up_proj": "model-00003-of-00015.safetensors",
|
| 56 |
+
"model.language_model.layers.10.mlp.gate.weight": "model-00003-of-00015.safetensors",
|
| 57 |
+
"model.language_model.layers.10.mlp.shared_expert.down_proj.weight": "model-00013-of-00015.safetensors",
|
| 58 |
+
"model.language_model.layers.10.mlp.shared_expert.gate_proj.weight": "model-00003-of-00015.safetensors",
|
| 59 |
+
"model.language_model.layers.10.mlp.shared_expert.up_proj.weight": "model-00003-of-00015.safetensors",
|
| 60 |
+
"model.language_model.layers.10.mlp.shared_expert_gate.weight": "model-00013-of-00015.safetensors",
|
| 61 |
+
"model.language_model.layers.10.post_attention_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 62 |
+
"model.language_model.layers.11.input_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 63 |
+
"model.language_model.layers.11.mlp.experts.down_proj": "model-00004-of-00015.safetensors",
|
| 64 |
+
"model.language_model.layers.11.mlp.experts.gate_up_proj": "model-00003-of-00015.safetensors",
|
| 65 |
+
"model.language_model.layers.11.mlp.gate.weight": "model-00013-of-00015.safetensors",
|
| 66 |
+
"model.language_model.layers.11.mlp.shared_expert.down_proj.weight": "model-00013-of-00015.safetensors",
|
| 67 |
+
"model.language_model.layers.11.mlp.shared_expert.gate_proj.weight": "model-00004-of-00015.safetensors",
|
| 68 |
+
"model.language_model.layers.11.mlp.shared_expert.up_proj.weight": "model-00004-of-00015.safetensors",
|
| 69 |
+
"model.language_model.layers.11.mlp.shared_expert_gate.weight": "model-00013-of-00015.safetensors",
|
| 70 |
+
"model.language_model.layers.11.post_attention_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 71 |
+
"model.language_model.layers.11.self_attn.k_norm.weight": "model-00013-of-00015.safetensors",
|
| 72 |
+
"model.language_model.layers.11.self_attn.k_proj.weight": "model-00013-of-00015.safetensors",
|
| 73 |
+
"model.language_model.layers.11.self_attn.o_proj.weight": "model-00003-of-00015.safetensors",
|
| 74 |
+
"model.language_model.layers.11.self_attn.q_norm.weight": "model-00013-of-00015.safetensors",
|
| 75 |
+
"model.language_model.layers.11.self_attn.q_proj.weight": "model-00013-of-00015.safetensors",
|
| 76 |
+
"model.language_model.layers.11.self_attn.v_proj.weight": "model-00013-of-00015.safetensors",
|
| 77 |
+
"model.language_model.layers.12.input_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 78 |
+
"model.language_model.layers.12.linear_attn.A_log": "model-00013-of-00015.safetensors",
|
| 79 |
+
"model.language_model.layers.12.linear_attn.conv1d.weight": "model-00013-of-00015.safetensors",
|
| 80 |
+
"model.language_model.layers.12.linear_attn.dt_bias": "model-00013-of-00015.safetensors",
|
| 81 |
+
"model.language_model.layers.12.linear_attn.in_proj_a.weight": "model-00013-of-00015.safetensors",
|
| 82 |
+
"model.language_model.layers.12.linear_attn.in_proj_b.weight": "model-00013-of-00015.safetensors",
|
| 83 |
+
"model.language_model.layers.12.linear_attn.in_proj_qkv.weight": "model-00013-of-00015.safetensors",
|
| 84 |
+
"model.language_model.layers.12.linear_attn.in_proj_z.weight": "model-00013-of-00015.safetensors",
|
| 85 |
+
"model.language_model.layers.12.linear_attn.norm.weight": "model-00013-of-00015.safetensors",
|
| 86 |
+
"model.language_model.layers.12.linear_attn.out_proj.weight": "model-00013-of-00015.safetensors",
|
| 87 |
+
"model.language_model.layers.12.mlp.experts.down_proj": "model-00004-of-00015.safetensors",
|
| 88 |
+
"model.language_model.layers.12.mlp.experts.gate_up_proj": "model-00004-of-00015.safetensors",
|
| 89 |
+
"model.language_model.layers.12.mlp.gate.weight": "model-00013-of-00015.safetensors",
|
| 90 |
+
"model.language_model.layers.12.mlp.shared_expert.down_proj.weight": "model-00013-of-00015.safetensors",
|
| 91 |
+
"model.language_model.layers.12.mlp.shared_expert.gate_proj.weight": "model-00004-of-00015.safetensors",
|
| 92 |
+
"model.language_model.layers.12.mlp.shared_expert.up_proj.weight": "model-00004-of-00015.safetensors",
|
| 93 |
+
"model.language_model.layers.12.mlp.shared_expert_gate.weight": "model-00013-of-00015.safetensors",
|
| 94 |
+
"model.language_model.layers.12.post_attention_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 95 |
+
"model.language_model.layers.13.input_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 96 |
+
"model.language_model.layers.13.linear_attn.A_log": "model-00004-of-00015.safetensors",
|
| 97 |
+
"model.language_model.layers.13.linear_attn.conv1d.weight": "model-00004-of-00015.safetensors",
|
| 98 |
+
"model.language_model.layers.13.linear_attn.dt_bias": "model-00013-of-00015.safetensors",
|
| 99 |
+
"model.language_model.layers.13.linear_attn.in_proj_a.weight": "model-00013-of-00015.safetensors",
|
| 100 |
+
"model.language_model.layers.13.linear_attn.in_proj_b.weight": "model-00013-of-00015.safetensors",
|
| 101 |
+
"model.language_model.layers.13.linear_attn.in_proj_qkv.weight": "model-00013-of-00015.safetensors",
|
| 102 |
+
"model.language_model.layers.13.linear_attn.in_proj_z.weight": "model-00004-of-00015.safetensors",
|
| 103 |
+
"model.language_model.layers.13.linear_attn.norm.weight": "model-00013-of-00015.safetensors",
|
| 104 |
+
"model.language_model.layers.13.linear_attn.out_proj.weight": "model-00013-of-00015.safetensors",
|
| 105 |
+
"model.language_model.layers.13.mlp.experts.down_proj": "model-00004-of-00015.safetensors",
|
| 106 |
+
"model.language_model.layers.13.mlp.experts.gate_up_proj": "model-00004-of-00015.safetensors",
|
| 107 |
+
"model.language_model.layers.13.mlp.gate.weight": "model-00013-of-00015.safetensors",
|
| 108 |
+
"model.language_model.layers.13.mlp.shared_expert.down_proj.weight": "model-00013-of-00015.safetensors",
|
| 109 |
+
"model.language_model.layers.13.mlp.shared_expert.gate_proj.weight": "model-00004-of-00015.safetensors",
|
| 110 |
+
"model.language_model.layers.13.mlp.shared_expert.up_proj.weight": "model-00004-of-00015.safetensors",
|
| 111 |
+
"model.language_model.layers.13.mlp.shared_expert_gate.weight": "model-00013-of-00015.safetensors",
|
| 112 |
+
"model.language_model.layers.13.post_attention_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 113 |
+
"model.language_model.layers.14.input_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 114 |
+
"model.language_model.layers.14.linear_attn.A_log": "model-00013-of-00015.safetensors",
|
| 115 |
+
"model.language_model.layers.14.linear_attn.conv1d.weight": "model-00013-of-00015.safetensors",
|
| 116 |
+
"model.language_model.layers.14.linear_attn.dt_bias": "model-00013-of-00015.safetensors",
|
| 117 |
+
"model.language_model.layers.14.linear_attn.in_proj_a.weight": "model-00013-of-00015.safetensors",
|
| 118 |
+
"model.language_model.layers.14.linear_attn.in_proj_b.weight": "model-00013-of-00015.safetensors",
|
| 119 |
+
"model.language_model.layers.14.linear_attn.in_proj_qkv.weight": "model-00013-of-00015.safetensors",
|
| 120 |
+
"model.language_model.layers.14.linear_attn.in_proj_z.weight": "model-00013-of-00015.safetensors",
|
| 121 |
+
"model.language_model.layers.14.linear_attn.norm.weight": "model-00013-of-00015.safetensors",
|
| 122 |
+
"model.language_model.layers.14.linear_attn.out_proj.weight": "model-00013-of-00015.safetensors",
|
| 123 |
+
"model.language_model.layers.14.mlp.experts.down_proj": "model-00005-of-00015.safetensors",
|
| 124 |
+
"model.language_model.layers.14.mlp.experts.gate_up_proj": "model-00004-of-00015.safetensors",
|
| 125 |
+
"model.language_model.layers.14.mlp.gate.weight": "model-00013-of-00015.safetensors",
|
| 126 |
+
"model.language_model.layers.14.mlp.shared_expert.down_proj.weight": "model-00013-of-00015.safetensors",
|
| 127 |
+
"model.language_model.layers.14.mlp.shared_expert.gate_proj.weight": "model-00005-of-00015.safetensors",
|
| 128 |
+
"model.language_model.layers.14.mlp.shared_expert.up_proj.weight": "model-00005-of-00015.safetensors",
|
| 129 |
+
"model.language_model.layers.14.mlp.shared_expert_gate.weight": "model-00013-of-00015.safetensors",
|
| 130 |
+
"model.language_model.layers.14.post_attention_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 131 |
+
"model.language_model.layers.15.input_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 132 |
+
"model.language_model.layers.15.mlp.experts.down_proj": "model-00005-of-00015.safetensors",
|
| 133 |
+
"model.language_model.layers.15.mlp.experts.gate_up_proj": "model-00005-of-00015.safetensors",
|
| 134 |
+
"model.language_model.layers.15.mlp.gate.weight": "model-00013-of-00015.safetensors",
|
| 135 |
+
"model.language_model.layers.15.mlp.shared_expert.down_proj.weight": "model-00013-of-00015.safetensors",
|
| 136 |
+
"model.language_model.layers.15.mlp.shared_expert.gate_proj.weight": "model-00005-of-00015.safetensors",
|
| 137 |
+
"model.language_model.layers.15.mlp.shared_expert.up_proj.weight": "model-00005-of-00015.safetensors",
|
| 138 |
+
"model.language_model.layers.15.mlp.shared_expert_gate.weight": "model-00013-of-00015.safetensors",
|
| 139 |
+
"model.language_model.layers.15.post_attention_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 140 |
+
"model.language_model.layers.15.self_attn.k_norm.weight": "model-00013-of-00015.safetensors",
|
| 141 |
+
"model.language_model.layers.15.self_attn.k_proj.weight": "model-00013-of-00015.safetensors",
|
| 142 |
+
"model.language_model.layers.15.self_attn.o_proj.weight": "model-00013-of-00015.safetensors",
|
| 143 |
+
"model.language_model.layers.15.self_attn.q_norm.weight": "model-00013-of-00015.safetensors",
|
| 144 |
+
"model.language_model.layers.15.self_attn.q_proj.weight": "model-00013-of-00015.safetensors",
|
| 145 |
+
"model.language_model.layers.15.self_attn.v_proj.weight": "model-00013-of-00015.safetensors",
|
| 146 |
+
"model.language_model.layers.16.input_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 147 |
+
"model.language_model.layers.16.linear_attn.A_log": "model-00005-of-00015.safetensors",
|
| 148 |
+
"model.language_model.layers.16.linear_attn.conv1d.weight": "model-00013-of-00015.safetensors",
|
| 149 |
+
"model.language_model.layers.16.linear_attn.dt_bias": "model-00013-of-00015.safetensors",
|
| 150 |
+
"model.language_model.layers.16.linear_attn.in_proj_a.weight": "model-00013-of-00015.safetensors",
|
| 151 |
+
"model.language_model.layers.16.linear_attn.in_proj_b.weight": "model-00013-of-00015.safetensors",
|
| 152 |
+
"model.language_model.layers.16.linear_attn.in_proj_qkv.weight": "model-00013-of-00015.safetensors",
|
| 153 |
+
"model.language_model.layers.16.linear_attn.in_proj_z.weight": "model-00005-of-00015.safetensors",
|
| 154 |
+
"model.language_model.layers.16.linear_attn.norm.weight": "model-00013-of-00015.safetensors",
|
| 155 |
+
"model.language_model.layers.16.linear_attn.out_proj.weight": "model-00013-of-00015.safetensors",
|
| 156 |
+
"model.language_model.layers.16.mlp.experts.down_proj": "model-00005-of-00015.safetensors",
|
| 157 |
+
"model.language_model.layers.16.mlp.experts.gate_up_proj": "model-00005-of-00015.safetensors",
|
| 158 |
+
"model.language_model.layers.16.mlp.gate.weight": "model-00013-of-00015.safetensors",
|
| 159 |
+
"model.language_model.layers.16.mlp.shared_expert.down_proj.weight": "model-00013-of-00015.safetensors",
|
| 160 |
+
"model.language_model.layers.16.mlp.shared_expert.gate_proj.weight": "model-00005-of-00015.safetensors",
|
| 161 |
+
"model.language_model.layers.16.mlp.shared_expert.up_proj.weight": "model-00005-of-00015.safetensors",
|
| 162 |
+
"model.language_model.layers.16.mlp.shared_expert_gate.weight": "model-00013-of-00015.safetensors",
|
| 163 |
+
"model.language_model.layers.16.post_attention_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 164 |
+
"model.language_model.layers.17.input_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 165 |
+
"model.language_model.layers.17.linear_attn.A_log": "model-00013-of-00015.safetensors",
|
| 166 |
+
"model.language_model.layers.17.linear_attn.conv1d.weight": "model-00013-of-00015.safetensors",
|
| 167 |
+
"model.language_model.layers.17.linear_attn.dt_bias": "model-00013-of-00015.safetensors",
|
| 168 |
+
"model.language_model.layers.17.linear_attn.in_proj_a.weight": "model-00013-of-00015.safetensors",
|
| 169 |
+
"model.language_model.layers.17.linear_attn.in_proj_b.weight": "model-00013-of-00015.safetensors",
|
| 170 |
+
"model.language_model.layers.17.linear_attn.in_proj_qkv.weight": "model-00013-of-00015.safetensors",
|
| 171 |
+
"model.language_model.layers.17.linear_attn.in_proj_z.weight": "model-00013-of-00015.safetensors",
|
| 172 |
+
"model.language_model.layers.17.linear_attn.norm.weight": "model-00013-of-00015.safetensors",
|
| 173 |
+
"model.language_model.layers.17.linear_attn.out_proj.weight": "model-00013-of-00015.safetensors",
|
| 174 |
+
"model.language_model.layers.17.mlp.experts.down_proj": "model-00006-of-00015.safetensors",
|
| 175 |
+
"model.language_model.layers.17.mlp.experts.gate_up_proj": "model-00005-of-00015.safetensors",
|
| 176 |
+
"model.language_model.layers.17.mlp.gate.weight": "model-00013-of-00015.safetensors",
|
| 177 |
+
"model.language_model.layers.17.mlp.shared_expert.down_proj.weight": "model-00013-of-00015.safetensors",
|
| 178 |
+
"model.language_model.layers.17.mlp.shared_expert.gate_proj.weight": "model-00006-of-00015.safetensors",
|
| 179 |
+
"model.language_model.layers.17.mlp.shared_expert.up_proj.weight": "model-00006-of-00015.safetensors",
|
| 180 |
+
"model.language_model.layers.17.mlp.shared_expert_gate.weight": "model-00013-of-00015.safetensors",
|
| 181 |
+
"model.language_model.layers.17.post_attention_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 182 |
+
"model.language_model.layers.18.input_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 183 |
+
"model.language_model.layers.18.linear_attn.A_log": "model-00006-of-00015.safetensors",
|
| 184 |
+
"model.language_model.layers.18.linear_attn.conv1d.weight": "model-00006-of-00015.safetensors",
|
| 185 |
+
"model.language_model.layers.18.linear_attn.dt_bias": "model-00013-of-00015.safetensors",
|
| 186 |
+
"model.language_model.layers.18.linear_attn.in_proj_a.weight": "model-00006-of-00015.safetensors",
|
| 187 |
+
"model.language_model.layers.18.linear_attn.in_proj_b.weight": "model-00013-of-00015.safetensors",
|
| 188 |
+
"model.language_model.layers.18.linear_attn.in_proj_qkv.weight": "model-00013-of-00015.safetensors",
|
| 189 |
+
"model.language_model.layers.18.linear_attn.in_proj_z.weight": "model-00006-of-00015.safetensors",
|
| 190 |
+
"model.language_model.layers.18.linear_attn.norm.weight": "model-00006-of-00015.safetensors",
|
| 191 |
+
"model.language_model.layers.18.linear_attn.out_proj.weight": "model-00013-of-00015.safetensors",
|
| 192 |
+
"model.language_model.layers.18.mlp.experts.down_proj": "model-00006-of-00015.safetensors",
|
| 193 |
+
"model.language_model.layers.18.mlp.experts.gate_up_proj": "model-00006-of-00015.safetensors",
|
| 194 |
+
"model.language_model.layers.18.mlp.gate.weight": "model-00013-of-00015.safetensors",
|
| 195 |
+
"model.language_model.layers.18.mlp.shared_expert.down_proj.weight": "model-00013-of-00015.safetensors",
|
| 196 |
+
"model.language_model.layers.18.mlp.shared_expert.gate_proj.weight": "model-00006-of-00015.safetensors",
|
| 197 |
+
"model.language_model.layers.18.mlp.shared_expert.up_proj.weight": "model-00006-of-00015.safetensors",
|
| 198 |
+
"model.language_model.layers.18.mlp.shared_expert_gate.weight": "model-00013-of-00015.safetensors",
|
| 199 |
+
"model.language_model.layers.18.post_attention_layernorm.weight": "model-00006-of-00015.safetensors",
|
| 200 |
+
"model.language_model.layers.19.input_layernorm.weight": "model-00006-of-00015.safetensors",
|
| 201 |
+
"model.language_model.layers.19.mlp.experts.down_proj": "model-00006-of-00015.safetensors",
|
| 202 |
+
"model.language_model.layers.19.mlp.experts.gate_up_proj": "model-00006-of-00015.safetensors",
|
| 203 |
+
"model.language_model.layers.19.mlp.gate.weight": "model-00013-of-00015.safetensors",
|
| 204 |
+
"model.language_model.layers.19.mlp.shared_expert.down_proj.weight": "model-00013-of-00015.safetensors",
|
| 205 |
+
"model.language_model.layers.19.mlp.shared_expert.gate_proj.weight": "model-00006-of-00015.safetensors",
|
| 206 |
+
"model.language_model.layers.19.mlp.shared_expert.up_proj.weight": "model-00006-of-00015.safetensors",
|
| 207 |
+
"model.language_model.layers.19.mlp.shared_expert_gate.weight": "model-00013-of-00015.safetensors",
|
| 208 |
+
"model.language_model.layers.19.post_attention_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 209 |
+
"model.language_model.layers.19.self_attn.k_norm.weight": "model-00013-of-00015.safetensors",
|
| 210 |
+
"model.language_model.layers.19.self_attn.k_proj.weight": "model-00006-of-00015.safetensors",
|
| 211 |
+
"model.language_model.layers.19.self_attn.o_proj.weight": "model-00006-of-00015.safetensors",
|
| 212 |
+
"model.language_model.layers.19.self_attn.q_norm.weight": "model-00013-of-00015.safetensors",
|
| 213 |
+
"model.language_model.layers.19.self_attn.q_proj.weight": "model-00006-of-00015.safetensors",
|
| 214 |
+
"model.language_model.layers.19.self_attn.v_proj.weight": "model-00006-of-00015.safetensors",
|
| 215 |
+
"model.language_model.layers.2.input_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 216 |
+
"model.language_model.layers.2.linear_attn.A_log": "model-00013-of-00015.safetensors",
|
| 217 |
+
"model.language_model.layers.2.linear_attn.conv1d.weight": "model-00013-of-00015.safetensors",
|
| 218 |
+
"model.language_model.layers.2.linear_attn.dt_bias": "model-00013-of-00015.safetensors",
|
| 219 |
+
"model.language_model.layers.2.linear_attn.in_proj_a.weight": "model-00013-of-00015.safetensors",
|
| 220 |
+
"model.language_model.layers.2.linear_attn.in_proj_b.weight": "model-00013-of-00015.safetensors",
|
| 221 |
+
"model.language_model.layers.2.linear_attn.in_proj_qkv.weight": "model-00013-of-00015.safetensors",
|
| 222 |
+
"model.language_model.layers.2.linear_attn.in_proj_z.weight": "model-00013-of-00015.safetensors",
|
| 223 |
+
"model.language_model.layers.2.linear_attn.norm.weight": "model-00013-of-00015.safetensors",
|
| 224 |
+
"model.language_model.layers.2.linear_attn.out_proj.weight": "model-00013-of-00015.safetensors",
|
| 225 |
+
"model.language_model.layers.2.mlp.experts.down_proj": "model-00001-of-00015.safetensors",
|
| 226 |
+
"model.language_model.layers.2.mlp.experts.gate_up_proj": "model-00000-of-00015.safetensors",
|
| 227 |
+
"model.language_model.layers.2.mlp.gate.weight": "model-00013-of-00015.safetensors",
|
| 228 |
+
"model.language_model.layers.2.mlp.shared_expert.down_proj.weight": "model-00013-of-00015.safetensors",
|
| 229 |
+
"model.language_model.layers.2.mlp.shared_expert.gate_proj.weight": "model-00001-of-00015.safetensors",
|
| 230 |
+
"model.language_model.layers.2.mlp.shared_expert.up_proj.weight": "model-00001-of-00015.safetensors",
|
| 231 |
+
"model.language_model.layers.2.mlp.shared_expert_gate.weight": "model-00013-of-00015.safetensors",
|
| 232 |
+
"model.language_model.layers.2.post_attention_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 233 |
+
"model.language_model.layers.20.input_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 234 |
+
"model.language_model.layers.20.linear_attn.A_log": "model-00006-of-00015.safetensors",
|
| 235 |
+
"model.language_model.layers.20.linear_attn.conv1d.weight": "model-00013-of-00015.safetensors",
|
| 236 |
+
"model.language_model.layers.20.linear_attn.dt_bias": "model-00013-of-00015.safetensors",
|
| 237 |
+
"model.language_model.layers.20.linear_attn.in_proj_a.weight": "model-00006-of-00015.safetensors",
|
| 238 |
+
"model.language_model.layers.20.linear_attn.in_proj_b.weight": "model-00013-of-00015.safetensors",
|
| 239 |
+
"model.language_model.layers.20.linear_attn.in_proj_qkv.weight": "model-00013-of-00015.safetensors",
|
| 240 |
+
"model.language_model.layers.20.linear_attn.in_proj_z.weight": "model-00006-of-00015.safetensors",
|
| 241 |
+
"model.language_model.layers.20.linear_attn.norm.weight": "model-00013-of-00015.safetensors",
|
| 242 |
+
"model.language_model.layers.20.linear_attn.out_proj.weight": "model-00013-of-00015.safetensors",
|
| 243 |
+
"model.language_model.layers.20.mlp.experts.down_proj": "model-00007-of-00015.safetensors",
|
| 244 |
+
"model.language_model.layers.20.mlp.experts.gate_up_proj": "model-00006-of-00015.safetensors",
|
| 245 |
+
"model.language_model.layers.20.mlp.gate.weight": "model-00013-of-00015.safetensors",
|
| 246 |
+
"model.language_model.layers.20.mlp.shared_expert.down_proj.weight": "model-00013-of-00015.safetensors",
|
| 247 |
+
"model.language_model.layers.20.mlp.shared_expert.gate_proj.weight": "model-00007-of-00015.safetensors",
|
| 248 |
+
"model.language_model.layers.20.mlp.shared_expert.up_proj.weight": "model-00007-of-00015.safetensors",
|
| 249 |
+
"model.language_model.layers.20.mlp.shared_expert_gate.weight": "model-00007-of-00015.safetensors",
|
| 250 |
+
"model.language_model.layers.20.post_attention_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 251 |
+
"model.language_model.layers.21.input_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 252 |
+
"model.language_model.layers.21.linear_attn.A_log": "model-00013-of-00015.safetensors",
|
| 253 |
+
"model.language_model.layers.21.linear_attn.conv1d.weight": "model-00013-of-00015.safetensors",
|
| 254 |
+
"model.language_model.layers.21.linear_attn.dt_bias": "model-00013-of-00015.safetensors",
|
| 255 |
+
"model.language_model.layers.21.linear_attn.in_proj_a.weight": "model-00013-of-00015.safetensors",
|
| 256 |
+
"model.language_model.layers.21.linear_attn.in_proj_b.weight": "model-00013-of-00015.safetensors",
|
| 257 |
+
"model.language_model.layers.21.linear_attn.in_proj_qkv.weight": "model-00013-of-00015.safetensors",
|
| 258 |
+
"model.language_model.layers.21.linear_attn.in_proj_z.weight": "model-00013-of-00015.safetensors",
|
| 259 |
+
"model.language_model.layers.21.linear_attn.norm.weight": "model-00013-of-00015.safetensors",
|
| 260 |
+
"model.language_model.layers.21.linear_attn.out_proj.weight": "model-00013-of-00015.safetensors",
|
| 261 |
+
"model.language_model.layers.21.mlp.experts.down_proj": "model-00007-of-00015.safetensors",
|
| 262 |
+
"model.language_model.layers.21.mlp.experts.gate_up_proj": "model-00007-of-00015.safetensors",
|
| 263 |
+
"model.language_model.layers.21.mlp.gate.weight": "model-00013-of-00015.safetensors",
|
| 264 |
+
"model.language_model.layers.21.mlp.shared_expert.down_proj.weight": "model-00013-of-00015.safetensors",
|
| 265 |
+
"model.language_model.layers.21.mlp.shared_expert.gate_proj.weight": "model-00007-of-00015.safetensors",
|
| 266 |
+
"model.language_model.layers.21.mlp.shared_expert.up_proj.weight": "model-00007-of-00015.safetensors",
|
| 267 |
+
"model.language_model.layers.21.mlp.shared_expert_gate.weight": "model-00013-of-00015.safetensors",
|
| 268 |
+
"model.language_model.layers.21.post_attention_layernorm.weight": "model-00007-of-00015.safetensors",
|
| 269 |
+
"model.language_model.layers.22.input_layernorm.weight": "model-00007-of-00015.safetensors",
|
| 270 |
+
"model.language_model.layers.22.linear_attn.A_log": "model-00007-of-00015.safetensors",
|
| 271 |
+
"model.language_model.layers.22.linear_attn.conv1d.weight": "model-00007-of-00015.safetensors",
|
| 272 |
+
"model.language_model.layers.22.linear_attn.dt_bias": "model-00013-of-00015.safetensors",
|
| 273 |
+
"model.language_model.layers.22.linear_attn.in_proj_a.weight": "model-00007-of-00015.safetensors",
|
| 274 |
+
"model.language_model.layers.22.linear_attn.in_proj_b.weight": "model-00013-of-00015.safetensors",
|
| 275 |
+
"model.language_model.layers.22.linear_attn.in_proj_qkv.weight": "model-00013-of-00015.safetensors",
|
| 276 |
+
"model.language_model.layers.22.linear_attn.in_proj_z.weight": "model-00007-of-00015.safetensors",
|
| 277 |
+
"model.language_model.layers.22.linear_attn.norm.weight": "model-00007-of-00015.safetensors",
|
| 278 |
+
"model.language_model.layers.22.linear_attn.out_proj.weight": "model-00013-of-00015.safetensors",
|
| 279 |
+
"model.language_model.layers.22.mlp.experts.down_proj": "model-00007-of-00015.safetensors",
|
| 280 |
+
"model.language_model.layers.22.mlp.experts.gate_up_proj": "model-00007-of-00015.safetensors",
|
| 281 |
+
"model.language_model.layers.22.mlp.gate.weight": "model-00013-of-00015.safetensors",
|
| 282 |
+
"model.language_model.layers.22.mlp.shared_expert.down_proj.weight": "model-00013-of-00015.safetensors",
|
| 283 |
+
"model.language_model.layers.22.mlp.shared_expert.gate_proj.weight": "model-00007-of-00015.safetensors",
|
| 284 |
+
"model.language_model.layers.22.mlp.shared_expert.up_proj.weight": "model-00007-of-00015.safetensors",
|
| 285 |
+
"model.language_model.layers.22.mlp.shared_expert_gate.weight": "model-00013-of-00015.safetensors",
|
| 286 |
+
"model.language_model.layers.22.post_attention_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 287 |
+
"model.language_model.layers.23.input_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 288 |
+
"model.language_model.layers.23.mlp.experts.down_proj": "model-00008-of-00015.safetensors",
|
| 289 |
+
"model.language_model.layers.23.mlp.experts.gate_up_proj": "model-00007-of-00015.safetensors",
|
| 290 |
+
"model.language_model.layers.23.mlp.gate.weight": "model-00013-of-00015.safetensors",
|
| 291 |
+
"model.language_model.layers.23.mlp.shared_expert.down_proj.weight": "model-00013-of-00015.safetensors",
|
| 292 |
+
"model.language_model.layers.23.mlp.shared_expert.gate_proj.weight": "model-00008-of-00015.safetensors",
|
| 293 |
+
"model.language_model.layers.23.mlp.shared_expert.up_proj.weight": "model-00008-of-00015.safetensors",
|
| 294 |
+
"model.language_model.layers.23.mlp.shared_expert_gate.weight": "model-00013-of-00015.safetensors",
|
| 295 |
+
"model.language_model.layers.23.post_attention_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 296 |
+
"model.language_model.layers.23.self_attn.k_norm.weight": "model-00013-of-00015.safetensors",
|
| 297 |
+
"model.language_model.layers.23.self_attn.k_proj.weight": "model-00013-of-00015.safetensors",
|
| 298 |
+
"model.language_model.layers.23.self_attn.o_proj.weight": "model-00013-of-00015.safetensors",
|
| 299 |
+
"model.language_model.layers.23.self_attn.q_norm.weight": "model-00013-of-00015.safetensors",
|
| 300 |
+
"model.language_model.layers.23.self_attn.q_proj.weight": "model-00013-of-00015.safetensors",
|
| 301 |
+
"model.language_model.layers.23.self_attn.v_proj.weight": "model-00013-of-00015.safetensors",
|
| 302 |
+
"model.language_model.layers.24.input_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 303 |
+
"model.language_model.layers.24.linear_attn.A_log": "model-00013-of-00015.safetensors",
|
| 304 |
+
"model.language_model.layers.24.linear_attn.conv1d.weight": "model-00013-of-00015.safetensors",
|
| 305 |
+
"model.language_model.layers.24.linear_attn.dt_bias": "model-00013-of-00015.safetensors",
|
| 306 |
+
"model.language_model.layers.24.linear_attn.in_proj_a.weight": "model-00013-of-00015.safetensors",
|
| 307 |
+
"model.language_model.layers.24.linear_attn.in_proj_b.weight": "model-00013-of-00015.safetensors",
|
| 308 |
+
"model.language_model.layers.24.linear_attn.in_proj_qkv.weight": "model-00013-of-00015.safetensors",
|
| 309 |
+
"model.language_model.layers.24.linear_attn.in_proj_z.weight": "model-00013-of-00015.safetensors",
|
| 310 |
+
"model.language_model.layers.24.linear_attn.norm.weight": "model-00013-of-00015.safetensors",
|
| 311 |
+
"model.language_model.layers.24.linear_attn.out_proj.weight": "model-00013-of-00015.safetensors",
|
| 312 |
+
"model.language_model.layers.24.mlp.experts.down_proj": "model-00008-of-00015.safetensors",
|
| 313 |
+
"model.language_model.layers.24.mlp.experts.gate_up_proj": "model-00008-of-00015.safetensors",
|
| 314 |
+
"model.language_model.layers.24.mlp.gate.weight": "model-00013-of-00015.safetensors",
|
| 315 |
+
"model.language_model.layers.24.mlp.shared_expert.down_proj.weight": "model-00013-of-00015.safetensors",
|
| 316 |
+
"model.language_model.layers.24.mlp.shared_expert.gate_proj.weight": "model-00008-of-00015.safetensors",
|
| 317 |
+
"model.language_model.layers.24.mlp.shared_expert.up_proj.weight": "model-00008-of-00015.safetensors",
|
| 318 |
+
"model.language_model.layers.24.mlp.shared_expert_gate.weight": "model-00008-of-00015.safetensors",
|
| 319 |
+
"model.language_model.layers.24.post_attention_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 320 |
+
"model.language_model.layers.25.input_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 321 |
+
"model.language_model.layers.25.linear_attn.A_log": "model-00008-of-00015.safetensors",
|
| 322 |
+
"model.language_model.layers.25.linear_attn.conv1d.weight": "model-00013-of-00015.safetensors",
|
| 323 |
+
"model.language_model.layers.25.linear_attn.dt_bias": "model-00013-of-00015.safetensors",
|
| 324 |
+
"model.language_model.layers.25.linear_attn.in_proj_a.weight": "model-00008-of-00015.safetensors",
|
| 325 |
+
"model.language_model.layers.25.linear_attn.in_proj_b.weight": "model-00013-of-00015.safetensors",
|
| 326 |
+
"model.language_model.layers.25.linear_attn.in_proj_qkv.weight": "model-00013-of-00015.safetensors",
|
| 327 |
+
"model.language_model.layers.25.linear_attn.in_proj_z.weight": "model-00008-of-00015.safetensors",
|
| 328 |
+
"model.language_model.layers.25.linear_attn.norm.weight": "model-00013-of-00015.safetensors",
|
| 329 |
+
"model.language_model.layers.25.linear_attn.out_proj.weight": "model-00013-of-00015.safetensors",
|
| 330 |
+
"model.language_model.layers.25.mlp.experts.down_proj": "model-00008-of-00015.safetensors",
|
| 331 |
+
"model.language_model.layers.25.mlp.experts.gate_up_proj": "model-00008-of-00015.safetensors",
|
| 332 |
+
"model.language_model.layers.25.mlp.gate.weight": "model-00013-of-00015.safetensors",
|
| 333 |
+
"model.language_model.layers.25.mlp.shared_expert.down_proj.weight": "model-00013-of-00015.safetensors",
|
| 334 |
+
"model.language_model.layers.25.mlp.shared_expert.gate_proj.weight": "model-00008-of-00015.safetensors",
|
| 335 |
+
"model.language_model.layers.25.mlp.shared_expert.up_proj.weight": "model-00008-of-00015.safetensors",
|
| 336 |
+
"model.language_model.layers.25.mlp.shared_expert_gate.weight": "model-00013-of-00015.safetensors",
|
| 337 |
+
"model.language_model.layers.25.post_attention_layernorm.weight": "model-00008-of-00015.safetensors",
|
| 338 |
+
"model.language_model.layers.26.input_layernorm.weight": "model-00008-of-00015.safetensors",
|
| 339 |
+
"model.language_model.layers.26.linear_attn.A_log": "model-00013-of-00015.safetensors",
|
| 340 |
+
"model.language_model.layers.26.linear_attn.conv1d.weight": "model-00013-of-00015.safetensors",
|
| 341 |
+
"model.language_model.layers.26.linear_attn.dt_bias": "model-00013-of-00015.safetensors",
|
| 342 |
+
"model.language_model.layers.26.linear_attn.in_proj_a.weight": "model-00013-of-00015.safetensors",
|
| 343 |
+
"model.language_model.layers.26.linear_attn.in_proj_b.weight": "model-00013-of-00015.safetensors",
|
| 344 |
+
"model.language_model.layers.26.linear_attn.in_proj_qkv.weight": "model-00013-of-00015.safetensors",
|
| 345 |
+
"model.language_model.layers.26.linear_attn.in_proj_z.weight": "model-00013-of-00015.safetensors",
|
| 346 |
+
"model.language_model.layers.26.linear_attn.norm.weight": "model-00013-of-00015.safetensors",
|
| 347 |
+
"model.language_model.layers.26.linear_attn.out_proj.weight": "model-00013-of-00015.safetensors",
|
| 348 |
+
"model.language_model.layers.26.mlp.experts.down_proj": "model-00009-of-00015.safetensors",
|
| 349 |
+
"model.language_model.layers.26.mlp.experts.gate_up_proj": "model-00008-of-00015.safetensors",
|
| 350 |
+
"model.language_model.layers.26.mlp.gate.weight": "model-00013-of-00015.safetensors",
|
| 351 |
+
"model.language_model.layers.26.mlp.shared_expert.down_proj.weight": "model-00013-of-00015.safetensors",
|
| 352 |
+
"model.language_model.layers.26.mlp.shared_expert.gate_proj.weight": "model-00009-of-00015.safetensors",
|
| 353 |
+
"model.language_model.layers.26.mlp.shared_expert.up_proj.weight": "model-00009-of-00015.safetensors",
|
| 354 |
+
"model.language_model.layers.26.mlp.shared_expert_gate.weight": "model-00013-of-00015.safetensors",
|
| 355 |
+
"model.language_model.layers.26.post_attention_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 356 |
+
"model.language_model.layers.27.input_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 357 |
+
"model.language_model.layers.27.mlp.experts.down_proj": "model-00009-of-00015.safetensors",
|
| 358 |
+
"model.language_model.layers.27.mlp.experts.gate_up_proj": "model-00009-of-00015.safetensors",
|
| 359 |
+
"model.language_model.layers.27.mlp.gate.weight": "model-00013-of-00015.safetensors",
|
| 360 |
+
"model.language_model.layers.27.mlp.shared_expert.down_proj.weight": "model-00013-of-00015.safetensors",
|
| 361 |
+
"model.language_model.layers.27.mlp.shared_expert.gate_proj.weight": "model-00009-of-00015.safetensors",
|
| 362 |
+
"model.language_model.layers.27.mlp.shared_expert.up_proj.weight": "model-00009-of-00015.safetensors",
|
| 363 |
+
"model.language_model.layers.27.mlp.shared_expert_gate.weight": "model-00013-of-00015.safetensors",
|
| 364 |
+
"model.language_model.layers.27.post_attention_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 365 |
+
"model.language_model.layers.27.self_attn.k_norm.weight": "model-00013-of-00015.safetensors",
|
| 366 |
+
"model.language_model.layers.27.self_attn.k_proj.weight": "model-00013-of-00015.safetensors",
|
| 367 |
+
"model.language_model.layers.27.self_attn.o_proj.weight": "model-00013-of-00015.safetensors",
|
| 368 |
+
"model.language_model.layers.27.self_attn.q_norm.weight": "model-00013-of-00015.safetensors",
|
| 369 |
+
"model.language_model.layers.27.self_attn.q_proj.weight": "model-00013-of-00015.safetensors",
|
| 370 |
+
"model.language_model.layers.27.self_attn.v_proj.weight": "model-00013-of-00015.safetensors",
|
| 371 |
+
"model.language_model.layers.28.input_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 372 |
+
"model.language_model.layers.28.linear_attn.A_log": "model-00009-of-00015.safetensors",
|
| 373 |
+
"model.language_model.layers.28.linear_attn.conv1d.weight": "model-00009-of-00015.safetensors",
|
| 374 |
+
"model.language_model.layers.28.linear_attn.dt_bias": "model-00013-of-00015.safetensors",
|
| 375 |
+
"model.language_model.layers.28.linear_attn.in_proj_a.weight": "model-00009-of-00015.safetensors",
|
| 376 |
+
"model.language_model.layers.28.linear_attn.in_proj_b.weight": "model-00013-of-00015.safetensors",
|
| 377 |
+
"model.language_model.layers.28.linear_attn.in_proj_qkv.weight": "model-00013-of-00015.safetensors",
|
| 378 |
+
"model.language_model.layers.28.linear_attn.in_proj_z.weight": "model-00009-of-00015.safetensors",
|
| 379 |
+
"model.language_model.layers.28.linear_attn.norm.weight": "model-00009-of-00015.safetensors",
|
| 380 |
+
"model.language_model.layers.28.linear_attn.out_proj.weight": "model-00013-of-00015.safetensors",
|
| 381 |
+
"model.language_model.layers.28.mlp.experts.down_proj": "model-00009-of-00015.safetensors",
|
| 382 |
+
"model.language_model.layers.28.mlp.experts.gate_up_proj": "model-00009-of-00015.safetensors",
|
| 383 |
+
"model.language_model.layers.28.mlp.gate.weight": "model-00013-of-00015.safetensors",
|
| 384 |
+
"model.language_model.layers.28.mlp.shared_expert.down_proj.weight": "model-00013-of-00015.safetensors",
|
| 385 |
+
"model.language_model.layers.28.mlp.shared_expert.gate_proj.weight": "model-00009-of-00015.safetensors",
|
| 386 |
+
"model.language_model.layers.28.mlp.shared_expert.up_proj.weight": "model-00009-of-00015.safetensors",
|
| 387 |
+
"model.language_model.layers.28.mlp.shared_expert_gate.weight": "model-00009-of-00015.safetensors",
|
| 388 |
+
"model.language_model.layers.28.post_attention_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 389 |
+
"model.language_model.layers.29.input_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 390 |
+
"model.language_model.layers.29.linear_attn.A_log": "model-00013-of-00015.safetensors",
|
| 391 |
+
"model.language_model.layers.29.linear_attn.conv1d.weight": "model-00013-of-00015.safetensors",
|
| 392 |
+
"model.language_model.layers.29.linear_attn.dt_bias": "model-00013-of-00015.safetensors",
|
| 393 |
+
"model.language_model.layers.29.linear_attn.in_proj_a.weight": "model-00013-of-00015.safetensors",
|
| 394 |
+
"model.language_model.layers.29.linear_attn.in_proj_b.weight": "model-00013-of-00015.safetensors",
|
| 395 |
+
"model.language_model.layers.29.linear_attn.in_proj_qkv.weight": "model-00013-of-00015.safetensors",
|
| 396 |
+
"model.language_model.layers.29.linear_attn.in_proj_z.weight": "model-00013-of-00015.safetensors",
|
| 397 |
+
"model.language_model.layers.29.linear_attn.norm.weight": "model-00013-of-00015.safetensors",
|
| 398 |
+
"model.language_model.layers.29.linear_attn.out_proj.weight": "model-00013-of-00015.safetensors",
|
| 399 |
+
"model.language_model.layers.29.mlp.experts.down_proj": "model-00010-of-00015.safetensors",
|
| 400 |
+
"model.language_model.layers.29.mlp.experts.gate_up_proj": "model-00009-of-00015.safetensors",
|
| 401 |
+
"model.language_model.layers.29.mlp.gate.weight": "model-00013-of-00015.safetensors",
|
| 402 |
+
"model.language_model.layers.29.mlp.shared_expert.down_proj.weight": "model-00013-of-00015.safetensors",
|
| 403 |
+
"model.language_model.layers.29.mlp.shared_expert.gate_proj.weight": "model-00010-of-00015.safetensors",
|
| 404 |
+
"model.language_model.layers.29.mlp.shared_expert.up_proj.weight": "model-00010-of-00015.safetensors",
|
| 405 |
+
"model.language_model.layers.29.mlp.shared_expert_gate.weight": "model-00013-of-00015.safetensors",
|
| 406 |
+
"model.language_model.layers.29.post_attention_layernorm.weight": "model-00009-of-00015.safetensors",
|
| 407 |
+
"model.language_model.layers.3.input_layernorm.weight": "model-00001-of-00015.safetensors",
|
| 408 |
+
"model.language_model.layers.3.mlp.experts.down_proj": "model-00001-of-00015.safetensors",
|
| 409 |
+
"model.language_model.layers.3.mlp.experts.gate_up_proj": "model-00001-of-00015.safetensors",
|
| 410 |
+
"model.language_model.layers.3.mlp.gate.weight": "model-00013-of-00015.safetensors",
|
| 411 |
+
"model.language_model.layers.3.mlp.shared_expert.down_proj.weight": "model-00013-of-00015.safetensors",
|
| 412 |
+
"model.language_model.layers.3.mlp.shared_expert.gate_proj.weight": "model-00001-of-00015.safetensors",
|
| 413 |
+
"model.language_model.layers.3.mlp.shared_expert.up_proj.weight": "model-00001-of-00015.safetensors",
|
| 414 |
+
"model.language_model.layers.3.mlp.shared_expert_gate.weight": "model-00013-of-00015.safetensors",
|
| 415 |
+
"model.language_model.layers.3.post_attention_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 416 |
+
"model.language_model.layers.3.self_attn.k_norm.weight": "model-00013-of-00015.safetensors",
|
| 417 |
+
"model.language_model.layers.3.self_attn.k_proj.weight": "model-00013-of-00015.safetensors",
|
| 418 |
+
"model.language_model.layers.3.self_attn.o_proj.weight": "model-00013-of-00015.safetensors",
|
| 419 |
+
"model.language_model.layers.3.self_attn.q_norm.weight": "model-00013-of-00015.safetensors",
|
| 420 |
+
"model.language_model.layers.3.self_attn.q_proj.weight": "model-00013-of-00015.safetensors",
|
| 421 |
+
"model.language_model.layers.3.self_attn.v_proj.weight": "model-00013-of-00015.safetensors",
|
| 422 |
+
"model.language_model.layers.30.input_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 423 |
+
"model.language_model.layers.30.linear_attn.A_log": "model-00010-of-00015.safetensors",
|
| 424 |
+
"model.language_model.layers.30.linear_attn.conv1d.weight": "model-00013-of-00015.safetensors",
|
| 425 |
+
"model.language_model.layers.30.linear_attn.dt_bias": "model-00013-of-00015.safetensors",
|
| 426 |
+
"model.language_model.layers.30.linear_attn.in_proj_a.weight": "model-00010-of-00015.safetensors",
|
| 427 |
+
"model.language_model.layers.30.linear_attn.in_proj_b.weight": "model-00013-of-00015.safetensors",
|
| 428 |
+
"model.language_model.layers.30.linear_attn.in_proj_qkv.weight": "model-00013-of-00015.safetensors",
|
| 429 |
+
"model.language_model.layers.30.linear_attn.in_proj_z.weight": "model-00010-of-00015.safetensors",
|
| 430 |
+
"model.language_model.layers.30.linear_attn.norm.weight": "model-00013-of-00015.safetensors",
|
| 431 |
+
"model.language_model.layers.30.linear_attn.out_proj.weight": "model-00013-of-00015.safetensors",
|
| 432 |
+
"model.language_model.layers.30.mlp.experts.down_proj": "model-00010-of-00015.safetensors",
|
| 433 |
+
"model.language_model.layers.30.mlp.experts.gate_up_proj": "model-00010-of-00015.safetensors",
|
| 434 |
+
"model.language_model.layers.30.mlp.gate.weight": "model-00013-of-00015.safetensors",
|
| 435 |
+
"model.language_model.layers.30.mlp.shared_expert.down_proj.weight": "model-00013-of-00015.safetensors",
|
| 436 |
+
"model.language_model.layers.30.mlp.shared_expert.gate_proj.weight": "model-00010-of-00015.safetensors",
|
| 437 |
+
"model.language_model.layers.30.mlp.shared_expert.up_proj.weight": "model-00010-of-00015.safetensors",
|
| 438 |
+
"model.language_model.layers.30.mlp.shared_expert_gate.weight": "model-00013-of-00015.safetensors",
|
| 439 |
+
"model.language_model.layers.30.post_attention_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 440 |
+
"model.language_model.layers.31.input_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 441 |
+
"model.language_model.layers.31.mlp.experts.down_proj": "model-00010-of-00015.safetensors",
|
| 442 |
+
"model.language_model.layers.31.mlp.experts.gate_up_proj": "model-00010-of-00015.safetensors",
|
| 443 |
+
"model.language_model.layers.31.mlp.gate.weight": "model-00013-of-00015.safetensors",
|
| 444 |
+
"model.language_model.layers.31.mlp.shared_expert.down_proj.weight": "model-00013-of-00015.safetensors",
|
| 445 |
+
"model.language_model.layers.31.mlp.shared_expert.gate_proj.weight": "model-00010-of-00015.safetensors",
|
| 446 |
+
"model.language_model.layers.31.mlp.shared_expert.up_proj.weight": "model-00010-of-00015.safetensors",
|
| 447 |
+
"model.language_model.layers.31.mlp.shared_expert_gate.weight": "model-00010-of-00015.safetensors",
|
| 448 |
+
"model.language_model.layers.31.post_attention_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 449 |
+
"model.language_model.layers.31.self_attn.k_norm.weight": "model-00013-of-00015.safetensors",
|
| 450 |
+
"model.language_model.layers.31.self_attn.k_proj.weight": "model-00010-of-00015.safetensors",
|
| 451 |
+
"model.language_model.layers.31.self_attn.o_proj.weight": "model-00010-of-00015.safetensors",
|
| 452 |
+
"model.language_model.layers.31.self_attn.q_norm.weight": "model-00013-of-00015.safetensors",
|
| 453 |
+
"model.language_model.layers.31.self_attn.q_proj.weight": "model-00010-of-00015.safetensors",
|
| 454 |
+
"model.language_model.layers.31.self_attn.v_proj.weight": "model-00010-of-00015.safetensors",
|
| 455 |
+
"model.language_model.layers.32.input_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 456 |
+
"model.language_model.layers.32.linear_attn.A_log": "model-00013-of-00015.safetensors",
|
| 457 |
+
"model.language_model.layers.32.linear_attn.conv1d.weight": "model-00013-of-00015.safetensors",
|
| 458 |
+
"model.language_model.layers.32.linear_attn.dt_bias": "model-00013-of-00015.safetensors",
|
| 459 |
+
"model.language_model.layers.32.linear_attn.in_proj_a.weight": "model-00013-of-00015.safetensors",
|
| 460 |
+
"model.language_model.layers.32.linear_attn.in_proj_b.weight": "model-00013-of-00015.safetensors",
|
| 461 |
+
"model.language_model.layers.32.linear_attn.in_proj_qkv.weight": "model-00013-of-00015.safetensors",
|
| 462 |
+
"model.language_model.layers.32.linear_attn.in_proj_z.weight": "model-00013-of-00015.safetensors",
|
| 463 |
+
"model.language_model.layers.32.linear_attn.norm.weight": "model-00013-of-00015.safetensors",
|
| 464 |
+
"model.language_model.layers.32.linear_attn.out_proj.weight": "model-00014-of-00015.safetensors",
|
| 465 |
+
"model.language_model.layers.32.mlp.experts.down_proj": "model-00011-of-00015.safetensors",
|
| 466 |
+
"model.language_model.layers.32.mlp.experts.gate_up_proj": "model-00010-of-00015.safetensors",
|
| 467 |
+
"model.language_model.layers.32.mlp.gate.weight": "model-00013-of-00015.safetensors",
|
| 468 |
+
"model.language_model.layers.32.mlp.shared_expert.down_proj.weight": "model-00013-of-00015.safetensors",
|
| 469 |
+
"model.language_model.layers.32.mlp.shared_expert.gate_proj.weight": "model-00011-of-00015.safetensors",
|
| 470 |
+
"model.language_model.layers.32.mlp.shared_expert.up_proj.weight": "model-00011-of-00015.safetensors",
|
| 471 |
+
"model.language_model.layers.32.mlp.shared_expert_gate.weight": "model-00014-of-00015.safetensors",
|
| 472 |
+
"model.language_model.layers.32.post_attention_layernorm.weight": "model-00010-of-00015.safetensors",
|
| 473 |
+
"model.language_model.layers.33.input_layernorm.weight": "model-00011-of-00015.safetensors",
|
| 474 |
+
"model.language_model.layers.33.linear_attn.A_log": "model-00011-of-00015.safetensors",
|
| 475 |
+
"model.language_model.layers.33.linear_attn.conv1d.weight": "model-00011-of-00015.safetensors",
|
| 476 |
+
"model.language_model.layers.33.linear_attn.dt_bias": "model-00013-of-00015.safetensors",
|
| 477 |
+
"model.language_model.layers.33.linear_attn.in_proj_a.weight": "model-00011-of-00015.safetensors",
|
| 478 |
+
"model.language_model.layers.33.linear_attn.in_proj_b.weight": "model-00013-of-00015.safetensors",
|
| 479 |
+
"model.language_model.layers.33.linear_attn.in_proj_qkv.weight": "model-00013-of-00015.safetensors",
|
| 480 |
+
"model.language_model.layers.33.linear_attn.in_proj_z.weight": "model-00011-of-00015.safetensors",
|
| 481 |
+
"model.language_model.layers.33.linear_attn.norm.weight": "model-00011-of-00015.safetensors",
|
| 482 |
+
"model.language_model.layers.33.linear_attn.out_proj.weight": "model-00013-of-00015.safetensors",
|
| 483 |
+
"model.language_model.layers.33.mlp.experts.down_proj": "model-00011-of-00015.safetensors",
|
| 484 |
+
"model.language_model.layers.33.mlp.experts.gate_up_proj": "model-00011-of-00015.safetensors",
|
| 485 |
+
"model.language_model.layers.33.mlp.gate.weight": "model-00013-of-00015.safetensors",
|
| 486 |
+
"model.language_model.layers.33.mlp.shared_expert.down_proj.weight": "model-00013-of-00015.safetensors",
|
| 487 |
+
"model.language_model.layers.33.mlp.shared_expert.gate_proj.weight": "model-00011-of-00015.safetensors",
|
| 488 |
+
"model.language_model.layers.33.mlp.shared_expert.up_proj.weight": "model-00011-of-00015.safetensors",
|
| 489 |
+
"model.language_model.layers.33.mlp.shared_expert_gate.weight": "model-00013-of-00015.safetensors",
|
| 490 |
+
"model.language_model.layers.33.post_attention_layernorm.weight": "model-00014-of-00015.safetensors",
|
| 491 |
+
"model.language_model.layers.34.input_layernorm.weight": "model-00014-of-00015.safetensors",
|
| 492 |
+
"model.language_model.layers.34.linear_attn.A_log": "model-00013-of-00015.safetensors",
|
| 493 |
+
"model.language_model.layers.34.linear_attn.conv1d.weight": "model-00013-of-00015.safetensors",
|
| 494 |
+
"model.language_model.layers.34.linear_attn.dt_bias": "model-00014-of-00015.safetensors",
|
| 495 |
+
"model.language_model.layers.34.linear_attn.in_proj_a.weight": "model-00013-of-00015.safetensors",
|
| 496 |
+
"model.language_model.layers.34.linear_attn.in_proj_b.weight": "model-00014-of-00015.safetensors",
|
| 497 |
+
"model.language_model.layers.34.linear_attn.in_proj_qkv.weight": "model-00014-of-00015.safetensors",
|
| 498 |
+
"model.language_model.layers.34.linear_attn.in_proj_z.weight": "model-00013-of-00015.safetensors",
|
| 499 |
+
"model.language_model.layers.34.linear_attn.norm.weight": "model-00013-of-00015.safetensors",
|
| 500 |
+
"model.language_model.layers.34.linear_attn.out_proj.weight": "model-00014-of-00015.safetensors",
|
| 501 |
+
"model.language_model.layers.34.mlp.experts.down_proj": "model-00011-of-00015.safetensors",
|
| 502 |
+
"model.language_model.layers.34.mlp.experts.gate_up_proj": "model-00011-of-00015.safetensors",
|
| 503 |
+
"model.language_model.layers.34.mlp.gate.weight": "model-00013-of-00015.safetensors",
|
| 504 |
+
"model.language_model.layers.34.mlp.shared_expert.down_proj.weight": "model-00013-of-00015.safetensors",
|
| 505 |
+
"model.language_model.layers.34.mlp.shared_expert.gate_proj.weight": "model-00011-of-00015.safetensors",
|
| 506 |
+
"model.language_model.layers.34.mlp.shared_expert.up_proj.weight": "model-00011-of-00015.safetensors",
|
| 507 |
+
"model.language_model.layers.34.mlp.shared_expert_gate.weight": "model-00013-of-00015.safetensors",
|
| 508 |
+
"model.language_model.layers.34.post_attention_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 509 |
+
"model.language_model.layers.35.input_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 510 |
+
"model.language_model.layers.35.mlp.experts.down_proj": "model-00012-of-00015.safetensors",
|
| 511 |
+
"model.language_model.layers.35.mlp.experts.gate_up_proj": "model-00011-of-00015.safetensors",
|
| 512 |
+
"model.language_model.layers.35.mlp.gate.weight": "model-00013-of-00015.safetensors",
|
| 513 |
+
"model.language_model.layers.35.mlp.shared_expert.down_proj.weight": "model-00013-of-00015.safetensors",
|
| 514 |
+
"model.language_model.layers.35.mlp.shared_expert.gate_proj.weight": "model-00012-of-00015.safetensors",
|
| 515 |
+
"model.language_model.layers.35.mlp.shared_expert.up_proj.weight": "model-00012-of-00015.safetensors",
|
| 516 |
+
"model.language_model.layers.35.mlp.shared_expert_gate.weight": "model-00012-of-00015.safetensors",
|
| 517 |
+
"model.language_model.layers.35.post_attention_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 518 |
+
"model.language_model.layers.35.self_attn.k_norm.weight": "model-00014-of-00015.safetensors",
|
| 519 |
+
"model.language_model.layers.35.self_attn.k_proj.weight": "model-00013-of-00015.safetensors",
|
| 520 |
+
"model.language_model.layers.35.self_attn.o_proj.weight": "model-00013-of-00015.safetensors",
|
| 521 |
+
"model.language_model.layers.35.self_attn.q_norm.weight": "model-00013-of-00015.safetensors",
|
| 522 |
+
"model.language_model.layers.35.self_attn.q_proj.weight": "model-00013-of-00015.safetensors",
|
| 523 |
+
"model.language_model.layers.35.self_attn.v_proj.weight": "model-00013-of-00015.safetensors",
|
| 524 |
+
"model.language_model.layers.36.input_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 525 |
+
"model.language_model.layers.36.linear_attn.A_log": "model-00012-of-00015.safetensors",
|
| 526 |
+
"model.language_model.layers.36.linear_attn.conv1d.weight": "model-00013-of-00015.safetensors",
|
| 527 |
+
"model.language_model.layers.36.linear_attn.dt_bias": "model-00013-of-00015.safetensors",
|
| 528 |
+
"model.language_model.layers.36.linear_attn.in_proj_a.weight": "model-00012-of-00015.safetensors",
|
| 529 |
+
"model.language_model.layers.36.linear_attn.in_proj_b.weight": "model-00013-of-00015.safetensors",
|
| 530 |
+
"model.language_model.layers.36.linear_attn.in_proj_qkv.weight": "model-00013-of-00015.safetensors",
|
| 531 |
+
"model.language_model.layers.36.linear_attn.in_proj_z.weight": "model-00012-of-00015.safetensors",
|
| 532 |
+
"model.language_model.layers.36.linear_attn.norm.weight": "model-00013-of-00015.safetensors",
|
| 533 |
+
"model.language_model.layers.36.linear_attn.out_proj.weight": "model-00013-of-00015.safetensors",
|
| 534 |
+
"model.language_model.layers.36.mlp.experts.down_proj": "model-00012-of-00015.safetensors",
|
| 535 |
+
"model.language_model.layers.36.mlp.experts.gate_up_proj": "model-00012-of-00015.safetensors",
|
| 536 |
+
"model.language_model.layers.36.mlp.gate.weight": "model-00013-of-00015.safetensors",
|
| 537 |
+
"model.language_model.layers.36.mlp.shared_expert.down_proj.weight": "model-00013-of-00015.safetensors",
|
| 538 |
+
"model.language_model.layers.36.mlp.shared_expert.gate_proj.weight": "model-00012-of-00015.safetensors",
|
| 539 |
+
"model.language_model.layers.36.mlp.shared_expert.up_proj.weight": "model-00012-of-00015.safetensors",
|
| 540 |
+
"model.language_model.layers.36.mlp.shared_expert_gate.weight": "model-00014-of-00015.safetensors",
|
| 541 |
+
"model.language_model.layers.36.post_attention_layernorm.weight": "model-00012-of-00015.safetensors",
|
| 542 |
+
"model.language_model.layers.37.input_layernorm.weight": "model-00012-of-00015.safetensors",
|
| 543 |
+
"model.language_model.layers.37.linear_attn.A_log": "model-00013-of-00015.safetensors",
|
| 544 |
+
"model.language_model.layers.37.linear_attn.conv1d.weight": "model-00014-of-00015.safetensors",
|
| 545 |
+
"model.language_model.layers.37.linear_attn.dt_bias": "model-00014-of-00015.safetensors",
|
| 546 |
+
"model.language_model.layers.37.linear_attn.in_proj_a.weight": "model-00013-of-00015.safetensors",
|
| 547 |
+
"model.language_model.layers.37.linear_attn.in_proj_b.weight": "model-00014-of-00015.safetensors",
|
| 548 |
+
"model.language_model.layers.37.linear_attn.in_proj_qkv.weight": "model-00014-of-00015.safetensors",
|
| 549 |
+
"model.language_model.layers.37.linear_attn.in_proj_z.weight": "model-00013-of-00015.safetensors",
|
| 550 |
+
"model.language_model.layers.37.linear_attn.norm.weight": "model-00014-of-00015.safetensors",
|
| 551 |
+
"model.language_model.layers.37.linear_attn.out_proj.weight": "model-00014-of-00015.safetensors",
|
| 552 |
+
"model.language_model.layers.37.mlp.experts.down_proj": "model-00012-of-00015.safetensors",
|
| 553 |
+
"model.language_model.layers.37.mlp.experts.gate_up_proj": "model-00012-of-00015.safetensors",
|
| 554 |
+
"model.language_model.layers.37.mlp.gate.weight": "model-00013-of-00015.safetensors",
|
| 555 |
+
"model.language_model.layers.37.mlp.shared_expert.down_proj.weight": "model-00013-of-00015.safetensors",
|
| 556 |
+
"model.language_model.layers.37.mlp.shared_expert.gate_proj.weight": "model-00012-of-00015.safetensors",
|
| 557 |
+
"model.language_model.layers.37.mlp.shared_expert.up_proj.weight": "model-00012-of-00015.safetensors",
|
| 558 |
+
"model.language_model.layers.37.mlp.shared_expert_gate.weight": "model-00013-of-00015.safetensors",
|
| 559 |
+
"model.language_model.layers.37.post_attention_layernorm.weight": "model-00014-of-00015.safetensors",
|
| 560 |
+
"model.language_model.layers.38.input_layernorm.weight": "model-00014-of-00015.safetensors",
|
| 561 |
+
"model.language_model.layers.38.linear_attn.A_log": "model-00012-of-00015.safetensors",
|
| 562 |
+
"model.language_model.layers.38.linear_attn.conv1d.weight": "model-00012-of-00015.safetensors",
|
| 563 |
+
"model.language_model.layers.38.linear_attn.dt_bias": "model-00013-of-00015.safetensors",
|
| 564 |
+
"model.language_model.layers.38.linear_attn.in_proj_a.weight": "model-00012-of-00015.safetensors",
|
| 565 |
+
"model.language_model.layers.38.linear_attn.in_proj_b.weight": "model-00013-of-00015.safetensors",
|
| 566 |
+
"model.language_model.layers.38.linear_attn.in_proj_qkv.weight": "model-00013-of-00015.safetensors",
|
| 567 |
+
"model.language_model.layers.38.linear_attn.in_proj_z.weight": "model-00012-of-00015.safetensors",
|
| 568 |
+
"model.language_model.layers.38.linear_attn.norm.weight": "model-00012-of-00015.safetensors",
|
| 569 |
+
"model.language_model.layers.38.linear_attn.out_proj.weight": "model-00013-of-00015.safetensors",
|
| 570 |
+
"model.language_model.layers.38.mlp.experts.down_proj": "model-00013-of-00015.safetensors",
|
| 571 |
+
"model.language_model.layers.38.mlp.experts.gate_up_proj": "model-00012-of-00015.safetensors",
|
| 572 |
+
"model.language_model.layers.38.mlp.gate.weight": "model-00013-of-00015.safetensors",
|
| 573 |
+
"model.language_model.layers.38.mlp.shared_expert.down_proj.weight": "model-00013-of-00015.safetensors",
|
| 574 |
+
"model.language_model.layers.38.mlp.shared_expert.gate_proj.weight": "model-00013-of-00015.safetensors",
|
| 575 |
+
"model.language_model.layers.38.mlp.shared_expert.up_proj.weight": "model-00013-of-00015.safetensors",
|
| 576 |
+
"model.language_model.layers.38.mlp.shared_expert_gate.weight": "model-00013-of-00015.safetensors",
|
| 577 |
+
"model.language_model.layers.38.post_attention_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 578 |
+
"model.language_model.layers.39.input_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 579 |
+
"model.language_model.layers.39.mlp.experts.down_proj": "model-00013-of-00015.safetensors",
|
| 580 |
+
"model.language_model.layers.39.mlp.experts.gate_up_proj": "model-00013-of-00015.safetensors",
|
| 581 |
+
"model.language_model.layers.39.mlp.gate.weight": "model-00013-of-00015.safetensors",
|
| 582 |
+
"model.language_model.layers.39.mlp.shared_expert.down_proj.weight": "model-00013-of-00015.safetensors",
|
| 583 |
+
"model.language_model.layers.39.mlp.shared_expert.gate_proj.weight": "model-00013-of-00015.safetensors",
|
| 584 |
+
"model.language_model.layers.39.mlp.shared_expert.up_proj.weight": "model-00013-of-00015.safetensors",
|
| 585 |
+
"model.language_model.layers.39.mlp.shared_expert_gate.weight": "model-00013-of-00015.safetensors",
|
| 586 |
+
"model.language_model.layers.39.post_attention_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 587 |
+
"model.language_model.layers.39.self_attn.k_norm.weight": "model-00013-of-00015.safetensors",
|
| 588 |
+
"model.language_model.layers.39.self_attn.k_proj.weight": "model-00013-of-00015.safetensors",
|
| 589 |
+
"model.language_model.layers.39.self_attn.o_proj.weight": "model-00013-of-00015.safetensors",
|
| 590 |
+
"model.language_model.layers.39.self_attn.q_norm.weight": "model-00014-of-00015.safetensors",
|
| 591 |
+
"model.language_model.layers.39.self_attn.q_proj.weight": "model-00013-of-00015.safetensors",
|
| 592 |
+
"model.language_model.layers.39.self_attn.v_proj.weight": "model-00013-of-00015.safetensors",
|
| 593 |
+
"model.language_model.layers.4.input_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 594 |
+
"model.language_model.layers.4.linear_attn.A_log": "model-00013-of-00015.safetensors",
|
| 595 |
+
"model.language_model.layers.4.linear_attn.conv1d.weight": "model-00013-of-00015.safetensors",
|
| 596 |
+
"model.language_model.layers.4.linear_attn.dt_bias": "model-00013-of-00015.safetensors",
|
| 597 |
+
"model.language_model.layers.4.linear_attn.in_proj_a.weight": "model-00013-of-00015.safetensors",
|
| 598 |
+
"model.language_model.layers.4.linear_attn.in_proj_b.weight": "model-00013-of-00015.safetensors",
|
| 599 |
+
"model.language_model.layers.4.linear_attn.in_proj_qkv.weight": "model-00013-of-00015.safetensors",
|
| 600 |
+
"model.language_model.layers.4.linear_attn.in_proj_z.weight": "model-00013-of-00015.safetensors",
|
| 601 |
+
"model.language_model.layers.4.linear_attn.norm.weight": "model-00013-of-00015.safetensors",
|
| 602 |
+
"model.language_model.layers.4.linear_attn.out_proj.weight": "model-00013-of-00015.safetensors",
|
| 603 |
+
"model.language_model.layers.4.mlp.experts.down_proj": "model-00001-of-00015.safetensors",
|
| 604 |
+
"model.language_model.layers.4.mlp.experts.gate_up_proj": "model-00001-of-00015.safetensors",
|
| 605 |
+
"model.language_model.layers.4.mlp.gate.weight": "model-00013-of-00015.safetensors",
|
| 606 |
+
"model.language_model.layers.4.mlp.shared_expert.down_proj.weight": "model-00013-of-00015.safetensors",
|
| 607 |
+
"model.language_model.layers.4.mlp.shared_expert.gate_proj.weight": "model-00001-of-00015.safetensors",
|
| 608 |
+
"model.language_model.layers.4.mlp.shared_expert.up_proj.weight": "model-00001-of-00015.safetensors",
|
| 609 |
+
"model.language_model.layers.4.mlp.shared_expert_gate.weight": "model-00013-of-00015.safetensors",
|
| 610 |
+
"model.language_model.layers.4.post_attention_layernorm.weight": "model-00001-of-00015.safetensors",
|
| 611 |
+
"model.language_model.layers.5.input_layernorm.weight": "model-00001-of-00015.safetensors",
|
| 612 |
+
"model.language_model.layers.5.linear_attn.A_log": "model-00001-of-00015.safetensors",
|
| 613 |
+
"model.language_model.layers.5.linear_attn.conv1d.weight": "model-00013-of-00015.safetensors",
|
| 614 |
+
"model.language_model.layers.5.linear_attn.dt_bias": "model-00013-of-00015.safetensors",
|
| 615 |
+
"model.language_model.layers.5.linear_attn.in_proj_a.weight": "model-00001-of-00015.safetensors",
|
| 616 |
+
"model.language_model.layers.5.linear_attn.in_proj_b.weight": "model-00013-of-00015.safetensors",
|
| 617 |
+
"model.language_model.layers.5.linear_attn.in_proj_qkv.weight": "model-00013-of-00015.safetensors",
|
| 618 |
+
"model.language_model.layers.5.linear_attn.in_proj_z.weight": "model-00001-of-00015.safetensors",
|
| 619 |
+
"model.language_model.layers.5.linear_attn.norm.weight": "model-00013-of-00015.safetensors",
|
| 620 |
+
"model.language_model.layers.5.linear_attn.out_proj.weight": "model-00013-of-00015.safetensors",
|
| 621 |
+
"model.language_model.layers.5.mlp.experts.down_proj": "model-00002-of-00015.safetensors",
|
| 622 |
+
"model.language_model.layers.5.mlp.experts.gate_up_proj": "model-00001-of-00015.safetensors",
|
| 623 |
+
"model.language_model.layers.5.mlp.gate.weight": "model-00013-of-00015.safetensors",
|
| 624 |
+
"model.language_model.layers.5.mlp.shared_expert.down_proj.weight": "model-00013-of-00015.safetensors",
|
| 625 |
+
"model.language_model.layers.5.mlp.shared_expert.gate_proj.weight": "model-00002-of-00015.safetensors",
|
| 626 |
+
"model.language_model.layers.5.mlp.shared_expert.up_proj.weight": "model-00002-of-00015.safetensors",
|
| 627 |
+
"model.language_model.layers.5.mlp.shared_expert_gate.weight": "model-00013-of-00015.safetensors",
|
| 628 |
+
"model.language_model.layers.5.post_attention_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 629 |
+
"model.language_model.layers.6.input_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 630 |
+
"model.language_model.layers.6.linear_attn.A_log": "model-00013-of-00015.safetensors",
|
| 631 |
+
"model.language_model.layers.6.linear_attn.conv1d.weight": "model-00013-of-00015.safetensors",
|
| 632 |
+
"model.language_model.layers.6.linear_attn.dt_bias": "model-00013-of-00015.safetensors",
|
| 633 |
+
"model.language_model.layers.6.linear_attn.in_proj_a.weight": "model-00013-of-00015.safetensors",
|
| 634 |
+
"model.language_model.layers.6.linear_attn.in_proj_b.weight": "model-00013-of-00015.safetensors",
|
| 635 |
+
"model.language_model.layers.6.linear_attn.in_proj_qkv.weight": "model-00013-of-00015.safetensors",
|
| 636 |
+
"model.language_model.layers.6.linear_attn.in_proj_z.weight": "model-00013-of-00015.safetensors",
|
| 637 |
+
"model.language_model.layers.6.linear_attn.norm.weight": "model-00013-of-00015.safetensors",
|
| 638 |
+
"model.language_model.layers.6.linear_attn.out_proj.weight": "model-00013-of-00015.safetensors",
|
| 639 |
+
"model.language_model.layers.6.mlp.experts.down_proj": "model-00002-of-00015.safetensors",
|
| 640 |
+
"model.language_model.layers.6.mlp.experts.gate_up_proj": "model-00002-of-00015.safetensors",
|
| 641 |
+
"model.language_model.layers.6.mlp.gate.weight": "model-00013-of-00015.safetensors",
|
| 642 |
+
"model.language_model.layers.6.mlp.shared_expert.down_proj.weight": "model-00013-of-00015.safetensors",
|
| 643 |
+
"model.language_model.layers.6.mlp.shared_expert.gate_proj.weight": "model-00002-of-00015.safetensors",
|
| 644 |
+
"model.language_model.layers.6.mlp.shared_expert.up_proj.weight": "model-00002-of-00015.safetensors",
|
| 645 |
+
"model.language_model.layers.6.mlp.shared_expert_gate.weight": "model-00013-of-00015.safetensors",
|
| 646 |
+
"model.language_model.layers.6.post_attention_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 647 |
+
"model.language_model.layers.7.input_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 648 |
+
"model.language_model.layers.7.mlp.experts.down_proj": "model-00002-of-00015.safetensors",
|
| 649 |
+
"model.language_model.layers.7.mlp.experts.gate_up_proj": "model-00002-of-00015.safetensors",
|
| 650 |
+
"model.language_model.layers.7.mlp.gate.weight": "model-00013-of-00015.safetensors",
|
| 651 |
+
"model.language_model.layers.7.mlp.shared_expert.down_proj.weight": "model-00013-of-00015.safetensors",
|
| 652 |
+
"model.language_model.layers.7.mlp.shared_expert.gate_proj.weight": "model-00002-of-00015.safetensors",
|
| 653 |
+
"model.language_model.layers.7.mlp.shared_expert.up_proj.weight": "model-00002-of-00015.safetensors",
|
| 654 |
+
"model.language_model.layers.7.mlp.shared_expert_gate.weight": "model-00002-of-00015.safetensors",
|
| 655 |
+
"model.language_model.layers.7.post_attention_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 656 |
+
"model.language_model.layers.7.self_attn.k_norm.weight": "model-00013-of-00015.safetensors",
|
| 657 |
+
"model.language_model.layers.7.self_attn.k_proj.weight": "model-00013-of-00015.safetensors",
|
| 658 |
+
"model.language_model.layers.7.self_attn.o_proj.weight": "model-00013-of-00015.safetensors",
|
| 659 |
+
"model.language_model.layers.7.self_attn.q_norm.weight": "model-00013-of-00015.safetensors",
|
| 660 |
+
"model.language_model.layers.7.self_attn.q_proj.weight": "model-00013-of-00015.safetensors",
|
| 661 |
+
"model.language_model.layers.7.self_attn.v_proj.weight": "model-00013-of-00015.safetensors",
|
| 662 |
+
"model.language_model.layers.8.input_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 663 |
+
"model.language_model.layers.8.linear_attn.A_log": "model-00002-of-00015.safetensors",
|
| 664 |
+
"model.language_model.layers.8.linear_attn.conv1d.weight": "model-00002-of-00015.safetensors",
|
| 665 |
+
"model.language_model.layers.8.linear_attn.dt_bias": "model-00013-of-00015.safetensors",
|
| 666 |
+
"model.language_model.layers.8.linear_attn.in_proj_a.weight": "model-00002-of-00015.safetensors",
|
| 667 |
+
"model.language_model.layers.8.linear_attn.in_proj_b.weight": "model-00013-of-00015.safetensors",
|
| 668 |
+
"model.language_model.layers.8.linear_attn.in_proj_qkv.weight": "model-00013-of-00015.safetensors",
|
| 669 |
+
"model.language_model.layers.8.linear_attn.in_proj_z.weight": "model-00002-of-00015.safetensors",
|
| 670 |
+
"model.language_model.layers.8.linear_attn.norm.weight": "model-00002-of-00015.safetensors",
|
| 671 |
+
"model.language_model.layers.8.linear_attn.out_proj.weight": "model-00013-of-00015.safetensors",
|
| 672 |
+
"model.language_model.layers.8.mlp.experts.down_proj": "model-00003-of-00015.safetensors",
|
| 673 |
+
"model.language_model.layers.8.mlp.experts.gate_up_proj": "model-00002-of-00015.safetensors",
|
| 674 |
+
"model.language_model.layers.8.mlp.gate.weight": "model-00013-of-00015.safetensors",
|
| 675 |
+
"model.language_model.layers.8.mlp.shared_expert.down_proj.weight": "model-00013-of-00015.safetensors",
|
| 676 |
+
"model.language_model.layers.8.mlp.shared_expert.gate_proj.weight": "model-00003-of-00015.safetensors",
|
| 677 |
+
"model.language_model.layers.8.mlp.shared_expert.up_proj.weight": "model-00003-of-00015.safetensors",
|
| 678 |
+
"model.language_model.layers.8.mlp.shared_expert_gate.weight": "model-00013-of-00015.safetensors",
|
| 679 |
+
"model.language_model.layers.8.post_attention_layernorm.weight": "model-00002-of-00015.safetensors",
|
| 680 |
+
"model.language_model.layers.9.input_layernorm.weight": "model-00003-of-00015.safetensors",
|
| 681 |
+
"model.language_model.layers.9.linear_attn.A_log": "model-00013-of-00015.safetensors",
|
| 682 |
+
"model.language_model.layers.9.linear_attn.conv1d.weight": "model-00013-of-00015.safetensors",
|
| 683 |
+
"model.language_model.layers.9.linear_attn.dt_bias": "model-00013-of-00015.safetensors",
|
| 684 |
+
"model.language_model.layers.9.linear_attn.in_proj_a.weight": "model-00013-of-00015.safetensors",
|
| 685 |
+
"model.language_model.layers.9.linear_attn.in_proj_b.weight": "model-00013-of-00015.safetensors",
|
| 686 |
+
"model.language_model.layers.9.linear_attn.in_proj_qkv.weight": "model-00013-of-00015.safetensors",
|
| 687 |
+
"model.language_model.layers.9.linear_attn.in_proj_z.weight": "model-00013-of-00015.safetensors",
|
| 688 |
+
"model.language_model.layers.9.linear_attn.norm.weight": "model-00013-of-00015.safetensors",
|
| 689 |
+
"model.language_model.layers.9.linear_attn.out_proj.weight": "model-00013-of-00015.safetensors",
|
| 690 |
+
"model.language_model.layers.9.mlp.experts.down_proj": "model-00003-of-00015.safetensors",
|
| 691 |
+
"model.language_model.layers.9.mlp.experts.gate_up_proj": "model-00003-of-00015.safetensors",
|
| 692 |
+
"model.language_model.layers.9.mlp.gate.weight": "model-00013-of-00015.safetensors",
|
| 693 |
+
"model.language_model.layers.9.mlp.shared_expert.down_proj.weight": "model-00013-of-00015.safetensors",
|
| 694 |
+
"model.language_model.layers.9.mlp.shared_expert.gate_proj.weight": "model-00003-of-00015.safetensors",
|
| 695 |
+
"model.language_model.layers.9.mlp.shared_expert.up_proj.weight": "model-00003-of-00015.safetensors",
|
| 696 |
+
"model.language_model.layers.9.mlp.shared_expert_gate.weight": "model-00013-of-00015.safetensors",
|
| 697 |
+
"model.language_model.layers.9.post_attention_layernorm.weight": "model-00013-of-00015.safetensors",
|
| 698 |
+
"model.language_model.norm.weight": "model-00013-of-00015.safetensors",
|
| 699 |
+
"model.visual.blocks.0.attn.proj.bias": "model-vision-mtp.safetensors",
|
| 700 |
+
"model.visual.blocks.0.attn.proj.weight": "model-vision-mtp.safetensors",
|
| 701 |
+
"model.visual.blocks.0.attn.qkv.bias": "model-vision-mtp.safetensors",
|
| 702 |
+
"model.visual.blocks.0.attn.qkv.weight": "model-vision-mtp.safetensors",
|
| 703 |
+
"model.visual.blocks.0.mlp.linear_fc1.bias": "model-vision-mtp.safetensors",
|
| 704 |
+
"model.visual.blocks.0.mlp.linear_fc1.weight": "model-vision-mtp.safetensors",
|
| 705 |
+
"model.visual.blocks.0.mlp.linear_fc2.bias": "model-vision-mtp.safetensors",
|
| 706 |
+
"model.visual.blocks.0.mlp.linear_fc2.weight": "model-vision-mtp.safetensors",
|
| 707 |
+
"model.visual.blocks.0.norm1.bias": "model-vision-mtp.safetensors",
|
| 708 |
+
"model.visual.blocks.0.norm1.weight": "model-vision-mtp.safetensors",
|
| 709 |
+
"model.visual.blocks.0.norm2.bias": "model-vision-mtp.safetensors",
|
| 710 |
+
"model.visual.blocks.0.norm2.weight": "model-vision-mtp.safetensors",
|
| 711 |
+
"model.visual.blocks.1.attn.proj.bias": "model-vision-mtp.safetensors",
|
| 712 |
+
"model.visual.blocks.1.attn.proj.weight": "model-vision-mtp.safetensors",
|
| 713 |
+
"model.visual.blocks.1.attn.qkv.bias": "model-vision-mtp.safetensors",
|
| 714 |
+
"model.visual.blocks.1.attn.qkv.weight": "model-vision-mtp.safetensors",
|
| 715 |
+
"model.visual.blocks.1.mlp.linear_fc1.bias": "model-vision-mtp.safetensors",
|
| 716 |
+
"model.visual.blocks.1.mlp.linear_fc1.weight": "model-vision-mtp.safetensors",
|
| 717 |
+
"model.visual.blocks.1.mlp.linear_fc2.bias": "model-vision-mtp.safetensors",
|
| 718 |
+
"model.visual.blocks.1.mlp.linear_fc2.weight": "model-vision-mtp.safetensors",
|
| 719 |
+
"model.visual.blocks.1.norm1.bias": "model-vision-mtp.safetensors",
|
| 720 |
+
"model.visual.blocks.1.norm1.weight": "model-vision-mtp.safetensors",
|
| 721 |
+
"model.visual.blocks.1.norm2.bias": "model-vision-mtp.safetensors",
|
| 722 |
+
"model.visual.blocks.1.norm2.weight": "model-vision-mtp.safetensors",
|
| 723 |
+
"model.visual.blocks.10.attn.proj.bias": "model-vision-mtp.safetensors",
|
| 724 |
+
"model.visual.blocks.10.attn.proj.weight": "model-vision-mtp.safetensors",
|
| 725 |
+
"model.visual.blocks.10.attn.qkv.bias": "model-vision-mtp.safetensors",
|
| 726 |
+
"model.visual.blocks.10.attn.qkv.weight": "model-vision-mtp.safetensors",
|
| 727 |
+
"model.visual.blocks.10.mlp.linear_fc1.bias": "model-vision-mtp.safetensors",
|
| 728 |
+
"model.visual.blocks.10.mlp.linear_fc1.weight": "model-vision-mtp.safetensors",
|
| 729 |
+
"model.visual.blocks.10.mlp.linear_fc2.bias": "model-vision-mtp.safetensors",
|
| 730 |
+
"model.visual.blocks.10.mlp.linear_fc2.weight": "model-vision-mtp.safetensors",
|
| 731 |
+
"model.visual.blocks.10.norm1.bias": "model-vision-mtp.safetensors",
|
| 732 |
+
"model.visual.blocks.10.norm1.weight": "model-vision-mtp.safetensors",
|
| 733 |
+
"model.visual.blocks.10.norm2.bias": "model-vision-mtp.safetensors",
|
| 734 |
+
"model.visual.blocks.10.norm2.weight": "model-vision-mtp.safetensors",
|
| 735 |
+
"model.visual.blocks.11.attn.proj.bias": "model-vision-mtp.safetensors",
|
| 736 |
+
"model.visual.blocks.11.attn.proj.weight": "model-vision-mtp.safetensors",
|
| 737 |
+
"model.visual.blocks.11.attn.qkv.bias": "model-vision-mtp.safetensors",
|
| 738 |
+
"model.visual.blocks.11.attn.qkv.weight": "model-vision-mtp.safetensors",
|
| 739 |
+
"model.visual.blocks.11.mlp.linear_fc1.bias": "model-vision-mtp.safetensors",
|
| 740 |
+
"model.visual.blocks.11.mlp.linear_fc1.weight": "model-vision-mtp.safetensors",
|
| 741 |
+
"model.visual.blocks.11.mlp.linear_fc2.bias": "model-vision-mtp.safetensors",
|
| 742 |
+
"model.visual.blocks.11.mlp.linear_fc2.weight": "model-vision-mtp.safetensors",
|
| 743 |
+
"model.visual.blocks.11.norm1.bias": "model-vision-mtp.safetensors",
|
| 744 |
+
"model.visual.blocks.11.norm1.weight": "model-vision-mtp.safetensors",
|
| 745 |
+
"model.visual.blocks.11.norm2.bias": "model-vision-mtp.safetensors",
|
| 746 |
+
"model.visual.blocks.11.norm2.weight": "model-vision-mtp.safetensors",
|
| 747 |
+
"model.visual.blocks.12.attn.proj.bias": "model-vision-mtp.safetensors",
|
| 748 |
+
"model.visual.blocks.12.attn.proj.weight": "model-vision-mtp.safetensors",
|
| 749 |
+
"model.visual.blocks.12.attn.qkv.bias": "model-vision-mtp.safetensors",
|
| 750 |
+
"model.visual.blocks.12.attn.qkv.weight": "model-vision-mtp.safetensors",
|
| 751 |
+
"model.visual.blocks.12.mlp.linear_fc1.bias": "model-vision-mtp.safetensors",
|
| 752 |
+
"model.visual.blocks.12.mlp.linear_fc1.weight": "model-vision-mtp.safetensors",
|
| 753 |
+
"model.visual.blocks.12.mlp.linear_fc2.bias": "model-vision-mtp.safetensors",
|
| 754 |
+
"model.visual.blocks.12.mlp.linear_fc2.weight": "model-vision-mtp.safetensors",
|
| 755 |
+
"model.visual.blocks.12.norm1.bias": "model-vision-mtp.safetensors",
|
| 756 |
+
"model.visual.blocks.12.norm1.weight": "model-vision-mtp.safetensors",
|
| 757 |
+
"model.visual.blocks.12.norm2.bias": "model-vision-mtp.safetensors",
|
| 758 |
+
"model.visual.blocks.12.norm2.weight": "model-vision-mtp.safetensors",
|
| 759 |
+
"model.visual.blocks.13.attn.proj.bias": "model-vision-mtp.safetensors",
|
| 760 |
+
"model.visual.blocks.13.attn.proj.weight": "model-vision-mtp.safetensors",
|
| 761 |
+
"model.visual.blocks.13.attn.qkv.bias": "model-vision-mtp.safetensors",
|
| 762 |
+
"model.visual.blocks.13.attn.qkv.weight": "model-vision-mtp.safetensors",
|
| 763 |
+
"model.visual.blocks.13.mlp.linear_fc1.bias": "model-vision-mtp.safetensors",
|
| 764 |
+
"model.visual.blocks.13.mlp.linear_fc1.weight": "model-vision-mtp.safetensors",
|
| 765 |
+
"model.visual.blocks.13.mlp.linear_fc2.bias": "model-vision-mtp.safetensors",
|
| 766 |
+
"model.visual.blocks.13.mlp.linear_fc2.weight": "model-vision-mtp.safetensors",
|
| 767 |
+
"model.visual.blocks.13.norm1.bias": "model-vision-mtp.safetensors",
|
| 768 |
+
"model.visual.blocks.13.norm1.weight": "model-vision-mtp.safetensors",
|
| 769 |
+
"model.visual.blocks.13.norm2.bias": "model-vision-mtp.safetensors",
|
| 770 |
+
"model.visual.blocks.13.norm2.weight": "model-vision-mtp.safetensors",
|
| 771 |
+
"model.visual.blocks.14.attn.proj.bias": "model-vision-mtp.safetensors",
|
| 772 |
+
"model.visual.blocks.14.attn.proj.weight": "model-vision-mtp.safetensors",
|
| 773 |
+
"model.visual.blocks.14.attn.qkv.bias": "model-vision-mtp.safetensors",
|
| 774 |
+
"model.visual.blocks.14.attn.qkv.weight": "model-vision-mtp.safetensors",
|
| 775 |
+
"model.visual.blocks.14.mlp.linear_fc1.bias": "model-vision-mtp.safetensors",
|
| 776 |
+
"model.visual.blocks.14.mlp.linear_fc1.weight": "model-vision-mtp.safetensors",
|
| 777 |
+
"model.visual.blocks.14.mlp.linear_fc2.bias": "model-vision-mtp.safetensors",
|
| 778 |
+
"model.visual.blocks.14.mlp.linear_fc2.weight": "model-vision-mtp.safetensors",
|
| 779 |
+
"model.visual.blocks.14.norm1.bias": "model-vision-mtp.safetensors",
|
| 780 |
+
"model.visual.blocks.14.norm1.weight": "model-vision-mtp.safetensors",
|
| 781 |
+
"model.visual.blocks.14.norm2.bias": "model-vision-mtp.safetensors",
|
| 782 |
+
"model.visual.blocks.14.norm2.weight": "model-vision-mtp.safetensors",
|
| 783 |
+
"model.visual.blocks.15.attn.proj.bias": "model-vision-mtp.safetensors",
|
| 784 |
+
"model.visual.blocks.15.attn.proj.weight": "model-vision-mtp.safetensors",
|
| 785 |
+
"model.visual.blocks.15.attn.qkv.bias": "model-vision-mtp.safetensors",
|
| 786 |
+
"model.visual.blocks.15.attn.qkv.weight": "model-vision-mtp.safetensors",
|
| 787 |
+
"model.visual.blocks.15.mlp.linear_fc1.bias": "model-vision-mtp.safetensors",
|
| 788 |
+
"model.visual.blocks.15.mlp.linear_fc1.weight": "model-vision-mtp.safetensors",
|
| 789 |
+
"model.visual.blocks.15.mlp.linear_fc2.bias": "model-vision-mtp.safetensors",
|
| 790 |
+
"model.visual.blocks.15.mlp.linear_fc2.weight": "model-vision-mtp.safetensors",
|
| 791 |
+
"model.visual.blocks.15.norm1.bias": "model-vision-mtp.safetensors",
|
| 792 |
+
"model.visual.blocks.15.norm1.weight": "model-vision-mtp.safetensors",
|
| 793 |
+
"model.visual.blocks.15.norm2.bias": "model-vision-mtp.safetensors",
|
| 794 |
+
"model.visual.blocks.15.norm2.weight": "model-vision-mtp.safetensors",
|
| 795 |
+
"model.visual.blocks.16.attn.proj.bias": "model-vision-mtp.safetensors",
|
| 796 |
+
"model.visual.blocks.16.attn.proj.weight": "model-vision-mtp.safetensors",
|
| 797 |
+
"model.visual.blocks.16.attn.qkv.bias": "model-vision-mtp.safetensors",
|
| 798 |
+
"model.visual.blocks.16.attn.qkv.weight": "model-vision-mtp.safetensors",
|
| 799 |
+
"model.visual.blocks.16.mlp.linear_fc1.bias": "model-vision-mtp.safetensors",
|
| 800 |
+
"model.visual.blocks.16.mlp.linear_fc1.weight": "model-vision-mtp.safetensors",
|
| 801 |
+
"model.visual.blocks.16.mlp.linear_fc2.bias": "model-vision-mtp.safetensors",
|
| 802 |
+
"model.visual.blocks.16.mlp.linear_fc2.weight": "model-vision-mtp.safetensors",
|
| 803 |
+
"model.visual.blocks.16.norm1.bias": "model-vision-mtp.safetensors",
|
| 804 |
+
"model.visual.blocks.16.norm1.weight": "model-vision-mtp.safetensors",
|
| 805 |
+
"model.visual.blocks.16.norm2.bias": "model-vision-mtp.safetensors",
|
| 806 |
+
"model.visual.blocks.16.norm2.weight": "model-vision-mtp.safetensors",
|
| 807 |
+
"model.visual.blocks.17.attn.proj.bias": "model-vision-mtp.safetensors",
|
| 808 |
+
"model.visual.blocks.17.attn.proj.weight": "model-vision-mtp.safetensors",
|
| 809 |
+
"model.visual.blocks.17.attn.qkv.bias": "model-vision-mtp.safetensors",
|
| 810 |
+
"model.visual.blocks.17.attn.qkv.weight": "model-vision-mtp.safetensors",
|
| 811 |
+
"model.visual.blocks.17.mlp.linear_fc1.bias": "model-vision-mtp.safetensors",
|
| 812 |
+
"model.visual.blocks.17.mlp.linear_fc1.weight": "model-vision-mtp.safetensors",
|
| 813 |
+
"model.visual.blocks.17.mlp.linear_fc2.bias": "model-vision-mtp.safetensors",
|
| 814 |
+
"model.visual.blocks.17.mlp.linear_fc2.weight": "model-vision-mtp.safetensors",
|
| 815 |
+
"model.visual.blocks.17.norm1.bias": "model-vision-mtp.safetensors",
|
| 816 |
+
"model.visual.blocks.17.norm1.weight": "model-vision-mtp.safetensors",
|
| 817 |
+
"model.visual.blocks.17.norm2.bias": "model-vision-mtp.safetensors",
|
| 818 |
+
"model.visual.blocks.17.norm2.weight": "model-vision-mtp.safetensors",
|
| 819 |
+
"model.visual.blocks.18.attn.proj.bias": "model-vision-mtp.safetensors",
|
| 820 |
+
"model.visual.blocks.18.attn.proj.weight": "model-vision-mtp.safetensors",
|
| 821 |
+
"model.visual.blocks.18.attn.qkv.bias": "model-vision-mtp.safetensors",
|
| 822 |
+
"model.visual.blocks.18.attn.qkv.weight": "model-vision-mtp.safetensors",
|
| 823 |
+
"model.visual.blocks.18.mlp.linear_fc1.bias": "model-vision-mtp.safetensors",
|
| 824 |
+
"model.visual.blocks.18.mlp.linear_fc1.weight": "model-vision-mtp.safetensors",
|
| 825 |
+
"model.visual.blocks.18.mlp.linear_fc2.bias": "model-vision-mtp.safetensors",
|
| 826 |
+
"model.visual.blocks.18.mlp.linear_fc2.weight": "model-vision-mtp.safetensors",
|
| 827 |
+
"model.visual.blocks.18.norm1.bias": "model-vision-mtp.safetensors",
|
| 828 |
+
"model.visual.blocks.18.norm1.weight": "model-vision-mtp.safetensors",
|
| 829 |
+
"model.visual.blocks.18.norm2.bias": "model-vision-mtp.safetensors",
|
| 830 |
+
"model.visual.blocks.18.norm2.weight": "model-vision-mtp.safetensors",
|
| 831 |
+
"model.visual.blocks.19.attn.proj.bias": "model-vision-mtp.safetensors",
|
| 832 |
+
"model.visual.blocks.19.attn.proj.weight": "model-vision-mtp.safetensors",
|
| 833 |
+
"model.visual.blocks.19.attn.qkv.bias": "model-vision-mtp.safetensors",
|
| 834 |
+
"model.visual.blocks.19.attn.qkv.weight": "model-vision-mtp.safetensors",
|
| 835 |
+
"model.visual.blocks.19.mlp.linear_fc1.bias": "model-vision-mtp.safetensors",
|
| 836 |
+
"model.visual.blocks.19.mlp.linear_fc1.weight": "model-vision-mtp.safetensors",
|
| 837 |
+
"model.visual.blocks.19.mlp.linear_fc2.bias": "model-vision-mtp.safetensors",
|
| 838 |
+
"model.visual.blocks.19.mlp.linear_fc2.weight": "model-vision-mtp.safetensors",
|
| 839 |
+
"model.visual.blocks.19.norm1.bias": "model-vision-mtp.safetensors",
|
| 840 |
+
"model.visual.blocks.19.norm1.weight": "model-vision-mtp.safetensors",
|
| 841 |
+
"model.visual.blocks.19.norm2.bias": "model-vision-mtp.safetensors",
|
| 842 |
+
"model.visual.blocks.19.norm2.weight": "model-vision-mtp.safetensors",
|
| 843 |
+
"model.visual.blocks.2.attn.proj.bias": "model-vision-mtp.safetensors",
|
| 844 |
+
"model.visual.blocks.2.attn.proj.weight": "model-vision-mtp.safetensors",
|
| 845 |
+
"model.visual.blocks.2.attn.qkv.bias": "model-vision-mtp.safetensors",
|
| 846 |
+
"model.visual.blocks.2.attn.qkv.weight": "model-vision-mtp.safetensors",
|
| 847 |
+
"model.visual.blocks.2.mlp.linear_fc1.bias": "model-vision-mtp.safetensors",
|
| 848 |
+
"model.visual.blocks.2.mlp.linear_fc1.weight": "model-vision-mtp.safetensors",
|
| 849 |
+
"model.visual.blocks.2.mlp.linear_fc2.bias": "model-vision-mtp.safetensors",
|
| 850 |
+
"model.visual.blocks.2.mlp.linear_fc2.weight": "model-vision-mtp.safetensors",
|
| 851 |
+
"model.visual.blocks.2.norm1.bias": "model-vision-mtp.safetensors",
|
| 852 |
+
"model.visual.blocks.2.norm1.weight": "model-vision-mtp.safetensors",
|
| 853 |
+
"model.visual.blocks.2.norm2.bias": "model-vision-mtp.safetensors",
|
| 854 |
+
"model.visual.blocks.2.norm2.weight": "model-vision-mtp.safetensors",
|
| 855 |
+
"model.visual.blocks.20.attn.proj.bias": "model-vision-mtp.safetensors",
|
| 856 |
+
"model.visual.blocks.20.attn.proj.weight": "model-vision-mtp.safetensors",
|
| 857 |
+
"model.visual.blocks.20.attn.qkv.bias": "model-vision-mtp.safetensors",
|
| 858 |
+
"model.visual.blocks.20.attn.qkv.weight": "model-vision-mtp.safetensors",
|
| 859 |
+
"model.visual.blocks.20.mlp.linear_fc1.bias": "model-vision-mtp.safetensors",
|
| 860 |
+
"model.visual.blocks.20.mlp.linear_fc1.weight": "model-vision-mtp.safetensors",
|
| 861 |
+
"model.visual.blocks.20.mlp.linear_fc2.bias": "model-vision-mtp.safetensors",
|
| 862 |
+
"model.visual.blocks.20.mlp.linear_fc2.weight": "model-vision-mtp.safetensors",
|
| 863 |
+
"model.visual.blocks.20.norm1.bias": "model-vision-mtp.safetensors",
|
| 864 |
+
"model.visual.blocks.20.norm1.weight": "model-vision-mtp.safetensors",
|
| 865 |
+
"model.visual.blocks.20.norm2.bias": "model-vision-mtp.safetensors",
|
| 866 |
+
"model.visual.blocks.20.norm2.weight": "model-vision-mtp.safetensors",
|
| 867 |
+
"model.visual.blocks.21.attn.proj.bias": "model-vision-mtp.safetensors",
|
| 868 |
+
"model.visual.blocks.21.attn.proj.weight": "model-vision-mtp.safetensors",
|
| 869 |
+
"model.visual.blocks.21.attn.qkv.bias": "model-vision-mtp.safetensors",
|
| 870 |
+
"model.visual.blocks.21.attn.qkv.weight": "model-vision-mtp.safetensors",
|
| 871 |
+
"model.visual.blocks.21.mlp.linear_fc1.bias": "model-vision-mtp.safetensors",
|
| 872 |
+
"model.visual.blocks.21.mlp.linear_fc1.weight": "model-vision-mtp.safetensors",
|
| 873 |
+
"model.visual.blocks.21.mlp.linear_fc2.bias": "model-vision-mtp.safetensors",
|
| 874 |
+
"model.visual.blocks.21.mlp.linear_fc2.weight": "model-vision-mtp.safetensors",
|
| 875 |
+
"model.visual.blocks.21.norm1.bias": "model-vision-mtp.safetensors",
|
| 876 |
+
"model.visual.blocks.21.norm1.weight": "model-vision-mtp.safetensors",
|
| 877 |
+
"model.visual.blocks.21.norm2.bias": "model-vision-mtp.safetensors",
|
| 878 |
+
"model.visual.blocks.21.norm2.weight": "model-vision-mtp.safetensors",
|
| 879 |
+
"model.visual.blocks.22.attn.proj.bias": "model-vision-mtp.safetensors",
|
| 880 |
+
"model.visual.blocks.22.attn.proj.weight": "model-vision-mtp.safetensors",
|
| 881 |
+
"model.visual.blocks.22.attn.qkv.bias": "model-vision-mtp.safetensors",
|
| 882 |
+
"model.visual.blocks.22.attn.qkv.weight": "model-vision-mtp.safetensors",
|
| 883 |
+
"model.visual.blocks.22.mlp.linear_fc1.bias": "model-vision-mtp.safetensors",
|
| 884 |
+
"model.visual.blocks.22.mlp.linear_fc1.weight": "model-vision-mtp.safetensors",
|
| 885 |
+
"model.visual.blocks.22.mlp.linear_fc2.bias": "model-vision-mtp.safetensors",
|
| 886 |
+
"model.visual.blocks.22.mlp.linear_fc2.weight": "model-vision-mtp.safetensors",
|
| 887 |
+
"model.visual.blocks.22.norm1.bias": "model-vision-mtp.safetensors",
|
| 888 |
+
"model.visual.blocks.22.norm1.weight": "model-vision-mtp.safetensors",
|
| 889 |
+
"model.visual.blocks.22.norm2.bias": "model-vision-mtp.safetensors",
|
| 890 |
+
"model.visual.blocks.22.norm2.weight": "model-vision-mtp.safetensors",
|
| 891 |
+
"model.visual.blocks.23.attn.proj.bias": "model-vision-mtp.safetensors",
|
| 892 |
+
"model.visual.blocks.23.attn.proj.weight": "model-vision-mtp.safetensors",
|
| 893 |
+
"model.visual.blocks.23.attn.qkv.bias": "model-vision-mtp.safetensors",
|
| 894 |
+
"model.visual.blocks.23.attn.qkv.weight": "model-vision-mtp.safetensors",
|
| 895 |
+
"model.visual.blocks.23.mlp.linear_fc1.bias": "model-vision-mtp.safetensors",
|
| 896 |
+
"model.visual.blocks.23.mlp.linear_fc1.weight": "model-vision-mtp.safetensors",
|
| 897 |
+
"model.visual.blocks.23.mlp.linear_fc2.bias": "model-vision-mtp.safetensors",
|
| 898 |
+
"model.visual.blocks.23.mlp.linear_fc2.weight": "model-vision-mtp.safetensors",
|
| 899 |
+
"model.visual.blocks.23.norm1.bias": "model-vision-mtp.safetensors",
|
| 900 |
+
"model.visual.blocks.23.norm1.weight": "model-vision-mtp.safetensors",
|
| 901 |
+
"model.visual.blocks.23.norm2.bias": "model-vision-mtp.safetensors",
|
| 902 |
+
"model.visual.blocks.23.norm2.weight": "model-vision-mtp.safetensors",
|
| 903 |
+
"model.visual.blocks.24.attn.proj.bias": "model-vision-mtp.safetensors",
|
| 904 |
+
"model.visual.blocks.24.attn.proj.weight": "model-vision-mtp.safetensors",
|
| 905 |
+
"model.visual.blocks.24.attn.qkv.bias": "model-vision-mtp.safetensors",
|
| 906 |
+
"model.visual.blocks.24.attn.qkv.weight": "model-vision-mtp.safetensors",
|
| 907 |
+
"model.visual.blocks.24.mlp.linear_fc1.bias": "model-vision-mtp.safetensors",
|
| 908 |
+
"model.visual.blocks.24.mlp.linear_fc1.weight": "model-vision-mtp.safetensors",
|
| 909 |
+
"model.visual.blocks.24.mlp.linear_fc2.bias": "model-vision-mtp.safetensors",
|
| 910 |
+
"model.visual.blocks.24.mlp.linear_fc2.weight": "model-vision-mtp.safetensors",
|
| 911 |
+
"model.visual.blocks.24.norm1.bias": "model-vision-mtp.safetensors",
|
| 912 |
+
"model.visual.blocks.24.norm1.weight": "model-vision-mtp.safetensors",
|
| 913 |
+
"model.visual.blocks.24.norm2.bias": "model-vision-mtp.safetensors",
|
| 914 |
+
"model.visual.blocks.24.norm2.weight": "model-vision-mtp.safetensors",
|
| 915 |
+
"model.visual.blocks.25.attn.proj.bias": "model-vision-mtp.safetensors",
|
| 916 |
+
"model.visual.blocks.25.attn.proj.weight": "model-vision-mtp.safetensors",
|
| 917 |
+
"model.visual.blocks.25.attn.qkv.bias": "model-vision-mtp.safetensors",
|
| 918 |
+
"model.visual.blocks.25.attn.qkv.weight": "model-vision-mtp.safetensors",
|
| 919 |
+
"model.visual.blocks.25.mlp.linear_fc1.bias": "model-vision-mtp.safetensors",
|
| 920 |
+
"model.visual.blocks.25.mlp.linear_fc1.weight": "model-vision-mtp.safetensors",
|
| 921 |
+
"model.visual.blocks.25.mlp.linear_fc2.bias": "model-vision-mtp.safetensors",
|
| 922 |
+
"model.visual.blocks.25.mlp.linear_fc2.weight": "model-vision-mtp.safetensors",
|
| 923 |
+
"model.visual.blocks.25.norm1.bias": "model-vision-mtp.safetensors",
|
| 924 |
+
"model.visual.blocks.25.norm1.weight": "model-vision-mtp.safetensors",
|
| 925 |
+
"model.visual.blocks.25.norm2.bias": "model-vision-mtp.safetensors",
|
| 926 |
+
"model.visual.blocks.25.norm2.weight": "model-vision-mtp.safetensors",
|
| 927 |
+
"model.visual.blocks.26.attn.proj.bias": "model-vision-mtp.safetensors",
|
| 928 |
+
"model.visual.blocks.26.attn.proj.weight": "model-vision-mtp.safetensors",
|
| 929 |
+
"model.visual.blocks.26.attn.qkv.bias": "model-vision-mtp.safetensors",
|
| 930 |
+
"model.visual.blocks.26.attn.qkv.weight": "model-vision-mtp.safetensors",
|
| 931 |
+
"model.visual.blocks.26.mlp.linear_fc1.bias": "model-vision-mtp.safetensors",
|
| 932 |
+
"model.visual.blocks.26.mlp.linear_fc1.weight": "model-vision-mtp.safetensors",
|
| 933 |
+
"model.visual.blocks.26.mlp.linear_fc2.bias": "model-vision-mtp.safetensors",
|
| 934 |
+
"model.visual.blocks.26.mlp.linear_fc2.weight": "model-vision-mtp.safetensors",
|
| 935 |
+
"model.visual.blocks.26.norm1.bias": "model-vision-mtp.safetensors",
|
| 936 |
+
"model.visual.blocks.26.norm1.weight": "model-vision-mtp.safetensors",
|
| 937 |
+
"model.visual.blocks.26.norm2.bias": "model-vision-mtp.safetensors",
|
| 938 |
+
"model.visual.blocks.26.norm2.weight": "model-vision-mtp.safetensors",
|
| 939 |
+
"model.visual.blocks.3.attn.proj.bias": "model-vision-mtp.safetensors",
|
| 940 |
+
"model.visual.blocks.3.attn.proj.weight": "model-vision-mtp.safetensors",
|
| 941 |
+
"model.visual.blocks.3.attn.qkv.bias": "model-vision-mtp.safetensors",
|
| 942 |
+
"model.visual.blocks.3.attn.qkv.weight": "model-vision-mtp.safetensors",
|
| 943 |
+
"model.visual.blocks.3.mlp.linear_fc1.bias": "model-vision-mtp.safetensors",
|
| 944 |
+
"model.visual.blocks.3.mlp.linear_fc1.weight": "model-vision-mtp.safetensors",
|
| 945 |
+
"model.visual.blocks.3.mlp.linear_fc2.bias": "model-vision-mtp.safetensors",
|
| 946 |
+
"model.visual.blocks.3.mlp.linear_fc2.weight": "model-vision-mtp.safetensors",
|
| 947 |
+
"model.visual.blocks.3.norm1.bias": "model-vision-mtp.safetensors",
|
| 948 |
+
"model.visual.blocks.3.norm1.weight": "model-vision-mtp.safetensors",
|
| 949 |
+
"model.visual.blocks.3.norm2.bias": "model-vision-mtp.safetensors",
|
| 950 |
+
"model.visual.blocks.3.norm2.weight": "model-vision-mtp.safetensors",
|
| 951 |
+
"model.visual.blocks.4.attn.proj.bias": "model-vision-mtp.safetensors",
|
| 952 |
+
"model.visual.blocks.4.attn.proj.weight": "model-vision-mtp.safetensors",
|
| 953 |
+
"model.visual.blocks.4.attn.qkv.bias": "model-vision-mtp.safetensors",
|
| 954 |
+
"model.visual.blocks.4.attn.qkv.weight": "model-vision-mtp.safetensors",
|
| 955 |
+
"model.visual.blocks.4.mlp.linear_fc1.bias": "model-vision-mtp.safetensors",
|
| 956 |
+
"model.visual.blocks.4.mlp.linear_fc1.weight": "model-vision-mtp.safetensors",
|
| 957 |
+
"model.visual.blocks.4.mlp.linear_fc2.bias": "model-vision-mtp.safetensors",
|
| 958 |
+
"model.visual.blocks.4.mlp.linear_fc2.weight": "model-vision-mtp.safetensors",
|
| 959 |
+
"model.visual.blocks.4.norm1.bias": "model-vision-mtp.safetensors",
|
| 960 |
+
"model.visual.blocks.4.norm1.weight": "model-vision-mtp.safetensors",
|
| 961 |
+
"model.visual.blocks.4.norm2.bias": "model-vision-mtp.safetensors",
|
| 962 |
+
"model.visual.blocks.4.norm2.weight": "model-vision-mtp.safetensors",
|
| 963 |
+
"model.visual.blocks.5.attn.proj.bias": "model-vision-mtp.safetensors",
|
| 964 |
+
"model.visual.blocks.5.attn.proj.weight": "model-vision-mtp.safetensors",
|
| 965 |
+
"model.visual.blocks.5.attn.qkv.bias": "model-vision-mtp.safetensors",
|
| 966 |
+
"model.visual.blocks.5.attn.qkv.weight": "model-vision-mtp.safetensors",
|
| 967 |
+
"model.visual.blocks.5.mlp.linear_fc1.bias": "model-vision-mtp.safetensors",
|
| 968 |
+
"model.visual.blocks.5.mlp.linear_fc1.weight": "model-vision-mtp.safetensors",
|
| 969 |
+
"model.visual.blocks.5.mlp.linear_fc2.bias": "model-vision-mtp.safetensors",
|
| 970 |
+
"model.visual.blocks.5.mlp.linear_fc2.weight": "model-vision-mtp.safetensors",
|
| 971 |
+
"model.visual.blocks.5.norm1.bias": "model-vision-mtp.safetensors",
|
| 972 |
+
"model.visual.blocks.5.norm1.weight": "model-vision-mtp.safetensors",
|
| 973 |
+
"model.visual.blocks.5.norm2.bias": "model-vision-mtp.safetensors",
|
| 974 |
+
"model.visual.blocks.5.norm2.weight": "model-vision-mtp.safetensors",
|
| 975 |
+
"model.visual.blocks.6.attn.proj.bias": "model-vision-mtp.safetensors",
|
| 976 |
+
"model.visual.blocks.6.attn.proj.weight": "model-vision-mtp.safetensors",
|
| 977 |
+
"model.visual.blocks.6.attn.qkv.bias": "model-vision-mtp.safetensors",
|
| 978 |
+
"model.visual.blocks.6.attn.qkv.weight": "model-vision-mtp.safetensors",
|
| 979 |
+
"model.visual.blocks.6.mlp.linear_fc1.bias": "model-vision-mtp.safetensors",
|
| 980 |
+
"model.visual.blocks.6.mlp.linear_fc1.weight": "model-vision-mtp.safetensors",
|
| 981 |
+
"model.visual.blocks.6.mlp.linear_fc2.bias": "model-vision-mtp.safetensors",
|
| 982 |
+
"model.visual.blocks.6.mlp.linear_fc2.weight": "model-vision-mtp.safetensors",
|
| 983 |
+
"model.visual.blocks.6.norm1.bias": "model-vision-mtp.safetensors",
|
| 984 |
+
"model.visual.blocks.6.norm1.weight": "model-vision-mtp.safetensors",
|
| 985 |
+
"model.visual.blocks.6.norm2.bias": "model-vision-mtp.safetensors",
|
| 986 |
+
"model.visual.blocks.6.norm2.weight": "model-vision-mtp.safetensors",
|
| 987 |
+
"model.visual.blocks.7.attn.proj.bias": "model-vision-mtp.safetensors",
|
| 988 |
+
"model.visual.blocks.7.attn.proj.weight": "model-vision-mtp.safetensors",
|
| 989 |
+
"model.visual.blocks.7.attn.qkv.bias": "model-vision-mtp.safetensors",
|
| 990 |
+
"model.visual.blocks.7.attn.qkv.weight": "model-vision-mtp.safetensors",
|
| 991 |
+
"model.visual.blocks.7.mlp.linear_fc1.bias": "model-vision-mtp.safetensors",
|
| 992 |
+
"model.visual.blocks.7.mlp.linear_fc1.weight": "model-vision-mtp.safetensors",
|
| 993 |
+
"model.visual.blocks.7.mlp.linear_fc2.bias": "model-vision-mtp.safetensors",
|
| 994 |
+
"model.visual.blocks.7.mlp.linear_fc2.weight": "model-vision-mtp.safetensors",
|
| 995 |
+
"model.visual.blocks.7.norm1.bias": "model-vision-mtp.safetensors",
|
| 996 |
+
"model.visual.blocks.7.norm1.weight": "model-vision-mtp.safetensors",
|
| 997 |
+
"model.visual.blocks.7.norm2.bias": "model-vision-mtp.safetensors",
|
| 998 |
+
"model.visual.blocks.7.norm2.weight": "model-vision-mtp.safetensors",
|
| 999 |
+
"model.visual.blocks.8.attn.proj.bias": "model-vision-mtp.safetensors",
|
| 1000 |
+
"model.visual.blocks.8.attn.proj.weight": "model-vision-mtp.safetensors",
|
| 1001 |
+
"model.visual.blocks.8.attn.qkv.bias": "model-vision-mtp.safetensors",
|
| 1002 |
+
"model.visual.blocks.8.attn.qkv.weight": "model-vision-mtp.safetensors",
|
| 1003 |
+
"model.visual.blocks.8.mlp.linear_fc1.bias": "model-vision-mtp.safetensors",
|
| 1004 |
+
"model.visual.blocks.8.mlp.linear_fc1.weight": "model-vision-mtp.safetensors",
|
| 1005 |
+
"model.visual.blocks.8.mlp.linear_fc2.bias": "model-vision-mtp.safetensors",
|
| 1006 |
+
"model.visual.blocks.8.mlp.linear_fc2.weight": "model-vision-mtp.safetensors",
|
| 1007 |
+
"model.visual.blocks.8.norm1.bias": "model-vision-mtp.safetensors",
|
| 1008 |
+
"model.visual.blocks.8.norm1.weight": "model-vision-mtp.safetensors",
|
| 1009 |
+
"model.visual.blocks.8.norm2.bias": "model-vision-mtp.safetensors",
|
| 1010 |
+
"model.visual.blocks.8.norm2.weight": "model-vision-mtp.safetensors",
|
| 1011 |
+
"model.visual.blocks.9.attn.proj.bias": "model-vision-mtp.safetensors",
|
| 1012 |
+
"model.visual.blocks.9.attn.proj.weight": "model-vision-mtp.safetensors",
|
| 1013 |
+
"model.visual.blocks.9.attn.qkv.bias": "model-vision-mtp.safetensors",
|
| 1014 |
+
"model.visual.blocks.9.attn.qkv.weight": "model-vision-mtp.safetensors",
|
| 1015 |
+
"model.visual.blocks.9.mlp.linear_fc1.bias": "model-vision-mtp.safetensors",
|
| 1016 |
+
"model.visual.blocks.9.mlp.linear_fc1.weight": "model-vision-mtp.safetensors",
|
| 1017 |
+
"model.visual.blocks.9.mlp.linear_fc2.bias": "model-vision-mtp.safetensors",
|
| 1018 |
+
"model.visual.blocks.9.mlp.linear_fc2.weight": "model-vision-mtp.safetensors",
|
| 1019 |
+
"model.visual.blocks.9.norm1.bias": "model-vision-mtp.safetensors",
|
| 1020 |
+
"model.visual.blocks.9.norm1.weight": "model-vision-mtp.safetensors",
|
| 1021 |
+
"model.visual.blocks.9.norm2.bias": "model-vision-mtp.safetensors",
|
| 1022 |
+
"model.visual.blocks.9.norm2.weight": "model-vision-mtp.safetensors",
|
| 1023 |
+
"model.visual.merger.linear_fc1.bias": "model-vision-mtp.safetensors",
|
| 1024 |
+
"model.visual.merger.linear_fc1.weight": "model-vision-mtp.safetensors",
|
| 1025 |
+
"model.visual.merger.linear_fc2.bias": "model-vision-mtp.safetensors",
|
| 1026 |
+
"model.visual.merger.linear_fc2.weight": "model-vision-mtp.safetensors",
|
| 1027 |
+
"model.visual.merger.norm.bias": "model-vision-mtp.safetensors",
|
| 1028 |
+
"model.visual.merger.norm.weight": "model-vision-mtp.safetensors",
|
| 1029 |
+
"model.visual.patch_embed.proj.bias": "model-vision-mtp.safetensors",
|
| 1030 |
+
"model.visual.patch_embed.proj.weight": "model-vision-mtp.safetensors",
|
| 1031 |
+
"model.visual.pos_embed.weight": "model-vision-mtp.safetensors",
|
| 1032 |
+
"mtp.fc.weight": "model-vision-mtp.safetensors",
|
| 1033 |
+
"mtp.layers.0.input_layernorm.weight": "model-vision-mtp.safetensors",
|
| 1034 |
+
"mtp.layers.0.mlp.experts.down_proj": "model-vision-mtp.safetensors",
|
| 1035 |
+
"mtp.layers.0.mlp.experts.gate_up_proj": "model-vision-mtp.safetensors",
|
| 1036 |
+
"mtp.layers.0.mlp.gate.weight": "model-vision-mtp.safetensors",
|
| 1037 |
+
"mtp.layers.0.mlp.shared_expert.down_proj.weight": "model-vision-mtp.safetensors",
|
| 1038 |
+
"mtp.layers.0.mlp.shared_expert.gate_proj.weight": "model-vision-mtp.safetensors",
|
| 1039 |
+
"mtp.layers.0.mlp.shared_expert.up_proj.weight": "model-vision-mtp.safetensors",
|
| 1040 |
+
"mtp.layers.0.mlp.shared_expert_gate.weight": "model-vision-mtp.safetensors",
|
| 1041 |
+
"mtp.layers.0.post_attention_layernorm.weight": "model-vision-mtp.safetensors",
|
| 1042 |
+
"mtp.layers.0.self_attn.k_norm.weight": "model-vision-mtp.safetensors",
|
| 1043 |
+
"mtp.layers.0.self_attn.k_proj.weight": "model-vision-mtp.safetensors",
|
| 1044 |
+
"mtp.layers.0.self_attn.o_proj.weight": "model-vision-mtp.safetensors",
|
| 1045 |
+
"mtp.layers.0.self_attn.q_norm.weight": "model-vision-mtp.safetensors",
|
| 1046 |
+
"mtp.layers.0.self_attn.q_proj.weight": "model-vision-mtp.safetensors",
|
| 1047 |
+
"mtp.layers.0.self_attn.v_proj.weight": "model-vision-mtp.safetensors",
|
| 1048 |
+
"mtp.norm.weight": "model-vision-mtp.safetensors",
|
| 1049 |
+
"mtp.pre_fc_norm_embedding.weight": "model-vision-mtp.safetensors",
|
| 1050 |
+
"mtp.pre_fc_norm_hidden.weight": "model-vision-mtp.safetensors"
|
| 1051 |
+
}
|
| 1052 |
+
}
|
preprocessor_config.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"size": {
|
| 3 |
+
"longest_edge": 16777216,
|
| 4 |
+
"shortest_edge": 65536
|
| 5 |
+
},
|
| 6 |
+
"patch_size": 16,
|
| 7 |
+
"temporal_patch_size": 2,
|
| 8 |
+
"merge_size": 2,
|
| 9 |
+
"image_mean": [
|
| 10 |
+
0.5,
|
| 11 |
+
0.5,
|
| 12 |
+
0.5
|
| 13 |
+
],
|
| 14 |
+
"image_std": [
|
| 15 |
+
0.5,
|
| 16 |
+
0.5,
|
| 17 |
+
0.5
|
| 18 |
+
],
|
| 19 |
+
"processor_class": "Qwen3VLProcessor",
|
| 20 |
+
"image_processor_type": "Qwen2VLImageProcessorFast"
|
| 21 |
+
}
|
tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5f9e4d4901a92b997e463c1f46055088b6cca5ca61a6522d1b9f64c4bb81cb42
|
| 3 |
+
size 12807982
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,305 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_prefix_space": false,
|
| 3 |
+
"added_tokens_decoder": {
|
| 4 |
+
"248044": {
|
| 5 |
+
"content": "<|endoftext|>",
|
| 6 |
+
"lstrip": false,
|
| 7 |
+
"normalized": false,
|
| 8 |
+
"rstrip": false,
|
| 9 |
+
"single_word": false,
|
| 10 |
+
"special": true
|
| 11 |
+
},
|
| 12 |
+
"248045": {
|
| 13 |
+
"content": "<|im_start|>",
|
| 14 |
+
"lstrip": false,
|
| 15 |
+
"normalized": false,
|
| 16 |
+
"rstrip": false,
|
| 17 |
+
"single_word": false,
|
| 18 |
+
"special": true
|
| 19 |
+
},
|
| 20 |
+
"248046": {
|
| 21 |
+
"content": "<|im_end|>",
|
| 22 |
+
"lstrip": false,
|
| 23 |
+
"normalized": false,
|
| 24 |
+
"rstrip": false,
|
| 25 |
+
"single_word": false,
|
| 26 |
+
"special": true
|
| 27 |
+
},
|
| 28 |
+
"248047": {
|
| 29 |
+
"content": "<|object_ref_start|>",
|
| 30 |
+
"lstrip": false,
|
| 31 |
+
"normalized": false,
|
| 32 |
+
"rstrip": false,
|
| 33 |
+
"single_word": false,
|
| 34 |
+
"special": true
|
| 35 |
+
},
|
| 36 |
+
"248048": {
|
| 37 |
+
"content": "<|object_ref_end|>",
|
| 38 |
+
"lstrip": false,
|
| 39 |
+
"normalized": false,
|
| 40 |
+
"rstrip": false,
|
| 41 |
+
"single_word": false,
|
| 42 |
+
"special": true
|
| 43 |
+
},
|
| 44 |
+
"248049": {
|
| 45 |
+
"content": "<|box_start|>",
|
| 46 |
+
"lstrip": false,
|
| 47 |
+
"normalized": false,
|
| 48 |
+
"rstrip": false,
|
| 49 |
+
"single_word": false,
|
| 50 |
+
"special": true
|
| 51 |
+
},
|
| 52 |
+
"248050": {
|
| 53 |
+
"content": "<|box_end|>",
|
| 54 |
+
"lstrip": false,
|
| 55 |
+
"normalized": false,
|
| 56 |
+
"rstrip": false,
|
| 57 |
+
"single_word": false,
|
| 58 |
+
"special": true
|
| 59 |
+
},
|
| 60 |
+
"248051": {
|
| 61 |
+
"content": "<|quad_start|>",
|
| 62 |
+
"lstrip": false,
|
| 63 |
+
"normalized": false,
|
| 64 |
+
"rstrip": false,
|
| 65 |
+
"single_word": false,
|
| 66 |
+
"special": true
|
| 67 |
+
},
|
| 68 |
+
"248052": {
|
| 69 |
+
"content": "<|quad_end|>",
|
| 70 |
+
"lstrip": false,
|
| 71 |
+
"normalized": false,
|
| 72 |
+
"rstrip": false,
|
| 73 |
+
"single_word": false,
|
| 74 |
+
"special": true
|
| 75 |
+
},
|
| 76 |
+
"248053": {
|
| 77 |
+
"content": "<|vision_start|>",
|
| 78 |
+
"lstrip": false,
|
| 79 |
+
"normalized": false,
|
| 80 |
+
"rstrip": false,
|
| 81 |
+
"single_word": false,
|
| 82 |
+
"special": true
|
| 83 |
+
},
|
| 84 |
+
"248054": {
|
| 85 |
+
"content": "<|vision_end|>",
|
| 86 |
+
"lstrip": false,
|
| 87 |
+
"normalized": false,
|
| 88 |
+
"rstrip": false,
|
| 89 |
+
"single_word": false,
|
| 90 |
+
"special": true
|
| 91 |
+
},
|
| 92 |
+
"248055": {
|
| 93 |
+
"content": "<|vision_pad|>",
|
| 94 |
+
"lstrip": false,
|
| 95 |
+
"normalized": false,
|
| 96 |
+
"rstrip": false,
|
| 97 |
+
"single_word": false,
|
| 98 |
+
"special": true
|
| 99 |
+
},
|
| 100 |
+
"248056": {
|
| 101 |
+
"content": "<|image_pad|>",
|
| 102 |
+
"lstrip": false,
|
| 103 |
+
"normalized": false,
|
| 104 |
+
"rstrip": false,
|
| 105 |
+
"single_word": false,
|
| 106 |
+
"special": true
|
| 107 |
+
},
|
| 108 |
+
"248057": {
|
| 109 |
+
"content": "<|video_pad|>",
|
| 110 |
+
"lstrip": false,
|
| 111 |
+
"normalized": false,
|
| 112 |
+
"rstrip": false,
|
| 113 |
+
"single_word": false,
|
| 114 |
+
"special": true
|
| 115 |
+
},
|
| 116 |
+
"248058": {
|
| 117 |
+
"content": "<tool_call>",
|
| 118 |
+
"lstrip": false,
|
| 119 |
+
"normalized": false,
|
| 120 |
+
"rstrip": false,
|
| 121 |
+
"single_word": false,
|
| 122 |
+
"special": false
|
| 123 |
+
},
|
| 124 |
+
"248059": {
|
| 125 |
+
"content": "</tool_call>",
|
| 126 |
+
"lstrip": false,
|
| 127 |
+
"normalized": false,
|
| 128 |
+
"rstrip": false,
|
| 129 |
+
"single_word": false,
|
| 130 |
+
"special": false
|
| 131 |
+
},
|
| 132 |
+
"248060": {
|
| 133 |
+
"content": "<|fim_prefix|>",
|
| 134 |
+
"lstrip": false,
|
| 135 |
+
"normalized": false,
|
| 136 |
+
"rstrip": false,
|
| 137 |
+
"single_word": false,
|
| 138 |
+
"special": false
|
| 139 |
+
},
|
| 140 |
+
"248061": {
|
| 141 |
+
"content": "<|fim_middle|>",
|
| 142 |
+
"lstrip": false,
|
| 143 |
+
"normalized": false,
|
| 144 |
+
"rstrip": false,
|
| 145 |
+
"single_word": false,
|
| 146 |
+
"special": false
|
| 147 |
+
},
|
| 148 |
+
"248062": {
|
| 149 |
+
"content": "<|fim_suffix|>",
|
| 150 |
+
"lstrip": false,
|
| 151 |
+
"normalized": false,
|
| 152 |
+
"rstrip": false,
|
| 153 |
+
"single_word": false,
|
| 154 |
+
"special": false
|
| 155 |
+
},
|
| 156 |
+
"248063": {
|
| 157 |
+
"content": "<|fim_pad|>",
|
| 158 |
+
"lstrip": false,
|
| 159 |
+
"normalized": false,
|
| 160 |
+
"rstrip": false,
|
| 161 |
+
"single_word": false,
|
| 162 |
+
"special": false
|
| 163 |
+
},
|
| 164 |
+
"248064": {
|
| 165 |
+
"content": "<|repo_name|>",
|
| 166 |
+
"lstrip": false,
|
| 167 |
+
"normalized": false,
|
| 168 |
+
"rstrip": false,
|
| 169 |
+
"single_word": false,
|
| 170 |
+
"special": false
|
| 171 |
+
},
|
| 172 |
+
"248065": {
|
| 173 |
+
"content": "<|file_sep|>",
|
| 174 |
+
"lstrip": false,
|
| 175 |
+
"normalized": false,
|
| 176 |
+
"rstrip": false,
|
| 177 |
+
"single_word": false,
|
| 178 |
+
"special": false
|
| 179 |
+
},
|
| 180 |
+
"248066": {
|
| 181 |
+
"content": "<tool_response>",
|
| 182 |
+
"lstrip": false,
|
| 183 |
+
"normalized": false,
|
| 184 |
+
"rstrip": false,
|
| 185 |
+
"single_word": false,
|
| 186 |
+
"special": false
|
| 187 |
+
},
|
| 188 |
+
"248067": {
|
| 189 |
+
"content": "</tool_response>",
|
| 190 |
+
"lstrip": false,
|
| 191 |
+
"normalized": false,
|
| 192 |
+
"rstrip": false,
|
| 193 |
+
"single_word": false,
|
| 194 |
+
"special": false
|
| 195 |
+
},
|
| 196 |
+
"248068": {
|
| 197 |
+
"content": "<think>",
|
| 198 |
+
"lstrip": false,
|
| 199 |
+
"normalized": false,
|
| 200 |
+
"rstrip": false,
|
| 201 |
+
"single_word": false,
|
| 202 |
+
"special": false
|
| 203 |
+
},
|
| 204 |
+
"248069": {
|
| 205 |
+
"content": "</think>",
|
| 206 |
+
"lstrip": false,
|
| 207 |
+
"normalized": false,
|
| 208 |
+
"rstrip": false,
|
| 209 |
+
"single_word": false,
|
| 210 |
+
"special": false
|
| 211 |
+
},
|
| 212 |
+
"248070": {
|
| 213 |
+
"content": "<|audio_start|>",
|
| 214 |
+
"lstrip": false,
|
| 215 |
+
"normalized": false,
|
| 216 |
+
"rstrip": false,
|
| 217 |
+
"single_word": false,
|
| 218 |
+
"special": true
|
| 219 |
+
},
|
| 220 |
+
"248071": {
|
| 221 |
+
"content": "<|audio_end|>",
|
| 222 |
+
"lstrip": false,
|
| 223 |
+
"normalized": false,
|
| 224 |
+
"rstrip": false,
|
| 225 |
+
"single_word": false,
|
| 226 |
+
"special": true
|
| 227 |
+
},
|
| 228 |
+
"248072": {
|
| 229 |
+
"content": "<tts_pad>",
|
| 230 |
+
"lstrip": false,
|
| 231 |
+
"normalized": false,
|
| 232 |
+
"rstrip": false,
|
| 233 |
+
"single_word": false,
|
| 234 |
+
"special": true
|
| 235 |
+
},
|
| 236 |
+
"248073": {
|
| 237 |
+
"content": "<tts_text_bos>",
|
| 238 |
+
"lstrip": false,
|
| 239 |
+
"normalized": false,
|
| 240 |
+
"rstrip": false,
|
| 241 |
+
"single_word": false,
|
| 242 |
+
"special": true
|
| 243 |
+
},
|
| 244 |
+
"248074": {
|
| 245 |
+
"content": "<tts_text_eod>",
|
| 246 |
+
"lstrip": false,
|
| 247 |
+
"normalized": false,
|
| 248 |
+
"rstrip": false,
|
| 249 |
+
"single_word": false,
|
| 250 |
+
"special": true
|
| 251 |
+
},
|
| 252 |
+
"248075": {
|
| 253 |
+
"content": "<tts_text_bos_single>",
|
| 254 |
+
"lstrip": false,
|
| 255 |
+
"normalized": false,
|
| 256 |
+
"rstrip": false,
|
| 257 |
+
"single_word": false,
|
| 258 |
+
"special": true
|
| 259 |
+
},
|
| 260 |
+
"248076": {
|
| 261 |
+
"content": "<|audio_pad|>",
|
| 262 |
+
"lstrip": false,
|
| 263 |
+
"normalized": false,
|
| 264 |
+
"rstrip": false,
|
| 265 |
+
"single_word": false,
|
| 266 |
+
"special": true
|
| 267 |
+
}
|
| 268 |
+
},
|
| 269 |
+
"additional_special_tokens": [
|
| 270 |
+
"<|im_start|>",
|
| 271 |
+
"<|im_end|>",
|
| 272 |
+
"<|object_ref_start|>",
|
| 273 |
+
"<|object_ref_end|>",
|
| 274 |
+
"<|box_start|>",
|
| 275 |
+
"<|box_end|>",
|
| 276 |
+
"<|quad_start|>",
|
| 277 |
+
"<|quad_end|>",
|
| 278 |
+
"<|vision_start|>",
|
| 279 |
+
"<|vision_end|>",
|
| 280 |
+
"<|vision_pad|>",
|
| 281 |
+
"<|image_pad|>",
|
| 282 |
+
"<|video_pad|>"
|
| 283 |
+
],
|
| 284 |
+
"bos_token": null,
|
| 285 |
+
"chat_template": "{%- set image_count = namespace(value=0) %}\n{%- set video_count = namespace(value=0) %}\n{%- macro render_content(content, do_vision_count, is_system_content=false) %}\n {%- if content is string %}\n {{- content }}\n {%- elif content is iterable and content is not mapping %}\n {%- for item in content %}\n {%- if 'image' in item or 'image_url' in item or item.type == 'image' %}\n {%- if is_system_content %}\n {{- raise_exception('System message cannot contain images.') }}\n {%- endif %}\n {%- if do_vision_count %}\n {%- set image_count.value = image_count.value + 1 %}\n {%- endif %}\n {%- if add_vision_id %}\n {{- 'Picture ' ~ image_count.value ~ ': ' }}\n {%- endif %}\n {{- '<|vision_start|><|image_pad|><|vision_end|>' }}\n {%- elif 'video' in item or item.type == 'video' %}\n {%- if is_system_content %}\n {{- raise_exception('System message cannot contain videos.') }}\n {%- endif %}\n {%- if do_vision_count %}\n {%- set video_count.value = video_count.value + 1 %}\n {%- endif %}\n {%- if add_vision_id %}\n {{- 'Video ' ~ video_count.value ~ ': ' }}\n {%- endif %}\n {{- '<|vision_start|><|video_pad|><|vision_end|>' }}\n {%- elif 'text' in item %}\n {{- item.text }}\n {%- else %}\n {{- raise_exception('Unexpected item type in content.') }}\n {%- endif %}\n {%- endfor %}\n {%- elif content is none or content is undefined %}\n {{- '' }}\n {%- else %}\n {{- raise_exception('Unexpected content type.') }}\n {%- endif %}\n{%- endmacro %}\n{%- if not messages %}\n {{- raise_exception('No messages provided.') }}\n{%- endif %}\n{%- if tools and tools is iterable and tools is not mapping %}\n {{- '<|im_start|>system\\n' }}\n {{- \"# Tools\\n\\nYou have access to the following functions:\\n\\n<tools>\" }}\n {%- for tool in tools %}\n {{- \"\\n\" }}\n {{- tool | tojson }}\n {%- endfor %}\n {{- \"\\n</tools>\" }}\n {{- '\\n\\nIf you choose to call a function ONLY reply in the following format with NO suffix:\\n\\n<tool_call>\\n<function=example_function_name>\\n<parameter=example_parameter_1>\\nvalue_1\\n</parameter>\\n<parameter=example_parameter_2>\\nThis is the value for the second parameter\\nthat can span\\nmultiple lines\\n</parameter>\\n</function>\\n</tool_call>\\n\\n<IMPORTANT>\\nReminder:\\n- Function calls MUST follow the specified format: an inner <function=...></function> block must be nested within <tool_call></tool_call> XML tags\\n- Required parameters MUST be specified\\n- You may provide optional reasoning for your function call in natural language BEFORE the function call, but NOT after\\n- If there is no function call available, answer the question like normal with your current knowledge and do not tell the user about function calls\\n</IMPORTANT>' }}\n {%- if messages[0].role == 'system' %}\n {%- set content = render_content(messages[0].content, false, true)|trim %}\n {%- if content %}\n {{- '\\n\\n' + content }}\n {%- endif %}\n {%- endif %}\n {{- '<|im_end|>\\n' }}\n{%- else %}\n {%- if messages[0].role == 'system' %}\n {%- set content = render_content(messages[0].content, false, true)|trim %}\n {{- '<|im_start|>system\\n' + content + '<|im_end|>\\n' }}\n {%- endif %}\n{%- endif %}\n{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}\n{%- for message in messages[::-1] %}\n {%- set index = (messages|length - 1) - loop.index0 %}\n {%- if ns.multi_step_tool and message.role == \"user\" %}\n {%- set content = render_content(message.content, false)|trim %}\n {%- if not(content.startswith('<tool_response>') and content.endswith('</tool_response>')) %}\n {%- set ns.multi_step_tool = false %}\n {%- set ns.last_query_index = index %}\n {%- endif %}\n {%- endif %}\n{%- endfor %}\n{%- if ns.multi_step_tool %}\n {{- raise_exception('No user query found in messages.') }}\n{%- endif %}\n{%- for message in messages %}\n {%- set content = render_content(message.content, true)|trim %}\n {%- if message.role == \"system\" %}\n {%- if not loop.first %}\n {{- raise_exception('System message must be at the beginning.') }}\n {%- endif %}\n {%- elif message.role == \"user\" %}\n {{- '<|im_start|>' + message.role + '\\n' + content + '<|im_end|>' + '\\n' }}\n {%- elif message.role == \"assistant\" %}\n {%- set reasoning_content = '' %}\n {%- if message.reasoning_content is string %}\n {%- set reasoning_content = message.reasoning_content %}\n {%- else %}\n {%- if '</think>' in content %}\n {%- set reasoning_content = content.split('</think>')[0].rstrip('\\n').split('<think>')[-1].lstrip('\\n') %}\n {%- set content = content.split('</think>')[-1].lstrip('\\n') %}\n {%- endif %}\n {%- endif %}\n {%- set reasoning_content = reasoning_content|trim %}\n {%- if (preserve_thinking is defined and preserve_thinking is true) or (loop.index0 > ns.last_query_index) %}\n {{- '<|im_start|>' + message.role + '\\n<think>\\n' + reasoning_content + '\\n</think>\\n\\n' + content }}\n {%- else %}\n {{- '<|im_start|>' + message.role + '\\n' + content }}\n {%- endif %}\n {%- if message.tool_calls and message.tool_calls is iterable and message.tool_calls is not mapping %}\n {%- for tool_call in message.tool_calls %}\n {%- if tool_call.function is defined %}\n {%- set tool_call = tool_call.function %}\n {%- endif %}\n {%- if loop.first %}\n {%- if content|trim %}\n {{- '\\n\\n<tool_call>\\n<function=' + tool_call.name + '>\\n' }}\n {%- else %}\n {{- '<tool_call>\\n<function=' + tool_call.name + '>\\n' }}\n {%- endif %}\n {%- else %}\n {{- '\\n<tool_call>\\n<function=' + tool_call.name + '>\\n' }}\n {%- endif %}\n {%- if tool_call.arguments is defined %}\n {%- for args_name, args_value in tool_call.arguments|items %}\n {{- '<parameter=' + args_name + '>\\n' }}\n {%- set args_value = args_value | string if args_value is string else args_value | tojson | safe %}\n {{- args_value }}\n {{- '\\n</parameter>\\n' }}\n {%- endfor %}\n {%- endif %}\n {{- '</function>\\n</tool_call>' }}\n {%- endfor %}\n {%- endif %}\n {{- '<|im_end|>\\n' }}\n {%- elif message.role == \"tool\" %}\n {%- if loop.previtem and loop.previtem.role != \"tool\" %}\n {{- '<|im_start|>user' }}\n {%- endif %}\n {{- '\\n<tool_response>\\n' }}\n {{- content }}\n {{- '\\n</tool_response>' }}\n {%- if not loop.last and loop.nextitem.role != \"tool\" %}\n {{- '<|im_end|>\\n' }}\n {%- elif loop.last %}\n {{- '<|im_end|>\\n' }}\n {%- endif %}\n {%- else %}\n {{- raise_exception('Unexpected message role.') }}\n {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n {{- '<|im_start|>assistant\\n' }}\n {%- if enable_thinking is defined and enable_thinking is false %}\n {{- '<think>\\n\\n</think>\\n\\n' }}\n {%- else %}\n {{- '<think>\\n' }}\n {%- endif %}\n{%- endif %}",
|
| 286 |
+
"clean_up_tokenization_spaces": false,
|
| 287 |
+
"eos_token": "<|im_end|>",
|
| 288 |
+
"errors": "replace",
|
| 289 |
+
"model_max_length": 262144,
|
| 290 |
+
"pad_token": "<|endoftext|>",
|
| 291 |
+
"split_special_tokens": false,
|
| 292 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 293 |
+
"unk_token": null,
|
| 294 |
+
"add_bos_token": false,
|
| 295 |
+
"pretokenize_regex": "(?i:'s|'t|'re|'ve|'m|'ll|'d)|[^\\r\\n\\p{L}\\p{N}]?[\\p{L}\\p{M}]+|\\p{N}| ?[^\\s\\p{L}\\p{M}\\p{N}]+[\\r\\n]*|\\s*[\\r\\n]+|\\s+(?!\\S)|\\s+",
|
| 296 |
+
"extra_special_tokens": {
|
| 297 |
+
"audio_bos_token": "<|audio_start|>",
|
| 298 |
+
"audio_eos_token": "<|audio_end|>",
|
| 299 |
+
"audio_token": "<|audio_pad|>",
|
| 300 |
+
"image_token": "<|image_pad|>",
|
| 301 |
+
"video_token": "<|video_pad|>",
|
| 302 |
+
"vision_bos_token": "<|vision_start|>",
|
| 303 |
+
"vision_eos_token": "<|vision_end|>"
|
| 304 |
+
}
|
| 305 |
+
}
|
video_preprocessor_config.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"size": {
|
| 3 |
+
"longest_edge": 25165824,
|
| 4 |
+
"shortest_edge": 4096
|
| 5 |
+
},
|
| 6 |
+
"patch_size": 16,
|
| 7 |
+
"temporal_patch_size": 2,
|
| 8 |
+
"merge_size": 2,
|
| 9 |
+
"image_mean": [
|
| 10 |
+
0.5,
|
| 11 |
+
0.5,
|
| 12 |
+
0.5
|
| 13 |
+
],
|
| 14 |
+
"image_std": [
|
| 15 |
+
0.5,
|
| 16 |
+
0.5,
|
| 17 |
+
0.5
|
| 18 |
+
],
|
| 19 |
+
"processor_class": "Qwen3VLProcessor",
|
| 20 |
+
"video_processor_type": "Qwen3VLVideoProcessor"
|
| 21 |
+
}
|
vocab.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|