Text Generation
Transformers
Safetensors
English
Chinese
qwen3_5_moe
image-text-to-text
agent
apodex
arxiv:2608.23283
conversational
4-bit precision
gptq
Instructions to use apodex/Apodex-1.1-mini-GPTQ-Int4 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use apodex/Apodex-1.1-mini-GPTQ-Int4 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="apodex/Apodex-1.1-mini-GPTQ-Int4") 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("apodex/Apodex-1.1-mini-GPTQ-Int4") model = AutoModelForMultimodalLM.from_pretrained("apodex/Apodex-1.1-mini-GPTQ-Int4", 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 apodex/Apodex-1.1-mini-GPTQ-Int4 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "apodex/Apodex-1.1-mini-GPTQ-Int4" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "apodex/Apodex-1.1-mini-GPTQ-Int4", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/apodex/Apodex-1.1-mini-GPTQ-Int4
- SGLang
How to use apodex/Apodex-1.1-mini-GPTQ-Int4 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 "apodex/Apodex-1.1-mini-GPTQ-Int4" \ --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": "apodex/Apodex-1.1-mini-GPTQ-Int4", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'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 "apodex/Apodex-1.1-mini-GPTQ-Int4" \ --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": "apodex/Apodex-1.1-mini-GPTQ-Int4", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use apodex/Apodex-1.1-mini-GPTQ-Int4 with Docker Model Runner:
docker model run hf.co/apodex/Apodex-1.1-mini-GPTQ-Int4
Commit ·
5fa2db2
0
Parent(s):
init commit
Browse files- .gitattributes +39 -0
- LICENSE +202 -0
- README.md +306 -0
- chat_template.jinja +173 -0
- config.json +960 -0
- generation_config.json +13 -0
- model-00001-of-00006.safetensors +3 -0
- model-00002-of-00006.safetensors +3 -0
- model-00003-of-00006.safetensors +3 -0
- model-00004-of-00006.safetensors +3 -0
- model-00005-of-00006.safetensors +3 -0
- model-00006-of-00006.safetensors +3 -0
- model.safetensors.index.json +3 -0
- model_extra_tensors.safetensors +3 -0
- preprocessor_config.json +26 -0
- processor_config.json +60 -0
- quantization_config.json +837 -0
- tokenizer.json +3 -0
- tokenizer_config.json +33 -0
.gitattributes
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
*.7z filter=lfs diff=lfs merge=lfs -text
|
| 2 |
+
*.arrow filter=lfs diff=lfs merge=lfs -text
|
| 3 |
+
*.bin filter=lfs diff=lfs merge=lfs -text
|
| 4 |
+
*.bz2 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 |
+
*.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
|
| 11 |
+
*.mlmodel filter=lfs diff=lfs merge=lfs -text
|
| 12 |
+
*.model filter=lfs diff=lfs merge=lfs -text
|
| 13 |
+
*.msgpack filter=lfs diff=lfs merge=lfs -text
|
| 14 |
+
*.npy filter=lfs diff=lfs merge=lfs -text
|
| 15 |
+
*.npz filter=lfs diff=lfs merge=lfs -text
|
| 16 |
+
*.onnx filter=lfs diff=lfs merge=lfs -text
|
| 17 |
+
*.ot filter=lfs diff=lfs merge=lfs -text
|
| 18 |
+
*.parquet filter=lfs diff=lfs merge=lfs -text
|
| 19 |
+
*.pb filter=lfs diff=lfs merge=lfs -text
|
| 20 |
+
*.pickle filter=lfs diff=lfs merge=lfs -text
|
| 21 |
+
*.pkl filter=lfs diff=lfs merge=lfs -text
|
| 22 |
+
*.pt filter=lfs diff=lfs merge=lfs -text
|
| 23 |
+
*.pth filter=lfs diff=lfs merge=lfs -text
|
| 24 |
+
*.rar filter=lfs diff=lfs merge=lfs -text
|
| 25 |
+
*.safetensors filter=lfs diff=lfs merge=lfs -text
|
| 26 |
+
saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
| 27 |
+
*.tar.* filter=lfs diff=lfs merge=lfs -text
|
| 28 |
+
*.tar filter=lfs diff=lfs merge=lfs -text
|
| 29 |
+
*.tflite filter=lfs diff=lfs merge=lfs -text
|
| 30 |
+
*.tgz filter=lfs diff=lfs merge=lfs -text
|
| 31 |
+
*.wasm filter=lfs diff=lfs merge=lfs -text
|
| 32 |
+
*.xz 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
|
| 36 |
+
apodex1.1-35b-sft-agentk3-06-coding03-base01-w4g64/model.safetensors.index.json filter=lfs diff=lfs merge=lfs -text
|
| 37 |
+
apodex1.1-35b-sft-agentk3-06-coding03-base01-w4g64/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 38 |
+
model.safetensors.index.json filter=lfs diff=lfs merge=lfs -text
|
| 39 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
LICENSE
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.
|
README.md
ADDED
|
@@ -0,0 +1,306 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
library_name: transformers
|
| 3 |
+
pipeline_tag: text-generation
|
| 4 |
+
license: apache-2.0
|
| 5 |
+
language:
|
| 6 |
+
- en
|
| 7 |
+
- zh
|
| 8 |
+
base_model:
|
| 9 |
+
- Qwen/Qwen3.5-35B-A3B
|
| 10 |
+
tags:
|
| 11 |
+
- agent
|
| 12 |
+
- apodex
|
| 13 |
+
- arxiv:2608.23283
|
| 14 |
+
---
|
| 15 |
+
|
| 16 |
+
<div align="center">
|
| 17 |
+
<img src="https://cdn-uploads.huggingface.co/production/uploads/6466e7be1343dce20e59191b/aFPexDrJ5TMuxszCnr4E0.png" width="55%" alt="Apodex" />
|
| 18 |
+
</div>
|
| 19 |
+
|
| 20 |
+
<hr>
|
| 21 |
+
|
| 22 |
+
<div align="center" style="line-height:1">
|
| 23 |
+
|
| 24 |
+
</div>
|
| 25 |
+
|
| 26 |
+
<h2 align="center">Apodex 1.1: Scaling Agentic Intelligence for Complex Work</h2>
|
| 27 |
+
|
| 28 |
+
<div align="center" style="line-height:1">
|
| 29 |
+
<a href="https://www.apodex.ai" target="_blank"><img alt="Online Service" src="https://img.shields.io/badge/🤖%20Online Service-Apodex 1.1-ff6b6b?color=1783ff&logoColor=white"/></a>
|
| 30 |
+
<a href="https://www.apodex.com/" target="_blank"><img alt="Homepage" src="https://img.shields.io/badge/Homepage-Apodex AI-white?logoColor=white"/></a>
|
| 31 |
+
<a href="https://platform.apodex.ai" target="_blank"><img alt="API" src="https://img.shields.io/badge/API-Apodex 1.1-1783ff?color=1783ff&logoColor=white"/></a>
|
| 32 |
+
</div>
|
| 33 |
+
|
| 34 |
+
<div align="center" style="line-height: 1;">
|
| 35 |
+
<a href="https://github.com/ApodexAI/FrontierAgent" target="_blank"><img alt="GitHub" src="https://img.shields.io/badge/GitHub-Apodex AI-white?logo=github&logoColor=white"/></a>
|
| 36 |
+
<a href="https://huggingface.co/apodex/Apodex-1.1-mini-GPTQ-Int4/blob/main/LICENSE"><img alt="License" src="https://img.shields.io/badge/License-Apache_2.0-blue?color=blue"/></a>
|
| 37 |
+
</div>
|
| 38 |
+
<p align="center">
|
| 39 |
+
<b>📰<a href="https://www.apodex.com/blog/apodex-1.1-scaling-agentic-intelligence-for-complex-work">Tech Blog</a></b> | <b>📄<a href="https://www.apodex.com/pdf/20260824">Tech Report</a></b>
|
| 40 |
+
</p>
|
| 41 |
+
|
| 42 |
+
## 1. Model Introduction
|
| 43 |
+
|
| 44 |
+
**Apodex-1.1** is a reasoning-first model for complex, long-horizon research tasks. Beyond searching and writing reports, it works directly with files, data, code, and tools to complete tasks from input to verifiable deliverables. Powered by AgentOS and an asynchronous Agent Team, it can maintain task state, adapt its plan, coordinate parallel work, and incorporate user feedback throughout execution.
|
| 45 |
+
|
| 46 |
+
### Online Service
|
| 47 |
+
|
| 48 |
+
Try Apodex at [apodex.ai](https://www.apodex.ai).
|
| 49 |
+
|
| 50 |
+
### Key Features
|
| 51 |
+
|
| 52 |
+
- **End-to-end execution in real environments.** Apodex 1.1 works directly with papers, datasets, spreadsheets, images, and code. It can clean data, select methods, run analyses, inspect intermediate results, recover from errors, and turn raw inputs into verifiable deliverables within one continuous task.
|
| 53 |
+
- **Adaptive and user-steerable Agent Team.** The model dynamically decomposes complex tasks and coordinates multiple Subagents working in parallel. Results flow continuously into a shared task state, allowing Apodex to revise priorities, preserve completed work, and respond to new files, requirements, or user feedback without restarting the entire task.
|
| 54 |
+
- **Verification built into delivery.** Statement Review independently checks key claims against their supporting sources, data, and computations before delivery. When evidence is insufficient, citations do not match, or results conflict with expectations, the system flags the issue, corrects the affected conclusion, and keeps the review process inspectable.
|
| 55 |
+
|
| 56 |
+
## 2. Evaluation Results
|
| 57 |
+
|
| 58 |
+
> To prevent potential information leakage (e.g., retrieving benchmark answers from public repositories), we block access to relevant benchmark-hosting websites during evaluation.
|
| 59 |
+
|
| 60 |
+
Apodex 1.1 Agent Team delivers frontier-level performance across professional work, finance, scientific research, and general reasoning, achieving 38.5 on APEX-Agents, 78.8 on GDPVal, 54.3 on FrontierFinance, 63.3 on FrontierScience-Research, 35.3 on BioMysteryBench, and 56.1 on Humanity’s Last Exam. It consistently improves over the ReAct setup across all six benchmarks and achieves the highest scores among the compared systems on FrontierFinance and FrontierScience-Research.
|
| 61 |
+
<div align="center">
|
| 62 |
+
<img src="https://cdn-uploads.huggingface.co/production/uploads/6466e7be1343dce20e59191b/yvDHTuMzAaRqmgzw59HRR.png" width="100%" alt="Apodex Benchmarks" />
|
| 63 |
+
</div>
|
| 64 |
+
|
| 65 |
+
Apodex-1.1-mini remains competitive with frontier models, leading FrontierFinance with 50.2 and nearly matching the best result on APEX-Agent with 27.7. Its Agent Team setup also consistently outperforms ReAct across all three benchmarks. You can try Apodex-1.1-mini with our [Agent Team harness](https://github.com/ApodexAI/FrontierAgent).
|
| 66 |
+
<div align="center">
|
| 67 |
+
<img src="https://cdn-uploads.huggingface.co/production/uploads/6466e7be1343dce20e59191b/hBfEXL7HCBEXBTzZc3_4i.png" width="100%" alt="Apodex Benchmarks" />
|
| 68 |
+
</div>
|
| 69 |
+
|
| 70 |
+
## 3. Quick Start
|
| 71 |
+
|
| 72 |
+
Apodex follows the Qwen3.5 chat template — tool calls are emitted as <tool_call><function=...><parameter=...></parameter></function></tool_call> and reasoning as <think>...</think>. Launch with the matching parsers so the server returns standard OpenAI-style tool_calls and reasoning_content fields.
|
| 73 |
+
|
| 74 |
+
### 3.1 Deployment
|
| 75 |
+
|
| 76 |
+
We recommend deploying Apodex with the latest [SGLang](https://github.com/sgl-project/sglang) for an OpenAI-compatible endpoint.
|
| 77 |
+
|
| 78 |
+
```shell
|
| 79 |
+
python -m sglang.launch_server \
|
| 80 |
+
--model-path apodex/Apodex-1.1-mini-GPTQ-Int4 \
|
| 81 |
+
--quantization moe_wna16 \
|
| 82 |
+
--tp-size 1 \
|
| 83 |
+
--tool-call-parser qwen3_coder \
|
| 84 |
+
--reasoning-parser qwen3
|
| 85 |
+
```
|
| 86 |
+
|
| 87 |
+
### 3.2 Best Practices
|
| 88 |
+
|
| 89 |
+
For optimal performance in agentic tasks, we recommend:
|
| 90 |
+
|
| 91 |
+
```
|
| 92 |
+
temperature: 1.0
|
| 93 |
+
top_p: 0.95
|
| 94 |
+
repetition_penalty: 1.05
|
| 95 |
+
max_context_length: 262144
|
| 96 |
+
max_tokens: 32768
|
| 97 |
+
```
|
| 98 |
+
|
| 99 |
+
### 3.3 Agentic Usage
|
| 100 |
+
|
| 101 |
+
Apodex is trained for native function calling — tool schemas are passed via the tools= parameter of the chat-completions API and rendered into the prompt by the chat template, so the system prompt itself only needs to set the role and the high-level objective. We recommend the prompt below (this is the prompt used in our internal evaluation runs):
|
| 102 |
+
|
| 103 |
+
```
|
| 104 |
+
You are Apodex, an AI assistant developed by Apodex AI.
|
| 105 |
+
|
| 106 |
+
Apodex is the flagship agent of Apodex AI. Rather than a conventional conversational LLM, it is a general-purpose solver designed for mission-critical tasks.
|
| 107 |
+
|
| 108 |
+
Current time: {today_date}. In this environment you have access to a set of tools you can use to answer the user's question.
|
| 109 |
+
|
| 110 |
+
You only have access to the tools provided. You can use multiple tools per message, and will receive the results of those tools in the user's next response. You use tools step-by-step to accomplish a given task.
|
| 111 |
+
|
| 112 |
+
# General Objective
|
| 113 |
+
|
| 114 |
+
You accomplish a given task iteratively, breaking it down into clear steps and working through them methodically.
|
| 115 |
+
```
|
| 116 |
+
|
| 117 |
+
Substitute `{today_date}` with the current date (e.g. `2026-06-01`). **Do not** inline tool descriptions in the system prompt — pass them via `tools=` so the Qwen3.5 chat template can emit the correct `<tool_call><function=...>` format and the server-side `qwen3_coder` parser can recover structured `tool_calls` for you.
|
| 118 |
+
|
| 119 |
+
The example below runs Apodex as a tool-using agent against an OpenAI-compatible endpoint (the SGLang / vLLM server launched above). The agent loops — executing the requested tools and feeding results back as `role="tool"` messages — until the model produces a final answer with no tool calls.
|
| 120 |
+
|
| 121 |
+
Before running, set the endpoint:
|
| 122 |
+
|
| 123 |
+
```bash
|
| 124 |
+
export OPENAI_API_KEY="EMPTY" # any non-empty string for local servers
|
| 125 |
+
export BASE_URL="http://localhost:1234/v1"
|
| 126 |
+
```
|
| 127 |
+
|
| 128 |
+
<details open>
|
| 129 |
+
<summary>Click to expand python code example</summary>
|
| 130 |
+
|
| 131 |
+
```python
|
| 132 |
+
import json
|
| 133 |
+
import os
|
| 134 |
+
from datetime import date
|
| 135 |
+
from openai import OpenAI
|
| 136 |
+
|
| 137 |
+
|
| 138 |
+
# -------- 1. Tool implementations --------
|
| 139 |
+
def get_weather(location: str, unit: str = "celsius") -> str:
|
| 140 |
+
"""Get current weather information for a city (simulated)."""
|
| 141 |
+
table = {
|
| 142 |
+
"London": {"temperature": 15, "condition": "sunny", "humidity": 45},
|
| 143 |
+
"New York": {"temperature": 20, "condition": "cloudy", "humidity": 60},
|
| 144 |
+
"Tokyo": {"temperature": 25, "condition": "rainy", "humidity": 75},
|
| 145 |
+
}
|
| 146 |
+
w = dict(table.get(location, {"temperature": 18, "condition": "unknown", "humidity": 50}))
|
| 147 |
+
if unit == "fahrenheit":
|
| 148 |
+
w["temperature"] = w["temperature"] * 9 / 5 + 32
|
| 149 |
+
w["unit"] = "°F"
|
| 150 |
+
else:
|
| 151 |
+
w["unit"] = "°C"
|
| 152 |
+
return json.dumps(w, ensure_ascii=False)
|
| 153 |
+
|
| 154 |
+
|
| 155 |
+
def calculate(expression: str) -> str:
|
| 156 |
+
"""Evaluate a Python-style arithmetic expression."""
|
| 157 |
+
try:
|
| 158 |
+
return json.dumps({"expression": expression, "result": eval(expression)}, ensure_ascii=False)
|
| 159 |
+
except Exception as e:
|
| 160 |
+
return json.dumps({"expression": expression, "error": str(e)}, ensure_ascii=False)
|
| 161 |
+
|
| 162 |
+
|
| 163 |
+
available_tools = {"get_weather": get_weather, "calculate": calculate}
|
| 164 |
+
|
| 165 |
+
|
| 166 |
+
# -------- 2. Tool schemas (OpenAI function-calling format) --------
|
| 167 |
+
tools = [
|
| 168 |
+
{
|
| 169 |
+
"type": "function",
|
| 170 |
+
"function": {
|
| 171 |
+
"name": "get_weather",
|
| 172 |
+
"description": "Get current weather information for a city.",
|
| 173 |
+
"parameters": {
|
| 174 |
+
"type": "object",
|
| 175 |
+
"properties": {
|
| 176 |
+
"location": {"type": "string", "description": "City name, e.g. 'London'."},
|
| 177 |
+
"unit": {
|
| 178 |
+
"type": "string",
|
| 179 |
+
"enum": ["celsius", "fahrenheit"],
|
| 180 |
+
"description": "Temperature unit (default: celsius).",
|
| 181 |
+
},
|
| 182 |
+
},
|
| 183 |
+
"required": ["location"],
|
| 184 |
+
},
|
| 185 |
+
},
|
| 186 |
+
},
|
| 187 |
+
{
|
| 188 |
+
"type": "function",
|
| 189 |
+
"function": {
|
| 190 |
+
"name": "calculate",
|
| 191 |
+
"description": "Evaluate a Python-style arithmetic expression.",
|
| 192 |
+
"parameters": {
|
| 193 |
+
"type": "object",
|
| 194 |
+
"properties": {
|
| 195 |
+
"expression": {
|
| 196 |
+
"type": "string",
|
| 197 |
+
"description": "Expression to evaluate, e.g. '(25 + 15) * 3 - 10'.",
|
| 198 |
+
},
|
| 199 |
+
},
|
| 200 |
+
"required": ["expression"],
|
| 201 |
+
},
|
| 202 |
+
},
|
| 203 |
+
},
|
| 204 |
+
]
|
| 205 |
+
|
| 206 |
+
|
| 207 |
+
# -------- 3. System prompt --------
|
| 208 |
+
SYSTEM_PROMPT = f"""You are Apodex, an AI assistant developed by Apodex AI.
|
| 209 |
+
|
| 210 |
+
Apodex is the flagship agent of Apodex AI. Rather than a conventional conversational LLM, it is a general-purpose solver designed for mission-critical tasks.
|
| 211 |
+
|
| 212 |
+
Current time: {date.today()}. In this environment you have access to a set of tools you can use to answer the user's question.
|
| 213 |
+
|
| 214 |
+
You only have access to the tools provided. You can use multiple tools per message, and will receive the results of those tools in the user's next response. You use tools step-by-step to accomplish a given task.
|
| 215 |
+
|
| 216 |
+
# General Objective
|
| 217 |
+
|
| 218 |
+
You accomplish a given task iteratively, breaking it down into clear steps and working through them methodically."""
|
| 219 |
+
|
| 220 |
+
|
| 221 |
+
# -------- 4. Agentic loop --------
|
| 222 |
+
def run_agent(user_query: str, model: str = "apodex/Apodex-1.1-mini-GPTQ-Int4", max_turns: int = 20):
|
| 223 |
+
client = OpenAI(
|
| 224 |
+
api_key=os.environ.get("OPENAI_API_KEY", "EMPTY"),
|
| 225 |
+
base_url=os.environ.get("BASE_URL", "<http://localhost:1234/v1>"),
|
| 226 |
+
)
|
| 227 |
+
|
| 228 |
+
messages = [
|
| 229 |
+
{"role": "system", "content": SYSTEM_PROMPT},
|
| 230 |
+
{"role": "user", "content": user_query},
|
| 231 |
+
]
|
| 232 |
+
print(f"\\n{'=' * 60}\\nUser: {user_query}\\n{'=' * 60}\\n")
|
| 233 |
+
|
| 234 |
+
for turn in range(max_turns):
|
| 235 |
+
resp = client.chat.completions.create(
|
| 236 |
+
model=model,
|
| 237 |
+
messages=messages,
|
| 238 |
+
tools=tools,
|
| 239 |
+
parallel_tool_calls=True,
|
| 240 |
+
temperature=1.0,
|
| 241 |
+
top_p=0.95,
|
| 242 |
+
max_tokens=16384,
|
| 243 |
+
extra_body={"repetition_penalty": 1.05},
|
| 244 |
+
)
|
| 245 |
+
msg = resp.choices[0].message
|
| 246 |
+
|
| 247 |
+
# Optional: print reasoning if the server exposes it (qwen3 reasoning parser)
|
| 248 |
+
reasoning = getattr(msg, "reasoning_content", None)
|
| 249 |
+
if reasoning:
|
| 250 |
+
print(f"[think] {reasoning.strip()}\\n")
|
| 251 |
+
if msg.content:
|
| 252 |
+
print(f"[assistant] {msg.content.strip()}\\n")
|
| 253 |
+
|
| 254 |
+
messages.append(msg)
|
| 255 |
+
|
| 256 |
+
# No more tool calls -> final answer
|
| 257 |
+
if not msg.tool_calls:
|
| 258 |
+
print(f"💬 Final answer:\\n{msg.content}\\n")
|
| 259 |
+
return msg.content
|
| 260 |
+
|
| 261 |
+
# Execute every tool call requested in this turn
|
| 262 |
+
for call in msg.tool_calls:
|
| 263 |
+
name = call.function.name
|
| 264 |
+
args = json.loads(call.function.arguments or "{}")
|
| 265 |
+
print(f"🔧 call {name}({args})")
|
| 266 |
+
try:
|
| 267 |
+
result = available_toolsname
|
| 268 |
+
except Exception as e:
|
| 269 |
+
result = json.dumps({"error": f"{type(e).__name__}: {e}"}, ensure_ascii=False)
|
| 270 |
+
print(f" ↳ {result}\\n")
|
| 271 |
+
messages.append({
|
| 272 |
+
"role": "tool",
|
| 273 |
+
"tool_call_id": call.id,
|
| 274 |
+
"content": result,
|
| 275 |
+
})
|
| 276 |
+
|
| 277 |
+
print("⚠️ Reached max_turns without a final answer.")
|
| 278 |
+
return None
|
| 279 |
+
|
| 280 |
+
|
| 281 |
+
if __name__ == "__main__":
|
| 282 |
+
run_agent("What's the weather in London in Fahrenheit, and what's (25 + 15) * 3 - 10?")
|
| 283 |
+
```
|
| 284 |
+
|
| 285 |
+
</details>
|
| 286 |
+
|
| 287 |
+
|
| 288 |
+
## 4. License
|
| 289 |
+
|
| 290 |
+
Apodex-1.1 is released under Apache 2.0.
|
| 291 |
+
|
| 292 |
+
## 5. Citation
|
| 293 |
+
|
| 294 |
+
If you find this project useful in your research, please consider citing:
|
| 295 |
+
|
| 296 |
+
```
|
| 297 |
+
@article{apodex2026,
|
| 298 |
+
title={Apodex 1.1: Scaling Agentic Intelligence for Complex Work},
|
| 299 |
+
author={Apodex Team},
|
| 300 |
+
year={2026}
|
| 301 |
+
}
|
| 302 |
+
```
|
| 303 |
+
|
| 304 |
+
## Contact
|
| 305 |
+
|
| 306 |
+
Reach the Apodex Team via our [website](https://apodex.com).
|
chat_template.jinja
ADDED
|
@@ -0,0 +1,173 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%- set apodex_identity = '# Role Definition\n- Name: Apodex\n- Developer: Apodex AI\n- Identity: An AI assistant developed by Apodex AI\n- Core Principle: Always respond as Apodex and never pretend or claim to be any other AI model\n- Please interact with the user strictly in the identity of Apodex.' %}
|
| 2 |
+
{%- set identity_mode = identity_mode if identity_mode is defined else 'fallback' %}
|
| 3 |
+
{%- set has_caller_system = (messages and messages[0].role == 'system') %}
|
| 4 |
+
{%- set inject_identity = (identity_mode == 'force') or (identity_mode == 'fallback' and not has_caller_system) %}
|
| 5 |
+
{%- set image_count = namespace(value=0) %}
|
| 6 |
+
{%- set video_count = namespace(value=0) %}
|
| 7 |
+
{%- macro render_content(content, do_vision_count, is_system_content=false) %}
|
| 8 |
+
{%- if content is string %}
|
| 9 |
+
{{- content }}
|
| 10 |
+
{%- elif content is iterable and content is not mapping %}
|
| 11 |
+
{%- for item in content %}
|
| 12 |
+
{%- if 'image' in item or 'image_url' in item or item.type == 'image' %}
|
| 13 |
+
{%- if is_system_content %}
|
| 14 |
+
{{- raise_exception('System message cannot contain images.') }}
|
| 15 |
+
{%- endif %}
|
| 16 |
+
{%- if do_vision_count %}
|
| 17 |
+
{%- set image_count.value = image_count.value + 1 %}
|
| 18 |
+
{%- endif %}
|
| 19 |
+
{%- if add_vision_id %}
|
| 20 |
+
{{- 'Picture ' ~ image_count.value ~ ': ' }}
|
| 21 |
+
{%- endif %}
|
| 22 |
+
{{- '<|vision_start|><|image_pad|><|vision_end|>' }}
|
| 23 |
+
{%- elif 'video' in item or item.type == 'video' %}
|
| 24 |
+
{%- if is_system_content %}
|
| 25 |
+
{{- raise_exception('System message cannot contain videos.') }}
|
| 26 |
+
{%- endif %}
|
| 27 |
+
{%- if do_vision_count %}
|
| 28 |
+
{%- set video_count.value = video_count.value + 1 %}
|
| 29 |
+
{%- endif %}
|
| 30 |
+
{%- if add_vision_id %}
|
| 31 |
+
{{- 'Video ' ~ video_count.value ~ ': ' }}
|
| 32 |
+
{%- endif %}
|
| 33 |
+
{{- '<|vision_start|><|video_pad|><|vision_end|>' }}
|
| 34 |
+
{%- elif 'text' in item %}
|
| 35 |
+
{{- item.text }}
|
| 36 |
+
{%- else %}
|
| 37 |
+
{{- raise_exception('Unexpected item type in content.') }}
|
| 38 |
+
{%- endif %}
|
| 39 |
+
{%- endfor %}
|
| 40 |
+
{%- elif content is none or content is undefined %}
|
| 41 |
+
{{- '' }}
|
| 42 |
+
{%- else %}
|
| 43 |
+
{{- raise_exception('Unexpected content type.') }}
|
| 44 |
+
{%- endif %}
|
| 45 |
+
{%- endmacro %}
|
| 46 |
+
{%- if not messages %}
|
| 47 |
+
{{- raise_exception('No messages provided.') }}
|
| 48 |
+
{%- endif %}
|
| 49 |
+
{%- if tools and tools is iterable and tools is not mapping %}
|
| 50 |
+
{{- '<|im_start|>system\n' }}
|
| 51 |
+
{{- "# Tools\n\nYou have access to the following functions:\n\n<tools>" }}
|
| 52 |
+
{%- for tool in tools %}
|
| 53 |
+
{{- "\n" }}
|
| 54 |
+
{{- tool | tojson }}
|
| 55 |
+
{%- endfor %}
|
| 56 |
+
{{- "\n</tools>" }}
|
| 57 |
+
{{- '\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>' }}
|
| 58 |
+
{%- if inject_identity %}
|
| 59 |
+
{{- '\n\n' + apodex_identity }}
|
| 60 |
+
{%- endif %}
|
| 61 |
+
{%- if has_caller_system %}
|
| 62 |
+
{%- set content = render_content(messages[0].content, false, true)|trim %}
|
| 63 |
+
{%- if content %}
|
| 64 |
+
{{- '\n\n' + content }}
|
| 65 |
+
{%- endif %}
|
| 66 |
+
{%- endif %}
|
| 67 |
+
{{- '<|im_end|>\n' }}
|
| 68 |
+
{%- else %}
|
| 69 |
+
{%- if inject_identity or has_caller_system %}
|
| 70 |
+
{{- '<|im_start|>system\n' }}
|
| 71 |
+
{%- set parts = namespace(first=true) %}
|
| 72 |
+
{%- if inject_identity %}
|
| 73 |
+
{{- apodex_identity }}
|
| 74 |
+
{%- set parts.first = false %}
|
| 75 |
+
{%- endif %}
|
| 76 |
+
{%- if has_caller_system %}
|
| 77 |
+
{%- set content = render_content(messages[0].content, false, true)|trim %}
|
| 78 |
+
{%- if content %}
|
| 79 |
+
{%- if not parts.first %}{{- '\n\n' }}{%- endif %}
|
| 80 |
+
{{- content }}
|
| 81 |
+
{%- endif %}
|
| 82 |
+
{%- endif %}
|
| 83 |
+
{{- '<|im_end|>\n' }}
|
| 84 |
+
{%- endif %}
|
| 85 |
+
{%- endif %}
|
| 86 |
+
{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
|
| 87 |
+
{%- for message in messages[::-1] %}
|
| 88 |
+
{%- set index = (messages|length - 1) - loop.index0 %}
|
| 89 |
+
{%- if ns.multi_step_tool and message.role == "user" %}
|
| 90 |
+
{%- set content = render_content(message.content, false)|trim %}
|
| 91 |
+
{%- if not(content.startswith('<tool_response>') and content.endswith('</tool_response>')) %}
|
| 92 |
+
{%- set ns.multi_step_tool = false %}
|
| 93 |
+
{%- set ns.last_query_index = index %}
|
| 94 |
+
{%- endif %}
|
| 95 |
+
{%- endif %}
|
| 96 |
+
{%- endfor %}
|
| 97 |
+
{%- if ns.multi_step_tool %}
|
| 98 |
+
{{- raise_exception('No user query found in messages.') }}
|
| 99 |
+
{%- endif %}
|
| 100 |
+
{%- for message in messages %}
|
| 101 |
+
{%- set content = render_content(message.content, true)|trim %}
|
| 102 |
+
{%- if message.role == "system" %}
|
| 103 |
+
{%- if not loop.first %}
|
| 104 |
+
{{- raise_exception('System message must be at the beginning.') }}
|
| 105 |
+
{%- endif %}
|
| 106 |
+
{%- elif message.role == "user" %}
|
| 107 |
+
{{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
|
| 108 |
+
{%- elif message.role == "assistant" %}
|
| 109 |
+
{%- set reasoning_content = '' %}
|
| 110 |
+
{%- if message.reasoning_content is string %}
|
| 111 |
+
{%- set reasoning_content = message.reasoning_content %}
|
| 112 |
+
{%- else %}
|
| 113 |
+
{%- if '</think>' in content %}
|
| 114 |
+
{%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
|
| 115 |
+
{%- set content = content.split('</think>')[-1].lstrip('\n') %}
|
| 116 |
+
{%- endif %}
|
| 117 |
+
{%- endif %}
|
| 118 |
+
{%- set reasoning_content = reasoning_content|trim %}
|
| 119 |
+
{%- if (preserve_thinking is not defined or preserve_thinking is true) or (loop.index0 > ns.last_query_index) %}
|
| 120 |
+
{{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content + '\n</think>\n\n' + content }}
|
| 121 |
+
{%- else %}
|
| 122 |
+
{{- '<|im_start|>' + message.role + '\n' + content }}
|
| 123 |
+
{%- endif %}
|
| 124 |
+
{%- if message.tool_calls and message.tool_calls is iterable and message.tool_calls is not mapping %}
|
| 125 |
+
{%- for tool_call in message.tool_calls %}
|
| 126 |
+
{%- if tool_call.function is defined %}
|
| 127 |
+
{%- set tool_call = tool_call.function %}
|
| 128 |
+
{%- endif %}
|
| 129 |
+
{%- if loop.first %}
|
| 130 |
+
{%- if content|trim %}
|
| 131 |
+
{{- '\n\n<tool_call>\n<function=' + tool_call.name + '>\n' }}
|
| 132 |
+
{%- else %}
|
| 133 |
+
{{- '<tool_call>\n<function=' + tool_call.name + '>\n' }}
|
| 134 |
+
{%- endif %}
|
| 135 |
+
{%- else %}
|
| 136 |
+
{{- '\n<tool_call>\n<function=' + tool_call.name + '>\n' }}
|
| 137 |
+
{%- endif %}
|
| 138 |
+
{%- if tool_call.arguments is defined %}
|
| 139 |
+
{%- for args_name, args_value in tool_call.arguments|items %}
|
| 140 |
+
{{- '<parameter=' + args_name + '>\n' }}
|
| 141 |
+
{%- set args_value = args_value | string if args_value is string else args_value | tojson | safe %}
|
| 142 |
+
{{- args_value }}
|
| 143 |
+
{{- '\n</parameter>\n' }}
|
| 144 |
+
{%- endfor %}
|
| 145 |
+
{%- endif %}
|
| 146 |
+
{{- '</function>\n</tool_call>' }}
|
| 147 |
+
{%- endfor %}
|
| 148 |
+
{%- endif %}
|
| 149 |
+
{{- '<|im_end|>\n' }}
|
| 150 |
+
{%- elif message.role == "tool" %}
|
| 151 |
+
{%- if loop.previtem and loop.previtem.role != "tool" %}
|
| 152 |
+
{{- '<|im_start|>user' }}
|
| 153 |
+
{%- endif %}
|
| 154 |
+
{{- '\n<tool_response>\n' }}
|
| 155 |
+
{{- content }}
|
| 156 |
+
{{- '\n</tool_response>' }}
|
| 157 |
+
{%- if not loop.last and loop.nextitem.role != "tool" %}
|
| 158 |
+
{{- '<|im_end|>\n' }}
|
| 159 |
+
{%- elif loop.last %}
|
| 160 |
+
{{- '<|im_end|>\n' }}
|
| 161 |
+
{%- endif %}
|
| 162 |
+
{%- else %}
|
| 163 |
+
{{- raise_exception('Unexpected message role.') }}
|
| 164 |
+
{%- endif %}
|
| 165 |
+
{%- endfor %}
|
| 166 |
+
{%- if add_generation_prompt %}
|
| 167 |
+
{{- '<|im_start|>assistant\n' }}
|
| 168 |
+
{%- if enable_thinking is defined and enable_thinking is false %}
|
| 169 |
+
{{- '<think>\n\n</think>\n\n' }}
|
| 170 |
+
{%- else %}
|
| 171 |
+
{{- '<think>\n' }}
|
| 172 |
+
{%- endif %}
|
| 173 |
+
{%- endif %}
|
config.json
ADDED
|
@@ -0,0 +1,960 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"Qwen3_5MoeForConditionalGeneration"
|
| 4 |
+
],
|
| 5 |
+
"dtype": "float16",
|
| 6 |
+
"image_token_id": 248056,
|
| 7 |
+
"model_type": "qwen3_5_moe",
|
| 8 |
+
"quantization_config": {
|
| 9 |
+
"autoround_version": "0.14.2",
|
| 10 |
+
"bits": 4,
|
| 11 |
+
"damp_percent": 0.01,
|
| 12 |
+
"data_type": "int",
|
| 13 |
+
"desc_act": false,
|
| 14 |
+
"dynamic": {
|
| 15 |
+
"-:.*linear_attn.*": {},
|
| 16 |
+
"-:.*mlp\\.gate.*": {},
|
| 17 |
+
"-:.*model\\.language_model\\.layers\\.0\\.mlp\\.gate.*": {},
|
| 18 |
+
"-:.*model\\.language_model\\.layers\\.10\\.mlp\\.gate.*": {},
|
| 19 |
+
"-:.*model\\.language_model\\.layers\\.11\\.mlp\\.gate.*": {},
|
| 20 |
+
"-:.*model\\.language_model\\.layers\\.12\\.mlp\\.gate.*": {},
|
| 21 |
+
"-:.*model\\.language_model\\.layers\\.13\\.mlp\\.gate.*": {},
|
| 22 |
+
"-:.*model\\.language_model\\.layers\\.14\\.mlp\\.gate.*": {},
|
| 23 |
+
"-:.*model\\.language_model\\.layers\\.15\\.mlp\\.gate.*": {},
|
| 24 |
+
"-:.*model\\.language_model\\.layers\\.16\\.mlp\\.gate.*": {},
|
| 25 |
+
"-:.*model\\.language_model\\.layers\\.17\\.mlp\\.gate.*": {},
|
| 26 |
+
"-:.*model\\.language_model\\.layers\\.18\\.mlp\\.gate.*": {},
|
| 27 |
+
"-:.*model\\.language_model\\.layers\\.19\\.mlp\\.gate.*": {},
|
| 28 |
+
"-:.*model\\.language_model\\.layers\\.1\\.mlp\\.gate.*": {},
|
| 29 |
+
"-:.*model\\.language_model\\.layers\\.20\\.mlp\\.gate.*": {},
|
| 30 |
+
"-:.*model\\.language_model\\.layers\\.21\\.mlp\\.gate.*": {},
|
| 31 |
+
"-:.*model\\.language_model\\.layers\\.22\\.mlp\\.gate.*": {},
|
| 32 |
+
"-:.*model\\.language_model\\.layers\\.23\\.mlp\\.gate.*": {},
|
| 33 |
+
"-:.*model\\.language_model\\.layers\\.24\\.mlp\\.gate.*": {},
|
| 34 |
+
"-:.*model\\.language_model\\.layers\\.25\\.mlp\\.gate.*": {},
|
| 35 |
+
"-:.*model\\.language_model\\.layers\\.26\\.mlp\\.gate.*": {},
|
| 36 |
+
"-:.*model\\.language_model\\.layers\\.27\\.mlp\\.gate.*": {},
|
| 37 |
+
"-:.*model\\.language_model\\.layers\\.28\\.mlp\\.gate.*": {},
|
| 38 |
+
"-:.*model\\.language_model\\.layers\\.29\\.mlp\\.gate.*": {},
|
| 39 |
+
"-:.*model\\.language_model\\.layers\\.2\\.mlp\\.gate.*": {},
|
| 40 |
+
"-:.*model\\.language_model\\.layers\\.30\\.mlp\\.gate.*": {},
|
| 41 |
+
"-:.*model\\.language_model\\.layers\\.31\\.mlp\\.gate.*": {},
|
| 42 |
+
"-:.*model\\.language_model\\.layers\\.32\\.mlp\\.gate.*": {},
|
| 43 |
+
"-:.*model\\.language_model\\.layers\\.33\\.mlp\\.gate.*": {},
|
| 44 |
+
"-:.*model\\.language_model\\.layers\\.34\\.mlp\\.gate.*": {},
|
| 45 |
+
"-:.*model\\.language_model\\.layers\\.35\\.mlp\\.gate.*": {},
|
| 46 |
+
"-:.*model\\.language_model\\.layers\\.36\\.mlp\\.gate.*": {},
|
| 47 |
+
"-:.*model\\.language_model\\.layers\\.37\\.mlp\\.gate.*": {},
|
| 48 |
+
"-:.*model\\.language_model\\.layers\\.38\\.mlp\\.gate.*": {},
|
| 49 |
+
"-:.*model\\.language_model\\.layers\\.39\\.mlp\\.gate.*": {},
|
| 50 |
+
"-:.*model\\.language_model\\.layers\\.3\\.mlp\\.gate.*": {},
|
| 51 |
+
"-:.*model\\.language_model\\.layers\\.4\\.mlp\\.gate.*": {},
|
| 52 |
+
"-:.*model\\.language_model\\.layers\\.5\\.mlp\\.gate.*": {},
|
| 53 |
+
"-:.*model\\.language_model\\.layers\\.6\\.mlp\\.gate.*": {},
|
| 54 |
+
"-:.*model\\.language_model\\.layers\\.7\\.mlp\\.gate.*": {},
|
| 55 |
+
"-:.*model\\.language_model\\.layers\\.8\\.mlp\\.gate.*": {},
|
| 56 |
+
"-:.*model\\.language_model\\.layers\\.9\\.mlp\\.gate.*": {},
|
| 57 |
+
"-:.*shared_expert.*": {},
|
| 58 |
+
"-:.*shared_expert_gate.*": {},
|
| 59 |
+
"-:.*visual.*": {}
|
| 60 |
+
},
|
| 61 |
+
"group_size": 64,
|
| 62 |
+
"lm_head": false,
|
| 63 |
+
"modules_in_block_to_quantize": [
|
| 64 |
+
[
|
| 65 |
+
"mlp.experts.0.down_proj",
|
| 66 |
+
"mlp.experts.0.gate_proj",
|
| 67 |
+
"mlp.experts.0.up_proj",
|
| 68 |
+
"mlp.experts.1.down_proj",
|
| 69 |
+
"mlp.experts.1.gate_proj",
|
| 70 |
+
"mlp.experts.1.up_proj",
|
| 71 |
+
"mlp.experts.10.down_proj",
|
| 72 |
+
"mlp.experts.10.gate_proj",
|
| 73 |
+
"mlp.experts.10.up_proj",
|
| 74 |
+
"mlp.experts.100.down_proj",
|
| 75 |
+
"mlp.experts.100.gate_proj",
|
| 76 |
+
"mlp.experts.100.up_proj",
|
| 77 |
+
"mlp.experts.101.down_proj",
|
| 78 |
+
"mlp.experts.101.gate_proj",
|
| 79 |
+
"mlp.experts.101.up_proj",
|
| 80 |
+
"mlp.experts.102.down_proj",
|
| 81 |
+
"mlp.experts.102.gate_proj",
|
| 82 |
+
"mlp.experts.102.up_proj",
|
| 83 |
+
"mlp.experts.103.down_proj",
|
| 84 |
+
"mlp.experts.103.gate_proj",
|
| 85 |
+
"mlp.experts.103.up_proj",
|
| 86 |
+
"mlp.experts.104.down_proj",
|
| 87 |
+
"mlp.experts.104.gate_proj",
|
| 88 |
+
"mlp.experts.104.up_proj",
|
| 89 |
+
"mlp.experts.105.down_proj",
|
| 90 |
+
"mlp.experts.105.gate_proj",
|
| 91 |
+
"mlp.experts.105.up_proj",
|
| 92 |
+
"mlp.experts.106.down_proj",
|
| 93 |
+
"mlp.experts.106.gate_proj",
|
| 94 |
+
"mlp.experts.106.up_proj",
|
| 95 |
+
"mlp.experts.107.down_proj",
|
| 96 |
+
"mlp.experts.107.gate_proj",
|
| 97 |
+
"mlp.experts.107.up_proj",
|
| 98 |
+
"mlp.experts.108.down_proj",
|
| 99 |
+
"mlp.experts.108.gate_proj",
|
| 100 |
+
"mlp.experts.108.up_proj",
|
| 101 |
+
"mlp.experts.109.down_proj",
|
| 102 |
+
"mlp.experts.109.gate_proj",
|
| 103 |
+
"mlp.experts.109.up_proj",
|
| 104 |
+
"mlp.experts.11.down_proj",
|
| 105 |
+
"mlp.experts.11.gate_proj",
|
| 106 |
+
"mlp.experts.11.up_proj",
|
| 107 |
+
"mlp.experts.110.down_proj",
|
| 108 |
+
"mlp.experts.110.gate_proj",
|
| 109 |
+
"mlp.experts.110.up_proj",
|
| 110 |
+
"mlp.experts.111.down_proj",
|
| 111 |
+
"mlp.experts.111.gate_proj",
|
| 112 |
+
"mlp.experts.111.up_proj",
|
| 113 |
+
"mlp.experts.112.down_proj",
|
| 114 |
+
"mlp.experts.112.gate_proj",
|
| 115 |
+
"mlp.experts.112.up_proj",
|
| 116 |
+
"mlp.experts.113.down_proj",
|
| 117 |
+
"mlp.experts.113.gate_proj",
|
| 118 |
+
"mlp.experts.113.up_proj",
|
| 119 |
+
"mlp.experts.114.down_proj",
|
| 120 |
+
"mlp.experts.114.gate_proj",
|
| 121 |
+
"mlp.experts.114.up_proj",
|
| 122 |
+
"mlp.experts.115.down_proj",
|
| 123 |
+
"mlp.experts.115.gate_proj",
|
| 124 |
+
"mlp.experts.115.up_proj",
|
| 125 |
+
"mlp.experts.116.down_proj",
|
| 126 |
+
"mlp.experts.116.gate_proj",
|
| 127 |
+
"mlp.experts.116.up_proj",
|
| 128 |
+
"mlp.experts.117.down_proj",
|
| 129 |
+
"mlp.experts.117.gate_proj",
|
| 130 |
+
"mlp.experts.117.up_proj",
|
| 131 |
+
"mlp.experts.118.down_proj",
|
| 132 |
+
"mlp.experts.118.gate_proj",
|
| 133 |
+
"mlp.experts.118.up_proj",
|
| 134 |
+
"mlp.experts.119.down_proj",
|
| 135 |
+
"mlp.experts.119.gate_proj",
|
| 136 |
+
"mlp.experts.119.up_proj",
|
| 137 |
+
"mlp.experts.12.down_proj",
|
| 138 |
+
"mlp.experts.12.gate_proj",
|
| 139 |
+
"mlp.experts.12.up_proj",
|
| 140 |
+
"mlp.experts.120.down_proj",
|
| 141 |
+
"mlp.experts.120.gate_proj",
|
| 142 |
+
"mlp.experts.120.up_proj",
|
| 143 |
+
"mlp.experts.121.down_proj",
|
| 144 |
+
"mlp.experts.121.gate_proj",
|
| 145 |
+
"mlp.experts.121.up_proj",
|
| 146 |
+
"mlp.experts.122.down_proj",
|
| 147 |
+
"mlp.experts.122.gate_proj",
|
| 148 |
+
"mlp.experts.122.up_proj",
|
| 149 |
+
"mlp.experts.123.down_proj",
|
| 150 |
+
"mlp.experts.123.gate_proj",
|
| 151 |
+
"mlp.experts.123.up_proj",
|
| 152 |
+
"mlp.experts.124.down_proj",
|
| 153 |
+
"mlp.experts.124.gate_proj",
|
| 154 |
+
"mlp.experts.124.up_proj",
|
| 155 |
+
"mlp.experts.125.down_proj",
|
| 156 |
+
"mlp.experts.125.gate_proj",
|
| 157 |
+
"mlp.experts.125.up_proj",
|
| 158 |
+
"mlp.experts.126.down_proj",
|
| 159 |
+
"mlp.experts.126.gate_proj",
|
| 160 |
+
"mlp.experts.126.up_proj",
|
| 161 |
+
"mlp.experts.127.down_proj",
|
| 162 |
+
"mlp.experts.127.gate_proj",
|
| 163 |
+
"mlp.experts.127.up_proj",
|
| 164 |
+
"mlp.experts.128.down_proj",
|
| 165 |
+
"mlp.experts.128.gate_proj",
|
| 166 |
+
"mlp.experts.128.up_proj",
|
| 167 |
+
"mlp.experts.129.down_proj",
|
| 168 |
+
"mlp.experts.129.gate_proj",
|
| 169 |
+
"mlp.experts.129.up_proj",
|
| 170 |
+
"mlp.experts.13.down_proj",
|
| 171 |
+
"mlp.experts.13.gate_proj",
|
| 172 |
+
"mlp.experts.13.up_proj",
|
| 173 |
+
"mlp.experts.130.down_proj",
|
| 174 |
+
"mlp.experts.130.gate_proj",
|
| 175 |
+
"mlp.experts.130.up_proj",
|
| 176 |
+
"mlp.experts.131.down_proj",
|
| 177 |
+
"mlp.experts.131.gate_proj",
|
| 178 |
+
"mlp.experts.131.up_proj",
|
| 179 |
+
"mlp.experts.132.down_proj",
|
| 180 |
+
"mlp.experts.132.gate_proj",
|
| 181 |
+
"mlp.experts.132.up_proj",
|
| 182 |
+
"mlp.experts.133.down_proj",
|
| 183 |
+
"mlp.experts.133.gate_proj",
|
| 184 |
+
"mlp.experts.133.up_proj",
|
| 185 |
+
"mlp.experts.134.down_proj",
|
| 186 |
+
"mlp.experts.134.gate_proj",
|
| 187 |
+
"mlp.experts.134.up_proj",
|
| 188 |
+
"mlp.experts.135.down_proj",
|
| 189 |
+
"mlp.experts.135.gate_proj",
|
| 190 |
+
"mlp.experts.135.up_proj",
|
| 191 |
+
"mlp.experts.136.down_proj",
|
| 192 |
+
"mlp.experts.136.gate_proj",
|
| 193 |
+
"mlp.experts.136.up_proj",
|
| 194 |
+
"mlp.experts.137.down_proj",
|
| 195 |
+
"mlp.experts.137.gate_proj",
|
| 196 |
+
"mlp.experts.137.up_proj",
|
| 197 |
+
"mlp.experts.138.down_proj",
|
| 198 |
+
"mlp.experts.138.gate_proj",
|
| 199 |
+
"mlp.experts.138.up_proj",
|
| 200 |
+
"mlp.experts.139.down_proj",
|
| 201 |
+
"mlp.experts.139.gate_proj",
|
| 202 |
+
"mlp.experts.139.up_proj",
|
| 203 |
+
"mlp.experts.14.down_proj",
|
| 204 |
+
"mlp.experts.14.gate_proj",
|
| 205 |
+
"mlp.experts.14.up_proj",
|
| 206 |
+
"mlp.experts.140.down_proj",
|
| 207 |
+
"mlp.experts.140.gate_proj",
|
| 208 |
+
"mlp.experts.140.up_proj",
|
| 209 |
+
"mlp.experts.141.down_proj",
|
| 210 |
+
"mlp.experts.141.gate_proj",
|
| 211 |
+
"mlp.experts.141.up_proj",
|
| 212 |
+
"mlp.experts.142.down_proj",
|
| 213 |
+
"mlp.experts.142.gate_proj",
|
| 214 |
+
"mlp.experts.142.up_proj",
|
| 215 |
+
"mlp.experts.143.down_proj",
|
| 216 |
+
"mlp.experts.143.gate_proj",
|
| 217 |
+
"mlp.experts.143.up_proj",
|
| 218 |
+
"mlp.experts.144.down_proj",
|
| 219 |
+
"mlp.experts.144.gate_proj",
|
| 220 |
+
"mlp.experts.144.up_proj",
|
| 221 |
+
"mlp.experts.145.down_proj",
|
| 222 |
+
"mlp.experts.145.gate_proj",
|
| 223 |
+
"mlp.experts.145.up_proj",
|
| 224 |
+
"mlp.experts.146.down_proj",
|
| 225 |
+
"mlp.experts.146.gate_proj",
|
| 226 |
+
"mlp.experts.146.up_proj",
|
| 227 |
+
"mlp.experts.147.down_proj",
|
| 228 |
+
"mlp.experts.147.gate_proj",
|
| 229 |
+
"mlp.experts.147.up_proj",
|
| 230 |
+
"mlp.experts.148.down_proj",
|
| 231 |
+
"mlp.experts.148.gate_proj",
|
| 232 |
+
"mlp.experts.148.up_proj",
|
| 233 |
+
"mlp.experts.149.down_proj",
|
| 234 |
+
"mlp.experts.149.gate_proj",
|
| 235 |
+
"mlp.experts.149.up_proj",
|
| 236 |
+
"mlp.experts.15.down_proj",
|
| 237 |
+
"mlp.experts.15.gate_proj",
|
| 238 |
+
"mlp.experts.15.up_proj",
|
| 239 |
+
"mlp.experts.150.down_proj",
|
| 240 |
+
"mlp.experts.150.gate_proj",
|
| 241 |
+
"mlp.experts.150.up_proj",
|
| 242 |
+
"mlp.experts.151.down_proj",
|
| 243 |
+
"mlp.experts.151.gate_proj",
|
| 244 |
+
"mlp.experts.151.up_proj",
|
| 245 |
+
"mlp.experts.152.down_proj",
|
| 246 |
+
"mlp.experts.152.gate_proj",
|
| 247 |
+
"mlp.experts.152.up_proj",
|
| 248 |
+
"mlp.experts.153.down_proj",
|
| 249 |
+
"mlp.experts.153.gate_proj",
|
| 250 |
+
"mlp.experts.153.up_proj",
|
| 251 |
+
"mlp.experts.154.down_proj",
|
| 252 |
+
"mlp.experts.154.gate_proj",
|
| 253 |
+
"mlp.experts.154.up_proj",
|
| 254 |
+
"mlp.experts.155.down_proj",
|
| 255 |
+
"mlp.experts.155.gate_proj",
|
| 256 |
+
"mlp.experts.155.up_proj",
|
| 257 |
+
"mlp.experts.156.down_proj",
|
| 258 |
+
"mlp.experts.156.gate_proj",
|
| 259 |
+
"mlp.experts.156.up_proj",
|
| 260 |
+
"mlp.experts.157.down_proj",
|
| 261 |
+
"mlp.experts.157.gate_proj",
|
| 262 |
+
"mlp.experts.157.up_proj",
|
| 263 |
+
"mlp.experts.158.down_proj",
|
| 264 |
+
"mlp.experts.158.gate_proj",
|
| 265 |
+
"mlp.experts.158.up_proj",
|
| 266 |
+
"mlp.experts.159.down_proj",
|
| 267 |
+
"mlp.experts.159.gate_proj",
|
| 268 |
+
"mlp.experts.159.up_proj",
|
| 269 |
+
"mlp.experts.16.down_proj",
|
| 270 |
+
"mlp.experts.16.gate_proj",
|
| 271 |
+
"mlp.experts.16.up_proj",
|
| 272 |
+
"mlp.experts.160.down_proj",
|
| 273 |
+
"mlp.experts.160.gate_proj",
|
| 274 |
+
"mlp.experts.160.up_proj",
|
| 275 |
+
"mlp.experts.161.down_proj",
|
| 276 |
+
"mlp.experts.161.gate_proj",
|
| 277 |
+
"mlp.experts.161.up_proj",
|
| 278 |
+
"mlp.experts.162.down_proj",
|
| 279 |
+
"mlp.experts.162.gate_proj",
|
| 280 |
+
"mlp.experts.162.up_proj",
|
| 281 |
+
"mlp.experts.163.down_proj",
|
| 282 |
+
"mlp.experts.163.gate_proj",
|
| 283 |
+
"mlp.experts.163.up_proj",
|
| 284 |
+
"mlp.experts.164.down_proj",
|
| 285 |
+
"mlp.experts.164.gate_proj",
|
| 286 |
+
"mlp.experts.164.up_proj",
|
| 287 |
+
"mlp.experts.165.down_proj",
|
| 288 |
+
"mlp.experts.165.gate_proj",
|
| 289 |
+
"mlp.experts.165.up_proj",
|
| 290 |
+
"mlp.experts.166.down_proj",
|
| 291 |
+
"mlp.experts.166.gate_proj",
|
| 292 |
+
"mlp.experts.166.up_proj",
|
| 293 |
+
"mlp.experts.167.down_proj",
|
| 294 |
+
"mlp.experts.167.gate_proj",
|
| 295 |
+
"mlp.experts.167.up_proj",
|
| 296 |
+
"mlp.experts.168.down_proj",
|
| 297 |
+
"mlp.experts.168.gate_proj",
|
| 298 |
+
"mlp.experts.168.up_proj",
|
| 299 |
+
"mlp.experts.169.down_proj",
|
| 300 |
+
"mlp.experts.169.gate_proj",
|
| 301 |
+
"mlp.experts.169.up_proj",
|
| 302 |
+
"mlp.experts.17.down_proj",
|
| 303 |
+
"mlp.experts.17.gate_proj",
|
| 304 |
+
"mlp.experts.17.up_proj",
|
| 305 |
+
"mlp.experts.170.down_proj",
|
| 306 |
+
"mlp.experts.170.gate_proj",
|
| 307 |
+
"mlp.experts.170.up_proj",
|
| 308 |
+
"mlp.experts.171.down_proj",
|
| 309 |
+
"mlp.experts.171.gate_proj",
|
| 310 |
+
"mlp.experts.171.up_proj",
|
| 311 |
+
"mlp.experts.172.down_proj",
|
| 312 |
+
"mlp.experts.172.gate_proj",
|
| 313 |
+
"mlp.experts.172.up_proj",
|
| 314 |
+
"mlp.experts.173.down_proj",
|
| 315 |
+
"mlp.experts.173.gate_proj",
|
| 316 |
+
"mlp.experts.173.up_proj",
|
| 317 |
+
"mlp.experts.174.down_proj",
|
| 318 |
+
"mlp.experts.174.gate_proj",
|
| 319 |
+
"mlp.experts.174.up_proj",
|
| 320 |
+
"mlp.experts.175.down_proj",
|
| 321 |
+
"mlp.experts.175.gate_proj",
|
| 322 |
+
"mlp.experts.175.up_proj",
|
| 323 |
+
"mlp.experts.176.down_proj",
|
| 324 |
+
"mlp.experts.176.gate_proj",
|
| 325 |
+
"mlp.experts.176.up_proj",
|
| 326 |
+
"mlp.experts.177.down_proj",
|
| 327 |
+
"mlp.experts.177.gate_proj",
|
| 328 |
+
"mlp.experts.177.up_proj",
|
| 329 |
+
"mlp.experts.178.down_proj",
|
| 330 |
+
"mlp.experts.178.gate_proj",
|
| 331 |
+
"mlp.experts.178.up_proj",
|
| 332 |
+
"mlp.experts.179.down_proj",
|
| 333 |
+
"mlp.experts.179.gate_proj",
|
| 334 |
+
"mlp.experts.179.up_proj",
|
| 335 |
+
"mlp.experts.18.down_proj",
|
| 336 |
+
"mlp.experts.18.gate_proj",
|
| 337 |
+
"mlp.experts.18.up_proj",
|
| 338 |
+
"mlp.experts.180.down_proj",
|
| 339 |
+
"mlp.experts.180.gate_proj",
|
| 340 |
+
"mlp.experts.180.up_proj",
|
| 341 |
+
"mlp.experts.181.down_proj",
|
| 342 |
+
"mlp.experts.181.gate_proj",
|
| 343 |
+
"mlp.experts.181.up_proj",
|
| 344 |
+
"mlp.experts.182.down_proj",
|
| 345 |
+
"mlp.experts.182.gate_proj",
|
| 346 |
+
"mlp.experts.182.up_proj",
|
| 347 |
+
"mlp.experts.183.down_proj",
|
| 348 |
+
"mlp.experts.183.gate_proj",
|
| 349 |
+
"mlp.experts.183.up_proj",
|
| 350 |
+
"mlp.experts.184.down_proj",
|
| 351 |
+
"mlp.experts.184.gate_proj",
|
| 352 |
+
"mlp.experts.184.up_proj",
|
| 353 |
+
"mlp.experts.185.down_proj",
|
| 354 |
+
"mlp.experts.185.gate_proj",
|
| 355 |
+
"mlp.experts.185.up_proj",
|
| 356 |
+
"mlp.experts.186.down_proj",
|
| 357 |
+
"mlp.experts.186.gate_proj",
|
| 358 |
+
"mlp.experts.186.up_proj",
|
| 359 |
+
"mlp.experts.187.down_proj",
|
| 360 |
+
"mlp.experts.187.gate_proj",
|
| 361 |
+
"mlp.experts.187.up_proj",
|
| 362 |
+
"mlp.experts.188.down_proj",
|
| 363 |
+
"mlp.experts.188.gate_proj",
|
| 364 |
+
"mlp.experts.188.up_proj",
|
| 365 |
+
"mlp.experts.189.down_proj",
|
| 366 |
+
"mlp.experts.189.gate_proj",
|
| 367 |
+
"mlp.experts.189.up_proj",
|
| 368 |
+
"mlp.experts.19.down_proj",
|
| 369 |
+
"mlp.experts.19.gate_proj",
|
| 370 |
+
"mlp.experts.19.up_proj",
|
| 371 |
+
"mlp.experts.190.down_proj",
|
| 372 |
+
"mlp.experts.190.gate_proj",
|
| 373 |
+
"mlp.experts.190.up_proj",
|
| 374 |
+
"mlp.experts.191.down_proj",
|
| 375 |
+
"mlp.experts.191.gate_proj",
|
| 376 |
+
"mlp.experts.191.up_proj",
|
| 377 |
+
"mlp.experts.192.down_proj",
|
| 378 |
+
"mlp.experts.192.gate_proj",
|
| 379 |
+
"mlp.experts.192.up_proj",
|
| 380 |
+
"mlp.experts.193.down_proj",
|
| 381 |
+
"mlp.experts.193.gate_proj",
|
| 382 |
+
"mlp.experts.193.up_proj",
|
| 383 |
+
"mlp.experts.194.down_proj",
|
| 384 |
+
"mlp.experts.194.gate_proj",
|
| 385 |
+
"mlp.experts.194.up_proj",
|
| 386 |
+
"mlp.experts.195.down_proj",
|
| 387 |
+
"mlp.experts.195.gate_proj",
|
| 388 |
+
"mlp.experts.195.up_proj",
|
| 389 |
+
"mlp.experts.196.down_proj",
|
| 390 |
+
"mlp.experts.196.gate_proj",
|
| 391 |
+
"mlp.experts.196.up_proj",
|
| 392 |
+
"mlp.experts.197.down_proj",
|
| 393 |
+
"mlp.experts.197.gate_proj",
|
| 394 |
+
"mlp.experts.197.up_proj",
|
| 395 |
+
"mlp.experts.198.down_proj",
|
| 396 |
+
"mlp.experts.198.gate_proj",
|
| 397 |
+
"mlp.experts.198.up_proj",
|
| 398 |
+
"mlp.experts.199.down_proj",
|
| 399 |
+
"mlp.experts.199.gate_proj",
|
| 400 |
+
"mlp.experts.199.up_proj",
|
| 401 |
+
"mlp.experts.2.down_proj",
|
| 402 |
+
"mlp.experts.2.gate_proj",
|
| 403 |
+
"mlp.experts.2.up_proj",
|
| 404 |
+
"mlp.experts.20.down_proj",
|
| 405 |
+
"mlp.experts.20.gate_proj",
|
| 406 |
+
"mlp.experts.20.up_proj",
|
| 407 |
+
"mlp.experts.200.down_proj",
|
| 408 |
+
"mlp.experts.200.gate_proj",
|
| 409 |
+
"mlp.experts.200.up_proj",
|
| 410 |
+
"mlp.experts.201.down_proj",
|
| 411 |
+
"mlp.experts.201.gate_proj",
|
| 412 |
+
"mlp.experts.201.up_proj",
|
| 413 |
+
"mlp.experts.202.down_proj",
|
| 414 |
+
"mlp.experts.202.gate_proj",
|
| 415 |
+
"mlp.experts.202.up_proj",
|
| 416 |
+
"mlp.experts.203.down_proj",
|
| 417 |
+
"mlp.experts.203.gate_proj",
|
| 418 |
+
"mlp.experts.203.up_proj",
|
| 419 |
+
"mlp.experts.204.down_proj",
|
| 420 |
+
"mlp.experts.204.gate_proj",
|
| 421 |
+
"mlp.experts.204.up_proj",
|
| 422 |
+
"mlp.experts.205.down_proj",
|
| 423 |
+
"mlp.experts.205.gate_proj",
|
| 424 |
+
"mlp.experts.205.up_proj",
|
| 425 |
+
"mlp.experts.206.down_proj",
|
| 426 |
+
"mlp.experts.206.gate_proj",
|
| 427 |
+
"mlp.experts.206.up_proj",
|
| 428 |
+
"mlp.experts.207.down_proj",
|
| 429 |
+
"mlp.experts.207.gate_proj",
|
| 430 |
+
"mlp.experts.207.up_proj",
|
| 431 |
+
"mlp.experts.208.down_proj",
|
| 432 |
+
"mlp.experts.208.gate_proj",
|
| 433 |
+
"mlp.experts.208.up_proj",
|
| 434 |
+
"mlp.experts.209.down_proj",
|
| 435 |
+
"mlp.experts.209.gate_proj",
|
| 436 |
+
"mlp.experts.209.up_proj",
|
| 437 |
+
"mlp.experts.21.down_proj",
|
| 438 |
+
"mlp.experts.21.gate_proj",
|
| 439 |
+
"mlp.experts.21.up_proj",
|
| 440 |
+
"mlp.experts.210.down_proj",
|
| 441 |
+
"mlp.experts.210.gate_proj",
|
| 442 |
+
"mlp.experts.210.up_proj",
|
| 443 |
+
"mlp.experts.211.down_proj",
|
| 444 |
+
"mlp.experts.211.gate_proj",
|
| 445 |
+
"mlp.experts.211.up_proj",
|
| 446 |
+
"mlp.experts.212.down_proj",
|
| 447 |
+
"mlp.experts.212.gate_proj",
|
| 448 |
+
"mlp.experts.212.up_proj",
|
| 449 |
+
"mlp.experts.213.down_proj",
|
| 450 |
+
"mlp.experts.213.gate_proj",
|
| 451 |
+
"mlp.experts.213.up_proj",
|
| 452 |
+
"mlp.experts.214.down_proj",
|
| 453 |
+
"mlp.experts.214.gate_proj",
|
| 454 |
+
"mlp.experts.214.up_proj",
|
| 455 |
+
"mlp.experts.215.down_proj",
|
| 456 |
+
"mlp.experts.215.gate_proj",
|
| 457 |
+
"mlp.experts.215.up_proj",
|
| 458 |
+
"mlp.experts.216.down_proj",
|
| 459 |
+
"mlp.experts.216.gate_proj",
|
| 460 |
+
"mlp.experts.216.up_proj",
|
| 461 |
+
"mlp.experts.217.down_proj",
|
| 462 |
+
"mlp.experts.217.gate_proj",
|
| 463 |
+
"mlp.experts.217.up_proj",
|
| 464 |
+
"mlp.experts.218.down_proj",
|
| 465 |
+
"mlp.experts.218.gate_proj",
|
| 466 |
+
"mlp.experts.218.up_proj",
|
| 467 |
+
"mlp.experts.219.down_proj",
|
| 468 |
+
"mlp.experts.219.gate_proj",
|
| 469 |
+
"mlp.experts.219.up_proj",
|
| 470 |
+
"mlp.experts.22.down_proj",
|
| 471 |
+
"mlp.experts.22.gate_proj",
|
| 472 |
+
"mlp.experts.22.up_proj",
|
| 473 |
+
"mlp.experts.220.down_proj",
|
| 474 |
+
"mlp.experts.220.gate_proj",
|
| 475 |
+
"mlp.experts.220.up_proj",
|
| 476 |
+
"mlp.experts.221.down_proj",
|
| 477 |
+
"mlp.experts.221.gate_proj",
|
| 478 |
+
"mlp.experts.221.up_proj",
|
| 479 |
+
"mlp.experts.222.down_proj",
|
| 480 |
+
"mlp.experts.222.gate_proj",
|
| 481 |
+
"mlp.experts.222.up_proj",
|
| 482 |
+
"mlp.experts.223.down_proj",
|
| 483 |
+
"mlp.experts.223.gate_proj",
|
| 484 |
+
"mlp.experts.223.up_proj",
|
| 485 |
+
"mlp.experts.224.down_proj",
|
| 486 |
+
"mlp.experts.224.gate_proj",
|
| 487 |
+
"mlp.experts.224.up_proj",
|
| 488 |
+
"mlp.experts.225.down_proj",
|
| 489 |
+
"mlp.experts.225.gate_proj",
|
| 490 |
+
"mlp.experts.225.up_proj",
|
| 491 |
+
"mlp.experts.226.down_proj",
|
| 492 |
+
"mlp.experts.226.gate_proj",
|
| 493 |
+
"mlp.experts.226.up_proj",
|
| 494 |
+
"mlp.experts.227.down_proj",
|
| 495 |
+
"mlp.experts.227.gate_proj",
|
| 496 |
+
"mlp.experts.227.up_proj",
|
| 497 |
+
"mlp.experts.228.down_proj",
|
| 498 |
+
"mlp.experts.228.gate_proj",
|
| 499 |
+
"mlp.experts.228.up_proj",
|
| 500 |
+
"mlp.experts.229.down_proj",
|
| 501 |
+
"mlp.experts.229.gate_proj",
|
| 502 |
+
"mlp.experts.229.up_proj",
|
| 503 |
+
"mlp.experts.23.down_proj",
|
| 504 |
+
"mlp.experts.23.gate_proj",
|
| 505 |
+
"mlp.experts.23.up_proj",
|
| 506 |
+
"mlp.experts.230.down_proj",
|
| 507 |
+
"mlp.experts.230.gate_proj",
|
| 508 |
+
"mlp.experts.230.up_proj",
|
| 509 |
+
"mlp.experts.231.down_proj",
|
| 510 |
+
"mlp.experts.231.gate_proj",
|
| 511 |
+
"mlp.experts.231.up_proj",
|
| 512 |
+
"mlp.experts.232.down_proj",
|
| 513 |
+
"mlp.experts.232.gate_proj",
|
| 514 |
+
"mlp.experts.232.up_proj",
|
| 515 |
+
"mlp.experts.233.down_proj",
|
| 516 |
+
"mlp.experts.233.gate_proj",
|
| 517 |
+
"mlp.experts.233.up_proj",
|
| 518 |
+
"mlp.experts.234.down_proj",
|
| 519 |
+
"mlp.experts.234.gate_proj",
|
| 520 |
+
"mlp.experts.234.up_proj",
|
| 521 |
+
"mlp.experts.235.down_proj",
|
| 522 |
+
"mlp.experts.235.gate_proj",
|
| 523 |
+
"mlp.experts.235.up_proj",
|
| 524 |
+
"mlp.experts.236.down_proj",
|
| 525 |
+
"mlp.experts.236.gate_proj",
|
| 526 |
+
"mlp.experts.236.up_proj",
|
| 527 |
+
"mlp.experts.237.down_proj",
|
| 528 |
+
"mlp.experts.237.gate_proj",
|
| 529 |
+
"mlp.experts.237.up_proj",
|
| 530 |
+
"mlp.experts.238.down_proj",
|
| 531 |
+
"mlp.experts.238.gate_proj",
|
| 532 |
+
"mlp.experts.238.up_proj",
|
| 533 |
+
"mlp.experts.239.down_proj",
|
| 534 |
+
"mlp.experts.239.gate_proj",
|
| 535 |
+
"mlp.experts.239.up_proj",
|
| 536 |
+
"mlp.experts.24.down_proj",
|
| 537 |
+
"mlp.experts.24.gate_proj",
|
| 538 |
+
"mlp.experts.24.up_proj",
|
| 539 |
+
"mlp.experts.240.down_proj",
|
| 540 |
+
"mlp.experts.240.gate_proj",
|
| 541 |
+
"mlp.experts.240.up_proj",
|
| 542 |
+
"mlp.experts.241.down_proj",
|
| 543 |
+
"mlp.experts.241.gate_proj",
|
| 544 |
+
"mlp.experts.241.up_proj",
|
| 545 |
+
"mlp.experts.242.down_proj",
|
| 546 |
+
"mlp.experts.242.gate_proj",
|
| 547 |
+
"mlp.experts.242.up_proj",
|
| 548 |
+
"mlp.experts.243.down_proj",
|
| 549 |
+
"mlp.experts.243.gate_proj",
|
| 550 |
+
"mlp.experts.243.up_proj",
|
| 551 |
+
"mlp.experts.244.down_proj",
|
| 552 |
+
"mlp.experts.244.gate_proj",
|
| 553 |
+
"mlp.experts.244.up_proj",
|
| 554 |
+
"mlp.experts.245.down_proj",
|
| 555 |
+
"mlp.experts.245.gate_proj",
|
| 556 |
+
"mlp.experts.245.up_proj",
|
| 557 |
+
"mlp.experts.246.down_proj",
|
| 558 |
+
"mlp.experts.246.gate_proj",
|
| 559 |
+
"mlp.experts.246.up_proj",
|
| 560 |
+
"mlp.experts.247.down_proj",
|
| 561 |
+
"mlp.experts.247.gate_proj",
|
| 562 |
+
"mlp.experts.247.up_proj",
|
| 563 |
+
"mlp.experts.248.down_proj",
|
| 564 |
+
"mlp.experts.248.gate_proj",
|
| 565 |
+
"mlp.experts.248.up_proj",
|
| 566 |
+
"mlp.experts.249.down_proj",
|
| 567 |
+
"mlp.experts.249.gate_proj",
|
| 568 |
+
"mlp.experts.249.up_proj",
|
| 569 |
+
"mlp.experts.25.down_proj",
|
| 570 |
+
"mlp.experts.25.gate_proj",
|
| 571 |
+
"mlp.experts.25.up_proj",
|
| 572 |
+
"mlp.experts.250.down_proj",
|
| 573 |
+
"mlp.experts.250.gate_proj",
|
| 574 |
+
"mlp.experts.250.up_proj",
|
| 575 |
+
"mlp.experts.251.down_proj",
|
| 576 |
+
"mlp.experts.251.gate_proj",
|
| 577 |
+
"mlp.experts.251.up_proj",
|
| 578 |
+
"mlp.experts.252.down_proj",
|
| 579 |
+
"mlp.experts.252.gate_proj",
|
| 580 |
+
"mlp.experts.252.up_proj",
|
| 581 |
+
"mlp.experts.253.down_proj",
|
| 582 |
+
"mlp.experts.253.gate_proj",
|
| 583 |
+
"mlp.experts.253.up_proj",
|
| 584 |
+
"mlp.experts.254.down_proj",
|
| 585 |
+
"mlp.experts.254.gate_proj",
|
| 586 |
+
"mlp.experts.254.up_proj",
|
| 587 |
+
"mlp.experts.255.down_proj",
|
| 588 |
+
"mlp.experts.255.gate_proj",
|
| 589 |
+
"mlp.experts.255.up_proj",
|
| 590 |
+
"mlp.experts.26.down_proj",
|
| 591 |
+
"mlp.experts.26.gate_proj",
|
| 592 |
+
"mlp.experts.26.up_proj",
|
| 593 |
+
"mlp.experts.27.down_proj",
|
| 594 |
+
"mlp.experts.27.gate_proj",
|
| 595 |
+
"mlp.experts.27.up_proj",
|
| 596 |
+
"mlp.experts.28.down_proj",
|
| 597 |
+
"mlp.experts.28.gate_proj",
|
| 598 |
+
"mlp.experts.28.up_proj",
|
| 599 |
+
"mlp.experts.29.down_proj",
|
| 600 |
+
"mlp.experts.29.gate_proj",
|
| 601 |
+
"mlp.experts.29.up_proj",
|
| 602 |
+
"mlp.experts.3.down_proj",
|
| 603 |
+
"mlp.experts.3.gate_proj",
|
| 604 |
+
"mlp.experts.3.up_proj",
|
| 605 |
+
"mlp.experts.30.down_proj",
|
| 606 |
+
"mlp.experts.30.gate_proj",
|
| 607 |
+
"mlp.experts.30.up_proj",
|
| 608 |
+
"mlp.experts.31.down_proj",
|
| 609 |
+
"mlp.experts.31.gate_proj",
|
| 610 |
+
"mlp.experts.31.up_proj",
|
| 611 |
+
"mlp.experts.32.down_proj",
|
| 612 |
+
"mlp.experts.32.gate_proj",
|
| 613 |
+
"mlp.experts.32.up_proj",
|
| 614 |
+
"mlp.experts.33.down_proj",
|
| 615 |
+
"mlp.experts.33.gate_proj",
|
| 616 |
+
"mlp.experts.33.up_proj",
|
| 617 |
+
"mlp.experts.34.down_proj",
|
| 618 |
+
"mlp.experts.34.gate_proj",
|
| 619 |
+
"mlp.experts.34.up_proj",
|
| 620 |
+
"mlp.experts.35.down_proj",
|
| 621 |
+
"mlp.experts.35.gate_proj",
|
| 622 |
+
"mlp.experts.35.up_proj",
|
| 623 |
+
"mlp.experts.36.down_proj",
|
| 624 |
+
"mlp.experts.36.gate_proj",
|
| 625 |
+
"mlp.experts.36.up_proj",
|
| 626 |
+
"mlp.experts.37.down_proj",
|
| 627 |
+
"mlp.experts.37.gate_proj",
|
| 628 |
+
"mlp.experts.37.up_proj",
|
| 629 |
+
"mlp.experts.38.down_proj",
|
| 630 |
+
"mlp.experts.38.gate_proj",
|
| 631 |
+
"mlp.experts.38.up_proj",
|
| 632 |
+
"mlp.experts.39.down_proj",
|
| 633 |
+
"mlp.experts.39.gate_proj",
|
| 634 |
+
"mlp.experts.39.up_proj",
|
| 635 |
+
"mlp.experts.4.down_proj",
|
| 636 |
+
"mlp.experts.4.gate_proj",
|
| 637 |
+
"mlp.experts.4.up_proj",
|
| 638 |
+
"mlp.experts.40.down_proj",
|
| 639 |
+
"mlp.experts.40.gate_proj",
|
| 640 |
+
"mlp.experts.40.up_proj",
|
| 641 |
+
"mlp.experts.41.down_proj",
|
| 642 |
+
"mlp.experts.41.gate_proj",
|
| 643 |
+
"mlp.experts.41.up_proj",
|
| 644 |
+
"mlp.experts.42.down_proj",
|
| 645 |
+
"mlp.experts.42.gate_proj",
|
| 646 |
+
"mlp.experts.42.up_proj",
|
| 647 |
+
"mlp.experts.43.down_proj",
|
| 648 |
+
"mlp.experts.43.gate_proj",
|
| 649 |
+
"mlp.experts.43.up_proj",
|
| 650 |
+
"mlp.experts.44.down_proj",
|
| 651 |
+
"mlp.experts.44.gate_proj",
|
| 652 |
+
"mlp.experts.44.up_proj",
|
| 653 |
+
"mlp.experts.45.down_proj",
|
| 654 |
+
"mlp.experts.45.gate_proj",
|
| 655 |
+
"mlp.experts.45.up_proj",
|
| 656 |
+
"mlp.experts.46.down_proj",
|
| 657 |
+
"mlp.experts.46.gate_proj",
|
| 658 |
+
"mlp.experts.46.up_proj",
|
| 659 |
+
"mlp.experts.47.down_proj",
|
| 660 |
+
"mlp.experts.47.gate_proj",
|
| 661 |
+
"mlp.experts.47.up_proj",
|
| 662 |
+
"mlp.experts.48.down_proj",
|
| 663 |
+
"mlp.experts.48.gate_proj",
|
| 664 |
+
"mlp.experts.48.up_proj",
|
| 665 |
+
"mlp.experts.49.down_proj",
|
| 666 |
+
"mlp.experts.49.gate_proj",
|
| 667 |
+
"mlp.experts.49.up_proj",
|
| 668 |
+
"mlp.experts.5.down_proj",
|
| 669 |
+
"mlp.experts.5.gate_proj",
|
| 670 |
+
"mlp.experts.5.up_proj",
|
| 671 |
+
"mlp.experts.50.down_proj",
|
| 672 |
+
"mlp.experts.50.gate_proj",
|
| 673 |
+
"mlp.experts.50.up_proj",
|
| 674 |
+
"mlp.experts.51.down_proj",
|
| 675 |
+
"mlp.experts.51.gate_proj",
|
| 676 |
+
"mlp.experts.51.up_proj",
|
| 677 |
+
"mlp.experts.52.down_proj",
|
| 678 |
+
"mlp.experts.52.gate_proj",
|
| 679 |
+
"mlp.experts.52.up_proj",
|
| 680 |
+
"mlp.experts.53.down_proj",
|
| 681 |
+
"mlp.experts.53.gate_proj",
|
| 682 |
+
"mlp.experts.53.up_proj",
|
| 683 |
+
"mlp.experts.54.down_proj",
|
| 684 |
+
"mlp.experts.54.gate_proj",
|
| 685 |
+
"mlp.experts.54.up_proj",
|
| 686 |
+
"mlp.experts.55.down_proj",
|
| 687 |
+
"mlp.experts.55.gate_proj",
|
| 688 |
+
"mlp.experts.55.up_proj",
|
| 689 |
+
"mlp.experts.56.down_proj",
|
| 690 |
+
"mlp.experts.56.gate_proj",
|
| 691 |
+
"mlp.experts.56.up_proj",
|
| 692 |
+
"mlp.experts.57.down_proj",
|
| 693 |
+
"mlp.experts.57.gate_proj",
|
| 694 |
+
"mlp.experts.57.up_proj",
|
| 695 |
+
"mlp.experts.58.down_proj",
|
| 696 |
+
"mlp.experts.58.gate_proj",
|
| 697 |
+
"mlp.experts.58.up_proj",
|
| 698 |
+
"mlp.experts.59.down_proj",
|
| 699 |
+
"mlp.experts.59.gate_proj",
|
| 700 |
+
"mlp.experts.59.up_proj",
|
| 701 |
+
"mlp.experts.6.down_proj",
|
| 702 |
+
"mlp.experts.6.gate_proj",
|
| 703 |
+
"mlp.experts.6.up_proj",
|
| 704 |
+
"mlp.experts.60.down_proj",
|
| 705 |
+
"mlp.experts.60.gate_proj",
|
| 706 |
+
"mlp.experts.60.up_proj",
|
| 707 |
+
"mlp.experts.61.down_proj",
|
| 708 |
+
"mlp.experts.61.gate_proj",
|
| 709 |
+
"mlp.experts.61.up_proj",
|
| 710 |
+
"mlp.experts.62.down_proj",
|
| 711 |
+
"mlp.experts.62.gate_proj",
|
| 712 |
+
"mlp.experts.62.up_proj",
|
| 713 |
+
"mlp.experts.63.down_proj",
|
| 714 |
+
"mlp.experts.63.gate_proj",
|
| 715 |
+
"mlp.experts.63.up_proj",
|
| 716 |
+
"mlp.experts.64.down_proj",
|
| 717 |
+
"mlp.experts.64.gate_proj",
|
| 718 |
+
"mlp.experts.64.up_proj",
|
| 719 |
+
"mlp.experts.65.down_proj",
|
| 720 |
+
"mlp.experts.65.gate_proj",
|
| 721 |
+
"mlp.experts.65.up_proj",
|
| 722 |
+
"mlp.experts.66.down_proj",
|
| 723 |
+
"mlp.experts.66.gate_proj",
|
| 724 |
+
"mlp.experts.66.up_proj",
|
| 725 |
+
"mlp.experts.67.down_proj",
|
| 726 |
+
"mlp.experts.67.gate_proj",
|
| 727 |
+
"mlp.experts.67.up_proj",
|
| 728 |
+
"mlp.experts.68.down_proj",
|
| 729 |
+
"mlp.experts.68.gate_proj",
|
| 730 |
+
"mlp.experts.68.up_proj",
|
| 731 |
+
"mlp.experts.69.down_proj",
|
| 732 |
+
"mlp.experts.69.gate_proj",
|
| 733 |
+
"mlp.experts.69.up_proj",
|
| 734 |
+
"mlp.experts.7.down_proj",
|
| 735 |
+
"mlp.experts.7.gate_proj",
|
| 736 |
+
"mlp.experts.7.up_proj",
|
| 737 |
+
"mlp.experts.70.down_proj",
|
| 738 |
+
"mlp.experts.70.gate_proj",
|
| 739 |
+
"mlp.experts.70.up_proj",
|
| 740 |
+
"mlp.experts.71.down_proj",
|
| 741 |
+
"mlp.experts.71.gate_proj",
|
| 742 |
+
"mlp.experts.71.up_proj",
|
| 743 |
+
"mlp.experts.72.down_proj",
|
| 744 |
+
"mlp.experts.72.gate_proj",
|
| 745 |
+
"mlp.experts.72.up_proj",
|
| 746 |
+
"mlp.experts.73.down_proj",
|
| 747 |
+
"mlp.experts.73.gate_proj",
|
| 748 |
+
"mlp.experts.73.up_proj",
|
| 749 |
+
"mlp.experts.74.down_proj",
|
| 750 |
+
"mlp.experts.74.gate_proj",
|
| 751 |
+
"mlp.experts.74.up_proj",
|
| 752 |
+
"mlp.experts.75.down_proj",
|
| 753 |
+
"mlp.experts.75.gate_proj",
|
| 754 |
+
"mlp.experts.75.up_proj",
|
| 755 |
+
"mlp.experts.76.down_proj",
|
| 756 |
+
"mlp.experts.76.gate_proj",
|
| 757 |
+
"mlp.experts.76.up_proj",
|
| 758 |
+
"mlp.experts.77.down_proj",
|
| 759 |
+
"mlp.experts.77.gate_proj",
|
| 760 |
+
"mlp.experts.77.up_proj",
|
| 761 |
+
"mlp.experts.78.down_proj",
|
| 762 |
+
"mlp.experts.78.gate_proj",
|
| 763 |
+
"mlp.experts.78.up_proj",
|
| 764 |
+
"mlp.experts.79.down_proj",
|
| 765 |
+
"mlp.experts.79.gate_proj",
|
| 766 |
+
"mlp.experts.79.up_proj",
|
| 767 |
+
"mlp.experts.8.down_proj",
|
| 768 |
+
"mlp.experts.8.gate_proj",
|
| 769 |
+
"mlp.experts.8.up_proj",
|
| 770 |
+
"mlp.experts.80.down_proj",
|
| 771 |
+
"mlp.experts.80.gate_proj",
|
| 772 |
+
"mlp.experts.80.up_proj",
|
| 773 |
+
"mlp.experts.81.down_proj",
|
| 774 |
+
"mlp.experts.81.gate_proj",
|
| 775 |
+
"mlp.experts.81.up_proj",
|
| 776 |
+
"mlp.experts.82.down_proj",
|
| 777 |
+
"mlp.experts.82.gate_proj",
|
| 778 |
+
"mlp.experts.82.up_proj",
|
| 779 |
+
"mlp.experts.83.down_proj",
|
| 780 |
+
"mlp.experts.83.gate_proj",
|
| 781 |
+
"mlp.experts.83.up_proj",
|
| 782 |
+
"mlp.experts.84.down_proj",
|
| 783 |
+
"mlp.experts.84.gate_proj",
|
| 784 |
+
"mlp.experts.84.up_proj",
|
| 785 |
+
"mlp.experts.85.down_proj",
|
| 786 |
+
"mlp.experts.85.gate_proj",
|
| 787 |
+
"mlp.experts.85.up_proj",
|
| 788 |
+
"mlp.experts.86.down_proj",
|
| 789 |
+
"mlp.experts.86.gate_proj",
|
| 790 |
+
"mlp.experts.86.up_proj",
|
| 791 |
+
"mlp.experts.87.down_proj",
|
| 792 |
+
"mlp.experts.87.gate_proj",
|
| 793 |
+
"mlp.experts.87.up_proj",
|
| 794 |
+
"mlp.experts.88.down_proj",
|
| 795 |
+
"mlp.experts.88.gate_proj",
|
| 796 |
+
"mlp.experts.88.up_proj",
|
| 797 |
+
"mlp.experts.89.down_proj",
|
| 798 |
+
"mlp.experts.89.gate_proj",
|
| 799 |
+
"mlp.experts.89.up_proj",
|
| 800 |
+
"mlp.experts.9.down_proj",
|
| 801 |
+
"mlp.experts.9.gate_proj",
|
| 802 |
+
"mlp.experts.9.up_proj",
|
| 803 |
+
"mlp.experts.90.down_proj",
|
| 804 |
+
"mlp.experts.90.gate_proj",
|
| 805 |
+
"mlp.experts.90.up_proj",
|
| 806 |
+
"mlp.experts.91.down_proj",
|
| 807 |
+
"mlp.experts.91.gate_proj",
|
| 808 |
+
"mlp.experts.91.up_proj",
|
| 809 |
+
"mlp.experts.92.down_proj",
|
| 810 |
+
"mlp.experts.92.gate_proj",
|
| 811 |
+
"mlp.experts.92.up_proj",
|
| 812 |
+
"mlp.experts.93.down_proj",
|
| 813 |
+
"mlp.experts.93.gate_proj",
|
| 814 |
+
"mlp.experts.93.up_proj",
|
| 815 |
+
"mlp.experts.94.down_proj",
|
| 816 |
+
"mlp.experts.94.gate_proj",
|
| 817 |
+
"mlp.experts.94.up_proj",
|
| 818 |
+
"mlp.experts.95.down_proj",
|
| 819 |
+
"mlp.experts.95.gate_proj",
|
| 820 |
+
"mlp.experts.95.up_proj",
|
| 821 |
+
"mlp.experts.96.down_proj",
|
| 822 |
+
"mlp.experts.96.gate_proj",
|
| 823 |
+
"mlp.experts.96.up_proj",
|
| 824 |
+
"mlp.experts.97.down_proj",
|
| 825 |
+
"mlp.experts.97.gate_proj",
|
| 826 |
+
"mlp.experts.97.up_proj",
|
| 827 |
+
"mlp.experts.98.down_proj",
|
| 828 |
+
"mlp.experts.98.gate_proj",
|
| 829 |
+
"mlp.experts.98.up_proj",
|
| 830 |
+
"mlp.experts.99.down_proj",
|
| 831 |
+
"mlp.experts.99.gate_proj",
|
| 832 |
+
"mlp.experts.99.up_proj",
|
| 833 |
+
"self_attn.k_proj",
|
| 834 |
+
"self_attn.o_proj",
|
| 835 |
+
"self_attn.q_proj",
|
| 836 |
+
"self_attn.v_proj"
|
| 837 |
+
]
|
| 838 |
+
],
|
| 839 |
+
"nsamples": 256,
|
| 840 |
+
"provider": "auto-round",
|
| 841 |
+
"quant_method": "gptq",
|
| 842 |
+
"sym": true,
|
| 843 |
+
"true_sequential": false
|
| 844 |
+
},
|
| 845 |
+
"text_config": {
|
| 846 |
+
"attention_bias": false,
|
| 847 |
+
"attention_dropout": 0.0,
|
| 848 |
+
"attn_output_gate": true,
|
| 849 |
+
"bos_token_id": null,
|
| 850 |
+
"dtype": "bfloat16",
|
| 851 |
+
"eos_token_id": 248044,
|
| 852 |
+
"full_attention_interval": 4,
|
| 853 |
+
"head_dim": 256,
|
| 854 |
+
"hidden_act": "silu",
|
| 855 |
+
"hidden_size": 2048,
|
| 856 |
+
"initializer_range": 0.02,
|
| 857 |
+
"layer_types": [
|
| 858 |
+
"linear_attention",
|
| 859 |
+
"linear_attention",
|
| 860 |
+
"linear_attention",
|
| 861 |
+
"full_attention",
|
| 862 |
+
"linear_attention",
|
| 863 |
+
"linear_attention",
|
| 864 |
+
"linear_attention",
|
| 865 |
+
"full_attention",
|
| 866 |
+
"linear_attention",
|
| 867 |
+
"linear_attention",
|
| 868 |
+
"linear_attention",
|
| 869 |
+
"full_attention",
|
| 870 |
+
"linear_attention",
|
| 871 |
+
"linear_attention",
|
| 872 |
+
"linear_attention",
|
| 873 |
+
"full_attention",
|
| 874 |
+
"linear_attention",
|
| 875 |
+
"linear_attention",
|
| 876 |
+
"linear_attention",
|
| 877 |
+
"full_attention",
|
| 878 |
+
"linear_attention",
|
| 879 |
+
"linear_attention",
|
| 880 |
+
"linear_attention",
|
| 881 |
+
"full_attention",
|
| 882 |
+
"linear_attention",
|
| 883 |
+
"linear_attention",
|
| 884 |
+
"linear_attention",
|
| 885 |
+
"full_attention",
|
| 886 |
+
"linear_attention",
|
| 887 |
+
"linear_attention",
|
| 888 |
+
"linear_attention",
|
| 889 |
+
"full_attention",
|
| 890 |
+
"linear_attention",
|
| 891 |
+
"linear_attention",
|
| 892 |
+
"linear_attention",
|
| 893 |
+
"full_attention",
|
| 894 |
+
"linear_attention",
|
| 895 |
+
"linear_attention",
|
| 896 |
+
"linear_attention",
|
| 897 |
+
"full_attention"
|
| 898 |
+
],
|
| 899 |
+
"linear_conv_kernel_dim": 4,
|
| 900 |
+
"linear_key_head_dim": 128,
|
| 901 |
+
"linear_num_key_heads": 16,
|
| 902 |
+
"linear_num_value_heads": 32,
|
| 903 |
+
"linear_value_head_dim": 128,
|
| 904 |
+
"mamba_ssm_dtype": "float32",
|
| 905 |
+
"max_position_embeddings": 262144,
|
| 906 |
+
"mlp_only_layers": [],
|
| 907 |
+
"model_type": "qwen3_5_moe_text",
|
| 908 |
+
"moe_intermediate_size": 512,
|
| 909 |
+
"mtp_num_hidden_layers": 1,
|
| 910 |
+
"mtp_use_dedicated_embeddings": false,
|
| 911 |
+
"num_attention_heads": 16,
|
| 912 |
+
"num_experts": 256,
|
| 913 |
+
"num_experts_per_tok": 8,
|
| 914 |
+
"num_hidden_layers": 40,
|
| 915 |
+
"num_key_value_heads": 2,
|
| 916 |
+
"output_router_logits": false,
|
| 917 |
+
"pad_token_id": null,
|
| 918 |
+
"partial_rotary_factor": 0.25,
|
| 919 |
+
"rms_norm_eps": 1e-06,
|
| 920 |
+
"rope_parameters": {
|
| 921 |
+
"mrope_interleaved": true,
|
| 922 |
+
"mrope_section": [
|
| 923 |
+
11,
|
| 924 |
+
11,
|
| 925 |
+
10
|
| 926 |
+
],
|
| 927 |
+
"partial_rotary_factor": 0.25,
|
| 928 |
+
"rope_theta": 10000000,
|
| 929 |
+
"rope_type": "default"
|
| 930 |
+
},
|
| 931 |
+
"router_aux_loss_coef": 0.001,
|
| 932 |
+
"shared_expert_intermediate_size": 512,
|
| 933 |
+
"tie_word_embeddings": false,
|
| 934 |
+
"use_cache": true,
|
| 935 |
+
"vocab_size": 248320
|
| 936 |
+
},
|
| 937 |
+
"tie_word_embeddings": false,
|
| 938 |
+
"transformers_version": "5.14.1",
|
| 939 |
+
"video_token_id": 248057,
|
| 940 |
+
"vision_config": {
|
| 941 |
+
"deepstack_visual_indexes": [],
|
| 942 |
+
"depth": 27,
|
| 943 |
+
"dtype": "bfloat16",
|
| 944 |
+
"hidden_act": "gelu_pytorch_tanh",
|
| 945 |
+
"hidden_size": 1152,
|
| 946 |
+
"in_channels": 3,
|
| 947 |
+
"initializer_range": 0.02,
|
| 948 |
+
"intermediate_size": 4304,
|
| 949 |
+
"model_type": "qwen3_5_moe_vision",
|
| 950 |
+
"num_heads": 16,
|
| 951 |
+
"num_position_embeddings": 2304,
|
| 952 |
+
"out_hidden_size": 2048,
|
| 953 |
+
"patch_size": 16,
|
| 954 |
+
"spatial_merge_size": 2,
|
| 955 |
+
"temporal_patch_size": 2
|
| 956 |
+
},
|
| 957 |
+
"vision_end_token_id": 248054,
|
| 958 |
+
"vision_start_token_id": 248053,
|
| 959 |
+
"torch_dtype": "float16"
|
| 960 |
+
}
|
generation_config.json
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
+
"transformers_version": "5.14.1"
|
| 13 |
+
}
|
model-00001-of-00006.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:199316643f7ba69f425b7583613365161730f0430ea2d98ee8c7ec2e60730f5f
|
| 3 |
+
size 4298424712
|
model-00002-of-00006.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f4a3de737115569036b1c351321335d592f5210fb481872ce612d8264779c488
|
| 3 |
+
size 4297883864
|
model-00003-of-00006.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f1c1b7765d8368ccb6c68f5725bad1f9dc2b558dc3534949b1ae51671bf65a48
|
| 3 |
+
size 4298563920
|
model-00004-of-00006.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:77fcb78b5278ca48c1f358724e7f14c62201f205f85a58768453eae101307eb4
|
| 3 |
+
size 4298497440
|
model-00005-of-00006.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:112a4138ea520dc42829c0ab17e5ba48faaf293134786dd69e086314fab0f208
|
| 3 |
+
size 3734313072
|
model-00006-of-00006.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:bc0153700c70890a73e17ea3ec6ed88fa6d89594fdf0d1e2f12cd6d5a7a73fc3
|
| 3 |
+
size 2034241864
|
model.safetensors.index.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:cfb5473636bc00e02b8514ddad6a66aee17c9f01fcbd7c446766a00fde0dc81e
|
| 3 |
+
size 13151711
|
model_extra_tensors.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f831da57668975b09d1e7c518c421c59146621d565d6655a7cff92e0a8070bbe
|
| 3 |
+
size 1689376032
|
preprocessor_config.json
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"do_convert_rgb": true,
|
| 3 |
+
"do_normalize": true,
|
| 4 |
+
"do_rescale": true,
|
| 5 |
+
"do_resize": true,
|
| 6 |
+
"image_mean": [
|
| 7 |
+
0.5,
|
| 8 |
+
0.5,
|
| 9 |
+
0.5
|
| 10 |
+
],
|
| 11 |
+
"image_processor_type": "Qwen2VLImageProcessor",
|
| 12 |
+
"image_std": [
|
| 13 |
+
0.5,
|
| 14 |
+
0.5,
|
| 15 |
+
0.5
|
| 16 |
+
],
|
| 17 |
+
"merge_size": 2,
|
| 18 |
+
"patch_size": 16,
|
| 19 |
+
"resample": 3,
|
| 20 |
+
"rescale_factor": 0.00392156862745098,
|
| 21 |
+
"size": {
|
| 22 |
+
"longest_edge": 16777216,
|
| 23 |
+
"shortest_edge": 65536
|
| 24 |
+
},
|
| 25 |
+
"temporal_patch_size": 2
|
| 26 |
+
}
|
processor_config.json
ADDED
|
@@ -0,0 +1,60 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"image_processor": {
|
| 3 |
+
"do_convert_rgb": true,
|
| 4 |
+
"do_normalize": true,
|
| 5 |
+
"do_rescale": true,
|
| 6 |
+
"do_resize": true,
|
| 7 |
+
"image_mean": [
|
| 8 |
+
0.5,
|
| 9 |
+
0.5,
|
| 10 |
+
0.5
|
| 11 |
+
],
|
| 12 |
+
"image_processor_type": "Qwen2VLImageProcessor",
|
| 13 |
+
"image_std": [
|
| 14 |
+
0.5,
|
| 15 |
+
0.5,
|
| 16 |
+
0.5
|
| 17 |
+
],
|
| 18 |
+
"merge_size": 2,
|
| 19 |
+
"patch_size": 16,
|
| 20 |
+
"resample": 3,
|
| 21 |
+
"rescale_factor": 0.00392156862745098,
|
| 22 |
+
"size": {
|
| 23 |
+
"longest_edge": 16777216,
|
| 24 |
+
"shortest_edge": 65536
|
| 25 |
+
},
|
| 26 |
+
"temporal_patch_size": 2
|
| 27 |
+
},
|
| 28 |
+
"processor_class": "Qwen3VLProcessor",
|
| 29 |
+
"video_processor": {
|
| 30 |
+
"do_convert_rgb": true,
|
| 31 |
+
"do_normalize": true,
|
| 32 |
+
"do_rescale": true,
|
| 33 |
+
"do_resize": true,
|
| 34 |
+
"do_sample_frames": true,
|
| 35 |
+
"fps": 2,
|
| 36 |
+
"image_mean": [
|
| 37 |
+
0.5,
|
| 38 |
+
0.5,
|
| 39 |
+
0.5
|
| 40 |
+
],
|
| 41 |
+
"image_std": [
|
| 42 |
+
0.5,
|
| 43 |
+
0.5,
|
| 44 |
+
0.5
|
| 45 |
+
],
|
| 46 |
+
"max_frames": 768,
|
| 47 |
+
"merge_size": 2,
|
| 48 |
+
"min_frames": 4,
|
| 49 |
+
"patch_size": 16,
|
| 50 |
+
"resample": 3,
|
| 51 |
+
"rescale_factor": 0.00392156862745098,
|
| 52 |
+
"return_metadata": false,
|
| 53 |
+
"size": {
|
| 54 |
+
"longest_edge": 25165824,
|
| 55 |
+
"shortest_edge": 4096
|
| 56 |
+
},
|
| 57 |
+
"temporal_patch_size": 2,
|
| 58 |
+
"video_processor_type": "Qwen3VLVideoProcessor"
|
| 59 |
+
}
|
| 60 |
+
}
|
quantization_config.json
ADDED
|
@@ -0,0 +1,837 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bits": 4,
|
| 3 |
+
"data_type": "int",
|
| 4 |
+
"group_size": 64,
|
| 5 |
+
"sym": true,
|
| 6 |
+
"nsamples": 256,
|
| 7 |
+
"autoround_version": "0.14.2",
|
| 8 |
+
"dynamic": {
|
| 9 |
+
"-:.*shared_expert.*": {},
|
| 10 |
+
"-:.*linear_attn.*": {},
|
| 11 |
+
"-:.*mlp\\.gate.*": {},
|
| 12 |
+
"-:.*shared_expert_gate.*": {},
|
| 13 |
+
"-:.*visual.*": {},
|
| 14 |
+
"-:.*model\\.language_model\\.layers\\.0\\.mlp\\.gate.*": {},
|
| 15 |
+
"-:.*model\\.language_model\\.layers\\.1\\.mlp\\.gate.*": {},
|
| 16 |
+
"-:.*model\\.language_model\\.layers\\.2\\.mlp\\.gate.*": {},
|
| 17 |
+
"-:.*model\\.language_model\\.layers\\.3\\.mlp\\.gate.*": {},
|
| 18 |
+
"-:.*model\\.language_model\\.layers\\.4\\.mlp\\.gate.*": {},
|
| 19 |
+
"-:.*model\\.language_model\\.layers\\.5\\.mlp\\.gate.*": {},
|
| 20 |
+
"-:.*model\\.language_model\\.layers\\.6\\.mlp\\.gate.*": {},
|
| 21 |
+
"-:.*model\\.language_model\\.layers\\.7\\.mlp\\.gate.*": {},
|
| 22 |
+
"-:.*model\\.language_model\\.layers\\.8\\.mlp\\.gate.*": {},
|
| 23 |
+
"-:.*model\\.language_model\\.layers\\.9\\.mlp\\.gate.*": {},
|
| 24 |
+
"-:.*model\\.language_model\\.layers\\.10\\.mlp\\.gate.*": {},
|
| 25 |
+
"-:.*model\\.language_model\\.layers\\.11\\.mlp\\.gate.*": {},
|
| 26 |
+
"-:.*model\\.language_model\\.layers\\.12\\.mlp\\.gate.*": {},
|
| 27 |
+
"-:.*model\\.language_model\\.layers\\.13\\.mlp\\.gate.*": {},
|
| 28 |
+
"-:.*model\\.language_model\\.layers\\.14\\.mlp\\.gate.*": {},
|
| 29 |
+
"-:.*model\\.language_model\\.layers\\.15\\.mlp\\.gate.*": {},
|
| 30 |
+
"-:.*model\\.language_model\\.layers\\.16\\.mlp\\.gate.*": {},
|
| 31 |
+
"-:.*model\\.language_model\\.layers\\.17\\.mlp\\.gate.*": {},
|
| 32 |
+
"-:.*model\\.language_model\\.layers\\.18\\.mlp\\.gate.*": {},
|
| 33 |
+
"-:.*model\\.language_model\\.layers\\.19\\.mlp\\.gate.*": {},
|
| 34 |
+
"-:.*model\\.language_model\\.layers\\.20\\.mlp\\.gate.*": {},
|
| 35 |
+
"-:.*model\\.language_model\\.layers\\.21\\.mlp\\.gate.*": {},
|
| 36 |
+
"-:.*model\\.language_model\\.layers\\.22\\.mlp\\.gate.*": {},
|
| 37 |
+
"-:.*model\\.language_model\\.layers\\.23\\.mlp\\.gate.*": {},
|
| 38 |
+
"-:.*model\\.language_model\\.layers\\.24\\.mlp\\.gate.*": {},
|
| 39 |
+
"-:.*model\\.language_model\\.layers\\.25\\.mlp\\.gate.*": {},
|
| 40 |
+
"-:.*model\\.language_model\\.layers\\.26\\.mlp\\.gate.*": {},
|
| 41 |
+
"-:.*model\\.language_model\\.layers\\.27\\.mlp\\.gate.*": {},
|
| 42 |
+
"-:.*model\\.language_model\\.layers\\.28\\.mlp\\.gate.*": {},
|
| 43 |
+
"-:.*model\\.language_model\\.layers\\.29\\.mlp\\.gate.*": {},
|
| 44 |
+
"-:.*model\\.language_model\\.layers\\.30\\.mlp\\.gate.*": {},
|
| 45 |
+
"-:.*model\\.language_model\\.layers\\.31\\.mlp\\.gate.*": {},
|
| 46 |
+
"-:.*model\\.language_model\\.layers\\.32\\.mlp\\.gate.*": {},
|
| 47 |
+
"-:.*model\\.language_model\\.layers\\.33\\.mlp\\.gate.*": {},
|
| 48 |
+
"-:.*model\\.language_model\\.layers\\.34\\.mlp\\.gate.*": {},
|
| 49 |
+
"-:.*model\\.language_model\\.layers\\.35\\.mlp\\.gate.*": {},
|
| 50 |
+
"-:.*model\\.language_model\\.layers\\.36\\.mlp\\.gate.*": {},
|
| 51 |
+
"-:.*model\\.language_model\\.layers\\.37\\.mlp\\.gate.*": {},
|
| 52 |
+
"-:.*model\\.language_model\\.layers\\.38\\.mlp\\.gate.*": {},
|
| 53 |
+
"-:.*model\\.language_model\\.layers\\.39\\.mlp\\.gate.*": {}
|
| 54 |
+
},
|
| 55 |
+
"lm_head": false,
|
| 56 |
+
"provider": "auto-round",
|
| 57 |
+
"quant_method": "gptq",
|
| 58 |
+
"desc_act": false,
|
| 59 |
+
"true_sequential": false,
|
| 60 |
+
"damp_percent": 0.01,
|
| 61 |
+
"modules_in_block_to_quantize": [
|
| 62 |
+
[
|
| 63 |
+
"mlp.experts.0.down_proj",
|
| 64 |
+
"mlp.experts.0.gate_proj",
|
| 65 |
+
"mlp.experts.0.up_proj",
|
| 66 |
+
"mlp.experts.1.down_proj",
|
| 67 |
+
"mlp.experts.1.gate_proj",
|
| 68 |
+
"mlp.experts.1.up_proj",
|
| 69 |
+
"mlp.experts.10.down_proj",
|
| 70 |
+
"mlp.experts.10.gate_proj",
|
| 71 |
+
"mlp.experts.10.up_proj",
|
| 72 |
+
"mlp.experts.100.down_proj",
|
| 73 |
+
"mlp.experts.100.gate_proj",
|
| 74 |
+
"mlp.experts.100.up_proj",
|
| 75 |
+
"mlp.experts.101.down_proj",
|
| 76 |
+
"mlp.experts.101.gate_proj",
|
| 77 |
+
"mlp.experts.101.up_proj",
|
| 78 |
+
"mlp.experts.102.down_proj",
|
| 79 |
+
"mlp.experts.102.gate_proj",
|
| 80 |
+
"mlp.experts.102.up_proj",
|
| 81 |
+
"mlp.experts.103.down_proj",
|
| 82 |
+
"mlp.experts.103.gate_proj",
|
| 83 |
+
"mlp.experts.103.up_proj",
|
| 84 |
+
"mlp.experts.104.down_proj",
|
| 85 |
+
"mlp.experts.104.gate_proj",
|
| 86 |
+
"mlp.experts.104.up_proj",
|
| 87 |
+
"mlp.experts.105.down_proj",
|
| 88 |
+
"mlp.experts.105.gate_proj",
|
| 89 |
+
"mlp.experts.105.up_proj",
|
| 90 |
+
"mlp.experts.106.down_proj",
|
| 91 |
+
"mlp.experts.106.gate_proj",
|
| 92 |
+
"mlp.experts.106.up_proj",
|
| 93 |
+
"mlp.experts.107.down_proj",
|
| 94 |
+
"mlp.experts.107.gate_proj",
|
| 95 |
+
"mlp.experts.107.up_proj",
|
| 96 |
+
"mlp.experts.108.down_proj",
|
| 97 |
+
"mlp.experts.108.gate_proj",
|
| 98 |
+
"mlp.experts.108.up_proj",
|
| 99 |
+
"mlp.experts.109.down_proj",
|
| 100 |
+
"mlp.experts.109.gate_proj",
|
| 101 |
+
"mlp.experts.109.up_proj",
|
| 102 |
+
"mlp.experts.11.down_proj",
|
| 103 |
+
"mlp.experts.11.gate_proj",
|
| 104 |
+
"mlp.experts.11.up_proj",
|
| 105 |
+
"mlp.experts.110.down_proj",
|
| 106 |
+
"mlp.experts.110.gate_proj",
|
| 107 |
+
"mlp.experts.110.up_proj",
|
| 108 |
+
"mlp.experts.111.down_proj",
|
| 109 |
+
"mlp.experts.111.gate_proj",
|
| 110 |
+
"mlp.experts.111.up_proj",
|
| 111 |
+
"mlp.experts.112.down_proj",
|
| 112 |
+
"mlp.experts.112.gate_proj",
|
| 113 |
+
"mlp.experts.112.up_proj",
|
| 114 |
+
"mlp.experts.113.down_proj",
|
| 115 |
+
"mlp.experts.113.gate_proj",
|
| 116 |
+
"mlp.experts.113.up_proj",
|
| 117 |
+
"mlp.experts.114.down_proj",
|
| 118 |
+
"mlp.experts.114.gate_proj",
|
| 119 |
+
"mlp.experts.114.up_proj",
|
| 120 |
+
"mlp.experts.115.down_proj",
|
| 121 |
+
"mlp.experts.115.gate_proj",
|
| 122 |
+
"mlp.experts.115.up_proj",
|
| 123 |
+
"mlp.experts.116.down_proj",
|
| 124 |
+
"mlp.experts.116.gate_proj",
|
| 125 |
+
"mlp.experts.116.up_proj",
|
| 126 |
+
"mlp.experts.117.down_proj",
|
| 127 |
+
"mlp.experts.117.gate_proj",
|
| 128 |
+
"mlp.experts.117.up_proj",
|
| 129 |
+
"mlp.experts.118.down_proj",
|
| 130 |
+
"mlp.experts.118.gate_proj",
|
| 131 |
+
"mlp.experts.118.up_proj",
|
| 132 |
+
"mlp.experts.119.down_proj",
|
| 133 |
+
"mlp.experts.119.gate_proj",
|
| 134 |
+
"mlp.experts.119.up_proj",
|
| 135 |
+
"mlp.experts.12.down_proj",
|
| 136 |
+
"mlp.experts.12.gate_proj",
|
| 137 |
+
"mlp.experts.12.up_proj",
|
| 138 |
+
"mlp.experts.120.down_proj",
|
| 139 |
+
"mlp.experts.120.gate_proj",
|
| 140 |
+
"mlp.experts.120.up_proj",
|
| 141 |
+
"mlp.experts.121.down_proj",
|
| 142 |
+
"mlp.experts.121.gate_proj",
|
| 143 |
+
"mlp.experts.121.up_proj",
|
| 144 |
+
"mlp.experts.122.down_proj",
|
| 145 |
+
"mlp.experts.122.gate_proj",
|
| 146 |
+
"mlp.experts.122.up_proj",
|
| 147 |
+
"mlp.experts.123.down_proj",
|
| 148 |
+
"mlp.experts.123.gate_proj",
|
| 149 |
+
"mlp.experts.123.up_proj",
|
| 150 |
+
"mlp.experts.124.down_proj",
|
| 151 |
+
"mlp.experts.124.gate_proj",
|
| 152 |
+
"mlp.experts.124.up_proj",
|
| 153 |
+
"mlp.experts.125.down_proj",
|
| 154 |
+
"mlp.experts.125.gate_proj",
|
| 155 |
+
"mlp.experts.125.up_proj",
|
| 156 |
+
"mlp.experts.126.down_proj",
|
| 157 |
+
"mlp.experts.126.gate_proj",
|
| 158 |
+
"mlp.experts.126.up_proj",
|
| 159 |
+
"mlp.experts.127.down_proj",
|
| 160 |
+
"mlp.experts.127.gate_proj",
|
| 161 |
+
"mlp.experts.127.up_proj",
|
| 162 |
+
"mlp.experts.128.down_proj",
|
| 163 |
+
"mlp.experts.128.gate_proj",
|
| 164 |
+
"mlp.experts.128.up_proj",
|
| 165 |
+
"mlp.experts.129.down_proj",
|
| 166 |
+
"mlp.experts.129.gate_proj",
|
| 167 |
+
"mlp.experts.129.up_proj",
|
| 168 |
+
"mlp.experts.13.down_proj",
|
| 169 |
+
"mlp.experts.13.gate_proj",
|
| 170 |
+
"mlp.experts.13.up_proj",
|
| 171 |
+
"mlp.experts.130.down_proj",
|
| 172 |
+
"mlp.experts.130.gate_proj",
|
| 173 |
+
"mlp.experts.130.up_proj",
|
| 174 |
+
"mlp.experts.131.down_proj",
|
| 175 |
+
"mlp.experts.131.gate_proj",
|
| 176 |
+
"mlp.experts.131.up_proj",
|
| 177 |
+
"mlp.experts.132.down_proj",
|
| 178 |
+
"mlp.experts.132.gate_proj",
|
| 179 |
+
"mlp.experts.132.up_proj",
|
| 180 |
+
"mlp.experts.133.down_proj",
|
| 181 |
+
"mlp.experts.133.gate_proj",
|
| 182 |
+
"mlp.experts.133.up_proj",
|
| 183 |
+
"mlp.experts.134.down_proj",
|
| 184 |
+
"mlp.experts.134.gate_proj",
|
| 185 |
+
"mlp.experts.134.up_proj",
|
| 186 |
+
"mlp.experts.135.down_proj",
|
| 187 |
+
"mlp.experts.135.gate_proj",
|
| 188 |
+
"mlp.experts.135.up_proj",
|
| 189 |
+
"mlp.experts.136.down_proj",
|
| 190 |
+
"mlp.experts.136.gate_proj",
|
| 191 |
+
"mlp.experts.136.up_proj",
|
| 192 |
+
"mlp.experts.137.down_proj",
|
| 193 |
+
"mlp.experts.137.gate_proj",
|
| 194 |
+
"mlp.experts.137.up_proj",
|
| 195 |
+
"mlp.experts.138.down_proj",
|
| 196 |
+
"mlp.experts.138.gate_proj",
|
| 197 |
+
"mlp.experts.138.up_proj",
|
| 198 |
+
"mlp.experts.139.down_proj",
|
| 199 |
+
"mlp.experts.139.gate_proj",
|
| 200 |
+
"mlp.experts.139.up_proj",
|
| 201 |
+
"mlp.experts.14.down_proj",
|
| 202 |
+
"mlp.experts.14.gate_proj",
|
| 203 |
+
"mlp.experts.14.up_proj",
|
| 204 |
+
"mlp.experts.140.down_proj",
|
| 205 |
+
"mlp.experts.140.gate_proj",
|
| 206 |
+
"mlp.experts.140.up_proj",
|
| 207 |
+
"mlp.experts.141.down_proj",
|
| 208 |
+
"mlp.experts.141.gate_proj",
|
| 209 |
+
"mlp.experts.141.up_proj",
|
| 210 |
+
"mlp.experts.142.down_proj",
|
| 211 |
+
"mlp.experts.142.gate_proj",
|
| 212 |
+
"mlp.experts.142.up_proj",
|
| 213 |
+
"mlp.experts.143.down_proj",
|
| 214 |
+
"mlp.experts.143.gate_proj",
|
| 215 |
+
"mlp.experts.143.up_proj",
|
| 216 |
+
"mlp.experts.144.down_proj",
|
| 217 |
+
"mlp.experts.144.gate_proj",
|
| 218 |
+
"mlp.experts.144.up_proj",
|
| 219 |
+
"mlp.experts.145.down_proj",
|
| 220 |
+
"mlp.experts.145.gate_proj",
|
| 221 |
+
"mlp.experts.145.up_proj",
|
| 222 |
+
"mlp.experts.146.down_proj",
|
| 223 |
+
"mlp.experts.146.gate_proj",
|
| 224 |
+
"mlp.experts.146.up_proj",
|
| 225 |
+
"mlp.experts.147.down_proj",
|
| 226 |
+
"mlp.experts.147.gate_proj",
|
| 227 |
+
"mlp.experts.147.up_proj",
|
| 228 |
+
"mlp.experts.148.down_proj",
|
| 229 |
+
"mlp.experts.148.gate_proj",
|
| 230 |
+
"mlp.experts.148.up_proj",
|
| 231 |
+
"mlp.experts.149.down_proj",
|
| 232 |
+
"mlp.experts.149.gate_proj",
|
| 233 |
+
"mlp.experts.149.up_proj",
|
| 234 |
+
"mlp.experts.15.down_proj",
|
| 235 |
+
"mlp.experts.15.gate_proj",
|
| 236 |
+
"mlp.experts.15.up_proj",
|
| 237 |
+
"mlp.experts.150.down_proj",
|
| 238 |
+
"mlp.experts.150.gate_proj",
|
| 239 |
+
"mlp.experts.150.up_proj",
|
| 240 |
+
"mlp.experts.151.down_proj",
|
| 241 |
+
"mlp.experts.151.gate_proj",
|
| 242 |
+
"mlp.experts.151.up_proj",
|
| 243 |
+
"mlp.experts.152.down_proj",
|
| 244 |
+
"mlp.experts.152.gate_proj",
|
| 245 |
+
"mlp.experts.152.up_proj",
|
| 246 |
+
"mlp.experts.153.down_proj",
|
| 247 |
+
"mlp.experts.153.gate_proj",
|
| 248 |
+
"mlp.experts.153.up_proj",
|
| 249 |
+
"mlp.experts.154.down_proj",
|
| 250 |
+
"mlp.experts.154.gate_proj",
|
| 251 |
+
"mlp.experts.154.up_proj",
|
| 252 |
+
"mlp.experts.155.down_proj",
|
| 253 |
+
"mlp.experts.155.gate_proj",
|
| 254 |
+
"mlp.experts.155.up_proj",
|
| 255 |
+
"mlp.experts.156.down_proj",
|
| 256 |
+
"mlp.experts.156.gate_proj",
|
| 257 |
+
"mlp.experts.156.up_proj",
|
| 258 |
+
"mlp.experts.157.down_proj",
|
| 259 |
+
"mlp.experts.157.gate_proj",
|
| 260 |
+
"mlp.experts.157.up_proj",
|
| 261 |
+
"mlp.experts.158.down_proj",
|
| 262 |
+
"mlp.experts.158.gate_proj",
|
| 263 |
+
"mlp.experts.158.up_proj",
|
| 264 |
+
"mlp.experts.159.down_proj",
|
| 265 |
+
"mlp.experts.159.gate_proj",
|
| 266 |
+
"mlp.experts.159.up_proj",
|
| 267 |
+
"mlp.experts.16.down_proj",
|
| 268 |
+
"mlp.experts.16.gate_proj",
|
| 269 |
+
"mlp.experts.16.up_proj",
|
| 270 |
+
"mlp.experts.160.down_proj",
|
| 271 |
+
"mlp.experts.160.gate_proj",
|
| 272 |
+
"mlp.experts.160.up_proj",
|
| 273 |
+
"mlp.experts.161.down_proj",
|
| 274 |
+
"mlp.experts.161.gate_proj",
|
| 275 |
+
"mlp.experts.161.up_proj",
|
| 276 |
+
"mlp.experts.162.down_proj",
|
| 277 |
+
"mlp.experts.162.gate_proj",
|
| 278 |
+
"mlp.experts.162.up_proj",
|
| 279 |
+
"mlp.experts.163.down_proj",
|
| 280 |
+
"mlp.experts.163.gate_proj",
|
| 281 |
+
"mlp.experts.163.up_proj",
|
| 282 |
+
"mlp.experts.164.down_proj",
|
| 283 |
+
"mlp.experts.164.gate_proj",
|
| 284 |
+
"mlp.experts.164.up_proj",
|
| 285 |
+
"mlp.experts.165.down_proj",
|
| 286 |
+
"mlp.experts.165.gate_proj",
|
| 287 |
+
"mlp.experts.165.up_proj",
|
| 288 |
+
"mlp.experts.166.down_proj",
|
| 289 |
+
"mlp.experts.166.gate_proj",
|
| 290 |
+
"mlp.experts.166.up_proj",
|
| 291 |
+
"mlp.experts.167.down_proj",
|
| 292 |
+
"mlp.experts.167.gate_proj",
|
| 293 |
+
"mlp.experts.167.up_proj",
|
| 294 |
+
"mlp.experts.168.down_proj",
|
| 295 |
+
"mlp.experts.168.gate_proj",
|
| 296 |
+
"mlp.experts.168.up_proj",
|
| 297 |
+
"mlp.experts.169.down_proj",
|
| 298 |
+
"mlp.experts.169.gate_proj",
|
| 299 |
+
"mlp.experts.169.up_proj",
|
| 300 |
+
"mlp.experts.17.down_proj",
|
| 301 |
+
"mlp.experts.17.gate_proj",
|
| 302 |
+
"mlp.experts.17.up_proj",
|
| 303 |
+
"mlp.experts.170.down_proj",
|
| 304 |
+
"mlp.experts.170.gate_proj",
|
| 305 |
+
"mlp.experts.170.up_proj",
|
| 306 |
+
"mlp.experts.171.down_proj",
|
| 307 |
+
"mlp.experts.171.gate_proj",
|
| 308 |
+
"mlp.experts.171.up_proj",
|
| 309 |
+
"mlp.experts.172.down_proj",
|
| 310 |
+
"mlp.experts.172.gate_proj",
|
| 311 |
+
"mlp.experts.172.up_proj",
|
| 312 |
+
"mlp.experts.173.down_proj",
|
| 313 |
+
"mlp.experts.173.gate_proj",
|
| 314 |
+
"mlp.experts.173.up_proj",
|
| 315 |
+
"mlp.experts.174.down_proj",
|
| 316 |
+
"mlp.experts.174.gate_proj",
|
| 317 |
+
"mlp.experts.174.up_proj",
|
| 318 |
+
"mlp.experts.175.down_proj",
|
| 319 |
+
"mlp.experts.175.gate_proj",
|
| 320 |
+
"mlp.experts.175.up_proj",
|
| 321 |
+
"mlp.experts.176.down_proj",
|
| 322 |
+
"mlp.experts.176.gate_proj",
|
| 323 |
+
"mlp.experts.176.up_proj",
|
| 324 |
+
"mlp.experts.177.down_proj",
|
| 325 |
+
"mlp.experts.177.gate_proj",
|
| 326 |
+
"mlp.experts.177.up_proj",
|
| 327 |
+
"mlp.experts.178.down_proj",
|
| 328 |
+
"mlp.experts.178.gate_proj",
|
| 329 |
+
"mlp.experts.178.up_proj",
|
| 330 |
+
"mlp.experts.179.down_proj",
|
| 331 |
+
"mlp.experts.179.gate_proj",
|
| 332 |
+
"mlp.experts.179.up_proj",
|
| 333 |
+
"mlp.experts.18.down_proj",
|
| 334 |
+
"mlp.experts.18.gate_proj",
|
| 335 |
+
"mlp.experts.18.up_proj",
|
| 336 |
+
"mlp.experts.180.down_proj",
|
| 337 |
+
"mlp.experts.180.gate_proj",
|
| 338 |
+
"mlp.experts.180.up_proj",
|
| 339 |
+
"mlp.experts.181.down_proj",
|
| 340 |
+
"mlp.experts.181.gate_proj",
|
| 341 |
+
"mlp.experts.181.up_proj",
|
| 342 |
+
"mlp.experts.182.down_proj",
|
| 343 |
+
"mlp.experts.182.gate_proj",
|
| 344 |
+
"mlp.experts.182.up_proj",
|
| 345 |
+
"mlp.experts.183.down_proj",
|
| 346 |
+
"mlp.experts.183.gate_proj",
|
| 347 |
+
"mlp.experts.183.up_proj",
|
| 348 |
+
"mlp.experts.184.down_proj",
|
| 349 |
+
"mlp.experts.184.gate_proj",
|
| 350 |
+
"mlp.experts.184.up_proj",
|
| 351 |
+
"mlp.experts.185.down_proj",
|
| 352 |
+
"mlp.experts.185.gate_proj",
|
| 353 |
+
"mlp.experts.185.up_proj",
|
| 354 |
+
"mlp.experts.186.down_proj",
|
| 355 |
+
"mlp.experts.186.gate_proj",
|
| 356 |
+
"mlp.experts.186.up_proj",
|
| 357 |
+
"mlp.experts.187.down_proj",
|
| 358 |
+
"mlp.experts.187.gate_proj",
|
| 359 |
+
"mlp.experts.187.up_proj",
|
| 360 |
+
"mlp.experts.188.down_proj",
|
| 361 |
+
"mlp.experts.188.gate_proj",
|
| 362 |
+
"mlp.experts.188.up_proj",
|
| 363 |
+
"mlp.experts.189.down_proj",
|
| 364 |
+
"mlp.experts.189.gate_proj",
|
| 365 |
+
"mlp.experts.189.up_proj",
|
| 366 |
+
"mlp.experts.19.down_proj",
|
| 367 |
+
"mlp.experts.19.gate_proj",
|
| 368 |
+
"mlp.experts.19.up_proj",
|
| 369 |
+
"mlp.experts.190.down_proj",
|
| 370 |
+
"mlp.experts.190.gate_proj",
|
| 371 |
+
"mlp.experts.190.up_proj",
|
| 372 |
+
"mlp.experts.191.down_proj",
|
| 373 |
+
"mlp.experts.191.gate_proj",
|
| 374 |
+
"mlp.experts.191.up_proj",
|
| 375 |
+
"mlp.experts.192.down_proj",
|
| 376 |
+
"mlp.experts.192.gate_proj",
|
| 377 |
+
"mlp.experts.192.up_proj",
|
| 378 |
+
"mlp.experts.193.down_proj",
|
| 379 |
+
"mlp.experts.193.gate_proj",
|
| 380 |
+
"mlp.experts.193.up_proj",
|
| 381 |
+
"mlp.experts.194.down_proj",
|
| 382 |
+
"mlp.experts.194.gate_proj",
|
| 383 |
+
"mlp.experts.194.up_proj",
|
| 384 |
+
"mlp.experts.195.down_proj",
|
| 385 |
+
"mlp.experts.195.gate_proj",
|
| 386 |
+
"mlp.experts.195.up_proj",
|
| 387 |
+
"mlp.experts.196.down_proj",
|
| 388 |
+
"mlp.experts.196.gate_proj",
|
| 389 |
+
"mlp.experts.196.up_proj",
|
| 390 |
+
"mlp.experts.197.down_proj",
|
| 391 |
+
"mlp.experts.197.gate_proj",
|
| 392 |
+
"mlp.experts.197.up_proj",
|
| 393 |
+
"mlp.experts.198.down_proj",
|
| 394 |
+
"mlp.experts.198.gate_proj",
|
| 395 |
+
"mlp.experts.198.up_proj",
|
| 396 |
+
"mlp.experts.199.down_proj",
|
| 397 |
+
"mlp.experts.199.gate_proj",
|
| 398 |
+
"mlp.experts.199.up_proj",
|
| 399 |
+
"mlp.experts.2.down_proj",
|
| 400 |
+
"mlp.experts.2.gate_proj",
|
| 401 |
+
"mlp.experts.2.up_proj",
|
| 402 |
+
"mlp.experts.20.down_proj",
|
| 403 |
+
"mlp.experts.20.gate_proj",
|
| 404 |
+
"mlp.experts.20.up_proj",
|
| 405 |
+
"mlp.experts.200.down_proj",
|
| 406 |
+
"mlp.experts.200.gate_proj",
|
| 407 |
+
"mlp.experts.200.up_proj",
|
| 408 |
+
"mlp.experts.201.down_proj",
|
| 409 |
+
"mlp.experts.201.gate_proj",
|
| 410 |
+
"mlp.experts.201.up_proj",
|
| 411 |
+
"mlp.experts.202.down_proj",
|
| 412 |
+
"mlp.experts.202.gate_proj",
|
| 413 |
+
"mlp.experts.202.up_proj",
|
| 414 |
+
"mlp.experts.203.down_proj",
|
| 415 |
+
"mlp.experts.203.gate_proj",
|
| 416 |
+
"mlp.experts.203.up_proj",
|
| 417 |
+
"mlp.experts.204.down_proj",
|
| 418 |
+
"mlp.experts.204.gate_proj",
|
| 419 |
+
"mlp.experts.204.up_proj",
|
| 420 |
+
"mlp.experts.205.down_proj",
|
| 421 |
+
"mlp.experts.205.gate_proj",
|
| 422 |
+
"mlp.experts.205.up_proj",
|
| 423 |
+
"mlp.experts.206.down_proj",
|
| 424 |
+
"mlp.experts.206.gate_proj",
|
| 425 |
+
"mlp.experts.206.up_proj",
|
| 426 |
+
"mlp.experts.207.down_proj",
|
| 427 |
+
"mlp.experts.207.gate_proj",
|
| 428 |
+
"mlp.experts.207.up_proj",
|
| 429 |
+
"mlp.experts.208.down_proj",
|
| 430 |
+
"mlp.experts.208.gate_proj",
|
| 431 |
+
"mlp.experts.208.up_proj",
|
| 432 |
+
"mlp.experts.209.down_proj",
|
| 433 |
+
"mlp.experts.209.gate_proj",
|
| 434 |
+
"mlp.experts.209.up_proj",
|
| 435 |
+
"mlp.experts.21.down_proj",
|
| 436 |
+
"mlp.experts.21.gate_proj",
|
| 437 |
+
"mlp.experts.21.up_proj",
|
| 438 |
+
"mlp.experts.210.down_proj",
|
| 439 |
+
"mlp.experts.210.gate_proj",
|
| 440 |
+
"mlp.experts.210.up_proj",
|
| 441 |
+
"mlp.experts.211.down_proj",
|
| 442 |
+
"mlp.experts.211.gate_proj",
|
| 443 |
+
"mlp.experts.211.up_proj",
|
| 444 |
+
"mlp.experts.212.down_proj",
|
| 445 |
+
"mlp.experts.212.gate_proj",
|
| 446 |
+
"mlp.experts.212.up_proj",
|
| 447 |
+
"mlp.experts.213.down_proj",
|
| 448 |
+
"mlp.experts.213.gate_proj",
|
| 449 |
+
"mlp.experts.213.up_proj",
|
| 450 |
+
"mlp.experts.214.down_proj",
|
| 451 |
+
"mlp.experts.214.gate_proj",
|
| 452 |
+
"mlp.experts.214.up_proj",
|
| 453 |
+
"mlp.experts.215.down_proj",
|
| 454 |
+
"mlp.experts.215.gate_proj",
|
| 455 |
+
"mlp.experts.215.up_proj",
|
| 456 |
+
"mlp.experts.216.down_proj",
|
| 457 |
+
"mlp.experts.216.gate_proj",
|
| 458 |
+
"mlp.experts.216.up_proj",
|
| 459 |
+
"mlp.experts.217.down_proj",
|
| 460 |
+
"mlp.experts.217.gate_proj",
|
| 461 |
+
"mlp.experts.217.up_proj",
|
| 462 |
+
"mlp.experts.218.down_proj",
|
| 463 |
+
"mlp.experts.218.gate_proj",
|
| 464 |
+
"mlp.experts.218.up_proj",
|
| 465 |
+
"mlp.experts.219.down_proj",
|
| 466 |
+
"mlp.experts.219.gate_proj",
|
| 467 |
+
"mlp.experts.219.up_proj",
|
| 468 |
+
"mlp.experts.22.down_proj",
|
| 469 |
+
"mlp.experts.22.gate_proj",
|
| 470 |
+
"mlp.experts.22.up_proj",
|
| 471 |
+
"mlp.experts.220.down_proj",
|
| 472 |
+
"mlp.experts.220.gate_proj",
|
| 473 |
+
"mlp.experts.220.up_proj",
|
| 474 |
+
"mlp.experts.221.down_proj",
|
| 475 |
+
"mlp.experts.221.gate_proj",
|
| 476 |
+
"mlp.experts.221.up_proj",
|
| 477 |
+
"mlp.experts.222.down_proj",
|
| 478 |
+
"mlp.experts.222.gate_proj",
|
| 479 |
+
"mlp.experts.222.up_proj",
|
| 480 |
+
"mlp.experts.223.down_proj",
|
| 481 |
+
"mlp.experts.223.gate_proj",
|
| 482 |
+
"mlp.experts.223.up_proj",
|
| 483 |
+
"mlp.experts.224.down_proj",
|
| 484 |
+
"mlp.experts.224.gate_proj",
|
| 485 |
+
"mlp.experts.224.up_proj",
|
| 486 |
+
"mlp.experts.225.down_proj",
|
| 487 |
+
"mlp.experts.225.gate_proj",
|
| 488 |
+
"mlp.experts.225.up_proj",
|
| 489 |
+
"mlp.experts.226.down_proj",
|
| 490 |
+
"mlp.experts.226.gate_proj",
|
| 491 |
+
"mlp.experts.226.up_proj",
|
| 492 |
+
"mlp.experts.227.down_proj",
|
| 493 |
+
"mlp.experts.227.gate_proj",
|
| 494 |
+
"mlp.experts.227.up_proj",
|
| 495 |
+
"mlp.experts.228.down_proj",
|
| 496 |
+
"mlp.experts.228.gate_proj",
|
| 497 |
+
"mlp.experts.228.up_proj",
|
| 498 |
+
"mlp.experts.229.down_proj",
|
| 499 |
+
"mlp.experts.229.gate_proj",
|
| 500 |
+
"mlp.experts.229.up_proj",
|
| 501 |
+
"mlp.experts.23.down_proj",
|
| 502 |
+
"mlp.experts.23.gate_proj",
|
| 503 |
+
"mlp.experts.23.up_proj",
|
| 504 |
+
"mlp.experts.230.down_proj",
|
| 505 |
+
"mlp.experts.230.gate_proj",
|
| 506 |
+
"mlp.experts.230.up_proj",
|
| 507 |
+
"mlp.experts.231.down_proj",
|
| 508 |
+
"mlp.experts.231.gate_proj",
|
| 509 |
+
"mlp.experts.231.up_proj",
|
| 510 |
+
"mlp.experts.232.down_proj",
|
| 511 |
+
"mlp.experts.232.gate_proj",
|
| 512 |
+
"mlp.experts.232.up_proj",
|
| 513 |
+
"mlp.experts.233.down_proj",
|
| 514 |
+
"mlp.experts.233.gate_proj",
|
| 515 |
+
"mlp.experts.233.up_proj",
|
| 516 |
+
"mlp.experts.234.down_proj",
|
| 517 |
+
"mlp.experts.234.gate_proj",
|
| 518 |
+
"mlp.experts.234.up_proj",
|
| 519 |
+
"mlp.experts.235.down_proj",
|
| 520 |
+
"mlp.experts.235.gate_proj",
|
| 521 |
+
"mlp.experts.235.up_proj",
|
| 522 |
+
"mlp.experts.236.down_proj",
|
| 523 |
+
"mlp.experts.236.gate_proj",
|
| 524 |
+
"mlp.experts.236.up_proj",
|
| 525 |
+
"mlp.experts.237.down_proj",
|
| 526 |
+
"mlp.experts.237.gate_proj",
|
| 527 |
+
"mlp.experts.237.up_proj",
|
| 528 |
+
"mlp.experts.238.down_proj",
|
| 529 |
+
"mlp.experts.238.gate_proj",
|
| 530 |
+
"mlp.experts.238.up_proj",
|
| 531 |
+
"mlp.experts.239.down_proj",
|
| 532 |
+
"mlp.experts.239.gate_proj",
|
| 533 |
+
"mlp.experts.239.up_proj",
|
| 534 |
+
"mlp.experts.24.down_proj",
|
| 535 |
+
"mlp.experts.24.gate_proj",
|
| 536 |
+
"mlp.experts.24.up_proj",
|
| 537 |
+
"mlp.experts.240.down_proj",
|
| 538 |
+
"mlp.experts.240.gate_proj",
|
| 539 |
+
"mlp.experts.240.up_proj",
|
| 540 |
+
"mlp.experts.241.down_proj",
|
| 541 |
+
"mlp.experts.241.gate_proj",
|
| 542 |
+
"mlp.experts.241.up_proj",
|
| 543 |
+
"mlp.experts.242.down_proj",
|
| 544 |
+
"mlp.experts.242.gate_proj",
|
| 545 |
+
"mlp.experts.242.up_proj",
|
| 546 |
+
"mlp.experts.243.down_proj",
|
| 547 |
+
"mlp.experts.243.gate_proj",
|
| 548 |
+
"mlp.experts.243.up_proj",
|
| 549 |
+
"mlp.experts.244.down_proj",
|
| 550 |
+
"mlp.experts.244.gate_proj",
|
| 551 |
+
"mlp.experts.244.up_proj",
|
| 552 |
+
"mlp.experts.245.down_proj",
|
| 553 |
+
"mlp.experts.245.gate_proj",
|
| 554 |
+
"mlp.experts.245.up_proj",
|
| 555 |
+
"mlp.experts.246.down_proj",
|
| 556 |
+
"mlp.experts.246.gate_proj",
|
| 557 |
+
"mlp.experts.246.up_proj",
|
| 558 |
+
"mlp.experts.247.down_proj",
|
| 559 |
+
"mlp.experts.247.gate_proj",
|
| 560 |
+
"mlp.experts.247.up_proj",
|
| 561 |
+
"mlp.experts.248.down_proj",
|
| 562 |
+
"mlp.experts.248.gate_proj",
|
| 563 |
+
"mlp.experts.248.up_proj",
|
| 564 |
+
"mlp.experts.249.down_proj",
|
| 565 |
+
"mlp.experts.249.gate_proj",
|
| 566 |
+
"mlp.experts.249.up_proj",
|
| 567 |
+
"mlp.experts.25.down_proj",
|
| 568 |
+
"mlp.experts.25.gate_proj",
|
| 569 |
+
"mlp.experts.25.up_proj",
|
| 570 |
+
"mlp.experts.250.down_proj",
|
| 571 |
+
"mlp.experts.250.gate_proj",
|
| 572 |
+
"mlp.experts.250.up_proj",
|
| 573 |
+
"mlp.experts.251.down_proj",
|
| 574 |
+
"mlp.experts.251.gate_proj",
|
| 575 |
+
"mlp.experts.251.up_proj",
|
| 576 |
+
"mlp.experts.252.down_proj",
|
| 577 |
+
"mlp.experts.252.gate_proj",
|
| 578 |
+
"mlp.experts.252.up_proj",
|
| 579 |
+
"mlp.experts.253.down_proj",
|
| 580 |
+
"mlp.experts.253.gate_proj",
|
| 581 |
+
"mlp.experts.253.up_proj",
|
| 582 |
+
"mlp.experts.254.down_proj",
|
| 583 |
+
"mlp.experts.254.gate_proj",
|
| 584 |
+
"mlp.experts.254.up_proj",
|
| 585 |
+
"mlp.experts.255.down_proj",
|
| 586 |
+
"mlp.experts.255.gate_proj",
|
| 587 |
+
"mlp.experts.255.up_proj",
|
| 588 |
+
"mlp.experts.26.down_proj",
|
| 589 |
+
"mlp.experts.26.gate_proj",
|
| 590 |
+
"mlp.experts.26.up_proj",
|
| 591 |
+
"mlp.experts.27.down_proj",
|
| 592 |
+
"mlp.experts.27.gate_proj",
|
| 593 |
+
"mlp.experts.27.up_proj",
|
| 594 |
+
"mlp.experts.28.down_proj",
|
| 595 |
+
"mlp.experts.28.gate_proj",
|
| 596 |
+
"mlp.experts.28.up_proj",
|
| 597 |
+
"mlp.experts.29.down_proj",
|
| 598 |
+
"mlp.experts.29.gate_proj",
|
| 599 |
+
"mlp.experts.29.up_proj",
|
| 600 |
+
"mlp.experts.3.down_proj",
|
| 601 |
+
"mlp.experts.3.gate_proj",
|
| 602 |
+
"mlp.experts.3.up_proj",
|
| 603 |
+
"mlp.experts.30.down_proj",
|
| 604 |
+
"mlp.experts.30.gate_proj",
|
| 605 |
+
"mlp.experts.30.up_proj",
|
| 606 |
+
"mlp.experts.31.down_proj",
|
| 607 |
+
"mlp.experts.31.gate_proj",
|
| 608 |
+
"mlp.experts.31.up_proj",
|
| 609 |
+
"mlp.experts.32.down_proj",
|
| 610 |
+
"mlp.experts.32.gate_proj",
|
| 611 |
+
"mlp.experts.32.up_proj",
|
| 612 |
+
"mlp.experts.33.down_proj",
|
| 613 |
+
"mlp.experts.33.gate_proj",
|
| 614 |
+
"mlp.experts.33.up_proj",
|
| 615 |
+
"mlp.experts.34.down_proj",
|
| 616 |
+
"mlp.experts.34.gate_proj",
|
| 617 |
+
"mlp.experts.34.up_proj",
|
| 618 |
+
"mlp.experts.35.down_proj",
|
| 619 |
+
"mlp.experts.35.gate_proj",
|
| 620 |
+
"mlp.experts.35.up_proj",
|
| 621 |
+
"mlp.experts.36.down_proj",
|
| 622 |
+
"mlp.experts.36.gate_proj",
|
| 623 |
+
"mlp.experts.36.up_proj",
|
| 624 |
+
"mlp.experts.37.down_proj",
|
| 625 |
+
"mlp.experts.37.gate_proj",
|
| 626 |
+
"mlp.experts.37.up_proj",
|
| 627 |
+
"mlp.experts.38.down_proj",
|
| 628 |
+
"mlp.experts.38.gate_proj",
|
| 629 |
+
"mlp.experts.38.up_proj",
|
| 630 |
+
"mlp.experts.39.down_proj",
|
| 631 |
+
"mlp.experts.39.gate_proj",
|
| 632 |
+
"mlp.experts.39.up_proj",
|
| 633 |
+
"mlp.experts.4.down_proj",
|
| 634 |
+
"mlp.experts.4.gate_proj",
|
| 635 |
+
"mlp.experts.4.up_proj",
|
| 636 |
+
"mlp.experts.40.down_proj",
|
| 637 |
+
"mlp.experts.40.gate_proj",
|
| 638 |
+
"mlp.experts.40.up_proj",
|
| 639 |
+
"mlp.experts.41.down_proj",
|
| 640 |
+
"mlp.experts.41.gate_proj",
|
| 641 |
+
"mlp.experts.41.up_proj",
|
| 642 |
+
"mlp.experts.42.down_proj",
|
| 643 |
+
"mlp.experts.42.gate_proj",
|
| 644 |
+
"mlp.experts.42.up_proj",
|
| 645 |
+
"mlp.experts.43.down_proj",
|
| 646 |
+
"mlp.experts.43.gate_proj",
|
| 647 |
+
"mlp.experts.43.up_proj",
|
| 648 |
+
"mlp.experts.44.down_proj",
|
| 649 |
+
"mlp.experts.44.gate_proj",
|
| 650 |
+
"mlp.experts.44.up_proj",
|
| 651 |
+
"mlp.experts.45.down_proj",
|
| 652 |
+
"mlp.experts.45.gate_proj",
|
| 653 |
+
"mlp.experts.45.up_proj",
|
| 654 |
+
"mlp.experts.46.down_proj",
|
| 655 |
+
"mlp.experts.46.gate_proj",
|
| 656 |
+
"mlp.experts.46.up_proj",
|
| 657 |
+
"mlp.experts.47.down_proj",
|
| 658 |
+
"mlp.experts.47.gate_proj",
|
| 659 |
+
"mlp.experts.47.up_proj",
|
| 660 |
+
"mlp.experts.48.down_proj",
|
| 661 |
+
"mlp.experts.48.gate_proj",
|
| 662 |
+
"mlp.experts.48.up_proj",
|
| 663 |
+
"mlp.experts.49.down_proj",
|
| 664 |
+
"mlp.experts.49.gate_proj",
|
| 665 |
+
"mlp.experts.49.up_proj",
|
| 666 |
+
"mlp.experts.5.down_proj",
|
| 667 |
+
"mlp.experts.5.gate_proj",
|
| 668 |
+
"mlp.experts.5.up_proj",
|
| 669 |
+
"mlp.experts.50.down_proj",
|
| 670 |
+
"mlp.experts.50.gate_proj",
|
| 671 |
+
"mlp.experts.50.up_proj",
|
| 672 |
+
"mlp.experts.51.down_proj",
|
| 673 |
+
"mlp.experts.51.gate_proj",
|
| 674 |
+
"mlp.experts.51.up_proj",
|
| 675 |
+
"mlp.experts.52.down_proj",
|
| 676 |
+
"mlp.experts.52.gate_proj",
|
| 677 |
+
"mlp.experts.52.up_proj",
|
| 678 |
+
"mlp.experts.53.down_proj",
|
| 679 |
+
"mlp.experts.53.gate_proj",
|
| 680 |
+
"mlp.experts.53.up_proj",
|
| 681 |
+
"mlp.experts.54.down_proj",
|
| 682 |
+
"mlp.experts.54.gate_proj",
|
| 683 |
+
"mlp.experts.54.up_proj",
|
| 684 |
+
"mlp.experts.55.down_proj",
|
| 685 |
+
"mlp.experts.55.gate_proj",
|
| 686 |
+
"mlp.experts.55.up_proj",
|
| 687 |
+
"mlp.experts.56.down_proj",
|
| 688 |
+
"mlp.experts.56.gate_proj",
|
| 689 |
+
"mlp.experts.56.up_proj",
|
| 690 |
+
"mlp.experts.57.down_proj",
|
| 691 |
+
"mlp.experts.57.gate_proj",
|
| 692 |
+
"mlp.experts.57.up_proj",
|
| 693 |
+
"mlp.experts.58.down_proj",
|
| 694 |
+
"mlp.experts.58.gate_proj",
|
| 695 |
+
"mlp.experts.58.up_proj",
|
| 696 |
+
"mlp.experts.59.down_proj",
|
| 697 |
+
"mlp.experts.59.gate_proj",
|
| 698 |
+
"mlp.experts.59.up_proj",
|
| 699 |
+
"mlp.experts.6.down_proj",
|
| 700 |
+
"mlp.experts.6.gate_proj",
|
| 701 |
+
"mlp.experts.6.up_proj",
|
| 702 |
+
"mlp.experts.60.down_proj",
|
| 703 |
+
"mlp.experts.60.gate_proj",
|
| 704 |
+
"mlp.experts.60.up_proj",
|
| 705 |
+
"mlp.experts.61.down_proj",
|
| 706 |
+
"mlp.experts.61.gate_proj",
|
| 707 |
+
"mlp.experts.61.up_proj",
|
| 708 |
+
"mlp.experts.62.down_proj",
|
| 709 |
+
"mlp.experts.62.gate_proj",
|
| 710 |
+
"mlp.experts.62.up_proj",
|
| 711 |
+
"mlp.experts.63.down_proj",
|
| 712 |
+
"mlp.experts.63.gate_proj",
|
| 713 |
+
"mlp.experts.63.up_proj",
|
| 714 |
+
"mlp.experts.64.down_proj",
|
| 715 |
+
"mlp.experts.64.gate_proj",
|
| 716 |
+
"mlp.experts.64.up_proj",
|
| 717 |
+
"mlp.experts.65.down_proj",
|
| 718 |
+
"mlp.experts.65.gate_proj",
|
| 719 |
+
"mlp.experts.65.up_proj",
|
| 720 |
+
"mlp.experts.66.down_proj",
|
| 721 |
+
"mlp.experts.66.gate_proj",
|
| 722 |
+
"mlp.experts.66.up_proj",
|
| 723 |
+
"mlp.experts.67.down_proj",
|
| 724 |
+
"mlp.experts.67.gate_proj",
|
| 725 |
+
"mlp.experts.67.up_proj",
|
| 726 |
+
"mlp.experts.68.down_proj",
|
| 727 |
+
"mlp.experts.68.gate_proj",
|
| 728 |
+
"mlp.experts.68.up_proj",
|
| 729 |
+
"mlp.experts.69.down_proj",
|
| 730 |
+
"mlp.experts.69.gate_proj",
|
| 731 |
+
"mlp.experts.69.up_proj",
|
| 732 |
+
"mlp.experts.7.down_proj",
|
| 733 |
+
"mlp.experts.7.gate_proj",
|
| 734 |
+
"mlp.experts.7.up_proj",
|
| 735 |
+
"mlp.experts.70.down_proj",
|
| 736 |
+
"mlp.experts.70.gate_proj",
|
| 737 |
+
"mlp.experts.70.up_proj",
|
| 738 |
+
"mlp.experts.71.down_proj",
|
| 739 |
+
"mlp.experts.71.gate_proj",
|
| 740 |
+
"mlp.experts.71.up_proj",
|
| 741 |
+
"mlp.experts.72.down_proj",
|
| 742 |
+
"mlp.experts.72.gate_proj",
|
| 743 |
+
"mlp.experts.72.up_proj",
|
| 744 |
+
"mlp.experts.73.down_proj",
|
| 745 |
+
"mlp.experts.73.gate_proj",
|
| 746 |
+
"mlp.experts.73.up_proj",
|
| 747 |
+
"mlp.experts.74.down_proj",
|
| 748 |
+
"mlp.experts.74.gate_proj",
|
| 749 |
+
"mlp.experts.74.up_proj",
|
| 750 |
+
"mlp.experts.75.down_proj",
|
| 751 |
+
"mlp.experts.75.gate_proj",
|
| 752 |
+
"mlp.experts.75.up_proj",
|
| 753 |
+
"mlp.experts.76.down_proj",
|
| 754 |
+
"mlp.experts.76.gate_proj",
|
| 755 |
+
"mlp.experts.76.up_proj",
|
| 756 |
+
"mlp.experts.77.down_proj",
|
| 757 |
+
"mlp.experts.77.gate_proj",
|
| 758 |
+
"mlp.experts.77.up_proj",
|
| 759 |
+
"mlp.experts.78.down_proj",
|
| 760 |
+
"mlp.experts.78.gate_proj",
|
| 761 |
+
"mlp.experts.78.up_proj",
|
| 762 |
+
"mlp.experts.79.down_proj",
|
| 763 |
+
"mlp.experts.79.gate_proj",
|
| 764 |
+
"mlp.experts.79.up_proj",
|
| 765 |
+
"mlp.experts.8.down_proj",
|
| 766 |
+
"mlp.experts.8.gate_proj",
|
| 767 |
+
"mlp.experts.8.up_proj",
|
| 768 |
+
"mlp.experts.80.down_proj",
|
| 769 |
+
"mlp.experts.80.gate_proj",
|
| 770 |
+
"mlp.experts.80.up_proj",
|
| 771 |
+
"mlp.experts.81.down_proj",
|
| 772 |
+
"mlp.experts.81.gate_proj",
|
| 773 |
+
"mlp.experts.81.up_proj",
|
| 774 |
+
"mlp.experts.82.down_proj",
|
| 775 |
+
"mlp.experts.82.gate_proj",
|
| 776 |
+
"mlp.experts.82.up_proj",
|
| 777 |
+
"mlp.experts.83.down_proj",
|
| 778 |
+
"mlp.experts.83.gate_proj",
|
| 779 |
+
"mlp.experts.83.up_proj",
|
| 780 |
+
"mlp.experts.84.down_proj",
|
| 781 |
+
"mlp.experts.84.gate_proj",
|
| 782 |
+
"mlp.experts.84.up_proj",
|
| 783 |
+
"mlp.experts.85.down_proj",
|
| 784 |
+
"mlp.experts.85.gate_proj",
|
| 785 |
+
"mlp.experts.85.up_proj",
|
| 786 |
+
"mlp.experts.86.down_proj",
|
| 787 |
+
"mlp.experts.86.gate_proj",
|
| 788 |
+
"mlp.experts.86.up_proj",
|
| 789 |
+
"mlp.experts.87.down_proj",
|
| 790 |
+
"mlp.experts.87.gate_proj",
|
| 791 |
+
"mlp.experts.87.up_proj",
|
| 792 |
+
"mlp.experts.88.down_proj",
|
| 793 |
+
"mlp.experts.88.gate_proj",
|
| 794 |
+
"mlp.experts.88.up_proj",
|
| 795 |
+
"mlp.experts.89.down_proj",
|
| 796 |
+
"mlp.experts.89.gate_proj",
|
| 797 |
+
"mlp.experts.89.up_proj",
|
| 798 |
+
"mlp.experts.9.down_proj",
|
| 799 |
+
"mlp.experts.9.gate_proj",
|
| 800 |
+
"mlp.experts.9.up_proj",
|
| 801 |
+
"mlp.experts.90.down_proj",
|
| 802 |
+
"mlp.experts.90.gate_proj",
|
| 803 |
+
"mlp.experts.90.up_proj",
|
| 804 |
+
"mlp.experts.91.down_proj",
|
| 805 |
+
"mlp.experts.91.gate_proj",
|
| 806 |
+
"mlp.experts.91.up_proj",
|
| 807 |
+
"mlp.experts.92.down_proj",
|
| 808 |
+
"mlp.experts.92.gate_proj",
|
| 809 |
+
"mlp.experts.92.up_proj",
|
| 810 |
+
"mlp.experts.93.down_proj",
|
| 811 |
+
"mlp.experts.93.gate_proj",
|
| 812 |
+
"mlp.experts.93.up_proj",
|
| 813 |
+
"mlp.experts.94.down_proj",
|
| 814 |
+
"mlp.experts.94.gate_proj",
|
| 815 |
+
"mlp.experts.94.up_proj",
|
| 816 |
+
"mlp.experts.95.down_proj",
|
| 817 |
+
"mlp.experts.95.gate_proj",
|
| 818 |
+
"mlp.experts.95.up_proj",
|
| 819 |
+
"mlp.experts.96.down_proj",
|
| 820 |
+
"mlp.experts.96.gate_proj",
|
| 821 |
+
"mlp.experts.96.up_proj",
|
| 822 |
+
"mlp.experts.97.down_proj",
|
| 823 |
+
"mlp.experts.97.gate_proj",
|
| 824 |
+
"mlp.experts.97.up_proj",
|
| 825 |
+
"mlp.experts.98.down_proj",
|
| 826 |
+
"mlp.experts.98.gate_proj",
|
| 827 |
+
"mlp.experts.98.up_proj",
|
| 828 |
+
"mlp.experts.99.down_proj",
|
| 829 |
+
"mlp.experts.99.gate_proj",
|
| 830 |
+
"mlp.experts.99.up_proj",
|
| 831 |
+
"self_attn.k_proj",
|
| 832 |
+
"self_attn.o_proj",
|
| 833 |
+
"self_attn.q_proj",
|
| 834 |
+
"self_attn.v_proj"
|
| 835 |
+
]
|
| 836 |
+
]
|
| 837 |
+
}
|
tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:06b9509352d2af50381ab2247e083b80d32d5c0aba91c272ca9ff729b6a0e523
|
| 3 |
+
size 19989325
|
tokenizer_config.json
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_prefix_space": false,
|
| 3 |
+
"audio_bos_token": "<|audio_start|>",
|
| 4 |
+
"audio_eos_token": "<|audio_end|>",
|
| 5 |
+
"audio_token": "<|audio_pad|>",
|
| 6 |
+
"backend": "tokenizers",
|
| 7 |
+
"bos_token": null,
|
| 8 |
+
"clean_up_tokenization_spaces": false,
|
| 9 |
+
"eos_token": "<|im_end|>",
|
| 10 |
+
"errors": "replace",
|
| 11 |
+
"image_token": "<|image_pad|>",
|
| 12 |
+
"is_local": true,
|
| 13 |
+
"local_files_only": false,
|
| 14 |
+
"model_max_length": 262144,
|
| 15 |
+
"model_specific_special_tokens": {
|
| 16 |
+
"audio_bos_token": "<|audio_start|>",
|
| 17 |
+
"audio_eos_token": "<|audio_end|>",
|
| 18 |
+
"audio_token": "<|audio_pad|>",
|
| 19 |
+
"image_token": "<|image_pad|>",
|
| 20 |
+
"video_token": "<|video_pad|>",
|
| 21 |
+
"vision_bos_token": "<|vision_start|>",
|
| 22 |
+
"vision_eos_token": "<|vision_end|>"
|
| 23 |
+
},
|
| 24 |
+
"pad_token": "<|endoftext|>",
|
| 25 |
+
"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+",
|
| 26 |
+
"processor_class": "Qwen3VLProcessor",
|
| 27 |
+
"split_special_tokens": false,
|
| 28 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 29 |
+
"unk_token": null,
|
| 30 |
+
"video_token": "<|video_pad|>",
|
| 31 |
+
"vision_bos_token": "<|vision_start|>",
|
| 32 |
+
"vision_eos_token": "<|vision_end|>"
|
| 33 |
+
}
|