edwardcapriolo commited on
Commit
6fb3e1f
·
verified ·
1 Parent(s): 2616815

JQ quantized model

Browse files
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
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
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
README.md CHANGED
@@ -1,3 +1,311 @@
 
 
 
 
 
 
 
 
1
  ---
 
 
 
2
  license: apache-2.0
 
 
 
 
3
  ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Deliverance Quantization
2
+
3
+ This model directory was generated by Deliverance from a local source model.
4
+
5
+ - Target dtype: `Q4`
6
+ - Quantized tensors: `196`
7
+ - Provenance manifest: `deliverance-quantization.json`
8
+
9
  ---
10
+
11
+ ---
12
+ library_name: transformers
13
  license: apache-2.0
14
+ license_link: https://huggingface.co/Qwen/Qwen3-0.6B/blob/main/LICENSE
15
+ pipeline_tag: text-generation
16
+ base_model:
17
+ - Qwen/Qwen3-0.6B-Base
18
  ---
19
+
20
+ # Qwen3-0.6B
21
+ <a href="https://chat.qwen.ai/" target="_blank" style="margin: 2px;">
22
+ <img alt="Chat" src="https://img.shields.io/badge/%F0%9F%92%9C%EF%B8%8F%20Qwen%20Chat%20-536af5" style="display: inline-block; vertical-align: middle;"/>
23
+ </a>
24
+
25
+ ## Qwen3 Highlights
26
+
27
+ Qwen3 is the latest generation of large language models in Qwen series, offering a comprehensive suite of dense and mixture-of-experts (MoE) models. Built upon extensive training, Qwen3 delivers groundbreaking advancements in reasoning, instruction-following, agent capabilities, and multilingual support, with the following key features:
28
+
29
+ - **Uniquely support of seamless switching between thinking mode** (for complex logical reasoning, math, and coding) and **non-thinking mode** (for efficient, general-purpose dialogue) **within single model**, ensuring optimal performance across various scenarios.
30
+ - **Significantly enhancement in its reasoning capabilities**, surpassing previous QwQ (in thinking mode) and Qwen2.5 instruct models (in non-thinking mode) on mathematics, code generation, and commonsense logical reasoning.
31
+ - **Superior human preference alignment**, excelling in creative writing, role-playing, multi-turn dialogues, and instruction following, to deliver a more natural, engaging, and immersive conversational experience.
32
+ - **Expertise in agent capabilities**, enabling precise integration with external tools in both thinking and unthinking modes and achieving leading performance among open-source models in complex agent-based tasks.
33
+ - **Support of 100+ languages and dialects** with strong capabilities for **multilingual instruction following** and **translation**.
34
+
35
+ ## Model Overview
36
+
37
+ **Qwen3-0.6B** has the following features:
38
+ - Type: Causal Language Models
39
+ - Training Stage: Pretraining & Post-training
40
+ - Number of Parameters: 0.6B
41
+ - Number of Paramaters (Non-Embedding): 0.44B
42
+ - Number of Layers: 28
43
+ - Number of Attention Heads (GQA): 16 for Q and 8 for KV
44
+ - Context Length: 32,768
45
+
46
+ For more details, including benchmark evaluation, hardware requirements, and inference performance, please refer to our [blog](https://qwenlm.github.io/blog/qwen3/), [GitHub](https://github.com/QwenLM/Qwen3), and [Documentation](https://qwen.readthedocs.io/en/latest/).
47
+
48
+ > [!TIP]
49
+ > If you encounter significant endless repetitions, please refer to the [Best Practices](#best-practices) section for optimal sampling parameters, and set the ``presence_penalty`` to 1.5.
50
+
51
+ ## Quickstart
52
+
53
+ The code of Qwen3 has been in the latest Hugging Face `transformers` and we advise you to use the latest version of `transformers`.
54
+
55
+ With `transformers<4.51.0`, you will encounter the following error:
56
+ ```
57
+ KeyError: 'qwen3'
58
+ ```
59
+
60
+ The following contains a code snippet illustrating how to use the model generate content based on given inputs.
61
+ ```python
62
+ from transformers import AutoModelForCausalLM, AutoTokenizer
63
+
64
+ model_name = "Qwen/Qwen3-0.6B"
65
+
66
+ # load the tokenizer and the model
67
+ tokenizer = AutoTokenizer.from_pretrained(model_name)
68
+ model = AutoModelForCausalLM.from_pretrained(
69
+ model_name,
70
+ torch_dtype="auto",
71
+ device_map="auto"
72
+ )
73
+
74
+ # prepare the model input
75
+ prompt = "Give me a short introduction to large language model."
76
+ messages = [
77
+ {"role": "user", "content": prompt}
78
+ ]
79
+ text = tokenizer.apply_chat_template(
80
+ messages,
81
+ tokenize=False,
82
+ add_generation_prompt=True,
83
+ enable_thinking=True # Switches between thinking and non-thinking modes. Default is True.
84
+ )
85
+ model_inputs = tokenizer([text], return_tensors="pt").to(model.device)
86
+
87
+ # conduct text completion
88
+ generated_ids = model.generate(
89
+ **model_inputs,
90
+ max_new_tokens=32768
91
+ )
92
+ output_ids = generated_ids[0][len(model_inputs.input_ids[0]):].tolist()
93
+
94
+ # parsing thinking content
95
+ try:
96
+ # rindex finding 151668 (</think>)
97
+ index = len(output_ids) - output_ids[::-1].index(151668)
98
+ except ValueError:
99
+ index = 0
100
+
101
+ thinking_content = tokenizer.decode(output_ids[:index], skip_special_tokens=True).strip("\n")
102
+ content = tokenizer.decode(output_ids[index:], skip_special_tokens=True).strip("\n")
103
+
104
+ print("thinking content:", thinking_content)
105
+ print("content:", content)
106
+ ```
107
+
108
+ For deployment, you can use `sglang>=0.4.6.post1` or `vllm>=0.8.5` or to create an OpenAI-compatible API endpoint:
109
+ - SGLang:
110
+ ```shell
111
+ python -m sglang.launch_server --model-path Qwen/Qwen3-0.6B --reasoning-parser qwen3
112
+ ```
113
+ - vLLM:
114
+ ```shell
115
+ vllm serve Qwen/Qwen3-0.6B --enable-reasoning --reasoning-parser deepseek_r1
116
+ ```
117
+
118
+ For local use, applications such as Ollama, LMStudio, MLX-LM, llama.cpp, and KTransformers have also supported Qwen3.
119
+
120
+ ## Switching Between Thinking and Non-Thinking Mode
121
+
122
+ > [!TIP]
123
+ > The `enable_thinking` switch is also available in APIs created by SGLang and vLLM.
124
+ > Please refer to our documentation for [SGLang](https://qwen.readthedocs.io/en/latest/deployment/sglang.html#thinking-non-thinking-modes) and [vLLM](https://qwen.readthedocs.io/en/latest/deployment/vllm.html#thinking-non-thinking-modes) users.
125
+
126
+ ### `enable_thinking=True`
127
+
128
+ By default, Qwen3 has thinking capabilities enabled, similar to QwQ-32B. This means the model will use its reasoning abilities to enhance the quality of generated responses. For example, when explicitly setting `enable_thinking=True` or leaving it as the default value in `tokenizer.apply_chat_template`, the model will engage its thinking mode.
129
+
130
+ ```python
131
+ text = tokenizer.apply_chat_template(
132
+ messages,
133
+ tokenize=False,
134
+ add_generation_prompt=True,
135
+ enable_thinking=True # True is the default value for enable_thinking
136
+ )
137
+ ```
138
+
139
+ In this mode, the model will generate think content wrapped in a `<think>...</think>` block, followed by the final response.
140
+
141
+ > [!NOTE]
142
+ > For thinking mode, use `Temperature=0.6`, `TopP=0.95`, `TopK=20`, and `MinP=0` (the default setting in `generation_config.json`). **DO NOT use greedy decoding**, as it can lead to performance degradation and endless repetitions. For more detailed guidance, please refer to the [Best Practices](#best-practices) section.
143
+
144
+
145
+ ### `enable_thinking=False`
146
+
147
+ We provide a hard switch to strictly disable the model's thinking behavior, aligning its functionality with the previous Qwen2.5-Instruct models. This mode is particularly useful in scenarios where disabling thinking is essential for enhancing efficiency.
148
+
149
+ ```python
150
+ text = tokenizer.apply_chat_template(
151
+ messages,
152
+ tokenize=False,
153
+ add_generation_prompt=True,
154
+ enable_thinking=False # Setting enable_thinking=False disables thinking mode
155
+ )
156
+ ```
157
+
158
+ In this mode, the model will not generate any think content and will not include a `<think>...</think>` block.
159
+
160
+ > [!NOTE]
161
+ > For non-thinking mode, we suggest using `Temperature=0.7`, `TopP=0.8`, `TopK=20`, and `MinP=0`. For more detailed guidance, please refer to the [Best Practices](#best-practices) section.
162
+
163
+ ### Advanced Usage: Switching Between Thinking and Non-Thinking Modes via User Input
164
+
165
+ We provide a soft switch mechanism that allows users to dynamically control the model's behavior when `enable_thinking=True`. Specifically, you can add `/think` and `/no_think` to user prompts or system messages to switch the model's thinking mode from turn to turn. The model will follow the most recent instruction in multi-turn conversations.
166
+
167
+ Here is an example of a multi-turn conversation:
168
+
169
+ ```python
170
+ from transformers import AutoModelForCausalLM, AutoTokenizer
171
+
172
+ class QwenChatbot:
173
+ def __init__(self, model_name="Qwen/Qwen3-0.6B"):
174
+ self.tokenizer = AutoTokenizer.from_pretrained(model_name)
175
+ self.model = AutoModelForCausalLM.from_pretrained(model_name)
176
+ self.history = []
177
+
178
+ def generate_response(self, user_input):
179
+ messages = self.history + [{"role": "user", "content": user_input}]
180
+
181
+ text = self.tokenizer.apply_chat_template(
182
+ messages,
183
+ tokenize=False,
184
+ add_generation_prompt=True
185
+ )
186
+
187
+ inputs = self.tokenizer(text, return_tensors="pt")
188
+ response_ids = self.model.generate(**inputs, max_new_tokens=32768)[0][len(inputs.input_ids[0]):].tolist()
189
+ response = self.tokenizer.decode(response_ids, skip_special_tokens=True)
190
+
191
+ # Update history
192
+ self.history.append({"role": "user", "content": user_input})
193
+ self.history.append({"role": "assistant", "content": response})
194
+
195
+ return response
196
+
197
+ # Example Usage
198
+ if __name__ == "__main__":
199
+ chatbot = QwenChatbot()
200
+
201
+ # First input (without /think or /no_think tags, thinking mode is enabled by default)
202
+ user_input_1 = "How many r's in strawberries?"
203
+ print(f"User: {user_input_1}")
204
+ response_1 = chatbot.generate_response(user_input_1)
205
+ print(f"Bot: {response_1}")
206
+ print("----------------------")
207
+
208
+ # Second input with /no_think
209
+ user_input_2 = "Then, how many r's in blueberries? /no_think"
210
+ print(f"User: {user_input_2}")
211
+ response_2 = chatbot.generate_response(user_input_2)
212
+ print(f"Bot: {response_2}")
213
+ print("----------------------")
214
+
215
+ # Third input with /think
216
+ user_input_3 = "Really? /think"
217
+ print(f"User: {user_input_3}")
218
+ response_3 = chatbot.generate_response(user_input_3)
219
+ print(f"Bot: {response_3}")
220
+ ```
221
+
222
+ > [!NOTE]
223
+ > For API compatibility, when `enable_thinking=True`, regardless of whether the user uses `/think` or `/no_think`, the model will always output a block wrapped in `<think>...</think>`. However, the content inside this block may be empty if thinking is disabled.
224
+ > When `enable_thinking=False`, the soft switches are not valid. Regardless of any `/think` or `/no_think` tags input by the user, the model will not generate think content and will not include a `<think>...</think>` block.
225
+
226
+ ## Agentic Use
227
+
228
+ Qwen3 excels in tool calling capabilities. We recommend using [Qwen-Agent](https://github.com/QwenLM/Qwen-Agent) to make the best use of agentic ability of Qwen3. Qwen-Agent encapsulates tool-calling templates and tool-calling parsers internally, greatly reducing coding complexity.
229
+
230
+ To define the available tools, you can use the MCP configuration file, use the integrated tool of Qwen-Agent, or integrate other tools by yourself.
231
+ ```python
232
+ from qwen_agent.agents import Assistant
233
+
234
+ # Define LLM
235
+ llm_cfg = {
236
+ 'model': 'Qwen3-0.6B',
237
+
238
+ # Use the endpoint provided by Alibaba Model Studio:
239
+ # 'model_type': 'qwen_dashscope',
240
+ # 'api_key': os.getenv('DASHSCOPE_API_KEY'),
241
+
242
+ # Use a custom endpoint compatible with OpenAI API:
243
+ 'model_server': 'http://localhost:8000/v1', # api_base
244
+ 'api_key': 'EMPTY',
245
+
246
+ # Other parameters:
247
+ # 'generate_cfg': {
248
+ # # Add: When the response content is `<think>this is the thought</think>this is the answer;
249
+ # # Do not add: When the response has been separated by reasoning_content and content.
250
+ # 'thought_in_content': True,
251
+ # },
252
+ }
253
+
254
+ # Define Tools
255
+ tools = [
256
+ {'mcpServers': { # You can specify the MCP configuration file
257
+ 'time': {
258
+ 'command': 'uvx',
259
+ 'args': ['mcp-server-time', '--local-timezone=Asia/Shanghai']
260
+ },
261
+ "fetch": {
262
+ "command": "uvx",
263
+ "args": ["mcp-server-fetch"]
264
+ }
265
+ }
266
+ },
267
+ 'code_interpreter', # Built-in tools
268
+ ]
269
+
270
+ # Define Agent
271
+ bot = Assistant(llm=llm_cfg, function_list=tools)
272
+
273
+ # Streaming generation
274
+ messages = [{'role': 'user', 'content': 'https://qwenlm.github.io/blog/ Introduce the latest developments of Qwen'}]
275
+ for responses in bot.run(messages=messages):
276
+ pass
277
+ print(responses)
278
+ ```
279
+
280
+ ## Best Practices
281
+
282
+ To achieve optimal performance, we recommend the following settings:
283
+
284
+ 1. **Sampling Parameters**:
285
+ - For thinking mode (`enable_thinking=True`), use `Temperature=0.6`, `TopP=0.95`, `TopK=20`, and `MinP=0`. **DO NOT use greedy decoding**, as it can lead to performance degradation and endless repetitions.
286
+ - For non-thinking mode (`enable_thinking=False`), we suggest using `Temperature=0.7`, `TopP=0.8`, `TopK=20`, and `MinP=0`.
287
+ - For supported frameworks, you can adjust the `presence_penalty` parameter between 0 and 2 to reduce endless repetitions. However, using a higher value may occasionally result in language mixing and a slight decrease in model performance.
288
+
289
+ 2. **Adequate Output Length**: We recommend using an output length of 32,768 tokens for most queries. For benchmarking on highly complex problems, such as those found in math and programming competitions, we suggest setting the max output length to 38,912 tokens. This provides the model with sufficient space to generate detailed and comprehensive responses, thereby enhancing its overall performance.
290
+
291
+ 3. **Standardize Output Format**: We recommend using prompts to standardize model outputs when benchmarking.
292
+ - **Math Problems**: Include "Please reason step by step, and put your final answer within \boxed{}." in the prompt.
293
+ - **Multiple-Choice Questions**: Add the following JSON structure to the prompt to standardize responses: "Please show your choice in the `answer` field with only the choice letter, e.g., `"answer": "C"`."
294
+
295
+ 4. **No Thinking Content in History**: In multi-turn conversations, the historical model output should only include the final output part and does not need to include the thinking content. It is implemented in the provided chat template in Jinja2. However, for frameworks that do not directly use the Jinja2 chat template, it is up to the developers to ensure that the best practice is followed.
296
+
297
+ ### Citation
298
+
299
+ If you find our work helpful, feel free to give us a cite.
300
+
301
+ ```
302
+ @misc{qwen3technicalreport,
303
+ title={Qwen3 Technical Report},
304
+ author={Qwen Team},
305
+ year={2025},
306
+ eprint={2505.09388},
307
+ archivePrefix={arXiv},
308
+ primaryClass={cs.CL},
309
+ url={https://arxiv.org/abs/2505.09388},
310
+ }
311
+ ```
config.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Qwen3ForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "bos_token_id": 151643,
8
+ "eos_token_id": 151645,
9
+ "head_dim": 128,
10
+ "hidden_act": "silu",
11
+ "hidden_size": 1024,
12
+ "initializer_range": 0.02,
13
+ "intermediate_size": 3072,
14
+ "max_position_embeddings": 40960,
15
+ "max_window_layers": 28,
16
+ "model_type": "qwen3",
17
+ "num_attention_heads": 16,
18
+ "num_hidden_layers": 28,
19
+ "num_key_value_heads": 8,
20
+ "rms_norm_eps": 1e-06,
21
+ "rope_scaling": null,
22
+ "rope_theta": 1000000,
23
+ "sliding_window": null,
24
+ "tie_word_embeddings": true,
25
+ "torch_dtype": "bfloat16",
26
+ "transformers_version": "4.51.0",
27
+ "use_cache": true,
28
+ "use_sliding_window": false,
29
+ "vocab_size": 151936
30
+ }
deliverance-quantization.json ADDED
@@ -0,0 +1,2809 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "schemaVersion" : 1,
3
+ "createdAt" : "2026-06-22T23:33:14.207790Z",
4
+ "sourceDirectory" : "/Users/edward.capriolo/.deliverance/Qwen_Qwen3-0.6B",
5
+ "outputDirectory" : "/Users/edward.capriolo/.deliverance/Qwen_Qwen3-0.6B-JQ4.tmp-6dfbb64f-4c90-4dcc-87cc-6dfac58edcf2",
6
+ "targetType" : "Q4",
7
+ "sourceSizeBytes" : 1519196091,
8
+ "outputSizeBytes" : 913665075,
9
+ "tensorTransforms" : [ {
10
+ "name" : "model.layers.16.self_attn.k_norm.weight",
11
+ "sourceDType" : "BF16",
12
+ "outputDType" : "BF16",
13
+ "sourceShape" : [ 1, 128 ],
14
+ "outputShape" : [ 1, 128 ],
15
+ "quantized" : false,
16
+ "sidecars" : [ ],
17
+ "oneDimensionalToRowVector" : false
18
+ }, {
19
+ "name" : "model.layers.27.mlp.gate_proj.weight",
20
+ "sourceDType" : "BF16",
21
+ "outputDType" : "Q4",
22
+ "sourceShape" : [ 3072, 1024 ],
23
+ "outputShape" : [ 3072, 1024 ],
24
+ "quantized" : true,
25
+ "sidecars" : [ "model.layers.27.mlp.gate_proj.weight.qb" ],
26
+ "oneDimensionalToRowVector" : false
27
+ }, {
28
+ "name" : "model.norm.weight",
29
+ "sourceDType" : "BF16",
30
+ "outputDType" : "BF16",
31
+ "sourceShape" : [ 1, 1024 ],
32
+ "outputShape" : [ 1, 1024 ],
33
+ "quantized" : false,
34
+ "sidecars" : [ ],
35
+ "oneDimensionalToRowVector" : false
36
+ }, {
37
+ "name" : "model.layers.2.self_attn.q_proj.weight",
38
+ "sourceDType" : "BF16",
39
+ "outputDType" : "Q4",
40
+ "sourceShape" : [ 2048, 1024 ],
41
+ "outputShape" : [ 2048, 1024 ],
42
+ "quantized" : true,
43
+ "sidecars" : [ "model.layers.2.self_attn.q_proj.weight.qb" ],
44
+ "oneDimensionalToRowVector" : false
45
+ }, {
46
+ "name" : "model.layers.27.self_attn.q_norm.weight",
47
+ "sourceDType" : "BF16",
48
+ "outputDType" : "BF16",
49
+ "sourceShape" : [ 1, 128 ],
50
+ "outputShape" : [ 1, 128 ],
51
+ "quantized" : false,
52
+ "sidecars" : [ ],
53
+ "oneDimensionalToRowVector" : false
54
+ }, {
55
+ "name" : "model.layers.7.self_attn.v_proj.weight",
56
+ "sourceDType" : "BF16",
57
+ "outputDType" : "Q4",
58
+ "sourceShape" : [ 1024, 1024 ],
59
+ "outputShape" : [ 1024, 1024 ],
60
+ "quantized" : true,
61
+ "sidecars" : [ "model.layers.7.self_attn.v_proj.weight.qb" ],
62
+ "oneDimensionalToRowVector" : false
63
+ }, {
64
+ "name" : "model.layers.25.post_attention_layernorm.weight",
65
+ "sourceDType" : "BF16",
66
+ "outputDType" : "BF16",
67
+ "sourceShape" : [ 1, 1024 ],
68
+ "outputShape" : [ 1, 1024 ],
69
+ "quantized" : false,
70
+ "sidecars" : [ ],
71
+ "oneDimensionalToRowVector" : false
72
+ }, {
73
+ "name" : "model.layers.11.self_attn.k_norm.weight",
74
+ "sourceDType" : "BF16",
75
+ "outputDType" : "BF16",
76
+ "sourceShape" : [ 1, 128 ],
77
+ "outputShape" : [ 1, 128 ],
78
+ "quantized" : false,
79
+ "sidecars" : [ ],
80
+ "oneDimensionalToRowVector" : false
81
+ }, {
82
+ "name" : "model.layers.16.self_attn.q_norm.weight",
83
+ "sourceDType" : "BF16",
84
+ "outputDType" : "BF16",
85
+ "sourceShape" : [ 1, 128 ],
86
+ "outputShape" : [ 1, 128 ],
87
+ "quantized" : false,
88
+ "sidecars" : [ ],
89
+ "oneDimensionalToRowVector" : false
90
+ }, {
91
+ "name" : "model.layers.5.post_attention_layernorm.weight",
92
+ "sourceDType" : "BF16",
93
+ "outputDType" : "BF16",
94
+ "sourceShape" : [ 1, 1024 ],
95
+ "outputShape" : [ 1, 1024 ],
96
+ "quantized" : false,
97
+ "sidecars" : [ ],
98
+ "oneDimensionalToRowVector" : false
99
+ }, {
100
+ "name" : "model.layers.8.self_attn.k_norm.weight",
101
+ "sourceDType" : "BF16",
102
+ "outputDType" : "BF16",
103
+ "sourceShape" : [ 1, 128 ],
104
+ "outputShape" : [ 1, 128 ],
105
+ "quantized" : false,
106
+ "sidecars" : [ ],
107
+ "oneDimensionalToRowVector" : false
108
+ }, {
109
+ "name" : "model.layers.9.input_layernorm.weight",
110
+ "sourceDType" : "BF16",
111
+ "outputDType" : "BF16",
112
+ "sourceShape" : [ 1, 1024 ],
113
+ "outputShape" : [ 1, 1024 ],
114
+ "quantized" : false,
115
+ "sidecars" : [ ],
116
+ "oneDimensionalToRowVector" : false
117
+ }, {
118
+ "name" : "model.layers.22.self_attn.q_norm.weight",
119
+ "sourceDType" : "BF16",
120
+ "outputDType" : "BF16",
121
+ "sourceShape" : [ 1, 128 ],
122
+ "outputShape" : [ 1, 128 ],
123
+ "quantized" : false,
124
+ "sidecars" : [ ],
125
+ "oneDimensionalToRowVector" : false
126
+ }, {
127
+ "name" : "model.layers.2.self_attn.v_proj.weight",
128
+ "sourceDType" : "BF16",
129
+ "outputDType" : "Q4",
130
+ "sourceShape" : [ 1024, 1024 ],
131
+ "outputShape" : [ 1024, 1024 ],
132
+ "quantized" : true,
133
+ "sidecars" : [ "model.layers.2.self_attn.v_proj.weight.qb" ],
134
+ "oneDimensionalToRowVector" : false
135
+ }, {
136
+ "name" : "model.layers.11.self_attn.q_norm.weight",
137
+ "sourceDType" : "BF16",
138
+ "outputDType" : "BF16",
139
+ "sourceShape" : [ 1, 128 ],
140
+ "outputShape" : [ 1, 128 ],
141
+ "quantized" : false,
142
+ "sidecars" : [ ],
143
+ "oneDimensionalToRowVector" : false
144
+ }, {
145
+ "name" : "model.layers.0.input_layernorm.weight",
146
+ "sourceDType" : "BF16",
147
+ "outputDType" : "BF16",
148
+ "sourceShape" : [ 1, 1024 ],
149
+ "outputShape" : [ 1, 1024 ],
150
+ "quantized" : false,
151
+ "sidecars" : [ ],
152
+ "oneDimensionalToRowVector" : false
153
+ }, {
154
+ "name" : "model.layers.10.self_attn.k_proj.weight",
155
+ "sourceDType" : "BF16",
156
+ "outputDType" : "Q4",
157
+ "sourceShape" : [ 1024, 1024 ],
158
+ "outputShape" : [ 1024, 1024 ],
159
+ "quantized" : true,
160
+ "sidecars" : [ "model.layers.10.self_attn.k_proj.weight.qb" ],
161
+ "oneDimensionalToRowVector" : false
162
+ }, {
163
+ "name" : "model.layers.17.self_attn.k_proj.weight",
164
+ "sourceDType" : "BF16",
165
+ "outputDType" : "Q4",
166
+ "sourceShape" : [ 1024, 1024 ],
167
+ "outputShape" : [ 1024, 1024 ],
168
+ "quantized" : true,
169
+ "sidecars" : [ "model.layers.17.self_attn.k_proj.weight.qb" ],
170
+ "oneDimensionalToRowVector" : false
171
+ }, {
172
+ "name" : "model.layers.7.self_attn.k_proj.weight",
173
+ "sourceDType" : "BF16",
174
+ "outputDType" : "Q4",
175
+ "sourceShape" : [ 1024, 1024 ],
176
+ "outputShape" : [ 1024, 1024 ],
177
+ "quantized" : true,
178
+ "sidecars" : [ "model.layers.7.self_attn.k_proj.weight.qb" ],
179
+ "oneDimensionalToRowVector" : false
180
+ }, {
181
+ "name" : "model.layers.21.self_attn.v_proj.weight",
182
+ "sourceDType" : "BF16",
183
+ "outputDType" : "Q4",
184
+ "sourceShape" : [ 1024, 1024 ],
185
+ "outputShape" : [ 1024, 1024 ],
186
+ "quantized" : true,
187
+ "sidecars" : [ "model.layers.21.self_attn.v_proj.weight.qb" ],
188
+ "oneDimensionalToRowVector" : false
189
+ }, {
190
+ "name" : "model.layers.11.mlp.down_proj.weight",
191
+ "sourceDType" : "BF16",
192
+ "outputDType" : "Q4",
193
+ "sourceShape" : [ 1024, 3072 ],
194
+ "outputShape" : [ 1024, 3072 ],
195
+ "quantized" : true,
196
+ "sidecars" : [ "model.layers.11.mlp.down_proj.weight.qb" ],
197
+ "oneDimensionalToRowVector" : false
198
+ }, {
199
+ "name" : "model.layers.17.self_attn.o_proj.weight",
200
+ "sourceDType" : "BF16",
201
+ "outputDType" : "Q4",
202
+ "sourceShape" : [ 1024, 2048 ],
203
+ "outputShape" : [ 1024, 2048 ],
204
+ "quantized" : true,
205
+ "sidecars" : [ "model.layers.17.self_attn.o_proj.weight.qb" ],
206
+ "oneDimensionalToRowVector" : false
207
+ }, {
208
+ "name" : "model.layers.17.self_attn.q_proj.weight",
209
+ "sourceDType" : "BF16",
210
+ "outputDType" : "Q4",
211
+ "sourceShape" : [ 2048, 1024 ],
212
+ "outputShape" : [ 2048, 1024 ],
213
+ "quantized" : true,
214
+ "sidecars" : [ "model.layers.17.self_attn.q_proj.weight.qb" ],
215
+ "oneDimensionalToRowVector" : false
216
+ }, {
217
+ "name" : "model.layers.15.input_layernorm.weight",
218
+ "sourceDType" : "BF16",
219
+ "outputDType" : "BF16",
220
+ "sourceShape" : [ 1, 1024 ],
221
+ "outputShape" : [ 1, 1024 ],
222
+ "quantized" : false,
223
+ "sidecars" : [ ],
224
+ "oneDimensionalToRowVector" : false
225
+ }, {
226
+ "name" : "model.layers.2.self_attn.k_proj.weight",
227
+ "sourceDType" : "BF16",
228
+ "outputDType" : "Q4",
229
+ "sourceShape" : [ 1024, 1024 ],
230
+ "outputShape" : [ 1024, 1024 ],
231
+ "quantized" : true,
232
+ "sidecars" : [ "model.layers.2.self_attn.k_proj.weight.qb" ],
233
+ "oneDimensionalToRowVector" : false
234
+ }, {
235
+ "name" : "model.layers.2.self_attn.o_proj.weight",
236
+ "sourceDType" : "BF16",
237
+ "outputDType" : "Q4",
238
+ "sourceShape" : [ 1024, 2048 ],
239
+ "outputShape" : [ 1024, 2048 ],
240
+ "quantized" : true,
241
+ "sidecars" : [ "model.layers.2.self_attn.o_proj.weight.qb" ],
242
+ "oneDimensionalToRowVector" : false
243
+ }, {
244
+ "name" : "model.layers.27.self_attn.k_norm.weight",
245
+ "sourceDType" : "BF16",
246
+ "outputDType" : "BF16",
247
+ "sourceShape" : [ 1, 128 ],
248
+ "outputShape" : [ 1, 128 ],
249
+ "quantized" : false,
250
+ "sidecars" : [ ],
251
+ "oneDimensionalToRowVector" : false
252
+ }, {
253
+ "name" : "model.layers.22.input_layernorm.weight",
254
+ "sourceDType" : "BF16",
255
+ "outputDType" : "BF16",
256
+ "sourceShape" : [ 1, 1024 ],
257
+ "outputShape" : [ 1, 1024 ],
258
+ "quantized" : false,
259
+ "sidecars" : [ ],
260
+ "oneDimensionalToRowVector" : false
261
+ }, {
262
+ "name" : "model.layers.7.self_attn.q_proj.weight",
263
+ "sourceDType" : "BF16",
264
+ "outputDType" : "Q4",
265
+ "sourceShape" : [ 2048, 1024 ],
266
+ "outputShape" : [ 2048, 1024 ],
267
+ "quantized" : true,
268
+ "sidecars" : [ "model.layers.7.self_attn.q_proj.weight.qb" ],
269
+ "oneDimensionalToRowVector" : false
270
+ }, {
271
+ "name" : "model.layers.12.self_attn.k_proj.weight",
272
+ "sourceDType" : "BF16",
273
+ "outputDType" : "Q4",
274
+ "sourceShape" : [ 1024, 1024 ],
275
+ "outputShape" : [ 1024, 1024 ],
276
+ "quantized" : true,
277
+ "sidecars" : [ "model.layers.12.self_attn.k_proj.weight.qb" ],
278
+ "oneDimensionalToRowVector" : false
279
+ }, {
280
+ "name" : "model.layers.7.self_attn.o_proj.weight",
281
+ "sourceDType" : "BF16",
282
+ "outputDType" : "Q4",
283
+ "sourceShape" : [ 1024, 2048 ],
284
+ "outputShape" : [ 1024, 2048 ],
285
+ "quantized" : true,
286
+ "sidecars" : [ "model.layers.7.self_attn.o_proj.weight.qb" ],
287
+ "oneDimensionalToRowVector" : false
288
+ }, {
289
+ "name" : "model.layers.6.post_attention_layernorm.weight",
290
+ "sourceDType" : "BF16",
291
+ "outputDType" : "BF16",
292
+ "sourceShape" : [ 1, 1024 ],
293
+ "outputShape" : [ 1, 1024 ],
294
+ "quantized" : false,
295
+ "sidecars" : [ ],
296
+ "oneDimensionalToRowVector" : false
297
+ }, {
298
+ "name" : "model.layers.22.self_attn.k_norm.weight",
299
+ "sourceDType" : "BF16",
300
+ "outputDType" : "BF16",
301
+ "sourceShape" : [ 1, 128 ],
302
+ "outputShape" : [ 1, 128 ],
303
+ "quantized" : false,
304
+ "sidecars" : [ ],
305
+ "oneDimensionalToRowVector" : false
306
+ }, {
307
+ "name" : "model.layers.10.mlp.gate_proj.weight",
308
+ "sourceDType" : "BF16",
309
+ "outputDType" : "Q4",
310
+ "sourceShape" : [ 3072, 1024 ],
311
+ "outputShape" : [ 3072, 1024 ],
312
+ "quantized" : true,
313
+ "sidecars" : [ "model.layers.10.mlp.gate_proj.weight.qb" ],
314
+ "oneDimensionalToRowVector" : false
315
+ }, {
316
+ "name" : "model.layers.9.self_attn.q_proj.weight",
317
+ "sourceDType" : "BF16",
318
+ "outputDType" : "Q4",
319
+ "sourceShape" : [ 2048, 1024 ],
320
+ "outputShape" : [ 2048, 1024 ],
321
+ "quantized" : true,
322
+ "sidecars" : [ "model.layers.9.self_attn.q_proj.weight.qb" ],
323
+ "oneDimensionalToRowVector" : false
324
+ }, {
325
+ "name" : "model.layers.1.self_attn.k_norm.weight",
326
+ "sourceDType" : "BF16",
327
+ "outputDType" : "BF16",
328
+ "sourceShape" : [ 1, 128 ],
329
+ "outputShape" : [ 1, 128 ],
330
+ "quantized" : false,
331
+ "sidecars" : [ ],
332
+ "oneDimensionalToRowVector" : false
333
+ }, {
334
+ "name" : "model.layers.26.self_attn.o_proj.weight",
335
+ "sourceDType" : "BF16",
336
+ "outputDType" : "Q4",
337
+ "sourceShape" : [ 1024, 2048 ],
338
+ "outputShape" : [ 1024, 2048 ],
339
+ "quantized" : true,
340
+ "sidecars" : [ "model.layers.26.self_attn.o_proj.weight.qb" ],
341
+ "oneDimensionalToRowVector" : false
342
+ }, {
343
+ "name" : "model.layers.3.post_attention_layernorm.weight",
344
+ "sourceDType" : "BF16",
345
+ "outputDType" : "BF16",
346
+ "sourceShape" : [ 1, 1024 ],
347
+ "outputShape" : [ 1, 1024 ],
348
+ "quantized" : false,
349
+ "sidecars" : [ ],
350
+ "oneDimensionalToRowVector" : false
351
+ }, {
352
+ "name" : "model.layers.26.post_attention_layernorm.weight",
353
+ "sourceDType" : "BF16",
354
+ "outputDType" : "BF16",
355
+ "sourceShape" : [ 1, 1024 ],
356
+ "outputShape" : [ 1, 1024 ],
357
+ "quantized" : false,
358
+ "sidecars" : [ ],
359
+ "oneDimensionalToRowVector" : false
360
+ }, {
361
+ "name" : "model.layers.21.self_attn.o_proj.weight",
362
+ "sourceDType" : "BF16",
363
+ "outputDType" : "Q4",
364
+ "sourceShape" : [ 1024, 2048 ],
365
+ "outputShape" : [ 1024, 2048 ],
366
+ "quantized" : true,
367
+ "sidecars" : [ "model.layers.21.self_attn.o_proj.weight.qb" ],
368
+ "oneDimensionalToRowVector" : false
369
+ }, {
370
+ "name" : "model.layers.26.self_attn.q_proj.weight",
371
+ "sourceDType" : "BF16",
372
+ "outputDType" : "Q4",
373
+ "sourceShape" : [ 2048, 1024 ],
374
+ "outputShape" : [ 2048, 1024 ],
375
+ "quantized" : true,
376
+ "sidecars" : [ "model.layers.26.self_attn.q_proj.weight.qb" ],
377
+ "oneDimensionalToRowVector" : false
378
+ }, {
379
+ "name" : "model.layers.15.self_attn.k_proj.weight",
380
+ "sourceDType" : "BF16",
381
+ "outputDType" : "Q4",
382
+ "sourceShape" : [ 1024, 1024 ],
383
+ "outputShape" : [ 1024, 1024 ],
384
+ "quantized" : true,
385
+ "sidecars" : [ "model.layers.15.self_attn.k_proj.weight.qb" ],
386
+ "oneDimensionalToRowVector" : false
387
+ }, {
388
+ "name" : "model.layers.9.self_attn.k_proj.weight",
389
+ "sourceDType" : "BF16",
390
+ "outputDType" : "Q4",
391
+ "sourceShape" : [ 1024, 1024 ],
392
+ "outputShape" : [ 1024, 1024 ],
393
+ "quantized" : true,
394
+ "sidecars" : [ "model.layers.9.self_attn.k_proj.weight.qb" ],
395
+ "oneDimensionalToRowVector" : false
396
+ }, {
397
+ "name" : "model.layers.21.self_attn.q_proj.weight",
398
+ "sourceDType" : "BF16",
399
+ "outputDType" : "Q4",
400
+ "sourceShape" : [ 2048, 1024 ],
401
+ "outputShape" : [ 2048, 1024 ],
402
+ "quantized" : true,
403
+ "sidecars" : [ "model.layers.21.self_attn.q_proj.weight.qb" ],
404
+ "oneDimensionalToRowVector" : false
405
+ }, {
406
+ "name" : "model.layers.1.self_attn.q_norm.weight",
407
+ "sourceDType" : "BF16",
408
+ "outputDType" : "BF16",
409
+ "sourceShape" : [ 1, 128 ],
410
+ "outputShape" : [ 1, 128 ],
411
+ "quantized" : false,
412
+ "sidecars" : [ ],
413
+ "oneDimensionalToRowVector" : false
414
+ }, {
415
+ "name" : "model.layers.4.self_attn.k_proj.weight",
416
+ "sourceDType" : "BF16",
417
+ "outputDType" : "Q4",
418
+ "sourceShape" : [ 1024, 1024 ],
419
+ "outputShape" : [ 1024, 1024 ],
420
+ "quantized" : true,
421
+ "sidecars" : [ "model.layers.4.self_attn.k_proj.weight.qb" ],
422
+ "oneDimensionalToRowVector" : false
423
+ }, {
424
+ "name" : "model.layers.4.self_attn.o_proj.weight",
425
+ "sourceDType" : "BF16",
426
+ "outputDType" : "Q4",
427
+ "sourceShape" : [ 1024, 2048 ],
428
+ "outputShape" : [ 1024, 2048 ],
429
+ "quantized" : true,
430
+ "sidecars" : [ "model.layers.4.self_attn.o_proj.weight.qb" ],
431
+ "oneDimensionalToRowVector" : false
432
+ }, {
433
+ "name" : "model.layers.15.self_attn.q_proj.weight",
434
+ "sourceDType" : "BF16",
435
+ "outputDType" : "Q4",
436
+ "sourceShape" : [ 2048, 1024 ],
437
+ "outputShape" : [ 2048, 1024 ],
438
+ "quantized" : true,
439
+ "sidecars" : [ "model.layers.15.self_attn.q_proj.weight.qb" ],
440
+ "oneDimensionalToRowVector" : false
441
+ }, {
442
+ "name" : "model.layers.7.input_layernorm.weight",
443
+ "sourceDType" : "BF16",
444
+ "outputDType" : "BF16",
445
+ "sourceShape" : [ 1, 1024 ],
446
+ "outputShape" : [ 1, 1024 ],
447
+ "quantized" : false,
448
+ "sidecars" : [ ],
449
+ "oneDimensionalToRowVector" : false
450
+ }, {
451
+ "name" : "model.layers.26.self_attn.v_proj.weight",
452
+ "sourceDType" : "BF16",
453
+ "outputDType" : "Q4",
454
+ "sourceShape" : [ 1024, 1024 ],
455
+ "outputShape" : [ 1024, 1024 ],
456
+ "quantized" : true,
457
+ "sidecars" : [ "model.layers.26.self_attn.v_proj.weight.qb" ],
458
+ "oneDimensionalToRowVector" : false
459
+ }, {
460
+ "name" : "model.layers.0.mlp.gate_proj.weight",
461
+ "sourceDType" : "BF16",
462
+ "outputDType" : "Q4",
463
+ "sourceShape" : [ 3072, 1024 ],
464
+ "outputShape" : [ 3072, 1024 ],
465
+ "quantized" : true,
466
+ "sidecars" : [ "model.layers.0.mlp.gate_proj.weight.qb" ],
467
+ "oneDimensionalToRowVector" : false
468
+ }, {
469
+ "name" : "model.layers.1.mlp.down_proj.weight",
470
+ "sourceDType" : "BF16",
471
+ "outputDType" : "Q4",
472
+ "sourceShape" : [ 1024, 3072 ],
473
+ "outputShape" : [ 1024, 3072 ],
474
+ "quantized" : true,
475
+ "sidecars" : [ "model.layers.1.mlp.down_proj.weight.qb" ],
476
+ "oneDimensionalToRowVector" : false
477
+ }, {
478
+ "name" : "model.layers.24.self_attn.k_norm.weight",
479
+ "sourceDType" : "BF16",
480
+ "outputDType" : "BF16",
481
+ "sourceShape" : [ 1, 128 ],
482
+ "outputShape" : [ 1, 128 ],
483
+ "quantized" : false,
484
+ "sidecars" : [ ],
485
+ "oneDimensionalToRowVector" : false
486
+ }, {
487
+ "name" : "model.layers.10.post_attention_layernorm.weight",
488
+ "sourceDType" : "BF16",
489
+ "outputDType" : "BF16",
490
+ "sourceShape" : [ 1, 1024 ],
491
+ "outputShape" : [ 1, 1024 ],
492
+ "quantized" : false,
493
+ "sidecars" : [ ],
494
+ "oneDimensionalToRowVector" : false
495
+ }, {
496
+ "name" : "model.layers.6.self_attn.q_norm.weight",
497
+ "sourceDType" : "BF16",
498
+ "outputDType" : "BF16",
499
+ "sourceShape" : [ 1, 128 ],
500
+ "outputShape" : [ 1, 128 ],
501
+ "quantized" : false,
502
+ "sidecars" : [ ],
503
+ "oneDimensionalToRowVector" : false
504
+ }, {
505
+ "name" : "model.layers.9.self_attn.o_proj.weight",
506
+ "sourceDType" : "BF16",
507
+ "outputDType" : "Q4",
508
+ "sourceShape" : [ 1024, 2048 ],
509
+ "outputShape" : [ 1024, 2048 ],
510
+ "quantized" : true,
511
+ "sidecars" : [ "model.layers.9.self_attn.o_proj.weight.qb" ],
512
+ "oneDimensionalToRowVector" : false
513
+ }, {
514
+ "name" : "model.layers.15.self_attn.o_proj.weight",
515
+ "sourceDType" : "BF16",
516
+ "outputDType" : "Q4",
517
+ "sourceShape" : [ 1024, 2048 ],
518
+ "outputShape" : [ 1024, 2048 ],
519
+ "quantized" : true,
520
+ "sidecars" : [ "model.layers.15.self_attn.o_proj.weight.qb" ],
521
+ "oneDimensionalToRowVector" : false
522
+ }, {
523
+ "name" : "model.layers.27.post_attention_layernorm.weight",
524
+ "sourceDType" : "BF16",
525
+ "outputDType" : "BF16",
526
+ "sourceShape" : [ 1, 1024 ],
527
+ "outputShape" : [ 1, 1024 ],
528
+ "quantized" : false,
529
+ "sidecars" : [ ],
530
+ "oneDimensionalToRowVector" : false
531
+ }, {
532
+ "name" : "model.layers.15.self_attn.v_proj.weight",
533
+ "sourceDType" : "BF16",
534
+ "outputDType" : "Q4",
535
+ "sourceShape" : [ 1024, 1024 ],
536
+ "outputShape" : [ 1024, 1024 ],
537
+ "quantized" : true,
538
+ "sidecars" : [ "model.layers.15.self_attn.v_proj.weight.qb" ],
539
+ "oneDimensionalToRowVector" : false
540
+ }, {
541
+ "name" : "model.layers.0.mlp.down_proj.weight",
542
+ "sourceDType" : "BF16",
543
+ "outputDType" : "Q4",
544
+ "sourceShape" : [ 1024, 3072 ],
545
+ "outputShape" : [ 1024, 3072 ],
546
+ "quantized" : true,
547
+ "sidecars" : [ "model.layers.0.mlp.down_proj.weight.qb" ],
548
+ "oneDimensionalToRowVector" : false
549
+ }, {
550
+ "name" : "model.layers.10.self_attn.o_proj.weight",
551
+ "sourceDType" : "BF16",
552
+ "outputDType" : "Q4",
553
+ "sourceShape" : [ 1024, 2048 ],
554
+ "outputShape" : [ 1024, 2048 ],
555
+ "quantized" : true,
556
+ "sidecars" : [ "model.layers.10.self_attn.o_proj.weight.qb" ],
557
+ "oneDimensionalToRowVector" : false
558
+ }, {
559
+ "name" : "model.layers.10.self_attn.q_proj.weight",
560
+ "sourceDType" : "BF16",
561
+ "outputDType" : "Q4",
562
+ "sourceShape" : [ 2048, 1024 ],
563
+ "outputShape" : [ 2048, 1024 ],
564
+ "quantized" : true,
565
+ "sidecars" : [ "model.layers.10.self_attn.q_proj.weight.qb" ],
566
+ "oneDimensionalToRowVector" : false
567
+ }, {
568
+ "name" : "model.layers.17.input_layernorm.weight",
569
+ "sourceDType" : "BF16",
570
+ "outputDType" : "BF16",
571
+ "sourceShape" : [ 1, 1024 ],
572
+ "outputShape" : [ 1, 1024 ],
573
+ "quantized" : false,
574
+ "sidecars" : [ ],
575
+ "oneDimensionalToRowVector" : false
576
+ }, {
577
+ "name" : "model.layers.10.mlp.down_proj.weight",
578
+ "sourceDType" : "BF16",
579
+ "outputDType" : "Q4",
580
+ "sourceShape" : [ 1024, 3072 ],
581
+ "outputShape" : [ 1024, 3072 ],
582
+ "quantized" : true,
583
+ "sidecars" : [ "model.layers.10.mlp.down_proj.weight.qb" ],
584
+ "oneDimensionalToRowVector" : false
585
+ }, {
586
+ "name" : "model.layers.4.post_attention_layernorm.weight",
587
+ "sourceDType" : "BF16",
588
+ "outputDType" : "BF16",
589
+ "sourceShape" : [ 1, 1024 ],
590
+ "outputShape" : [ 1, 1024 ],
591
+ "quantized" : false,
592
+ "sidecars" : [ ],
593
+ "oneDimensionalToRowVector" : false
594
+ }, {
595
+ "name" : "model.layers.18.self_attn.k_norm.weight",
596
+ "sourceDType" : "BF16",
597
+ "outputDType" : "BF16",
598
+ "sourceShape" : [ 1, 128 ],
599
+ "outputShape" : [ 1, 128 ],
600
+ "quantized" : false,
601
+ "sidecars" : [ ],
602
+ "oneDimensionalToRowVector" : false
603
+ }, {
604
+ "name" : "model.layers.26.self_attn.k_proj.weight",
605
+ "sourceDType" : "BF16",
606
+ "outputDType" : "Q4",
607
+ "sourceShape" : [ 1024, 1024 ],
608
+ "outputShape" : [ 1024, 1024 ],
609
+ "quantized" : true,
610
+ "sidecars" : [ "model.layers.26.self_attn.k_proj.weight.qb" ],
611
+ "oneDimensionalToRowVector" : false
612
+ }, {
613
+ "name" : "model.layers.10.self_attn.v_proj.weight",
614
+ "sourceDType" : "BF16",
615
+ "outputDType" : "Q4",
616
+ "sourceShape" : [ 1024, 1024 ],
617
+ "outputShape" : [ 1024, 1024 ],
618
+ "quantized" : true,
619
+ "sidecars" : [ "model.layers.10.self_attn.v_proj.weight.qb" ],
620
+ "oneDimensionalToRowVector" : false
621
+ }, {
622
+ "name" : "model.layers.13.self_attn.k_norm.weight",
623
+ "sourceDType" : "BF16",
624
+ "outputDType" : "BF16",
625
+ "sourceShape" : [ 1, 128 ],
626
+ "outputShape" : [ 1, 128 ],
627
+ "quantized" : false,
628
+ "sidecars" : [ ],
629
+ "oneDimensionalToRowVector" : false
630
+ }, {
631
+ "name" : "model.layers.6.self_attn.k_norm.weight",
632
+ "sourceDType" : "BF16",
633
+ "outputDType" : "BF16",
634
+ "sourceShape" : [ 1, 128 ],
635
+ "outputShape" : [ 1, 128 ],
636
+ "quantized" : false,
637
+ "sidecars" : [ ],
638
+ "oneDimensionalToRowVector" : false
639
+ }, {
640
+ "name" : "model.layers.18.self_attn.q_norm.weight",
641
+ "sourceDType" : "BF16",
642
+ "outputDType" : "BF16",
643
+ "sourceShape" : [ 1, 128 ],
644
+ "outputShape" : [ 1, 128 ],
645
+ "quantized" : false,
646
+ "sidecars" : [ ],
647
+ "oneDimensionalToRowVector" : false
648
+ }, {
649
+ "name" : "model.layers.21.self_attn.k_proj.weight",
650
+ "sourceDType" : "BF16",
651
+ "outputDType" : "Q4",
652
+ "sourceShape" : [ 1024, 1024 ],
653
+ "outputShape" : [ 1024, 1024 ],
654
+ "quantized" : true,
655
+ "sidecars" : [ "model.layers.21.self_attn.k_proj.weight.qb" ],
656
+ "oneDimensionalToRowVector" : false
657
+ }, {
658
+ "name" : "model.layers.20.input_layernorm.weight",
659
+ "sourceDType" : "BF16",
660
+ "outputDType" : "BF16",
661
+ "sourceShape" : [ 1, 1024 ],
662
+ "outputShape" : [ 1, 1024 ],
663
+ "quantized" : false,
664
+ "sidecars" : [ ],
665
+ "oneDimensionalToRowVector" : false
666
+ }, {
667
+ "name" : "model.layers.8.mlp.up_proj.weight",
668
+ "sourceDType" : "BF16",
669
+ "outputDType" : "Q4",
670
+ "sourceShape" : [ 3072, 1024 ],
671
+ "outputShape" : [ 3072, 1024 ],
672
+ "quantized" : true,
673
+ "sidecars" : [ "model.layers.8.mlp.up_proj.weight.qb" ],
674
+ "oneDimensionalToRowVector" : false
675
+ }, {
676
+ "name" : "model.layers.5.self_attn.k_proj.weight",
677
+ "sourceDType" : "BF16",
678
+ "outputDType" : "Q4",
679
+ "sourceShape" : [ 1024, 1024 ],
680
+ "outputShape" : [ 1024, 1024 ],
681
+ "quantized" : true,
682
+ "sidecars" : [ "model.layers.5.self_attn.k_proj.weight.qb" ],
683
+ "oneDimensionalToRowVector" : false
684
+ }, {
685
+ "name" : "model.layers.5.self_attn.o_proj.weight",
686
+ "sourceDType" : "BF16",
687
+ "outputDType" : "Q4",
688
+ "sourceShape" : [ 1024, 2048 ],
689
+ "outputShape" : [ 1024, 2048 ],
690
+ "quantized" : true,
691
+ "sidecars" : [ "model.layers.5.self_attn.o_proj.weight.qb" ],
692
+ "oneDimensionalToRowVector" : false
693
+ }, {
694
+ "name" : "model.layers.5.self_attn.k_norm.weight",
695
+ "sourceDType" : "BF16",
696
+ "outputDType" : "BF16",
697
+ "sourceShape" : [ 1, 128 ],
698
+ "outputShape" : [ 1, 128 ],
699
+ "quantized" : false,
700
+ "sidecars" : [ ],
701
+ "oneDimensionalToRowVector" : false
702
+ }, {
703
+ "name" : "model.layers.18.input_layernorm.weight",
704
+ "sourceDType" : "BF16",
705
+ "outputDType" : "BF16",
706
+ "sourceShape" : [ 1, 1024 ],
707
+ "outputShape" : [ 1, 1024 ],
708
+ "quantized" : false,
709
+ "sidecars" : [ ],
710
+ "oneDimensionalToRowVector" : false
711
+ }, {
712
+ "name" : "model.layers.8.post_attention_layernorm.weight",
713
+ "sourceDType" : "BF16",
714
+ "outputDType" : "BF16",
715
+ "sourceShape" : [ 1, 1024 ],
716
+ "outputShape" : [ 1, 1024 ],
717
+ "quantized" : false,
718
+ "sidecars" : [ ],
719
+ "oneDimensionalToRowVector" : false
720
+ }, {
721
+ "name" : "model.layers.11.input_layernorm.weight",
722
+ "sourceDType" : "BF16",
723
+ "outputDType" : "BF16",
724
+ "sourceShape" : [ 1, 1024 ],
725
+ "outputShape" : [ 1, 1024 ],
726
+ "quantized" : false,
727
+ "sidecars" : [ ],
728
+ "oneDimensionalToRowVector" : false
729
+ }, {
730
+ "name" : "model.layers.25.self_attn.k_norm.weight",
731
+ "sourceDType" : "BF16",
732
+ "outputDType" : "BF16",
733
+ "sourceShape" : [ 1, 128 ],
734
+ "outputShape" : [ 1, 128 ],
735
+ "quantized" : false,
736
+ "sidecars" : [ ],
737
+ "oneDimensionalToRowVector" : false
738
+ }, {
739
+ "name" : "model.layers.2.mlp.gate_proj.weight",
740
+ "sourceDType" : "BF16",
741
+ "outputDType" : "Q4",
742
+ "sourceShape" : [ 3072, 1024 ],
743
+ "outputShape" : [ 3072, 1024 ],
744
+ "quantized" : true,
745
+ "sidecars" : [ "model.layers.2.mlp.gate_proj.weight.qb" ],
746
+ "oneDimensionalToRowVector" : false
747
+ }, {
748
+ "name" : "model.layers.0.self_attn.k_proj.weight",
749
+ "sourceDType" : "BF16",
750
+ "outputDType" : "Q4",
751
+ "sourceShape" : [ 1024, 1024 ],
752
+ "outputShape" : [ 1024, 1024 ],
753
+ "quantized" : true,
754
+ "sidecars" : [ "model.layers.0.self_attn.k_proj.weight.qb" ],
755
+ "oneDimensionalToRowVector" : false
756
+ }, {
757
+ "name" : "model.layers.3.mlp.down_proj.weight",
758
+ "sourceDType" : "BF16",
759
+ "outputDType" : "Q4",
760
+ "sourceShape" : [ 1024, 3072 ],
761
+ "outputShape" : [ 1024, 3072 ],
762
+ "quantized" : true,
763
+ "sidecars" : [ "model.layers.3.mlp.down_proj.weight.qb" ],
764
+ "oneDimensionalToRowVector" : false
765
+ }, {
766
+ "name" : "model.layers.0.self_attn.o_proj.weight",
767
+ "sourceDType" : "BF16",
768
+ "outputDType" : "Q4",
769
+ "sourceShape" : [ 1024, 2048 ],
770
+ "outputShape" : [ 1024, 2048 ],
771
+ "quantized" : true,
772
+ "sidecars" : [ "model.layers.0.self_attn.o_proj.weight.qb" ],
773
+ "oneDimensionalToRowVector" : false
774
+ }, {
775
+ "name" : "model.layers.5.self_attn.q_proj.weight",
776
+ "sourceDType" : "BF16",
777
+ "outputDType" : "Q4",
778
+ "sourceShape" : [ 2048, 1024 ],
779
+ "outputShape" : [ 2048, 1024 ],
780
+ "quantized" : true,
781
+ "sidecars" : [ "model.layers.5.self_attn.q_proj.weight.qb" ],
782
+ "oneDimensionalToRowVector" : false
783
+ }, {
784
+ "name" : "model.layers.0.self_attn.k_norm.weight",
785
+ "sourceDType" : "BF16",
786
+ "outputDType" : "BF16",
787
+ "sourceShape" : [ 1, 128 ],
788
+ "outputShape" : [ 1, 128 ],
789
+ "quantized" : false,
790
+ "sidecars" : [ ],
791
+ "oneDimensionalToRowVector" : false
792
+ }, {
793
+ "name" : "model.layers.19.self_attn.k_norm.weight",
794
+ "sourceDType" : "BF16",
795
+ "outputDType" : "BF16",
796
+ "sourceShape" : [ 1, 128 ],
797
+ "outputShape" : [ 1, 128 ],
798
+ "quantized" : false,
799
+ "sidecars" : [ ],
800
+ "oneDimensionalToRowVector" : false
801
+ }, {
802
+ "name" : "model.layers.20.self_attn.k_norm.weight",
803
+ "sourceDType" : "BF16",
804
+ "outputDType" : "BF16",
805
+ "sourceShape" : [ 1, 128 ],
806
+ "outputShape" : [ 1, 128 ],
807
+ "quantized" : false,
808
+ "sidecars" : [ ],
809
+ "oneDimensionalToRowVector" : false
810
+ }, {
811
+ "name" : "model.layers.5.mlp.down_proj.weight",
812
+ "sourceDType" : "BF16",
813
+ "outputDType" : "Q4",
814
+ "sourceShape" : [ 1024, 3072 ],
815
+ "outputShape" : [ 1024, 3072 ],
816
+ "quantized" : true,
817
+ "sidecars" : [ "model.layers.5.mlp.down_proj.weight.qb" ],
818
+ "oneDimensionalToRowVector" : false
819
+ }, {
820
+ "name" : "model.layers.14.mlp.gate_proj.weight",
821
+ "sourceDType" : "BF16",
822
+ "outputDType" : "Q4",
823
+ "sourceShape" : [ 3072, 1024 ],
824
+ "outputShape" : [ 3072, 1024 ],
825
+ "quantized" : true,
826
+ "sidecars" : [ "model.layers.14.mlp.gate_proj.weight.qb" ],
827
+ "oneDimensionalToRowVector" : false
828
+ }, {
829
+ "name" : "model.layers.14.self_attn.k_norm.weight",
830
+ "sourceDType" : "BF16",
831
+ "outputDType" : "BF16",
832
+ "sourceShape" : [ 1, 128 ],
833
+ "outputShape" : [ 1, 128 ],
834
+ "quantized" : false,
835
+ "sidecars" : [ ],
836
+ "oneDimensionalToRowVector" : false
837
+ }, {
838
+ "name" : "model.layers.26.input_layernorm.weight",
839
+ "sourceDType" : "BF16",
840
+ "outputDType" : "BF16",
841
+ "sourceShape" : [ 1, 1024 ],
842
+ "outputShape" : [ 1, 1024 ],
843
+ "quantized" : false,
844
+ "sidecars" : [ ],
845
+ "oneDimensionalToRowVector" : false
846
+ }, {
847
+ "name" : "model.layers.4.self_attn.v_proj.weight",
848
+ "sourceDType" : "BF16",
849
+ "outputDType" : "Q4",
850
+ "sourceShape" : [ 1024, 1024 ],
851
+ "outputShape" : [ 1024, 1024 ],
852
+ "quantized" : true,
853
+ "sidecars" : [ "model.layers.4.self_attn.v_proj.weight.qb" ],
854
+ "oneDimensionalToRowVector" : false
855
+ }, {
856
+ "name" : "model.layers.19.self_attn.q_norm.weight",
857
+ "sourceDType" : "BF16",
858
+ "outputDType" : "BF16",
859
+ "sourceShape" : [ 1, 128 ],
860
+ "outputShape" : [ 1, 128 ],
861
+ "quantized" : false,
862
+ "sidecars" : [ ],
863
+ "oneDimensionalToRowVector" : false
864
+ }, {
865
+ "name" : "model.layers.24.self_attn.o_proj.weight",
866
+ "sourceDType" : "BF16",
867
+ "outputDType" : "Q4",
868
+ "sourceShape" : [ 1024, 2048 ],
869
+ "outputShape" : [ 1024, 2048 ],
870
+ "quantized" : true,
871
+ "sidecars" : [ "model.layers.24.self_attn.o_proj.weight.qb" ],
872
+ "oneDimensionalToRowVector" : false
873
+ }, {
874
+ "name" : "model.layers.25.mlp.down_proj.weight",
875
+ "sourceDType" : "BF16",
876
+ "outputDType" : "Q4",
877
+ "sourceShape" : [ 1024, 3072 ],
878
+ "outputShape" : [ 1024, 3072 ],
879
+ "quantized" : true,
880
+ "sidecars" : [ "model.layers.25.mlp.down_proj.weight.qb" ],
881
+ "oneDimensionalToRowVector" : false
882
+ }, {
883
+ "name" : "model.layers.22.mlp.down_proj.weight",
884
+ "sourceDType" : "BF16",
885
+ "outputDType" : "Q4",
886
+ "sourceShape" : [ 1024, 3072 ],
887
+ "outputShape" : [ 1024, 3072 ],
888
+ "quantized" : true,
889
+ "sidecars" : [ "model.layers.22.mlp.down_proj.weight.qb" ],
890
+ "oneDimensionalToRowVector" : false
891
+ }, {
892
+ "name" : "model.layers.24.self_attn.q_proj.weight",
893
+ "sourceDType" : "BF16",
894
+ "outputDType" : "Q4",
895
+ "sourceShape" : [ 2048, 1024 ],
896
+ "outputShape" : [ 2048, 1024 ],
897
+ "quantized" : true,
898
+ "sidecars" : [ "model.layers.24.self_attn.q_proj.weight.qb" ],
899
+ "oneDimensionalToRowVector" : false
900
+ }, {
901
+ "name" : "model.layers.21.mlp.gate_proj.weight",
902
+ "sourceDType" : "BF16",
903
+ "outputDType" : "Q4",
904
+ "sourceShape" : [ 3072, 1024 ],
905
+ "outputShape" : [ 3072, 1024 ],
906
+ "quantized" : true,
907
+ "sidecars" : [ "model.layers.21.mlp.gate_proj.weight.qb" ],
908
+ "oneDimensionalToRowVector" : false
909
+ }, {
910
+ "name" : "model.layers.4.mlp.gate_proj.weight",
911
+ "sourceDType" : "BF16",
912
+ "outputDType" : "Q4",
913
+ "sourceShape" : [ 3072, 1024 ],
914
+ "outputShape" : [ 3072, 1024 ],
915
+ "quantized" : true,
916
+ "sidecars" : [ "model.layers.4.mlp.gate_proj.weight.qb" ],
917
+ "oneDimensionalToRowVector" : false
918
+ }, {
919
+ "name" : "model.layers.9.self_attn.v_proj.weight",
920
+ "sourceDType" : "BF16",
921
+ "outputDType" : "Q4",
922
+ "sourceShape" : [ 1024, 1024 ],
923
+ "outputShape" : [ 1024, 1024 ],
924
+ "quantized" : true,
925
+ "sidecars" : [ "model.layers.9.self_attn.v_proj.weight.qb" ],
926
+ "oneDimensionalToRowVector" : false
927
+ }, {
928
+ "name" : "model.layers.24.mlp.gate_proj.weight",
929
+ "sourceDType" : "BF16",
930
+ "outputDType" : "Q4",
931
+ "sourceShape" : [ 3072, 1024 ],
932
+ "outputShape" : [ 3072, 1024 ],
933
+ "quantized" : true,
934
+ "sidecars" : [ "model.layers.24.mlp.gate_proj.weight.qb" ],
935
+ "oneDimensionalToRowVector" : false
936
+ }, {
937
+ "name" : "model.layers.9.post_attention_layernorm.weight",
938
+ "sourceDType" : "BF16",
939
+ "outputDType" : "BF16",
940
+ "sourceShape" : [ 1, 1024 ],
941
+ "outputShape" : [ 1, 1024 ],
942
+ "quantized" : false,
943
+ "sidecars" : [ ],
944
+ "oneDimensionalToRowVector" : false
945
+ }, {
946
+ "name" : "model.layers.14.self_attn.q_norm.weight",
947
+ "sourceDType" : "BF16",
948
+ "outputDType" : "BF16",
949
+ "sourceShape" : [ 1, 128 ],
950
+ "outputShape" : [ 1, 128 ],
951
+ "quantized" : false,
952
+ "sidecars" : [ ],
953
+ "oneDimensionalToRowVector" : false
954
+ }, {
955
+ "name" : "model.layers.14.self_attn.v_proj.weight",
956
+ "sourceDType" : "BF16",
957
+ "outputDType" : "Q4",
958
+ "sourceShape" : [ 1024, 1024 ],
959
+ "outputShape" : [ 1024, 1024 ],
960
+ "quantized" : true,
961
+ "sidecars" : [ "model.layers.14.self_attn.v_proj.weight.qb" ],
962
+ "oneDimensionalToRowVector" : false
963
+ }, {
964
+ "name" : "lm_head.weight",
965
+ "sourceDType" : "BF16",
966
+ "outputDType" : "BF16",
967
+ "sourceShape" : [ 151936, 1024 ],
968
+ "outputShape" : [ 151936, 1024 ],
969
+ "quantized" : false,
970
+ "sidecars" : [ ],
971
+ "oneDimensionalToRowVector" : false
972
+ }, {
973
+ "name" : "model.layers.11.post_attention_layernorm.weight",
974
+ "sourceDType" : "BF16",
975
+ "outputDType" : "BF16",
976
+ "sourceShape" : [ 1, 1024 ],
977
+ "outputShape" : [ 1, 1024 ],
978
+ "quantized" : false,
979
+ "sidecars" : [ ],
980
+ "oneDimensionalToRowVector" : false
981
+ }, {
982
+ "name" : "model.layers.15.mlp.down_proj.weight",
983
+ "sourceDType" : "BF16",
984
+ "outputDType" : "Q4",
985
+ "sourceShape" : [ 1024, 3072 ],
986
+ "outputShape" : [ 1024, 3072 ],
987
+ "quantized" : true,
988
+ "sidecars" : [ "model.layers.15.mlp.down_proj.weight.qb" ],
989
+ "oneDimensionalToRowVector" : false
990
+ }, {
991
+ "name" : "model.layers.4.input_layernorm.weight",
992
+ "sourceDType" : "BF16",
993
+ "outputDType" : "BF16",
994
+ "sourceShape" : [ 1, 1024 ],
995
+ "outputShape" : [ 1, 1024 ],
996
+ "quantized" : false,
997
+ "sidecars" : [ ],
998
+ "oneDimensionalToRowVector" : false
999
+ }, {
1000
+ "name" : "model.layers.19.self_attn.v_proj.weight",
1001
+ "sourceDType" : "BF16",
1002
+ "outputDType" : "Q4",
1003
+ "sourceShape" : [ 1024, 1024 ],
1004
+ "outputShape" : [ 1024, 1024 ],
1005
+ "quantized" : true,
1006
+ "sidecars" : [ "model.layers.19.self_attn.v_proj.weight.qb" ],
1007
+ "oneDimensionalToRowVector" : false
1008
+ }, {
1009
+ "name" : "model.layers.13.post_attention_layernorm.weight",
1010
+ "sourceDType" : "BF16",
1011
+ "outputDType" : "BF16",
1012
+ "sourceShape" : [ 1, 1024 ],
1013
+ "outputShape" : [ 1, 1024 ],
1014
+ "quantized" : false,
1015
+ "sidecars" : [ ],
1016
+ "oneDimensionalToRowVector" : false
1017
+ }, {
1018
+ "name" : "model.layers.9.mlp.up_proj.weight",
1019
+ "sourceDType" : "BF16",
1020
+ "outputDType" : "Q4",
1021
+ "sourceShape" : [ 3072, 1024 ],
1022
+ "outputShape" : [ 3072, 1024 ],
1023
+ "quantized" : true,
1024
+ "sidecars" : [ "model.layers.9.mlp.up_proj.weight.qb" ],
1025
+ "oneDimensionalToRowVector" : false
1026
+ }, {
1027
+ "name" : "model.layers.27.mlp.up_proj.weight",
1028
+ "sourceDType" : "BF16",
1029
+ "outputDType" : "Q4",
1030
+ "sourceShape" : [ 3072, 1024 ],
1031
+ "outputShape" : [ 3072, 1024 ],
1032
+ "quantized" : true,
1033
+ "sidecars" : [ "model.layers.27.mlp.up_proj.weight.qb" ],
1034
+ "oneDimensionalToRowVector" : false
1035
+ }, {
1036
+ "name" : "model.layers.6.self_attn.v_proj.weight",
1037
+ "sourceDType" : "BF16",
1038
+ "outputDType" : "Q4",
1039
+ "sourceShape" : [ 1024, 1024 ],
1040
+ "outputShape" : [ 1024, 1024 ],
1041
+ "quantized" : true,
1042
+ "sidecars" : [ "model.layers.6.self_attn.v_proj.weight.qb" ],
1043
+ "oneDimensionalToRowVector" : false
1044
+ }, {
1045
+ "name" : "model.layers.23.self_attn.v_proj.weight",
1046
+ "sourceDType" : "BF16",
1047
+ "outputDType" : "Q4",
1048
+ "sourceShape" : [ 1024, 1024 ],
1049
+ "outputShape" : [ 1024, 1024 ],
1050
+ "quantized" : true,
1051
+ "sidecars" : [ "model.layers.23.self_attn.v_proj.weight.qb" ],
1052
+ "oneDimensionalToRowVector" : false
1053
+ }, {
1054
+ "name" : "model.layers.13.input_layernorm.weight",
1055
+ "sourceDType" : "BF16",
1056
+ "outputDType" : "BF16",
1057
+ "sourceShape" : [ 1, 1024 ],
1058
+ "outputShape" : [ 1, 1024 ],
1059
+ "quantized" : false,
1060
+ "sidecars" : [ ],
1061
+ "oneDimensionalToRowVector" : false
1062
+ }, {
1063
+ "name" : "model.layers.3.self_attn.q_norm.weight",
1064
+ "sourceDType" : "BF16",
1065
+ "outputDType" : "BF16",
1066
+ "sourceShape" : [ 1, 128 ],
1067
+ "outputShape" : [ 1, 128 ],
1068
+ "quantized" : false,
1069
+ "sidecars" : [ ],
1070
+ "oneDimensionalToRowVector" : false
1071
+ }, {
1072
+ "name" : "model.layers.10.mlp.up_proj.weight",
1073
+ "sourceDType" : "BF16",
1074
+ "outputDType" : "Q4",
1075
+ "sourceShape" : [ 3072, 1024 ],
1076
+ "outputShape" : [ 3072, 1024 ],
1077
+ "quantized" : true,
1078
+ "sidecars" : [ "model.layers.10.mlp.up_proj.weight.qb" ],
1079
+ "oneDimensionalToRowVector" : false
1080
+ }, {
1081
+ "name" : "model.layers.24.self_attn.k_proj.weight",
1082
+ "sourceDType" : "BF16",
1083
+ "outputDType" : "Q4",
1084
+ "sourceShape" : [ 1024, 1024 ],
1085
+ "outputShape" : [ 1024, 1024 ],
1086
+ "quantized" : true,
1087
+ "sidecars" : [ "model.layers.24.self_attn.k_proj.weight.qb" ],
1088
+ "oneDimensionalToRowVector" : false
1089
+ }, {
1090
+ "name" : "model.layers.12.self_attn.v_proj.weight",
1091
+ "sourceDType" : "BF16",
1092
+ "outputDType" : "Q4",
1093
+ "sourceShape" : [ 1024, 1024 ],
1094
+ "outputShape" : [ 1024, 1024 ],
1095
+ "quantized" : true,
1096
+ "sidecars" : [ "model.layers.12.self_attn.v_proj.weight.qb" ],
1097
+ "oneDimensionalToRowVector" : false
1098
+ }, {
1099
+ "name" : "model.layers.12.mlp.up_proj.weight",
1100
+ "sourceDType" : "BF16",
1101
+ "outputDType" : "Q4",
1102
+ "sourceShape" : [ 3072, 1024 ],
1103
+ "outputShape" : [ 3072, 1024 ],
1104
+ "quantized" : true,
1105
+ "sidecars" : [ "model.layers.12.mlp.up_proj.weight.qb" ],
1106
+ "oneDimensionalToRowVector" : false
1107
+ }, {
1108
+ "name" : "model.layers.18.self_attn.k_proj.weight",
1109
+ "sourceDType" : "BF16",
1110
+ "outputDType" : "Q4",
1111
+ "sourceShape" : [ 1024, 1024 ],
1112
+ "outputShape" : [ 1024, 1024 ],
1113
+ "quantized" : true,
1114
+ "sidecars" : [ "model.layers.18.self_attn.k_proj.weight.qb" ],
1115
+ "oneDimensionalToRowVector" : false
1116
+ }, {
1117
+ "name" : "model.layers.17.self_attn.v_proj.weight",
1118
+ "sourceDType" : "BF16",
1119
+ "outputDType" : "Q4",
1120
+ "sourceShape" : [ 1024, 1024 ],
1121
+ "outputShape" : [ 1024, 1024 ],
1122
+ "quantized" : true,
1123
+ "sidecars" : [ "model.layers.17.self_attn.v_proj.weight.qb" ],
1124
+ "oneDimensionalToRowVector" : false
1125
+ }, {
1126
+ "name" : "model.layers.15.mlp.up_proj.weight",
1127
+ "sourceDType" : "BF16",
1128
+ "outputDType" : "Q4",
1129
+ "sourceShape" : [ 3072, 1024 ],
1130
+ "outputShape" : [ 3072, 1024 ],
1131
+ "quantized" : true,
1132
+ "sidecars" : [ "model.layers.15.mlp.up_proj.weight.qb" ],
1133
+ "oneDimensionalToRowVector" : false
1134
+ }, {
1135
+ "name" : "model.layers.19.mlp.gate_proj.weight",
1136
+ "sourceDType" : "BF16",
1137
+ "outputDType" : "Q4",
1138
+ "sourceShape" : [ 3072, 1024 ],
1139
+ "outputShape" : [ 3072, 1024 ],
1140
+ "quantized" : true,
1141
+ "sidecars" : [ "model.layers.19.mlp.gate_proj.weight.qb" ],
1142
+ "oneDimensionalToRowVector" : false
1143
+ }, {
1144
+ "name" : "model.layers.8.self_attn.q_norm.weight",
1145
+ "sourceDType" : "BF16",
1146
+ "outputDType" : "BF16",
1147
+ "sourceShape" : [ 1, 128 ],
1148
+ "outputShape" : [ 1, 128 ],
1149
+ "quantized" : false,
1150
+ "sidecars" : [ ],
1151
+ "oneDimensionalToRowVector" : false
1152
+ }, {
1153
+ "name" : "model.layers.16.mlp.up_proj.weight",
1154
+ "sourceDType" : "BF16",
1155
+ "outputDType" : "Q4",
1156
+ "sourceShape" : [ 3072, 1024 ],
1157
+ "outputShape" : [ 3072, 1024 ],
1158
+ "quantized" : true,
1159
+ "sidecars" : [ "model.layers.16.mlp.up_proj.weight.qb" ],
1160
+ "oneDimensionalToRowVector" : false
1161
+ }, {
1162
+ "name" : "model.layers.24.input_layernorm.weight",
1163
+ "sourceDType" : "BF16",
1164
+ "outputDType" : "BF16",
1165
+ "sourceShape" : [ 1, 1024 ],
1166
+ "outputShape" : [ 1, 1024 ],
1167
+ "quantized" : false,
1168
+ "sidecars" : [ ],
1169
+ "oneDimensionalToRowVector" : false
1170
+ }, {
1171
+ "name" : "model.layers.13.mlp.down_proj.weight",
1172
+ "sourceDType" : "BF16",
1173
+ "outputDType" : "Q4",
1174
+ "sourceShape" : [ 1024, 3072 ],
1175
+ "outputShape" : [ 1024, 3072 ],
1176
+ "quantized" : true,
1177
+ "sidecars" : [ "model.layers.13.mlp.down_proj.weight.qb" ],
1178
+ "oneDimensionalToRowVector" : false
1179
+ }, {
1180
+ "name" : "model.layers.18.self_attn.o_proj.weight",
1181
+ "sourceDType" : "BF16",
1182
+ "outputDType" : "Q4",
1183
+ "sourceShape" : [ 1024, 2048 ],
1184
+ "outputShape" : [ 1024, 2048 ],
1185
+ "quantized" : true,
1186
+ "sidecars" : [ "model.layers.18.self_attn.o_proj.weight.qb" ],
1187
+ "oneDimensionalToRowVector" : false
1188
+ }, {
1189
+ "name" : "model.layers.18.self_attn.q_proj.weight",
1190
+ "sourceDType" : "BF16",
1191
+ "outputDType" : "Q4",
1192
+ "sourceShape" : [ 2048, 1024 ],
1193
+ "outputShape" : [ 2048, 1024 ],
1194
+ "quantized" : true,
1195
+ "sidecars" : [ "model.layers.18.self_attn.q_proj.weight.qb" ],
1196
+ "oneDimensionalToRowVector" : false
1197
+ }, {
1198
+ "name" : "model.layers.26.mlp.gate_proj.weight",
1199
+ "sourceDType" : "BF16",
1200
+ "outputDType" : "Q4",
1201
+ "sourceShape" : [ 3072, 1024 ],
1202
+ "outputShape" : [ 3072, 1024 ],
1203
+ "quantized" : true,
1204
+ "sidecars" : [ "model.layers.26.mlp.gate_proj.weight.qb" ],
1205
+ "oneDimensionalToRowVector" : false
1206
+ }, {
1207
+ "name" : "model.layers.2.input_layernorm.weight",
1208
+ "sourceDType" : "BF16",
1209
+ "outputDType" : "BF16",
1210
+ "sourceShape" : [ 1, 1024 ],
1211
+ "outputShape" : [ 1, 1024 ],
1212
+ "quantized" : false,
1213
+ "sidecars" : [ ],
1214
+ "oneDimensionalToRowVector" : false
1215
+ }, {
1216
+ "name" : "model.layers.14.mlp.up_proj.weight",
1217
+ "sourceDType" : "BF16",
1218
+ "outputDType" : "Q4",
1219
+ "sourceShape" : [ 3072, 1024 ],
1220
+ "outputShape" : [ 3072, 1024 ],
1221
+ "quantized" : true,
1222
+ "sidecars" : [ "model.layers.14.mlp.up_proj.weight.qb" ],
1223
+ "oneDimensionalToRowVector" : false
1224
+ }, {
1225
+ "name" : "model.layers.13.mlp.up_proj.weight",
1226
+ "sourceDType" : "BF16",
1227
+ "outputDType" : "Q4",
1228
+ "sourceShape" : [ 3072, 1024 ],
1229
+ "outputShape" : [ 3072, 1024 ],
1230
+ "quantized" : true,
1231
+ "sidecars" : [ "model.layers.13.mlp.up_proj.weight.qb" ],
1232
+ "oneDimensionalToRowVector" : false
1233
+ }, {
1234
+ "name" : "model.layers.7.post_attention_layernorm.weight",
1235
+ "sourceDType" : "BF16",
1236
+ "outputDType" : "BF16",
1237
+ "sourceShape" : [ 1, 1024 ],
1238
+ "outputShape" : [ 1, 1024 ],
1239
+ "quantized" : false,
1240
+ "sidecars" : [ ],
1241
+ "oneDimensionalToRowVector" : false
1242
+ }, {
1243
+ "name" : "model.layers.13.self_attn.k_proj.weight",
1244
+ "sourceDType" : "BF16",
1245
+ "outputDType" : "Q4",
1246
+ "sourceShape" : [ 1024, 1024 ],
1247
+ "outputShape" : [ 1024, 1024 ],
1248
+ "quantized" : true,
1249
+ "sidecars" : [ "model.layers.13.self_attn.k_proj.weight.qb" ],
1250
+ "oneDimensionalToRowVector" : false
1251
+ }, {
1252
+ "name" : "model.layers.18.mlp.up_proj.weight",
1253
+ "sourceDType" : "BF16",
1254
+ "outputDType" : "Q4",
1255
+ "sourceShape" : [ 3072, 1024 ],
1256
+ "outputShape" : [ 3072, 1024 ],
1257
+ "quantized" : true,
1258
+ "sidecars" : [ "model.layers.18.mlp.up_proj.weight.qb" ],
1259
+ "oneDimensionalToRowVector" : false
1260
+ }, {
1261
+ "name" : "model.layers.3.self_attn.k_norm.weight",
1262
+ "sourceDType" : "BF16",
1263
+ "outputDType" : "BF16",
1264
+ "sourceShape" : [ 1, 128 ],
1265
+ "outputShape" : [ 1, 128 ],
1266
+ "quantized" : false,
1267
+ "sidecars" : [ ],
1268
+ "oneDimensionalToRowVector" : false
1269
+ }, {
1270
+ "name" : "model.layers.1.mlp.up_proj.weight",
1271
+ "sourceDType" : "BF16",
1272
+ "outputDType" : "Q4",
1273
+ "sourceShape" : [ 3072, 1024 ],
1274
+ "outputShape" : [ 3072, 1024 ],
1275
+ "quantized" : true,
1276
+ "sidecars" : [ "model.layers.1.mlp.up_proj.weight.qb" ],
1277
+ "oneDimensionalToRowVector" : false
1278
+ }, {
1279
+ "name" : "model.layers.0.mlp.up_proj.weight",
1280
+ "sourceDType" : "BF16",
1281
+ "outputDType" : "Q4",
1282
+ "sourceShape" : [ 3072, 1024 ],
1283
+ "outputShape" : [ 3072, 1024 ],
1284
+ "quantized" : true,
1285
+ "sidecars" : [ "model.layers.0.mlp.up_proj.weight.qb" ],
1286
+ "oneDimensionalToRowVector" : false
1287
+ }, {
1288
+ "name" : "model.layers.17.mlp.up_proj.weight",
1289
+ "sourceDType" : "BF16",
1290
+ "outputDType" : "Q4",
1291
+ "sourceShape" : [ 3072, 1024 ],
1292
+ "outputShape" : [ 3072, 1024 ],
1293
+ "quantized" : true,
1294
+ "sidecars" : [ "model.layers.17.mlp.up_proj.weight.qb" ],
1295
+ "oneDimensionalToRowVector" : false
1296
+ }, {
1297
+ "name" : "model.layers.25.self_attn.q_norm.weight",
1298
+ "sourceDType" : "BF16",
1299
+ "outputDType" : "BF16",
1300
+ "sourceShape" : [ 1, 128 ],
1301
+ "outputShape" : [ 1, 128 ],
1302
+ "quantized" : false,
1303
+ "sidecars" : [ ],
1304
+ "oneDimensionalToRowVector" : false
1305
+ }, {
1306
+ "name" : "model.layers.0.self_attn.q_proj.weight",
1307
+ "sourceDType" : "BF16",
1308
+ "outputDType" : "Q4",
1309
+ "sourceShape" : [ 2048, 1024 ],
1310
+ "outputShape" : [ 2048, 1024 ],
1311
+ "quantized" : true,
1312
+ "sidecars" : [ "model.layers.0.self_attn.q_proj.weight.qb" ],
1313
+ "oneDimensionalToRowVector" : false
1314
+ }, {
1315
+ "name" : "model.layers.12.post_attention_layernorm.weight",
1316
+ "sourceDType" : "BF16",
1317
+ "outputDType" : "BF16",
1318
+ "sourceShape" : [ 1, 1024 ],
1319
+ "outputShape" : [ 1, 1024 ],
1320
+ "quantized" : false,
1321
+ "sidecars" : [ ],
1322
+ "oneDimensionalToRowVector" : false
1323
+ }, {
1324
+ "name" : "model.layers.19.mlp.up_proj.weight",
1325
+ "sourceDType" : "BF16",
1326
+ "outputDType" : "Q4",
1327
+ "sourceShape" : [ 3072, 1024 ],
1328
+ "outputShape" : [ 3072, 1024 ],
1329
+ "quantized" : true,
1330
+ "sidecars" : [ "model.layers.19.mlp.up_proj.weight.qb" ],
1331
+ "oneDimensionalToRowVector" : false
1332
+ }, {
1333
+ "name" : "model.layers.9.mlp.gate_proj.weight",
1334
+ "sourceDType" : "BF16",
1335
+ "outputDType" : "Q4",
1336
+ "sourceShape" : [ 3072, 1024 ],
1337
+ "outputShape" : [ 3072, 1024 ],
1338
+ "quantized" : true,
1339
+ "sidecars" : [ "model.layers.9.mlp.gate_proj.weight.qb" ],
1340
+ "oneDimensionalToRowVector" : false
1341
+ }, {
1342
+ "name" : "model.layers.13.self_attn.o_proj.weight",
1343
+ "sourceDType" : "BF16",
1344
+ "outputDType" : "Q4",
1345
+ "sourceShape" : [ 1024, 2048 ],
1346
+ "outputShape" : [ 1024, 2048 ],
1347
+ "quantized" : true,
1348
+ "sidecars" : [ "model.layers.13.self_attn.o_proj.weight.qb" ],
1349
+ "oneDimensionalToRowVector" : false
1350
+ }, {
1351
+ "name" : "model.layers.22.mlp.up_proj.weight",
1352
+ "sourceDType" : "BF16",
1353
+ "outputDType" : "Q4",
1354
+ "sourceShape" : [ 3072, 1024 ],
1355
+ "outputShape" : [ 3072, 1024 ],
1356
+ "quantized" : true,
1357
+ "sidecars" : [ "model.layers.22.mlp.up_proj.weight.qb" ],
1358
+ "oneDimensionalToRowVector" : false
1359
+ }, {
1360
+ "name" : "model.layers.12.mlp.gate_proj.weight",
1361
+ "sourceDType" : "BF16",
1362
+ "outputDType" : "Q4",
1363
+ "sourceShape" : [ 3072, 1024 ],
1364
+ "outputShape" : [ 3072, 1024 ],
1365
+ "quantized" : true,
1366
+ "sidecars" : [ "model.layers.12.mlp.gate_proj.weight.qb" ],
1367
+ "oneDimensionalToRowVector" : false
1368
+ }, {
1369
+ "name" : "model.layers.23.mlp.up_proj.weight",
1370
+ "sourceDType" : "BF16",
1371
+ "outputDType" : "Q4",
1372
+ "sourceShape" : [ 3072, 1024 ],
1373
+ "outputShape" : [ 3072, 1024 ],
1374
+ "quantized" : true,
1375
+ "sidecars" : [ "model.layers.23.mlp.up_proj.weight.qb" ],
1376
+ "oneDimensionalToRowVector" : false
1377
+ }, {
1378
+ "name" : "model.layers.13.self_attn.q_proj.weight",
1379
+ "sourceDType" : "BF16",
1380
+ "outputDType" : "Q4",
1381
+ "sourceShape" : [ 2048, 1024 ],
1382
+ "outputShape" : [ 2048, 1024 ],
1383
+ "quantized" : true,
1384
+ "sidecars" : [ "model.layers.13.self_attn.q_proj.weight.qb" ],
1385
+ "oneDimensionalToRowVector" : false
1386
+ }, {
1387
+ "name" : "model.layers.2.mlp.up_proj.weight",
1388
+ "sourceDType" : "BF16",
1389
+ "outputDType" : "Q4",
1390
+ "sourceShape" : [ 3072, 1024 ],
1391
+ "outputShape" : [ 3072, 1024 ],
1392
+ "quantized" : true,
1393
+ "sidecars" : [ "model.layers.2.mlp.up_proj.weight.qb" ],
1394
+ "oneDimensionalToRowVector" : false
1395
+ }, {
1396
+ "name" : "model.layers.5.mlp.up_proj.weight",
1397
+ "sourceDType" : "BF16",
1398
+ "outputDType" : "Q4",
1399
+ "sourceShape" : [ 3072, 1024 ],
1400
+ "outputShape" : [ 3072, 1024 ],
1401
+ "quantized" : true,
1402
+ "sidecars" : [ "model.layers.5.mlp.up_proj.weight.qb" ],
1403
+ "oneDimensionalToRowVector" : false
1404
+ }, {
1405
+ "name" : "model.layers.20.self_attn.q_norm.weight",
1406
+ "sourceDType" : "BF16",
1407
+ "outputDType" : "BF16",
1408
+ "sourceShape" : [ 1, 128 ],
1409
+ "outputShape" : [ 1, 128 ],
1410
+ "quantized" : false,
1411
+ "sidecars" : [ ],
1412
+ "oneDimensionalToRowVector" : false
1413
+ }, {
1414
+ "name" : "model.layers.3.mlp.up_proj.weight",
1415
+ "sourceDType" : "BF16",
1416
+ "outputDType" : "Q4",
1417
+ "sourceShape" : [ 3072, 1024 ],
1418
+ "outputShape" : [ 3072, 1024 ],
1419
+ "quantized" : true,
1420
+ "sidecars" : [ "model.layers.3.mlp.up_proj.weight.qb" ],
1421
+ "oneDimensionalToRowVector" : false
1422
+ }, {
1423
+ "name" : "model.layers.4.mlp.up_proj.weight",
1424
+ "sourceDType" : "BF16",
1425
+ "outputDType" : "Q4",
1426
+ "sourceShape" : [ 3072, 1024 ],
1427
+ "outputShape" : [ 3072, 1024 ],
1428
+ "quantized" : true,
1429
+ "sidecars" : [ "model.layers.4.mlp.up_proj.weight.qb" ],
1430
+ "oneDimensionalToRowVector" : false
1431
+ }, {
1432
+ "name" : "model.layers.25.mlp.up_proj.weight",
1433
+ "sourceDType" : "BF16",
1434
+ "outputDType" : "Q4",
1435
+ "sourceShape" : [ 3072, 1024 ],
1436
+ "outputShape" : [ 3072, 1024 ],
1437
+ "quantized" : true,
1438
+ "sidecars" : [ "model.layers.25.mlp.up_proj.weight.qb" ],
1439
+ "oneDimensionalToRowVector" : false
1440
+ }, {
1441
+ "name" : "model.layers.6.mlp.up_proj.weight",
1442
+ "sourceDType" : "BF16",
1443
+ "outputDType" : "Q4",
1444
+ "sourceShape" : [ 3072, 1024 ],
1445
+ "outputShape" : [ 3072, 1024 ],
1446
+ "quantized" : true,
1447
+ "sidecars" : [ "model.layers.6.mlp.up_proj.weight.qb" ],
1448
+ "oneDimensionalToRowVector" : false
1449
+ }, {
1450
+ "name" : "model.layers.26.mlp.up_proj.weight",
1451
+ "sourceDType" : "BF16",
1452
+ "outputDType" : "Q4",
1453
+ "sourceShape" : [ 3072, 1024 ],
1454
+ "outputShape" : [ 3072, 1024 ],
1455
+ "quantized" : true,
1456
+ "sidecars" : [ "model.layers.26.mlp.up_proj.weight.qb" ],
1457
+ "oneDimensionalToRowVector" : false
1458
+ }, {
1459
+ "name" : "model.layers.7.mlp.up_proj.weight",
1460
+ "sourceDType" : "BF16",
1461
+ "outputDType" : "Q4",
1462
+ "sourceShape" : [ 3072, 1024 ],
1463
+ "outputShape" : [ 3072, 1024 ],
1464
+ "quantized" : true,
1465
+ "sidecars" : [ "model.layers.7.mlp.up_proj.weight.qb" ],
1466
+ "oneDimensionalToRowVector" : false
1467
+ }, {
1468
+ "name" : "model.layers.24.mlp.up_proj.weight",
1469
+ "sourceDType" : "BF16",
1470
+ "outputDType" : "Q4",
1471
+ "sourceShape" : [ 3072, 1024 ],
1472
+ "outputShape" : [ 3072, 1024 ],
1473
+ "quantized" : true,
1474
+ "sidecars" : [ "model.layers.24.mlp.up_proj.weight.qb" ],
1475
+ "oneDimensionalToRowVector" : false
1476
+ }, {
1477
+ "name" : "model.layers.20.mlp.down_proj.weight",
1478
+ "sourceDType" : "BF16",
1479
+ "outputDType" : "Q4",
1480
+ "sourceShape" : [ 1024, 3072 ],
1481
+ "outputShape" : [ 1024, 3072 ],
1482
+ "quantized" : true,
1483
+ "sidecars" : [ "model.layers.20.mlp.down_proj.weight.qb" ],
1484
+ "oneDimensionalToRowVector" : false
1485
+ }, {
1486
+ "name" : "model.layers.21.mlp.up_proj.weight",
1487
+ "sourceDType" : "BF16",
1488
+ "outputDType" : "Q4",
1489
+ "sourceShape" : [ 3072, 1024 ],
1490
+ "outputShape" : [ 3072, 1024 ],
1491
+ "quantized" : true,
1492
+ "sidecars" : [ "model.layers.21.mlp.up_proj.weight.qb" ],
1493
+ "oneDimensionalToRowVector" : false
1494
+ }, {
1495
+ "name" : "model.layers.27.mlp.down_proj.weight",
1496
+ "sourceDType" : "BF16",
1497
+ "outputDType" : "Q4",
1498
+ "sourceShape" : [ 1024, 3072 ],
1499
+ "outputShape" : [ 1024, 3072 ],
1500
+ "quantized" : true,
1501
+ "sidecars" : [ "model.layers.27.mlp.down_proj.weight.qb" ],
1502
+ "oneDimensionalToRowVector" : false
1503
+ }, {
1504
+ "name" : "model.layers.20.mlp.up_proj.weight",
1505
+ "sourceDType" : "BF16",
1506
+ "outputDType" : "Q4",
1507
+ "sourceShape" : [ 3072, 1024 ],
1508
+ "outputShape" : [ 3072, 1024 ],
1509
+ "quantized" : true,
1510
+ "sidecars" : [ "model.layers.20.mlp.up_proj.weight.qb" ],
1511
+ "oneDimensionalToRowVector" : false
1512
+ }, {
1513
+ "name" : "model.layers.1.input_layernorm.weight",
1514
+ "sourceDType" : "BF16",
1515
+ "outputDType" : "BF16",
1516
+ "sourceShape" : [ 1, 1024 ],
1517
+ "outputShape" : [ 1, 1024 ],
1518
+ "quantized" : false,
1519
+ "sidecars" : [ ],
1520
+ "oneDimensionalToRowVector" : false
1521
+ }, {
1522
+ "name" : "model.layers.22.self_attn.q_proj.weight",
1523
+ "sourceDType" : "BF16",
1524
+ "outputDType" : "Q4",
1525
+ "sourceShape" : [ 2048, 1024 ],
1526
+ "outputShape" : [ 2048, 1024 ],
1527
+ "quantized" : true,
1528
+ "sidecars" : [ "model.layers.22.self_attn.q_proj.weight.qb" ],
1529
+ "oneDimensionalToRowVector" : false
1530
+ }, {
1531
+ "name" : "model.layers.7.mlp.gate_proj.weight",
1532
+ "sourceDType" : "BF16",
1533
+ "outputDType" : "Q4",
1534
+ "sourceShape" : [ 3072, 1024 ],
1535
+ "outputShape" : [ 3072, 1024 ],
1536
+ "quantized" : true,
1537
+ "sidecars" : [ "model.layers.7.mlp.gate_proj.weight.qb" ],
1538
+ "oneDimensionalToRowVector" : false
1539
+ }, {
1540
+ "name" : "model.layers.16.self_attn.q_proj.weight",
1541
+ "sourceDType" : "BF16",
1542
+ "outputDType" : "Q4",
1543
+ "sourceShape" : [ 2048, 1024 ],
1544
+ "outputShape" : [ 2048, 1024 ],
1545
+ "quantized" : true,
1546
+ "sidecars" : [ "model.layers.16.self_attn.q_proj.weight.qb" ],
1547
+ "oneDimensionalToRowVector" : false
1548
+ }, {
1549
+ "name" : "model.layers.11.self_attn.k_proj.weight",
1550
+ "sourceDType" : "BF16",
1551
+ "outputDType" : "Q4",
1552
+ "sourceShape" : [ 1024, 1024 ],
1553
+ "outputShape" : [ 1024, 1024 ],
1554
+ "quantized" : true,
1555
+ "sidecars" : [ "model.layers.11.self_attn.k_proj.weight.qb" ],
1556
+ "oneDimensionalToRowVector" : false
1557
+ }, {
1558
+ "name" : "model.layers.16.self_attn.v_proj.weight",
1559
+ "sourceDType" : "BF16",
1560
+ "outputDType" : "Q4",
1561
+ "sourceShape" : [ 1024, 1024 ],
1562
+ "outputShape" : [ 1024, 1024 ],
1563
+ "quantized" : true,
1564
+ "sidecars" : [ "model.layers.16.self_attn.v_proj.weight.qb" ],
1565
+ "oneDimensionalToRowVector" : false
1566
+ }, {
1567
+ "name" : "model.layers.16.self_attn.o_proj.weight",
1568
+ "sourceDType" : "BF16",
1569
+ "outputDType" : "Q4",
1570
+ "sourceShape" : [ 1024, 2048 ],
1571
+ "outputShape" : [ 1024, 2048 ],
1572
+ "quantized" : true,
1573
+ "sidecars" : [ "model.layers.16.self_attn.o_proj.weight.qb" ],
1574
+ "oneDimensionalToRowVector" : false
1575
+ }, {
1576
+ "name" : "model.layers.15.post_attention_layernorm.weight",
1577
+ "sourceDType" : "BF16",
1578
+ "outputDType" : "BF16",
1579
+ "sourceShape" : [ 1, 1024 ],
1580
+ "outputShape" : [ 1, 1024 ],
1581
+ "quantized" : false,
1582
+ "sidecars" : [ ],
1583
+ "oneDimensionalToRowVector" : false
1584
+ }, {
1585
+ "name" : "model.layers.7.self_attn.q_norm.weight",
1586
+ "sourceDType" : "BF16",
1587
+ "outputDType" : "BF16",
1588
+ "sourceShape" : [ 1, 128 ],
1589
+ "outputShape" : [ 1, 128 ],
1590
+ "quantized" : false,
1591
+ "sidecars" : [ ],
1592
+ "oneDimensionalToRowVector" : false
1593
+ }, {
1594
+ "name" : "model.layers.11.self_attn.o_proj.weight",
1595
+ "sourceDType" : "BF16",
1596
+ "outputDType" : "Q4",
1597
+ "sourceShape" : [ 1024, 2048 ],
1598
+ "outputShape" : [ 1024, 2048 ],
1599
+ "quantized" : true,
1600
+ "sidecars" : [ "model.layers.11.self_attn.o_proj.weight.qb" ],
1601
+ "oneDimensionalToRowVector" : false
1602
+ }, {
1603
+ "name" : "model.layers.14.input_layernorm.weight",
1604
+ "sourceDType" : "BF16",
1605
+ "outputDType" : "BF16",
1606
+ "sourceShape" : [ 1, 1024 ],
1607
+ "outputShape" : [ 1, 1024 ],
1608
+ "quantized" : false,
1609
+ "sidecars" : [ ],
1610
+ "oneDimensionalToRowVector" : false
1611
+ }, {
1612
+ "name" : "model.layers.11.mlp.up_proj.weight",
1613
+ "sourceDType" : "BF16",
1614
+ "outputDType" : "Q4",
1615
+ "sourceShape" : [ 3072, 1024 ],
1616
+ "outputShape" : [ 3072, 1024 ],
1617
+ "quantized" : true,
1618
+ "sidecars" : [ "model.layers.11.mlp.up_proj.weight.qb" ],
1619
+ "oneDimensionalToRowVector" : false
1620
+ }, {
1621
+ "name" : "model.layers.27.self_attn.v_proj.weight",
1622
+ "sourceDType" : "BF16",
1623
+ "outputDType" : "Q4",
1624
+ "sourceShape" : [ 1024, 1024 ],
1625
+ "outputShape" : [ 1024, 1024 ],
1626
+ "quantized" : true,
1627
+ "sidecars" : [ "model.layers.27.self_attn.v_proj.weight.qb" ],
1628
+ "oneDimensionalToRowVector" : false
1629
+ }, {
1630
+ "name" : "model.layers.19.mlp.down_proj.weight",
1631
+ "sourceDType" : "BF16",
1632
+ "outputDType" : "Q4",
1633
+ "sourceShape" : [ 1024, 3072 ],
1634
+ "outputShape" : [ 1024, 3072 ],
1635
+ "quantized" : true,
1636
+ "sidecars" : [ "model.layers.19.mlp.down_proj.weight.qb" ],
1637
+ "oneDimensionalToRowVector" : false
1638
+ }, {
1639
+ "name" : "model.layers.18.mlp.gate_proj.weight",
1640
+ "sourceDType" : "BF16",
1641
+ "outputDType" : "Q4",
1642
+ "sourceShape" : [ 3072, 1024 ],
1643
+ "outputShape" : [ 3072, 1024 ],
1644
+ "quantized" : true,
1645
+ "sidecars" : [ "model.layers.18.mlp.gate_proj.weight.qb" ],
1646
+ "oneDimensionalToRowVector" : false
1647
+ }, {
1648
+ "name" : "model.layers.11.self_attn.q_proj.weight",
1649
+ "sourceDType" : "BF16",
1650
+ "outputDType" : "Q4",
1651
+ "sourceShape" : [ 2048, 1024 ],
1652
+ "outputShape" : [ 2048, 1024 ],
1653
+ "quantized" : true,
1654
+ "sidecars" : [ "model.layers.11.self_attn.q_proj.weight.qb" ],
1655
+ "oneDimensionalToRowVector" : false
1656
+ }, {
1657
+ "name" : "model.layers.2.self_attn.q_norm.weight",
1658
+ "sourceDType" : "BF16",
1659
+ "outputDType" : "BF16",
1660
+ "sourceShape" : [ 1, 128 ],
1661
+ "outputShape" : [ 1, 128 ],
1662
+ "quantized" : false,
1663
+ "sidecars" : [ ],
1664
+ "oneDimensionalToRowVector" : false
1665
+ }, {
1666
+ "name" : "model.layers.23.input_layernorm.weight",
1667
+ "sourceDType" : "BF16",
1668
+ "outputDType" : "BF16",
1669
+ "sourceShape" : [ 1, 1024 ],
1670
+ "outputShape" : [ 1, 1024 ],
1671
+ "quantized" : false,
1672
+ "sidecars" : [ ],
1673
+ "oneDimensionalToRowVector" : false
1674
+ }, {
1675
+ "name" : "model.layers.22.self_attn.v_proj.weight",
1676
+ "sourceDType" : "BF16",
1677
+ "outputDType" : "Q4",
1678
+ "sourceShape" : [ 1024, 1024 ],
1679
+ "outputShape" : [ 1024, 1024 ],
1680
+ "quantized" : true,
1681
+ "sidecars" : [ "model.layers.22.self_attn.v_proj.weight.qb" ],
1682
+ "oneDimensionalToRowVector" : false
1683
+ }, {
1684
+ "name" : "model.layers.8.self_attn.k_proj.weight",
1685
+ "sourceDType" : "BF16",
1686
+ "outputDType" : "Q4",
1687
+ "sourceShape" : [ 1024, 1024 ],
1688
+ "outputShape" : [ 1024, 1024 ],
1689
+ "quantized" : true,
1690
+ "sidecars" : [ "model.layers.8.self_attn.k_proj.weight.qb" ],
1691
+ "oneDimensionalToRowVector" : false
1692
+ }, {
1693
+ "name" : "model.layers.8.mlp.down_proj.weight",
1694
+ "sourceDType" : "BF16",
1695
+ "outputDType" : "Q4",
1696
+ "sourceShape" : [ 1024, 3072 ],
1697
+ "outputShape" : [ 1024, 3072 ],
1698
+ "quantized" : true,
1699
+ "sidecars" : [ "model.layers.8.mlp.down_proj.weight.qb" ],
1700
+ "oneDimensionalToRowVector" : false
1701
+ }, {
1702
+ "name" : "model.layers.11.self_attn.v_proj.weight",
1703
+ "sourceDType" : "BF16",
1704
+ "outputDType" : "Q4",
1705
+ "sourceShape" : [ 1024, 1024 ],
1706
+ "outputShape" : [ 1024, 1024 ],
1707
+ "quantized" : true,
1708
+ "sidecars" : [ "model.layers.11.self_attn.v_proj.weight.qb" ],
1709
+ "oneDimensionalToRowVector" : false
1710
+ }, {
1711
+ "name" : "model.layers.27.self_attn.k_proj.weight",
1712
+ "sourceDType" : "BF16",
1713
+ "outputDType" : "Q4",
1714
+ "sourceShape" : [ 1024, 1024 ],
1715
+ "outputShape" : [ 1024, 1024 ],
1716
+ "quantized" : true,
1717
+ "sidecars" : [ "model.layers.27.self_attn.k_proj.weight.qb" ],
1718
+ "oneDimensionalToRowVector" : false
1719
+ }, {
1720
+ "name" : "model.layers.18.mlp.down_proj.weight",
1721
+ "sourceDType" : "BF16",
1722
+ "outputDType" : "Q4",
1723
+ "sourceShape" : [ 1024, 3072 ],
1724
+ "outputShape" : [ 1024, 3072 ],
1725
+ "quantized" : true,
1726
+ "sidecars" : [ "model.layers.18.mlp.down_proj.weight.qb" ],
1727
+ "oneDimensionalToRowVector" : false
1728
+ }, {
1729
+ "name" : "model.layers.7.self_attn.k_norm.weight",
1730
+ "sourceDType" : "BF16",
1731
+ "outputDType" : "BF16",
1732
+ "sourceShape" : [ 1, 128 ],
1733
+ "outputShape" : [ 1, 128 ],
1734
+ "quantized" : false,
1735
+ "sidecars" : [ ],
1736
+ "oneDimensionalToRowVector" : false
1737
+ }, {
1738
+ "name" : "model.layers.21.self_attn.q_norm.weight",
1739
+ "sourceDType" : "BF16",
1740
+ "outputDType" : "BF16",
1741
+ "sourceShape" : [ 1, 128 ],
1742
+ "outputShape" : [ 1, 128 ],
1743
+ "quantized" : false,
1744
+ "sidecars" : [ ],
1745
+ "oneDimensionalToRowVector" : false
1746
+ }, {
1747
+ "name" : "model.layers.1.self_attn.v_proj.weight",
1748
+ "sourceDType" : "BF16",
1749
+ "outputDType" : "Q4",
1750
+ "sourceShape" : [ 1024, 1024 ],
1751
+ "outputShape" : [ 1024, 1024 ],
1752
+ "quantized" : true,
1753
+ "sidecars" : [ "model.layers.1.self_attn.v_proj.weight.qb" ],
1754
+ "oneDimensionalToRowVector" : false
1755
+ }, {
1756
+ "name" : "model.layers.17.self_attn.k_norm.weight",
1757
+ "sourceDType" : "BF16",
1758
+ "outputDType" : "BF16",
1759
+ "sourceShape" : [ 1, 128 ],
1760
+ "outputShape" : [ 1, 128 ],
1761
+ "quantized" : false,
1762
+ "sidecars" : [ ],
1763
+ "oneDimensionalToRowVector" : false
1764
+ }, {
1765
+ "name" : "model.layers.22.self_attn.k_proj.weight",
1766
+ "sourceDType" : "BF16",
1767
+ "outputDType" : "Q4",
1768
+ "sourceShape" : [ 1024, 1024 ],
1769
+ "outputShape" : [ 1024, 1024 ],
1770
+ "quantized" : true,
1771
+ "sidecars" : [ "model.layers.22.self_attn.k_proj.weight.qb" ],
1772
+ "oneDimensionalToRowVector" : false
1773
+ }, {
1774
+ "name" : "model.layers.17.mlp.gate_proj.weight",
1775
+ "sourceDType" : "BF16",
1776
+ "outputDType" : "Q4",
1777
+ "sourceShape" : [ 3072, 1024 ],
1778
+ "outputShape" : [ 3072, 1024 ],
1779
+ "quantized" : true,
1780
+ "sidecars" : [ "model.layers.17.mlp.gate_proj.weight.qb" ],
1781
+ "oneDimensionalToRowVector" : false
1782
+ }, {
1783
+ "name" : "model.layers.8.mlp.gate_proj.weight",
1784
+ "sourceDType" : "BF16",
1785
+ "outputDType" : "Q4",
1786
+ "sourceShape" : [ 3072, 1024 ],
1787
+ "outputShape" : [ 3072, 1024 ],
1788
+ "quantized" : true,
1789
+ "sidecars" : [ "model.layers.8.mlp.gate_proj.weight.qb" ],
1790
+ "oneDimensionalToRowVector" : false
1791
+ }, {
1792
+ "name" : "model.layers.8.input_layernorm.weight",
1793
+ "sourceDType" : "BF16",
1794
+ "outputDType" : "BF16",
1795
+ "sourceShape" : [ 1, 1024 ],
1796
+ "outputShape" : [ 1, 1024 ],
1797
+ "quantized" : false,
1798
+ "sidecars" : [ ],
1799
+ "oneDimensionalToRowVector" : false
1800
+ }, {
1801
+ "name" : "model.layers.2.self_attn.k_norm.weight",
1802
+ "sourceDType" : "BF16",
1803
+ "outputDType" : "BF16",
1804
+ "sourceShape" : [ 1, 128 ],
1805
+ "outputShape" : [ 1, 128 ],
1806
+ "quantized" : false,
1807
+ "sidecars" : [ ],
1808
+ "oneDimensionalToRowVector" : false
1809
+ }, {
1810
+ "name" : "model.layers.27.self_attn.o_proj.weight",
1811
+ "sourceDType" : "BF16",
1812
+ "outputDType" : "Q4",
1813
+ "sourceShape" : [ 1024, 2048 ],
1814
+ "outputShape" : [ 1024, 2048 ],
1815
+ "quantized" : true,
1816
+ "sidecars" : [ "model.layers.27.self_attn.o_proj.weight.qb" ],
1817
+ "oneDimensionalToRowVector" : false
1818
+ }, {
1819
+ "name" : "model.layers.9.mlp.down_proj.weight",
1820
+ "sourceDType" : "BF16",
1821
+ "outputDType" : "Q4",
1822
+ "sourceShape" : [ 1024, 3072 ],
1823
+ "outputShape" : [ 1024, 3072 ],
1824
+ "quantized" : true,
1825
+ "sidecars" : [ "model.layers.9.mlp.down_proj.weight.qb" ],
1826
+ "oneDimensionalToRowVector" : false
1827
+ }, {
1828
+ "name" : "model.layers.14.post_attention_layernorm.weight",
1829
+ "sourceDType" : "BF16",
1830
+ "outputDType" : "BF16",
1831
+ "sourceShape" : [ 1, 1024 ],
1832
+ "outputShape" : [ 1, 1024 ],
1833
+ "quantized" : false,
1834
+ "sidecars" : [ ],
1835
+ "oneDimensionalToRowVector" : false
1836
+ }, {
1837
+ "name" : "model.layers.22.self_attn.o_proj.weight",
1838
+ "sourceDType" : "BF16",
1839
+ "outputDType" : "Q4",
1840
+ "sourceShape" : [ 1024, 2048 ],
1841
+ "outputShape" : [ 1024, 2048 ],
1842
+ "quantized" : true,
1843
+ "sidecars" : [ "model.layers.22.self_attn.o_proj.weight.qb" ],
1844
+ "oneDimensionalToRowVector" : false
1845
+ }, {
1846
+ "name" : "model.layers.27.self_attn.q_proj.weight",
1847
+ "sourceDType" : "BF16",
1848
+ "outputDType" : "Q4",
1849
+ "sourceShape" : [ 2048, 1024 ],
1850
+ "outputShape" : [ 2048, 1024 ],
1851
+ "quantized" : true,
1852
+ "sidecars" : [ "model.layers.27.self_attn.q_proj.weight.qb" ],
1853
+ "oneDimensionalToRowVector" : false
1854
+ }, {
1855
+ "name" : "model.layers.17.self_attn.q_norm.weight",
1856
+ "sourceDType" : "BF16",
1857
+ "outputDType" : "BF16",
1858
+ "sourceShape" : [ 1, 128 ],
1859
+ "outputShape" : [ 1, 128 ],
1860
+ "quantized" : false,
1861
+ "sidecars" : [ ],
1862
+ "oneDimensionalToRowVector" : false
1863
+ }, {
1864
+ "name" : "model.layers.6.mlp.down_proj.weight",
1865
+ "sourceDType" : "BF16",
1866
+ "outputDType" : "Q4",
1867
+ "sourceShape" : [ 1024, 3072 ],
1868
+ "outputShape" : [ 1024, 3072 ],
1869
+ "quantized" : true,
1870
+ "sidecars" : [ "model.layers.6.mlp.down_proj.weight.qb" ],
1871
+ "oneDimensionalToRowVector" : false
1872
+ }, {
1873
+ "name" : "model.layers.12.self_attn.k_norm.weight",
1874
+ "sourceDType" : "BF16",
1875
+ "outputDType" : "BF16",
1876
+ "sourceShape" : [ 1, 128 ],
1877
+ "outputShape" : [ 1, 128 ],
1878
+ "quantized" : false,
1879
+ "sidecars" : [ ],
1880
+ "oneDimensionalToRowVector" : false
1881
+ }, {
1882
+ "name" : "model.layers.23.self_attn.q_norm.weight",
1883
+ "sourceDType" : "BF16",
1884
+ "outputDType" : "BF16",
1885
+ "sourceShape" : [ 1, 128 ],
1886
+ "outputShape" : [ 1, 128 ],
1887
+ "quantized" : false,
1888
+ "sidecars" : [ ],
1889
+ "oneDimensionalToRowVector" : false
1890
+ }, {
1891
+ "name" : "model.layers.16.post_attention_layernorm.weight",
1892
+ "sourceDType" : "BF16",
1893
+ "outputDType" : "BF16",
1894
+ "sourceShape" : [ 1, 1024 ],
1895
+ "outputShape" : [ 1, 1024 ],
1896
+ "quantized" : false,
1897
+ "sidecars" : [ ],
1898
+ "oneDimensionalToRowVector" : false
1899
+ }, {
1900
+ "name" : "model.layers.17.mlp.down_proj.weight",
1901
+ "sourceDType" : "BF16",
1902
+ "outputDType" : "Q4",
1903
+ "sourceShape" : [ 1024, 3072 ],
1904
+ "outputShape" : [ 1024, 3072 ],
1905
+ "quantized" : true,
1906
+ "sidecars" : [ "model.layers.17.mlp.down_proj.weight.qb" ],
1907
+ "oneDimensionalToRowVector" : false
1908
+ }, {
1909
+ "name" : "model.layers.15.mlp.gate_proj.weight",
1910
+ "sourceDType" : "BF16",
1911
+ "outputDType" : "Q4",
1912
+ "sourceShape" : [ 3072, 1024 ],
1913
+ "outputShape" : [ 3072, 1024 ],
1914
+ "quantized" : true,
1915
+ "sidecars" : [ "model.layers.15.mlp.gate_proj.weight.qb" ],
1916
+ "oneDimensionalToRowVector" : false
1917
+ }, {
1918
+ "name" : "model.layers.16.input_layernorm.weight",
1919
+ "sourceDType" : "BF16",
1920
+ "outputDType" : "BF16",
1921
+ "sourceShape" : [ 1, 1024 ],
1922
+ "outputShape" : [ 1, 1024 ],
1923
+ "quantized" : false,
1924
+ "sidecars" : [ ],
1925
+ "oneDimensionalToRowVector" : false
1926
+ }, {
1927
+ "name" : "model.layers.16.mlp.down_proj.weight",
1928
+ "sourceDType" : "BF16",
1929
+ "outputDType" : "Q4",
1930
+ "sourceShape" : [ 1024, 3072 ],
1931
+ "outputShape" : [ 1024, 3072 ],
1932
+ "quantized" : true,
1933
+ "sidecars" : [ "model.layers.16.mlp.down_proj.weight.qb" ],
1934
+ "oneDimensionalToRowVector" : false
1935
+ }, {
1936
+ "name" : "model.layers.16.mlp.gate_proj.weight",
1937
+ "sourceDType" : "BF16",
1938
+ "outputDType" : "Q4",
1939
+ "sourceShape" : [ 3072, 1024 ],
1940
+ "outputShape" : [ 3072, 1024 ],
1941
+ "quantized" : true,
1942
+ "sidecars" : [ "model.layers.16.mlp.gate_proj.weight.qb" ],
1943
+ "oneDimensionalToRowVector" : false
1944
+ }, {
1945
+ "name" : "model.layers.3.self_attn.v_proj.weight",
1946
+ "sourceDType" : "BF16",
1947
+ "outputDType" : "Q4",
1948
+ "sourceShape" : [ 1024, 1024 ],
1949
+ "outputShape" : [ 1024, 1024 ],
1950
+ "quantized" : true,
1951
+ "sidecars" : [ "model.layers.3.self_attn.v_proj.weight.qb" ],
1952
+ "oneDimensionalToRowVector" : false
1953
+ }, {
1954
+ "name" : "model.layers.21.input_layernorm.weight",
1955
+ "sourceDType" : "BF16",
1956
+ "outputDType" : "BF16",
1957
+ "sourceShape" : [ 1, 1024 ],
1958
+ "outputShape" : [ 1, 1024 ],
1959
+ "quantized" : false,
1960
+ "sidecars" : [ ],
1961
+ "oneDimensionalToRowVector" : false
1962
+ }, {
1963
+ "name" : "model.layers.5.mlp.gate_proj.weight",
1964
+ "sourceDType" : "BF16",
1965
+ "outputDType" : "Q4",
1966
+ "sourceShape" : [ 3072, 1024 ],
1967
+ "outputShape" : [ 3072, 1024 ],
1968
+ "quantized" : true,
1969
+ "sidecars" : [ "model.layers.5.mlp.gate_proj.weight.qb" ],
1970
+ "oneDimensionalToRowVector" : false
1971
+ }, {
1972
+ "name" : "model.layers.12.self_attn.q_norm.weight",
1973
+ "sourceDType" : "BF16",
1974
+ "outputDType" : "BF16",
1975
+ "sourceShape" : [ 1, 128 ],
1976
+ "outputShape" : [ 1, 128 ],
1977
+ "quantized" : false,
1978
+ "sidecars" : [ ],
1979
+ "oneDimensionalToRowVector" : false
1980
+ }, {
1981
+ "name" : "model.layers.20.post_attention_layernorm.weight",
1982
+ "sourceDType" : "BF16",
1983
+ "outputDType" : "BF16",
1984
+ "sourceShape" : [ 1, 1024 ],
1985
+ "outputShape" : [ 1, 1024 ],
1986
+ "quantized" : false,
1987
+ "sidecars" : [ ],
1988
+ "oneDimensionalToRowVector" : false
1989
+ }, {
1990
+ "name" : "model.layers.8.self_attn.v_proj.weight",
1991
+ "sourceDType" : "BF16",
1992
+ "outputDType" : "Q4",
1993
+ "sourceShape" : [ 1024, 1024 ],
1994
+ "outputShape" : [ 1024, 1024 ],
1995
+ "quantized" : true,
1996
+ "sidecars" : [ "model.layers.8.self_attn.v_proj.weight.qb" ],
1997
+ "oneDimensionalToRowVector" : false
1998
+ }, {
1999
+ "name" : "model.layers.20.self_attn.q_proj.weight",
2000
+ "sourceDType" : "BF16",
2001
+ "outputDType" : "Q4",
2002
+ "sourceShape" : [ 2048, 1024 ],
2003
+ "outputShape" : [ 2048, 1024 ],
2004
+ "quantized" : true,
2005
+ "sidecars" : [ "model.layers.20.self_attn.q_proj.weight.qb" ],
2006
+ "oneDimensionalToRowVector" : false
2007
+ }, {
2008
+ "name" : "model.layers.0.self_attn.q_norm.weight",
2009
+ "sourceDType" : "BF16",
2010
+ "outputDType" : "BF16",
2011
+ "sourceShape" : [ 1, 128 ],
2012
+ "outputShape" : [ 1, 128 ],
2013
+ "quantized" : false,
2014
+ "sidecars" : [ ],
2015
+ "oneDimensionalToRowVector" : false
2016
+ }, {
2017
+ "name" : "model.layers.3.self_attn.k_proj.weight",
2018
+ "sourceDType" : "BF16",
2019
+ "outputDType" : "Q4",
2020
+ "sourceShape" : [ 1024, 1024 ],
2021
+ "outputShape" : [ 1024, 1024 ],
2022
+ "quantized" : true,
2023
+ "sidecars" : [ "model.layers.3.self_attn.k_proj.weight.qb" ],
2024
+ "oneDimensionalToRowVector" : false
2025
+ }, {
2026
+ "name" : "model.layers.3.self_attn.o_proj.weight",
2027
+ "sourceDType" : "BF16",
2028
+ "outputDType" : "Q4",
2029
+ "sourceShape" : [ 1024, 2048 ],
2030
+ "outputShape" : [ 1024, 2048 ],
2031
+ "quantized" : true,
2032
+ "sidecars" : [ "model.layers.3.self_attn.o_proj.weight.qb" ],
2033
+ "oneDimensionalToRowVector" : false
2034
+ }, {
2035
+ "name" : "model.layers.25.self_attn.v_proj.weight",
2036
+ "sourceDType" : "BF16",
2037
+ "outputDType" : "Q4",
2038
+ "sourceShape" : [ 1024, 1024 ],
2039
+ "outputShape" : [ 1024, 1024 ],
2040
+ "quantized" : true,
2041
+ "sidecars" : [ "model.layers.25.self_attn.v_proj.weight.qb" ],
2042
+ "oneDimensionalToRowVector" : false
2043
+ }, {
2044
+ "name" : "model.layers.23.self_attn.k_norm.weight",
2045
+ "sourceDType" : "BF16",
2046
+ "outputDType" : "BF16",
2047
+ "sourceShape" : [ 1, 128 ],
2048
+ "outputShape" : [ 1, 128 ],
2049
+ "quantized" : false,
2050
+ "sidecars" : [ ],
2051
+ "oneDimensionalToRowVector" : false
2052
+ }, {
2053
+ "name" : "model.layers.8.self_attn.o_proj.weight",
2054
+ "sourceDType" : "BF16",
2055
+ "outputDType" : "Q4",
2056
+ "sourceShape" : [ 1024, 2048 ],
2057
+ "outputShape" : [ 1024, 2048 ],
2058
+ "quantized" : true,
2059
+ "sidecars" : [ "model.layers.8.self_attn.o_proj.weight.qb" ],
2060
+ "oneDimensionalToRowVector" : false
2061
+ }, {
2062
+ "name" : "model.layers.5.self_attn.q_norm.weight",
2063
+ "sourceDType" : "BF16",
2064
+ "outputDType" : "BF16",
2065
+ "sourceShape" : [ 1, 128 ],
2066
+ "outputShape" : [ 1, 128 ],
2067
+ "quantized" : false,
2068
+ "sidecars" : [ ],
2069
+ "oneDimensionalToRowVector" : false
2070
+ }, {
2071
+ "name" : "model.layers.7.mlp.down_proj.weight",
2072
+ "sourceDType" : "BF16",
2073
+ "outputDType" : "Q4",
2074
+ "sourceShape" : [ 1024, 3072 ],
2075
+ "outputShape" : [ 1024, 3072 ],
2076
+ "quantized" : true,
2077
+ "sidecars" : [ "model.layers.7.mlp.down_proj.weight.qb" ],
2078
+ "oneDimensionalToRowVector" : false
2079
+ }, {
2080
+ "name" : "model.layers.21.post_attention_layernorm.weight",
2081
+ "sourceDType" : "BF16",
2082
+ "outputDType" : "BF16",
2083
+ "sourceShape" : [ 1, 1024 ],
2084
+ "outputShape" : [ 1, 1024 ],
2085
+ "quantized" : false,
2086
+ "sidecars" : [ ],
2087
+ "oneDimensionalToRowVector" : false
2088
+ }, {
2089
+ "name" : "model.layers.8.self_attn.q_proj.weight",
2090
+ "sourceDType" : "BF16",
2091
+ "outputDType" : "Q4",
2092
+ "sourceShape" : [ 2048, 1024 ],
2093
+ "outputShape" : [ 2048, 1024 ],
2094
+ "quantized" : true,
2095
+ "sidecars" : [ "model.layers.8.self_attn.q_proj.weight.qb" ],
2096
+ "oneDimensionalToRowVector" : false
2097
+ }, {
2098
+ "name" : "model.layers.6.input_layernorm.weight",
2099
+ "sourceDType" : "BF16",
2100
+ "outputDType" : "BF16",
2101
+ "sourceShape" : [ 1, 1024 ],
2102
+ "outputShape" : [ 1, 1024 ],
2103
+ "quantized" : false,
2104
+ "sidecars" : [ ],
2105
+ "oneDimensionalToRowVector" : false
2106
+ }, {
2107
+ "name" : "model.layers.20.self_attn.v_proj.weight",
2108
+ "sourceDType" : "BF16",
2109
+ "outputDType" : "Q4",
2110
+ "sourceShape" : [ 1024, 1024 ],
2111
+ "outputShape" : [ 1024, 1024 ],
2112
+ "quantized" : true,
2113
+ "sidecars" : [ "model.layers.20.self_attn.v_proj.weight.qb" ],
2114
+ "oneDimensionalToRowVector" : false
2115
+ }, {
2116
+ "name" : "model.layers.16.self_attn.k_proj.weight",
2117
+ "sourceDType" : "BF16",
2118
+ "outputDType" : "Q4",
2119
+ "sourceShape" : [ 1024, 1024 ],
2120
+ "outputShape" : [ 1024, 1024 ],
2121
+ "quantized" : true,
2122
+ "sidecars" : [ "model.layers.16.self_attn.k_proj.weight.qb" ],
2123
+ "oneDimensionalToRowVector" : false
2124
+ }, {
2125
+ "name" : "model.layers.3.self_attn.q_proj.weight",
2126
+ "sourceDType" : "BF16",
2127
+ "outputDType" : "Q4",
2128
+ "sourceShape" : [ 2048, 1024 ],
2129
+ "outputShape" : [ 2048, 1024 ],
2130
+ "quantized" : true,
2131
+ "sidecars" : [ "model.layers.3.self_attn.q_proj.weight.qb" ],
2132
+ "oneDimensionalToRowVector" : false
2133
+ }, {
2134
+ "name" : "model.layers.6.mlp.gate_proj.weight",
2135
+ "sourceDType" : "BF16",
2136
+ "outputDType" : "Q4",
2137
+ "sourceShape" : [ 3072, 1024 ],
2138
+ "outputShape" : [ 3072, 1024 ],
2139
+ "quantized" : true,
2140
+ "sidecars" : [ "model.layers.6.mlp.gate_proj.weight.qb" ],
2141
+ "oneDimensionalToRowVector" : false
2142
+ }, {
2143
+ "name" : "model.layers.13.self_attn.q_norm.weight",
2144
+ "sourceDType" : "BF16",
2145
+ "outputDType" : "BF16",
2146
+ "sourceShape" : [ 1, 128 ],
2147
+ "outputShape" : [ 1, 128 ],
2148
+ "quantized" : false,
2149
+ "sidecars" : [ ],
2150
+ "oneDimensionalToRowVector" : false
2151
+ }, {
2152
+ "name" : "model.layers.13.self_attn.v_proj.weight",
2153
+ "sourceDType" : "BF16",
2154
+ "outputDType" : "Q4",
2155
+ "sourceShape" : [ 1024, 1024 ],
2156
+ "outputShape" : [ 1024, 1024 ],
2157
+ "quantized" : true,
2158
+ "sidecars" : [ "model.layers.13.self_attn.v_proj.weight.qb" ],
2159
+ "oneDimensionalToRowVector" : false
2160
+ }, {
2161
+ "name" : "model.layers.22.mlp.gate_proj.weight",
2162
+ "sourceDType" : "BF16",
2163
+ "outputDType" : "Q4",
2164
+ "sourceShape" : [ 3072, 1024 ],
2165
+ "outputShape" : [ 3072, 1024 ],
2166
+ "quantized" : true,
2167
+ "sidecars" : [ "model.layers.22.mlp.gate_proj.weight.qb" ],
2168
+ "oneDimensionalToRowVector" : false
2169
+ }, {
2170
+ "name" : "model.layers.19.self_attn.k_proj.weight",
2171
+ "sourceDType" : "BF16",
2172
+ "outputDType" : "Q4",
2173
+ "sourceShape" : [ 1024, 1024 ],
2174
+ "outputShape" : [ 1024, 1024 ],
2175
+ "quantized" : true,
2176
+ "sidecars" : [ "model.layers.19.self_attn.k_proj.weight.qb" ],
2177
+ "oneDimensionalToRowVector" : false
2178
+ }, {
2179
+ "name" : "model.layers.27.input_layernorm.weight",
2180
+ "sourceDType" : "BF16",
2181
+ "outputDType" : "BF16",
2182
+ "sourceShape" : [ 1, 1024 ],
2183
+ "outputShape" : [ 1, 1024 ],
2184
+ "quantized" : false,
2185
+ "sidecars" : [ ],
2186
+ "oneDimensionalToRowVector" : false
2187
+ }, {
2188
+ "name" : "model.layers.25.self_attn.k_proj.weight",
2189
+ "sourceDType" : "BF16",
2190
+ "outputDType" : "Q4",
2191
+ "sourceShape" : [ 1024, 1024 ],
2192
+ "outputShape" : [ 1024, 1024 ],
2193
+ "quantized" : true,
2194
+ "sidecars" : [ "model.layers.25.self_attn.k_proj.weight.qb" ],
2195
+ "oneDimensionalToRowVector" : false
2196
+ }, {
2197
+ "name" : "model.layers.4.mlp.down_proj.weight",
2198
+ "sourceDType" : "BF16",
2199
+ "outputDType" : "Q4",
2200
+ "sourceShape" : [ 1024, 3072 ],
2201
+ "outputShape" : [ 1024, 3072 ],
2202
+ "quantized" : true,
2203
+ "sidecars" : [ "model.layers.4.mlp.down_proj.weight.qb" ],
2204
+ "oneDimensionalToRowVector" : false
2205
+ }, {
2206
+ "name" : "model.layers.24.mlp.down_proj.weight",
2207
+ "sourceDType" : "BF16",
2208
+ "outputDType" : "Q4",
2209
+ "sourceShape" : [ 1024, 3072 ],
2210
+ "outputShape" : [ 1024, 3072 ],
2211
+ "quantized" : true,
2212
+ "sidecars" : [ "model.layers.24.mlp.down_proj.weight.qb" ],
2213
+ "oneDimensionalToRowVector" : false
2214
+ }, {
2215
+ "name" : "model.layers.19.self_attn.q_proj.weight",
2216
+ "sourceDType" : "BF16",
2217
+ "outputDType" : "Q4",
2218
+ "sourceShape" : [ 2048, 1024 ],
2219
+ "outputShape" : [ 2048, 1024 ],
2220
+ "quantized" : true,
2221
+ "sidecars" : [ "model.layers.19.self_attn.q_proj.weight.qb" ],
2222
+ "oneDimensionalToRowVector" : false
2223
+ }, {
2224
+ "name" : "model.layers.23.mlp.down_proj.weight",
2225
+ "sourceDType" : "BF16",
2226
+ "outputDType" : "Q4",
2227
+ "sourceShape" : [ 1024, 3072 ],
2228
+ "outputShape" : [ 1024, 3072 ],
2229
+ "quantized" : true,
2230
+ "sidecars" : [ "model.layers.23.mlp.down_proj.weight.qb" ],
2231
+ "oneDimensionalToRowVector" : false
2232
+ }, {
2233
+ "name" : "model.layers.2.post_attention_layernorm.weight",
2234
+ "sourceDType" : "BF16",
2235
+ "outputDType" : "BF16",
2236
+ "sourceShape" : [ 1, 1024 ],
2237
+ "outputShape" : [ 1, 1024 ],
2238
+ "quantized" : false,
2239
+ "sidecars" : [ ],
2240
+ "oneDimensionalToRowVector" : false
2241
+ }, {
2242
+ "name" : "model.layers.18.post_attention_layernorm.weight",
2243
+ "sourceDType" : "BF16",
2244
+ "outputDType" : "BF16",
2245
+ "sourceShape" : [ 1, 1024 ],
2246
+ "outputShape" : [ 1, 1024 ],
2247
+ "quantized" : false,
2248
+ "sidecars" : [ ],
2249
+ "oneDimensionalToRowVector" : false
2250
+ }, {
2251
+ "name" : "model.layers.19.self_attn.o_proj.weight",
2252
+ "sourceDType" : "BF16",
2253
+ "outputDType" : "Q4",
2254
+ "sourceShape" : [ 1024, 2048 ],
2255
+ "outputShape" : [ 1024, 2048 ],
2256
+ "quantized" : true,
2257
+ "sidecars" : [ "model.layers.19.self_attn.o_proj.weight.qb" ],
2258
+ "oneDimensionalToRowVector" : false
2259
+ }, {
2260
+ "name" : "model.layers.5.input_layernorm.weight",
2261
+ "sourceDType" : "BF16",
2262
+ "outputDType" : "BF16",
2263
+ "sourceShape" : [ 1, 1024 ],
2264
+ "outputShape" : [ 1, 1024 ],
2265
+ "quantized" : false,
2266
+ "sidecars" : [ ],
2267
+ "oneDimensionalToRowVector" : false
2268
+ }, {
2269
+ "name" : "model.layers.25.self_attn.o_proj.weight",
2270
+ "sourceDType" : "BF16",
2271
+ "outputDType" : "Q4",
2272
+ "sourceShape" : [ 1024, 2048 ],
2273
+ "outputShape" : [ 1024, 2048 ],
2274
+ "quantized" : true,
2275
+ "sidecars" : [ "model.layers.25.self_attn.o_proj.weight.qb" ],
2276
+ "oneDimensionalToRowVector" : false
2277
+ }, {
2278
+ "name" : "model.layers.13.mlp.gate_proj.weight",
2279
+ "sourceDType" : "BF16",
2280
+ "outputDType" : "Q4",
2281
+ "sourceShape" : [ 3072, 1024 ],
2282
+ "outputShape" : [ 3072, 1024 ],
2283
+ "quantized" : true,
2284
+ "sidecars" : [ "model.layers.13.mlp.gate_proj.weight.qb" ],
2285
+ "oneDimensionalToRowVector" : false
2286
+ }, {
2287
+ "name" : "model.layers.14.self_attn.k_proj.weight",
2288
+ "sourceDType" : "BF16",
2289
+ "outputDType" : "Q4",
2290
+ "sourceShape" : [ 1024, 1024 ],
2291
+ "outputShape" : [ 1024, 1024 ],
2292
+ "quantized" : true,
2293
+ "sidecars" : [ "model.layers.14.self_attn.k_proj.weight.qb" ],
2294
+ "oneDimensionalToRowVector" : false
2295
+ }, {
2296
+ "name" : "model.layers.23.mlp.gate_proj.weight",
2297
+ "sourceDType" : "BF16",
2298
+ "outputDType" : "Q4",
2299
+ "sourceShape" : [ 3072, 1024 ],
2300
+ "outputShape" : [ 3072, 1024 ],
2301
+ "quantized" : true,
2302
+ "sidecars" : [ "model.layers.23.mlp.gate_proj.weight.qb" ],
2303
+ "oneDimensionalToRowVector" : false
2304
+ }, {
2305
+ "name" : "model.layers.20.self_attn.o_proj.weight",
2306
+ "sourceDType" : "BF16",
2307
+ "outputDType" : "Q4",
2308
+ "sourceShape" : [ 1024, 2048 ],
2309
+ "outputShape" : [ 1024, 2048 ],
2310
+ "quantized" : true,
2311
+ "sidecars" : [ "model.layers.20.self_attn.o_proj.weight.qb" ],
2312
+ "oneDimensionalToRowVector" : false
2313
+ }, {
2314
+ "name" : "model.layers.14.mlp.down_proj.weight",
2315
+ "sourceDType" : "BF16",
2316
+ "outputDType" : "Q4",
2317
+ "sourceShape" : [ 1024, 3072 ],
2318
+ "outputShape" : [ 1024, 3072 ],
2319
+ "quantized" : true,
2320
+ "sidecars" : [ "model.layers.14.mlp.down_proj.weight.qb" ],
2321
+ "oneDimensionalToRowVector" : false
2322
+ }, {
2323
+ "name" : "model.layers.25.self_attn.q_proj.weight",
2324
+ "sourceDType" : "BF16",
2325
+ "outputDType" : "Q4",
2326
+ "sourceShape" : [ 2048, 1024 ],
2327
+ "outputShape" : [ 2048, 1024 ],
2328
+ "quantized" : true,
2329
+ "sidecars" : [ "model.layers.25.self_attn.q_proj.weight.qb" ],
2330
+ "oneDimensionalToRowVector" : false
2331
+ }, {
2332
+ "name" : "model.layers.14.self_attn.o_proj.weight",
2333
+ "sourceDType" : "BF16",
2334
+ "outputDType" : "Q4",
2335
+ "sourceShape" : [ 1024, 2048 ],
2336
+ "outputShape" : [ 1024, 2048 ],
2337
+ "quantized" : true,
2338
+ "sidecars" : [ "model.layers.14.self_attn.o_proj.weight.qb" ],
2339
+ "oneDimensionalToRowVector" : false
2340
+ }, {
2341
+ "name" : "model.layers.1.mlp.gate_proj.weight",
2342
+ "sourceDType" : "BF16",
2343
+ "outputDType" : "Q4",
2344
+ "sourceShape" : [ 3072, 1024 ],
2345
+ "outputShape" : [ 3072, 1024 ],
2346
+ "quantized" : true,
2347
+ "sidecars" : [ "model.layers.1.mlp.gate_proj.weight.qb" ],
2348
+ "oneDimensionalToRowVector" : false
2349
+ }, {
2350
+ "name" : "model.layers.14.self_attn.q_proj.weight",
2351
+ "sourceDType" : "BF16",
2352
+ "outputDType" : "Q4",
2353
+ "sourceShape" : [ 2048, 1024 ],
2354
+ "outputShape" : [ 2048, 1024 ],
2355
+ "quantized" : true,
2356
+ "sidecars" : [ "model.layers.14.self_attn.q_proj.weight.qb" ],
2357
+ "oneDimensionalToRowVector" : false
2358
+ }, {
2359
+ "name" : "model.layers.19.input_layernorm.weight",
2360
+ "sourceDType" : "BF16",
2361
+ "outputDType" : "BF16",
2362
+ "sourceShape" : [ 1, 1024 ],
2363
+ "outputShape" : [ 1, 1024 ],
2364
+ "quantized" : false,
2365
+ "sidecars" : [ ],
2366
+ "oneDimensionalToRowVector" : false
2367
+ }, {
2368
+ "name" : "model.layers.4.self_attn.q_proj.weight",
2369
+ "sourceDType" : "BF16",
2370
+ "outputDType" : "Q4",
2371
+ "sourceShape" : [ 2048, 1024 ],
2372
+ "outputShape" : [ 2048, 1024 ],
2373
+ "quantized" : true,
2374
+ "sidecars" : [ "model.layers.4.self_attn.q_proj.weight.qb" ],
2375
+ "oneDimensionalToRowVector" : false
2376
+ }, {
2377
+ "name" : "model.layers.10.input_layernorm.weight",
2378
+ "sourceDType" : "BF16",
2379
+ "outputDType" : "BF16",
2380
+ "sourceShape" : [ 1, 1024 ],
2381
+ "outputShape" : [ 1, 1024 ],
2382
+ "quantized" : false,
2383
+ "sidecars" : [ ],
2384
+ "oneDimensionalToRowVector" : false
2385
+ }, {
2386
+ "name" : "model.layers.22.post_attention_layernorm.weight",
2387
+ "sourceDType" : "BF16",
2388
+ "outputDType" : "BF16",
2389
+ "sourceShape" : [ 1, 1024 ],
2390
+ "outputShape" : [ 1, 1024 ],
2391
+ "quantized" : false,
2392
+ "sidecars" : [ ],
2393
+ "oneDimensionalToRowVector" : false
2394
+ }, {
2395
+ "name" : "model.layers.17.post_attention_layernorm.weight",
2396
+ "sourceDType" : "BF16",
2397
+ "outputDType" : "BF16",
2398
+ "sourceShape" : [ 1, 1024 ],
2399
+ "outputShape" : [ 1, 1024 ],
2400
+ "quantized" : false,
2401
+ "sidecars" : [ ],
2402
+ "oneDimensionalToRowVector" : false
2403
+ }, {
2404
+ "name" : "model.layers.20.self_attn.k_proj.weight",
2405
+ "sourceDType" : "BF16",
2406
+ "outputDType" : "Q4",
2407
+ "sourceShape" : [ 1024, 1024 ],
2408
+ "outputShape" : [ 1024, 1024 ],
2409
+ "quantized" : true,
2410
+ "sidecars" : [ "model.layers.20.self_attn.k_proj.weight.qb" ],
2411
+ "oneDimensionalToRowVector" : false
2412
+ }, {
2413
+ "name" : "model.layers.9.self_attn.q_norm.weight",
2414
+ "sourceDType" : "BF16",
2415
+ "outputDType" : "BF16",
2416
+ "sourceShape" : [ 1, 128 ],
2417
+ "outputShape" : [ 1, 128 ],
2418
+ "quantized" : false,
2419
+ "sidecars" : [ ],
2420
+ "oneDimensionalToRowVector" : false
2421
+ }, {
2422
+ "name" : "model.layers.24.self_attn.q_norm.weight",
2423
+ "sourceDType" : "BF16",
2424
+ "outputDType" : "BF16",
2425
+ "sourceShape" : [ 1, 128 ],
2426
+ "outputShape" : [ 1, 128 ],
2427
+ "quantized" : false,
2428
+ "sidecars" : [ ],
2429
+ "oneDimensionalToRowVector" : false
2430
+ }, {
2431
+ "name" : "model.layers.24.self_attn.v_proj.weight",
2432
+ "sourceDType" : "BF16",
2433
+ "outputDType" : "Q4",
2434
+ "sourceShape" : [ 1024, 1024 ],
2435
+ "outputShape" : [ 1024, 1024 ],
2436
+ "quantized" : true,
2437
+ "sidecars" : [ "model.layers.24.self_attn.v_proj.weight.qb" ],
2438
+ "oneDimensionalToRowVector" : false
2439
+ }, {
2440
+ "name" : "model.layers.2.mlp.down_proj.weight",
2441
+ "sourceDType" : "BF16",
2442
+ "outputDType" : "Q4",
2443
+ "sourceShape" : [ 1024, 3072 ],
2444
+ "outputShape" : [ 1024, 3072 ],
2445
+ "quantized" : true,
2446
+ "sidecars" : [ "model.layers.2.mlp.down_proj.weight.qb" ],
2447
+ "oneDimensionalToRowVector" : false
2448
+ }, {
2449
+ "name" : "model.embed_tokens.weight",
2450
+ "sourceDType" : "BF16",
2451
+ "outputDType" : "BF16",
2452
+ "sourceShape" : [ 151936, 1024 ],
2453
+ "outputShape" : [ 151936, 1024 ],
2454
+ "quantized" : false,
2455
+ "sidecars" : [ ],
2456
+ "oneDimensionalToRowVector" : false
2457
+ }, {
2458
+ "name" : "model.layers.4.self_attn.q_norm.weight",
2459
+ "sourceDType" : "BF16",
2460
+ "outputDType" : "BF16",
2461
+ "sourceShape" : [ 1, 128 ],
2462
+ "outputShape" : [ 1, 128 ],
2463
+ "quantized" : false,
2464
+ "sidecars" : [ ],
2465
+ "oneDimensionalToRowVector" : false
2466
+ }, {
2467
+ "name" : "model.layers.25.input_layernorm.weight",
2468
+ "sourceDType" : "BF16",
2469
+ "outputDType" : "BF16",
2470
+ "sourceShape" : [ 1, 1024 ],
2471
+ "outputShape" : [ 1, 1024 ],
2472
+ "quantized" : false,
2473
+ "sidecars" : [ ],
2474
+ "oneDimensionalToRowVector" : false
2475
+ }, {
2476
+ "name" : "model.layers.1.self_attn.k_proj.weight",
2477
+ "sourceDType" : "BF16",
2478
+ "outputDType" : "Q4",
2479
+ "sourceShape" : [ 1024, 1024 ],
2480
+ "outputShape" : [ 1024, 1024 ],
2481
+ "quantized" : true,
2482
+ "sidecars" : [ "model.layers.1.self_attn.k_proj.weight.qb" ],
2483
+ "oneDimensionalToRowVector" : false
2484
+ }, {
2485
+ "name" : "model.layers.0.post_attention_layernorm.weight",
2486
+ "sourceDType" : "BF16",
2487
+ "outputDType" : "BF16",
2488
+ "sourceShape" : [ 1, 1024 ],
2489
+ "outputShape" : [ 1, 1024 ],
2490
+ "quantized" : false,
2491
+ "sidecars" : [ ],
2492
+ "oneDimensionalToRowVector" : false
2493
+ }, {
2494
+ "name" : "model.layers.12.self_attn.o_proj.weight",
2495
+ "sourceDType" : "BF16",
2496
+ "outputDType" : "Q4",
2497
+ "sourceShape" : [ 1024, 2048 ],
2498
+ "outputShape" : [ 1024, 2048 ],
2499
+ "quantized" : true,
2500
+ "sidecars" : [ "model.layers.12.self_attn.o_proj.weight.qb" ],
2501
+ "oneDimensionalToRowVector" : false
2502
+ }, {
2503
+ "name" : "model.layers.21.mlp.down_proj.weight",
2504
+ "sourceDType" : "BF16",
2505
+ "outputDType" : "Q4",
2506
+ "sourceShape" : [ 1024, 3072 ],
2507
+ "outputShape" : [ 1024, 3072 ],
2508
+ "quantized" : true,
2509
+ "sidecars" : [ "model.layers.21.mlp.down_proj.weight.qb" ],
2510
+ "oneDimensionalToRowVector" : false
2511
+ }, {
2512
+ "name" : "model.layers.23.post_attention_layernorm.weight",
2513
+ "sourceDType" : "BF16",
2514
+ "outputDType" : "BF16",
2515
+ "sourceShape" : [ 1, 1024 ],
2516
+ "outputShape" : [ 1, 1024 ],
2517
+ "quantized" : false,
2518
+ "sidecars" : [ ],
2519
+ "oneDimensionalToRowVector" : false
2520
+ }, {
2521
+ "name" : "model.layers.26.self_attn.k_norm.weight",
2522
+ "sourceDType" : "BF16",
2523
+ "outputDType" : "BF16",
2524
+ "sourceShape" : [ 1, 128 ],
2525
+ "outputShape" : [ 1, 128 ],
2526
+ "quantized" : false,
2527
+ "sidecars" : [ ],
2528
+ "oneDimensionalToRowVector" : false
2529
+ }, {
2530
+ "name" : "model.layers.3.input_layernorm.weight",
2531
+ "sourceDType" : "BF16",
2532
+ "outputDType" : "BF16",
2533
+ "sourceShape" : [ 1, 1024 ],
2534
+ "outputShape" : [ 1, 1024 ],
2535
+ "quantized" : false,
2536
+ "sidecars" : [ ],
2537
+ "oneDimensionalToRowVector" : false
2538
+ }, {
2539
+ "name" : "model.layers.12.mlp.down_proj.weight",
2540
+ "sourceDType" : "BF16",
2541
+ "outputDType" : "Q4",
2542
+ "sourceShape" : [ 1024, 3072 ],
2543
+ "outputShape" : [ 1024, 3072 ],
2544
+ "quantized" : true,
2545
+ "sidecars" : [ "model.layers.12.mlp.down_proj.weight.qb" ],
2546
+ "oneDimensionalToRowVector" : false
2547
+ }, {
2548
+ "name" : "model.layers.6.self_attn.q_proj.weight",
2549
+ "sourceDType" : "BF16",
2550
+ "outputDType" : "Q4",
2551
+ "sourceShape" : [ 2048, 1024 ],
2552
+ "outputShape" : [ 2048, 1024 ],
2553
+ "quantized" : true,
2554
+ "sidecars" : [ "model.layers.6.self_attn.q_proj.weight.qb" ],
2555
+ "oneDimensionalToRowVector" : false
2556
+ }, {
2557
+ "name" : "model.layers.1.self_attn.o_proj.weight",
2558
+ "sourceDType" : "BF16",
2559
+ "outputDType" : "Q4",
2560
+ "sourceShape" : [ 1024, 2048 ],
2561
+ "outputShape" : [ 1024, 2048 ],
2562
+ "quantized" : true,
2563
+ "sidecars" : [ "model.layers.1.self_attn.o_proj.weight.qb" ],
2564
+ "oneDimensionalToRowVector" : false
2565
+ }, {
2566
+ "name" : "model.layers.12.self_attn.q_proj.weight",
2567
+ "sourceDType" : "BF16",
2568
+ "outputDType" : "Q4",
2569
+ "sourceShape" : [ 2048, 1024 ],
2570
+ "outputShape" : [ 2048, 1024 ],
2571
+ "quantized" : true,
2572
+ "sidecars" : [ "model.layers.12.self_attn.q_proj.weight.qb" ],
2573
+ "oneDimensionalToRowVector" : false
2574
+ }, {
2575
+ "name" : "model.layers.6.self_attn.o_proj.weight",
2576
+ "sourceDType" : "BF16",
2577
+ "outputDType" : "Q4",
2578
+ "sourceShape" : [ 1024, 2048 ],
2579
+ "outputShape" : [ 1024, 2048 ],
2580
+ "quantized" : true,
2581
+ "sidecars" : [ "model.layers.6.self_attn.o_proj.weight.qb" ],
2582
+ "oneDimensionalToRowVector" : false
2583
+ }, {
2584
+ "name" : "model.layers.21.self_attn.k_norm.weight",
2585
+ "sourceDType" : "BF16",
2586
+ "outputDType" : "BF16",
2587
+ "sourceShape" : [ 1, 128 ],
2588
+ "outputShape" : [ 1, 128 ],
2589
+ "quantized" : false,
2590
+ "sidecars" : [ ],
2591
+ "oneDimensionalToRowVector" : false
2592
+ }, {
2593
+ "name" : "model.layers.15.self_attn.k_norm.weight",
2594
+ "sourceDType" : "BF16",
2595
+ "outputDType" : "BF16",
2596
+ "sourceShape" : [ 1, 128 ],
2597
+ "outputShape" : [ 1, 128 ],
2598
+ "quantized" : false,
2599
+ "sidecars" : [ ],
2600
+ "oneDimensionalToRowVector" : false
2601
+ }, {
2602
+ "name" : "model.layers.20.mlp.gate_proj.weight",
2603
+ "sourceDType" : "BF16",
2604
+ "outputDType" : "Q4",
2605
+ "sourceShape" : [ 3072, 1024 ],
2606
+ "outputShape" : [ 3072, 1024 ],
2607
+ "quantized" : true,
2608
+ "sidecars" : [ "model.layers.20.mlp.gate_proj.weight.qb" ],
2609
+ "oneDimensionalToRowVector" : false
2610
+ }, {
2611
+ "name" : "model.layers.26.self_attn.q_norm.weight",
2612
+ "sourceDType" : "BF16",
2613
+ "outputDType" : "BF16",
2614
+ "sourceShape" : [ 1, 128 ],
2615
+ "outputShape" : [ 1, 128 ],
2616
+ "quantized" : false,
2617
+ "sidecars" : [ ],
2618
+ "oneDimensionalToRowVector" : false
2619
+ }, {
2620
+ "name" : "model.layers.4.self_attn.k_norm.weight",
2621
+ "sourceDType" : "BF16",
2622
+ "outputDType" : "BF16",
2623
+ "sourceShape" : [ 1, 128 ],
2624
+ "outputShape" : [ 1, 128 ],
2625
+ "quantized" : false,
2626
+ "sidecars" : [ ],
2627
+ "oneDimensionalToRowVector" : false
2628
+ }, {
2629
+ "name" : "model.layers.11.mlp.gate_proj.weight",
2630
+ "sourceDType" : "BF16",
2631
+ "outputDType" : "Q4",
2632
+ "sourceShape" : [ 3072, 1024 ],
2633
+ "outputShape" : [ 3072, 1024 ],
2634
+ "quantized" : true,
2635
+ "sidecars" : [ "model.layers.11.mlp.gate_proj.weight.qb" ],
2636
+ "oneDimensionalToRowVector" : false
2637
+ }, {
2638
+ "name" : "model.layers.25.mlp.gate_proj.weight",
2639
+ "sourceDType" : "BF16",
2640
+ "outputDType" : "Q4",
2641
+ "sourceShape" : [ 3072, 1024 ],
2642
+ "outputShape" : [ 3072, 1024 ],
2643
+ "quantized" : true,
2644
+ "sidecars" : [ "model.layers.25.mlp.gate_proj.weight.qb" ],
2645
+ "oneDimensionalToRowVector" : false
2646
+ }, {
2647
+ "name" : "model.layers.26.mlp.down_proj.weight",
2648
+ "sourceDType" : "BF16",
2649
+ "outputDType" : "Q4",
2650
+ "sourceShape" : [ 1024, 3072 ],
2651
+ "outputShape" : [ 1024, 3072 ],
2652
+ "quantized" : true,
2653
+ "sidecars" : [ "model.layers.26.mlp.down_proj.weight.qb" ],
2654
+ "oneDimensionalToRowVector" : false
2655
+ }, {
2656
+ "name" : "model.layers.9.self_attn.k_norm.weight",
2657
+ "sourceDType" : "BF16",
2658
+ "outputDType" : "BF16",
2659
+ "sourceShape" : [ 1, 128 ],
2660
+ "outputShape" : [ 1, 128 ],
2661
+ "quantized" : false,
2662
+ "sidecars" : [ ],
2663
+ "oneDimensionalToRowVector" : false
2664
+ }, {
2665
+ "name" : "model.layers.1.self_attn.q_proj.weight",
2666
+ "sourceDType" : "BF16",
2667
+ "outputDType" : "Q4",
2668
+ "sourceShape" : [ 2048, 1024 ],
2669
+ "outputShape" : [ 2048, 1024 ],
2670
+ "quantized" : true,
2671
+ "sidecars" : [ "model.layers.1.self_attn.q_proj.weight.qb" ],
2672
+ "oneDimensionalToRowVector" : false
2673
+ }, {
2674
+ "name" : "model.layers.15.self_attn.q_norm.weight",
2675
+ "sourceDType" : "BF16",
2676
+ "outputDType" : "BF16",
2677
+ "sourceShape" : [ 1, 128 ],
2678
+ "outputShape" : [ 1, 128 ],
2679
+ "quantized" : false,
2680
+ "sidecars" : [ ],
2681
+ "oneDimensionalToRowVector" : false
2682
+ }, {
2683
+ "name" : "model.layers.10.self_attn.k_norm.weight",
2684
+ "sourceDType" : "BF16",
2685
+ "outputDType" : "BF16",
2686
+ "sourceShape" : [ 1, 128 ],
2687
+ "outputShape" : [ 1, 128 ],
2688
+ "quantized" : false,
2689
+ "sidecars" : [ ],
2690
+ "oneDimensionalToRowVector" : false
2691
+ }, {
2692
+ "name" : "model.layers.23.self_attn.k_proj.weight",
2693
+ "sourceDType" : "BF16",
2694
+ "outputDType" : "Q4",
2695
+ "sourceShape" : [ 1024, 1024 ],
2696
+ "outputShape" : [ 1024, 1024 ],
2697
+ "quantized" : true,
2698
+ "sidecars" : [ "model.layers.23.self_attn.k_proj.weight.qb" ],
2699
+ "oneDimensionalToRowVector" : false
2700
+ }, {
2701
+ "name" : "model.layers.12.input_layernorm.weight",
2702
+ "sourceDType" : "BF16",
2703
+ "outputDType" : "BF16",
2704
+ "sourceShape" : [ 1, 1024 ],
2705
+ "outputShape" : [ 1, 1024 ],
2706
+ "quantized" : false,
2707
+ "sidecars" : [ ],
2708
+ "oneDimensionalToRowVector" : false
2709
+ }, {
2710
+ "name" : "model.layers.3.mlp.gate_proj.weight",
2711
+ "sourceDType" : "BF16",
2712
+ "outputDType" : "Q4",
2713
+ "sourceShape" : [ 3072, 1024 ],
2714
+ "outputShape" : [ 3072, 1024 ],
2715
+ "quantized" : true,
2716
+ "sidecars" : [ "model.layers.3.mlp.gate_proj.weight.qb" ],
2717
+ "oneDimensionalToRowVector" : false
2718
+ }, {
2719
+ "name" : "model.layers.18.self_attn.v_proj.weight",
2720
+ "sourceDType" : "BF16",
2721
+ "outputDType" : "Q4",
2722
+ "sourceShape" : [ 1024, 1024 ],
2723
+ "outputShape" : [ 1024, 1024 ],
2724
+ "quantized" : true,
2725
+ "sidecars" : [ "model.layers.18.self_attn.v_proj.weight.qb" ],
2726
+ "oneDimensionalToRowVector" : false
2727
+ }, {
2728
+ "name" : "model.layers.10.self_attn.q_norm.weight",
2729
+ "sourceDType" : "BF16",
2730
+ "outputDType" : "BF16",
2731
+ "sourceShape" : [ 1, 128 ],
2732
+ "outputShape" : [ 1, 128 ],
2733
+ "quantized" : false,
2734
+ "sidecars" : [ ],
2735
+ "oneDimensionalToRowVector" : false
2736
+ }, {
2737
+ "name" : "model.layers.23.self_attn.q_proj.weight",
2738
+ "sourceDType" : "BF16",
2739
+ "outputDType" : "Q4",
2740
+ "sourceShape" : [ 2048, 1024 ],
2741
+ "outputShape" : [ 2048, 1024 ],
2742
+ "quantized" : true,
2743
+ "sidecars" : [ "model.layers.23.self_attn.q_proj.weight.qb" ],
2744
+ "oneDimensionalToRowVector" : false
2745
+ }, {
2746
+ "name" : "model.layers.23.self_attn.o_proj.weight",
2747
+ "sourceDType" : "BF16",
2748
+ "outputDType" : "Q4",
2749
+ "sourceShape" : [ 1024, 2048 ],
2750
+ "outputShape" : [ 1024, 2048 ],
2751
+ "quantized" : true,
2752
+ "sidecars" : [ "model.layers.23.self_attn.o_proj.weight.qb" ],
2753
+ "oneDimensionalToRowVector" : false
2754
+ }, {
2755
+ "name" : "model.layers.5.self_attn.v_proj.weight",
2756
+ "sourceDType" : "BF16",
2757
+ "outputDType" : "Q4",
2758
+ "sourceShape" : [ 1024, 1024 ],
2759
+ "outputShape" : [ 1024, 1024 ],
2760
+ "quantized" : true,
2761
+ "sidecars" : [ "model.layers.5.self_attn.v_proj.weight.qb" ],
2762
+ "oneDimensionalToRowVector" : false
2763
+ }, {
2764
+ "name" : "model.layers.24.post_attention_layernorm.weight",
2765
+ "sourceDType" : "BF16",
2766
+ "outputDType" : "BF16",
2767
+ "sourceShape" : [ 1, 1024 ],
2768
+ "outputShape" : [ 1, 1024 ],
2769
+ "quantized" : false,
2770
+ "sidecars" : [ ],
2771
+ "oneDimensionalToRowVector" : false
2772
+ }, {
2773
+ "name" : "model.layers.1.post_attention_layernorm.weight",
2774
+ "sourceDType" : "BF16",
2775
+ "outputDType" : "BF16",
2776
+ "sourceShape" : [ 1, 1024 ],
2777
+ "outputShape" : [ 1, 1024 ],
2778
+ "quantized" : false,
2779
+ "sidecars" : [ ],
2780
+ "oneDimensionalToRowVector" : false
2781
+ }, {
2782
+ "name" : "model.layers.6.self_attn.k_proj.weight",
2783
+ "sourceDType" : "BF16",
2784
+ "outputDType" : "Q4",
2785
+ "sourceShape" : [ 1024, 1024 ],
2786
+ "outputShape" : [ 1024, 1024 ],
2787
+ "quantized" : true,
2788
+ "sidecars" : [ "model.layers.6.self_attn.k_proj.weight.qb" ],
2789
+ "oneDimensionalToRowVector" : false
2790
+ }, {
2791
+ "name" : "model.layers.0.self_attn.v_proj.weight",
2792
+ "sourceDType" : "BF16",
2793
+ "outputDType" : "Q4",
2794
+ "sourceShape" : [ 1024, 1024 ],
2795
+ "outputShape" : [ 1024, 1024 ],
2796
+ "quantized" : true,
2797
+ "sidecars" : [ "model.layers.0.self_attn.v_proj.weight.qb" ],
2798
+ "oneDimensionalToRowVector" : false
2799
+ }, {
2800
+ "name" : "model.layers.19.post_attention_layernorm.weight",
2801
+ "sourceDType" : "BF16",
2802
+ "outputDType" : "BF16",
2803
+ "sourceShape" : [ 1, 1024 ],
2804
+ "outputShape" : [ 1, 1024 ],
2805
+ "quantized" : false,
2806
+ "sidecars" : [ ],
2807
+ "oneDimensionalToRowVector" : false
2808
+ } ]
2809
+ }
merges.txt ADDED
The diff for this file is too large to render. See raw diff
 
model.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:05c0421e29c5a70209a383ddecba7310660d1be55e0842cffabb472572811d0b
3
+ size 897769097
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aeb13307a71acd8fe81861d94ad54ab689df773318809eed3cbe794b4492dae4
3
+ size 11422654
tokenizer_config.json ADDED
@@ -0,0 +1,239 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": false,
3
+ "add_prefix_space": false,
4
+ "added_tokens_decoder": {
5
+ "151643": {
6
+ "content": "<|endoftext|>",
7
+ "lstrip": false,
8
+ "normalized": false,
9
+ "rstrip": false,
10
+ "single_word": false,
11
+ "special": true
12
+ },
13
+ "151644": {
14
+ "content": "<|im_start|>",
15
+ "lstrip": false,
16
+ "normalized": false,
17
+ "rstrip": false,
18
+ "single_word": false,
19
+ "special": true
20
+ },
21
+ "151645": {
22
+ "content": "<|im_end|>",
23
+ "lstrip": false,
24
+ "normalized": false,
25
+ "rstrip": false,
26
+ "single_word": false,
27
+ "special": true
28
+ },
29
+ "151646": {
30
+ "content": "<|object_ref_start|>",
31
+ "lstrip": false,
32
+ "normalized": false,
33
+ "rstrip": false,
34
+ "single_word": false,
35
+ "special": true
36
+ },
37
+ "151647": {
38
+ "content": "<|object_ref_end|>",
39
+ "lstrip": false,
40
+ "normalized": false,
41
+ "rstrip": false,
42
+ "single_word": false,
43
+ "special": true
44
+ },
45
+ "151648": {
46
+ "content": "<|box_start|>",
47
+ "lstrip": false,
48
+ "normalized": false,
49
+ "rstrip": false,
50
+ "single_word": false,
51
+ "special": true
52
+ },
53
+ "151649": {
54
+ "content": "<|box_end|>",
55
+ "lstrip": false,
56
+ "normalized": false,
57
+ "rstrip": false,
58
+ "single_word": false,
59
+ "special": true
60
+ },
61
+ "151650": {
62
+ "content": "<|quad_start|>",
63
+ "lstrip": false,
64
+ "normalized": false,
65
+ "rstrip": false,
66
+ "single_word": false,
67
+ "special": true
68
+ },
69
+ "151651": {
70
+ "content": "<|quad_end|>",
71
+ "lstrip": false,
72
+ "normalized": false,
73
+ "rstrip": false,
74
+ "single_word": false,
75
+ "special": true
76
+ },
77
+ "151652": {
78
+ "content": "<|vision_start|>",
79
+ "lstrip": false,
80
+ "normalized": false,
81
+ "rstrip": false,
82
+ "single_word": false,
83
+ "special": true
84
+ },
85
+ "151653": {
86
+ "content": "<|vision_end|>",
87
+ "lstrip": false,
88
+ "normalized": false,
89
+ "rstrip": false,
90
+ "single_word": false,
91
+ "special": true
92
+ },
93
+ "151654": {
94
+ "content": "<|vision_pad|>",
95
+ "lstrip": false,
96
+ "normalized": false,
97
+ "rstrip": false,
98
+ "single_word": false,
99
+ "special": true
100
+ },
101
+ "151655": {
102
+ "content": "<|image_pad|>",
103
+ "lstrip": false,
104
+ "normalized": false,
105
+ "rstrip": false,
106
+ "single_word": false,
107
+ "special": true
108
+ },
109
+ "151656": {
110
+ "content": "<|video_pad|>",
111
+ "lstrip": false,
112
+ "normalized": false,
113
+ "rstrip": false,
114
+ "single_word": false,
115
+ "special": true
116
+ },
117
+ "151657": {
118
+ "content": "<tool_call>",
119
+ "lstrip": false,
120
+ "normalized": false,
121
+ "rstrip": false,
122
+ "single_word": false,
123
+ "special": false
124
+ },
125
+ "151658": {
126
+ "content": "</tool_call>",
127
+ "lstrip": false,
128
+ "normalized": false,
129
+ "rstrip": false,
130
+ "single_word": false,
131
+ "special": false
132
+ },
133
+ "151659": {
134
+ "content": "<|fim_prefix|>",
135
+ "lstrip": false,
136
+ "normalized": false,
137
+ "rstrip": false,
138
+ "single_word": false,
139
+ "special": false
140
+ },
141
+ "151660": {
142
+ "content": "<|fim_middle|>",
143
+ "lstrip": false,
144
+ "normalized": false,
145
+ "rstrip": false,
146
+ "single_word": false,
147
+ "special": false
148
+ },
149
+ "151661": {
150
+ "content": "<|fim_suffix|>",
151
+ "lstrip": false,
152
+ "normalized": false,
153
+ "rstrip": false,
154
+ "single_word": false,
155
+ "special": false
156
+ },
157
+ "151662": {
158
+ "content": "<|fim_pad|>",
159
+ "lstrip": false,
160
+ "normalized": false,
161
+ "rstrip": false,
162
+ "single_word": false,
163
+ "special": false
164
+ },
165
+ "151663": {
166
+ "content": "<|repo_name|>",
167
+ "lstrip": false,
168
+ "normalized": false,
169
+ "rstrip": false,
170
+ "single_word": false,
171
+ "special": false
172
+ },
173
+ "151664": {
174
+ "content": "<|file_sep|>",
175
+ "lstrip": false,
176
+ "normalized": false,
177
+ "rstrip": false,
178
+ "single_word": false,
179
+ "special": false
180
+ },
181
+ "151665": {
182
+ "content": "<tool_response>",
183
+ "lstrip": false,
184
+ "normalized": false,
185
+ "rstrip": false,
186
+ "single_word": false,
187
+ "special": false
188
+ },
189
+ "151666": {
190
+ "content": "</tool_response>",
191
+ "lstrip": false,
192
+ "normalized": false,
193
+ "rstrip": false,
194
+ "single_word": false,
195
+ "special": false
196
+ },
197
+ "151667": {
198
+ "content": "<think>",
199
+ "lstrip": false,
200
+ "normalized": false,
201
+ "rstrip": false,
202
+ "single_word": false,
203
+ "special": false
204
+ },
205
+ "151668": {
206
+ "content": "</think>",
207
+ "lstrip": false,
208
+ "normalized": false,
209
+ "rstrip": false,
210
+ "single_word": false,
211
+ "special": false
212
+ }
213
+ },
214
+ "additional_special_tokens": [
215
+ "<|im_start|>",
216
+ "<|im_end|>",
217
+ "<|object_ref_start|>",
218
+ "<|object_ref_end|>",
219
+ "<|box_start|>",
220
+ "<|box_end|>",
221
+ "<|quad_start|>",
222
+ "<|quad_end|>",
223
+ "<|vision_start|>",
224
+ "<|vision_end|>",
225
+ "<|vision_pad|>",
226
+ "<|image_pad|>",
227
+ "<|video_pad|>"
228
+ ],
229
+ "bos_token": null,
230
+ "chat_template": "{%- if tools %}\n {{- '<|im_start|>system\\n' }}\n {%- if messages[0].role == 'system' %}\n {{- messages[0].content + '\\n\\n' }}\n {%- endif %}\n {{- \"# Tools\\n\\nYou may call one or more functions to assist with the user query.\\n\\nYou are provided with function signatures within <tools></tools> XML tags:\\n<tools>\" }}\n {%- for tool in tools %}\n {{- \"\\n\" }}\n {{- tool | tojson }}\n {%- endfor %}\n {{- \"\\n</tools>\\n\\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\\n<tool_call>\\n{\\\"name\\\": <function-name>, \\\"arguments\\\": <args-json-object>}\\n</tool_call><|im_end|>\\n\" }}\n{%- else %}\n {%- if messages[0].role == 'system' %}\n {{- '<|im_start|>system\\n' + messages[0].content + '<|im_end|>\\n' }}\n {%- endif %}\n{%- endif %}\n{%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}\n{%- for message in messages[::-1] %}\n {%- set index = (messages|length - 1) - loop.index0 %}\n {%- if ns.multi_step_tool and message.role == \"user\" and message.content is string and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %}\n {%- set ns.multi_step_tool = false %}\n {%- set ns.last_query_index = index %}\n {%- endif %}\n{%- endfor %}\n{%- for message in messages %}\n {%- if message.content is string %}\n {%- set content = message.content %}\n {%- else %}\n {%- set content = '' %}\n {%- endif %}\n {%- if (message.role == \"user\") or (message.role == \"system\" and not loop.first) %}\n {{- '<|im_start|>' + message.role + '\\n' + content + '<|im_end|>' + '\\n' }}\n {%- elif message.role == \"assistant\" %}\n {%- set reasoning_content = '' %}\n {%- if message.reasoning_content is string %}\n {%- set reasoning_content = message.reasoning_content %}\n {%- else %}\n {%- if '</think>' in content %}\n {%- set reasoning_content = content.split('</think>')[0].rstrip('\\n').split('<think>')[-1].lstrip('\\n') %}\n {%- set content = content.split('</think>')[-1].lstrip('\\n') %}\n {%- endif %}\n {%- endif %}\n {%- if loop.index0 > ns.last_query_index %}\n {%- if loop.last or (not loop.last and reasoning_content) %}\n {{- '<|im_start|>' + message.role + '\\n<think>\\n' + reasoning_content.strip('\\n') + '\\n</think>\\n\\n' + content.lstrip('\\n') }}\n {%- else %}\n {{- '<|im_start|>' + message.role + '\\n' + content }}\n {%- endif %}\n {%- else %}\n {{- '<|im_start|>' + message.role + '\\n' + content }}\n {%- endif %}\n {%- if message.tool_calls %}\n {%- for tool_call in message.tool_calls %}\n {%- if (loop.first and content) or (not loop.first) %}\n {{- '\\n' }}\n {%- endif %}\n {%- if tool_call.function %}\n {%- set tool_call = tool_call.function %}\n {%- endif %}\n {{- '<tool_call>\\n{\"name\": \"' }}\n {{- tool_call.name }}\n {{- '\", \"arguments\": ' }}\n {%- if tool_call.arguments is string %}\n {{- tool_call.arguments }}\n {%- else %}\n {{- tool_call.arguments | tojson }}\n {%- endif %}\n {{- '}\\n</tool_call>' }}\n {%- endfor %}\n {%- endif %}\n {{- '<|im_end|>\\n' }}\n {%- elif message.role == \"tool\" %}\n {%- if loop.first or (messages[loop.index0 - 1].role != \"tool\") %}\n {{- '<|im_start|>user' }}\n {%- endif %}\n {{- '\\n<tool_response>\\n' }}\n {{- content }}\n {{- '\\n</tool_response>' }}\n {%- if loop.last or (messages[loop.index0 + 1].role != \"tool\") %}\n {{- '<|im_end|>\\n' }}\n {%- endif %}\n {%- endif %}\n{%- endfor %}\n{%- if add_generation_prompt %}\n {{- '<|im_start|>assistant\\n' }}\n {%- if enable_thinking is defined and enable_thinking is false %}\n {{- '<think>\\n\\n</think>\\n\\n' }}\n {%- endif %}\n{%- endif %}",
231
+ "clean_up_tokenization_spaces": false,
232
+ "eos_token": "<|im_end|>",
233
+ "errors": "replace",
234
+ "model_max_length": 131072,
235
+ "pad_token": "<|endoftext|>",
236
+ "split_special_tokens": false,
237
+ "tokenizer_class": "Qwen2Tokenizer",
238
+ "unk_token": null
239
+ }
vocab.json ADDED
The diff for this file is too large to render. See raw diff