Text Generation
Transformers
Safetensors
qwen3_5
image-text-to-text
hlwq
quantized
compressed-tensors
int4
marlin
vllm
conversational
Instructions to use caiovicentino1/Qwen3.5-9B-HLWQ-Q5 with libraries, inference providers, notebooks, and local apps. Follow these links to get started.
- Libraries
- Transformers
How to use caiovicentino1/Qwen3.5-9B-HLWQ-Q5 with Transformers:
# Use a pipeline as a high-level helper from transformers import pipeline pipe = pipeline("text-generation", model="caiovicentino1/Qwen3.5-9B-HLWQ-Q5") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] pipe(text=messages)# Load model directly from transformers import AutoProcessor, AutoModelForMultimodalLM processor = AutoProcessor.from_pretrained("caiovicentino1/Qwen3.5-9B-HLWQ-Q5") model = AutoModelForMultimodalLM.from_pretrained("caiovicentino1/Qwen3.5-9B-HLWQ-Q5", device_map="auto") messages = [ { "role": "user", "content": [ {"type": "image", "url": "https://huggingface.co/datasets/huggingface/documentation-images/resolve/main/p-blog/candy.JPG"}, {"type": "text", "text": "What animal is on the candy?"} ] }, ] inputs = processor.apply_chat_template( messages, add_generation_prompt=True, tokenize=True, return_dict=True, return_tensors="pt", ).to(model.device) outputs = model.generate(**inputs, max_new_tokens=40) print(processor.decode(outputs[0][inputs["input_ids"].shape[-1]:])) - Notebooks
- Google Colab
- Kaggle
- Local Apps Settings
- vLLM
How to use caiovicentino1/Qwen3.5-9B-HLWQ-Q5 with vLLM:
Install from pip and serve model
# Install vLLM from pip: pip install vllm # Start the vLLM server: vllm serve "caiovicentino1/Qwen3.5-9B-HLWQ-Q5" # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:8000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "caiovicentino1/Qwen3.5-9B-HLWQ-Q5", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker
docker model run hf.co/caiovicentino1/Qwen3.5-9B-HLWQ-Q5
- SGLang
How to use caiovicentino1/Qwen3.5-9B-HLWQ-Q5 with SGLang:
Install from pip and serve model
# Install SGLang from pip: pip install sglang # Start the SGLang server: python3 -m sglang.launch_server \ --model-path "caiovicentino1/Qwen3.5-9B-HLWQ-Q5" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "caiovicentino1/Qwen3.5-9B-HLWQ-Q5", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }'Use Docker images
docker run --gpus all \ --shm-size 32g \ -p 30000:30000 \ -v ~/.cache/huggingface:/root/.cache/huggingface \ --env "HF_TOKEN=<secret>" \ --ipc=host \ lmsysorg/sglang:latest \ python3 -m sglang.launch_server \ --model-path "caiovicentino1/Qwen3.5-9B-HLWQ-Q5" \ --host 0.0.0.0 \ --port 30000 # Call the server using curl (OpenAI-compatible API): curl -X POST "http://localhost:30000/v1/chat/completions" \ -H "Content-Type: application/json" \ --data '{ "model": "caiovicentino1/Qwen3.5-9B-HLWQ-Q5", "messages": [ { "role": "user", "content": "What is the capital of France?" } ] }' - Docker Model Runner
How to use caiovicentino1/Qwen3.5-9B-HLWQ-Q5 with Docker Model Runner:
docker model run hf.co/caiovicentino1/Qwen3.5-9B-HLWQ-Q5
fix: rename weight keys for vLLM Qwen3.5 compatibility (model.X -> model.language_model.X), fix quant_method and tokenizer_class
Browse files- config.json +1 -1
- model-00000-of-00002.safetensors +2 -2
- model-00001-of-00002.safetensors +2 -2
- model.safetensors.index.json +0 -0
- polar_config.json +249 -249
- tokenizer_config.json +2 -2
config.json
CHANGED
|
@@ -105,7 +105,7 @@
|
|
| 105 |
"vision_end_token_id": 248054,
|
| 106 |
"vision_start_token_id": 248053,
|
| 107 |
"quantization_config": {
|
| 108 |
-
"quant_method": "
|
| 109 |
"weight_bits": 5,
|
| 110 |
"block_size": 128
|
| 111 |
}
|
|
|
|
| 105 |
"vision_end_token_id": 248054,
|
| 106 |
"vision_start_token_id": 248053,
|
| 107 |
"quantization_config": {
|
| 108 |
+
"quant_method": "polarengine",
|
| 109 |
"weight_bits": 5,
|
| 110 |
"block_size": 128
|
| 111 |
}
|
model-00000-of-00002.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:5f55fd14854e6c20ff355c7c303c00babed3cd9498dbae8602ab3bf5a2abd7cf
|
| 3 |
+
size 5367783760
|
model-00001-of-00002.safetensors
CHANGED
|
@@ -1,3 +1,3 @@
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
-
oid sha256:
|
| 3 |
-
size
|
|
|
|
| 1 |
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:875d126f89aed4ca237dacb6c5d07e4358926c2d8d1f27a59ad24bef7ed6b63c
|
| 3 |
+
size 3727112080
|
model.safetensors.index.json
CHANGED
|
The diff for this file is too large to render.
See raw diff
|
|
|
polar_config.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
| 5 |
"quantization": "PolarQuant Q5 (Lloyd-Max + Hadamard)",
|
| 6 |
"bits": 5,
|
| 7 |
"layers": {
|
| 8 |
-
"model.embed_tokens": {
|
| 9 |
"in_features": 4096,
|
| 10 |
"out_features": 248320,
|
| 11 |
"in_f_padded": 4096,
|
|
@@ -13,7 +13,7 @@
|
|
| 13 |
"bits": 5,
|
| 14 |
"block_size": 128
|
| 15 |
},
|
| 16 |
-
"model.layers.0.linear_attn.out_proj": {
|
| 17 |
"in_features": 4096,
|
| 18 |
"out_features": 4096,
|
| 19 |
"in_f_padded": 4096,
|
|
@@ -21,7 +21,7 @@
|
|
| 21 |
"bits": 5,
|
| 22 |
"block_size": 128
|
| 23 |
},
|
| 24 |
-
"model.layers.0.linear_attn.in_proj_qkv": {
|
| 25 |
"in_features": 4096,
|
| 26 |
"out_features": 8192,
|
| 27 |
"in_f_padded": 4096,
|
|
@@ -29,7 +29,7 @@
|
|
| 29 |
"bits": 5,
|
| 30 |
"block_size": 128
|
| 31 |
},
|
| 32 |
-
"model.layers.0.linear_attn.in_proj_z": {
|
| 33 |
"in_features": 4096,
|
| 34 |
"out_features": 4096,
|
| 35 |
"in_f_padded": 4096,
|
|
@@ -37,7 +37,7 @@
|
|
| 37 |
"bits": 5,
|
| 38 |
"block_size": 128
|
| 39 |
},
|
| 40 |
-
"model.layers.0.linear_attn.in_proj_b": {
|
| 41 |
"in_features": 4096,
|
| 42 |
"out_features": 32,
|
| 43 |
"in_f_padded": 4096,
|
|
@@ -45,7 +45,7 @@
|
|
| 45 |
"bits": 5,
|
| 46 |
"block_size": 128
|
| 47 |
},
|
| 48 |
-
"model.layers.0.linear_attn.in_proj_a": {
|
| 49 |
"in_features": 4096,
|
| 50 |
"out_features": 32,
|
| 51 |
"in_f_padded": 4096,
|
|
@@ -53,7 +53,7 @@
|
|
| 53 |
"bits": 5,
|
| 54 |
"block_size": 128
|
| 55 |
},
|
| 56 |
-
"model.layers.0.mlp.gate_proj": {
|
| 57 |
"in_features": 4096,
|
| 58 |
"out_features": 12288,
|
| 59 |
"in_f_padded": 4096,
|
|
@@ -61,7 +61,7 @@
|
|
| 61 |
"bits": 5,
|
| 62 |
"block_size": 128
|
| 63 |
},
|
| 64 |
-
"model.layers.0.mlp.up_proj": {
|
| 65 |
"in_features": 4096,
|
| 66 |
"out_features": 12288,
|
| 67 |
"in_f_padded": 4096,
|
|
@@ -69,7 +69,7 @@
|
|
| 69 |
"bits": 5,
|
| 70 |
"block_size": 128
|
| 71 |
},
|
| 72 |
-
"model.layers.0.mlp.down_proj": {
|
| 73 |
"in_features": 12288,
|
| 74 |
"out_features": 4096,
|
| 75 |
"in_f_padded": 12288,
|
|
@@ -77,7 +77,7 @@
|
|
| 77 |
"bits": 5,
|
| 78 |
"block_size": 128
|
| 79 |
},
|
| 80 |
-
"model.layers.1.linear_attn.out_proj": {
|
| 81 |
"in_features": 4096,
|
| 82 |
"out_features": 4096,
|
| 83 |
"in_f_padded": 4096,
|
|
@@ -85,7 +85,7 @@
|
|
| 85 |
"bits": 5,
|
| 86 |
"block_size": 128
|
| 87 |
},
|
| 88 |
-
"model.layers.1.linear_attn.in_proj_qkv": {
|
| 89 |
"in_features": 4096,
|
| 90 |
"out_features": 8192,
|
| 91 |
"in_f_padded": 4096,
|
|
@@ -93,7 +93,7 @@
|
|
| 93 |
"bits": 5,
|
| 94 |
"block_size": 128
|
| 95 |
},
|
| 96 |
-
"model.layers.1.linear_attn.in_proj_z": {
|
| 97 |
"in_features": 4096,
|
| 98 |
"out_features": 4096,
|
| 99 |
"in_f_padded": 4096,
|
|
@@ -101,7 +101,7 @@
|
|
| 101 |
"bits": 5,
|
| 102 |
"block_size": 128
|
| 103 |
},
|
| 104 |
-
"model.layers.1.linear_attn.in_proj_b": {
|
| 105 |
"in_features": 4096,
|
| 106 |
"out_features": 32,
|
| 107 |
"in_f_padded": 4096,
|
|
@@ -109,7 +109,7 @@
|
|
| 109 |
"bits": 5,
|
| 110 |
"block_size": 128
|
| 111 |
},
|
| 112 |
-
"model.layers.1.linear_attn.in_proj_a": {
|
| 113 |
"in_features": 4096,
|
| 114 |
"out_features": 32,
|
| 115 |
"in_f_padded": 4096,
|
|
@@ -117,7 +117,7 @@
|
|
| 117 |
"bits": 5,
|
| 118 |
"block_size": 128
|
| 119 |
},
|
| 120 |
-
"model.layers.1.mlp.gate_proj": {
|
| 121 |
"in_features": 4096,
|
| 122 |
"out_features": 12288,
|
| 123 |
"in_f_padded": 4096,
|
|
@@ -125,7 +125,7 @@
|
|
| 125 |
"bits": 5,
|
| 126 |
"block_size": 128
|
| 127 |
},
|
| 128 |
-
"model.layers.1.mlp.up_proj": {
|
| 129 |
"in_features": 4096,
|
| 130 |
"out_features": 12288,
|
| 131 |
"in_f_padded": 4096,
|
|
@@ -133,7 +133,7 @@
|
|
| 133 |
"bits": 5,
|
| 134 |
"block_size": 128
|
| 135 |
},
|
| 136 |
-
"model.layers.1.mlp.down_proj": {
|
| 137 |
"in_features": 12288,
|
| 138 |
"out_features": 4096,
|
| 139 |
"in_f_padded": 12288,
|
|
@@ -141,7 +141,7 @@
|
|
| 141 |
"bits": 5,
|
| 142 |
"block_size": 128
|
| 143 |
},
|
| 144 |
-
"model.layers.2.linear_attn.out_proj": {
|
| 145 |
"in_features": 4096,
|
| 146 |
"out_features": 4096,
|
| 147 |
"in_f_padded": 4096,
|
|
@@ -149,7 +149,7 @@
|
|
| 149 |
"bits": 5,
|
| 150 |
"block_size": 128
|
| 151 |
},
|
| 152 |
-
"model.layers.2.linear_attn.in_proj_qkv": {
|
| 153 |
"in_features": 4096,
|
| 154 |
"out_features": 8192,
|
| 155 |
"in_f_padded": 4096,
|
|
@@ -157,7 +157,7 @@
|
|
| 157 |
"bits": 5,
|
| 158 |
"block_size": 128
|
| 159 |
},
|
| 160 |
-
"model.layers.2.linear_attn.in_proj_z": {
|
| 161 |
"in_features": 4096,
|
| 162 |
"out_features": 4096,
|
| 163 |
"in_f_padded": 4096,
|
|
@@ -165,7 +165,7 @@
|
|
| 165 |
"bits": 5,
|
| 166 |
"block_size": 128
|
| 167 |
},
|
| 168 |
-
"model.layers.2.linear_attn.in_proj_b": {
|
| 169 |
"in_features": 4096,
|
| 170 |
"out_features": 32,
|
| 171 |
"in_f_padded": 4096,
|
|
@@ -173,7 +173,7 @@
|
|
| 173 |
"bits": 5,
|
| 174 |
"block_size": 128
|
| 175 |
},
|
| 176 |
-
"model.layers.2.linear_attn.in_proj_a": {
|
| 177 |
"in_features": 4096,
|
| 178 |
"out_features": 32,
|
| 179 |
"in_f_padded": 4096,
|
|
@@ -181,7 +181,7 @@
|
|
| 181 |
"bits": 5,
|
| 182 |
"block_size": 128
|
| 183 |
},
|
| 184 |
-
"model.layers.2.mlp.gate_proj": {
|
| 185 |
"in_features": 4096,
|
| 186 |
"out_features": 12288,
|
| 187 |
"in_f_padded": 4096,
|
|
@@ -189,7 +189,7 @@
|
|
| 189 |
"bits": 5,
|
| 190 |
"block_size": 128
|
| 191 |
},
|
| 192 |
-
"model.layers.2.mlp.up_proj": {
|
| 193 |
"in_features": 4096,
|
| 194 |
"out_features": 12288,
|
| 195 |
"in_f_padded": 4096,
|
|
@@ -197,7 +197,7 @@
|
|
| 197 |
"bits": 5,
|
| 198 |
"block_size": 128
|
| 199 |
},
|
| 200 |
-
"model.layers.2.mlp.down_proj": {
|
| 201 |
"in_features": 12288,
|
| 202 |
"out_features": 4096,
|
| 203 |
"in_f_padded": 12288,
|
|
@@ -205,7 +205,7 @@
|
|
| 205 |
"bits": 5,
|
| 206 |
"block_size": 128
|
| 207 |
},
|
| 208 |
-
"model.layers.3.self_attn.q_proj": {
|
| 209 |
"in_features": 4096,
|
| 210 |
"out_features": 8192,
|
| 211 |
"in_f_padded": 4096,
|
|
@@ -213,7 +213,7 @@
|
|
| 213 |
"bits": 5,
|
| 214 |
"block_size": 128
|
| 215 |
},
|
| 216 |
-
"model.layers.3.self_attn.k_proj": {
|
| 217 |
"in_features": 4096,
|
| 218 |
"out_features": 1024,
|
| 219 |
"in_f_padded": 4096,
|
|
@@ -221,7 +221,7 @@
|
|
| 221 |
"bits": 5,
|
| 222 |
"block_size": 128
|
| 223 |
},
|
| 224 |
-
"model.layers.3.self_attn.v_proj": {
|
| 225 |
"in_features": 4096,
|
| 226 |
"out_features": 1024,
|
| 227 |
"in_f_padded": 4096,
|
|
@@ -229,7 +229,7 @@
|
|
| 229 |
"bits": 5,
|
| 230 |
"block_size": 128
|
| 231 |
},
|
| 232 |
-
"model.layers.3.self_attn.o_proj": {
|
| 233 |
"in_features": 4096,
|
| 234 |
"out_features": 4096,
|
| 235 |
"in_f_padded": 4096,
|
|
@@ -237,7 +237,7 @@
|
|
| 237 |
"bits": 5,
|
| 238 |
"block_size": 128
|
| 239 |
},
|
| 240 |
-
"model.layers.3.mlp.gate_proj": {
|
| 241 |
"in_features": 4096,
|
| 242 |
"out_features": 12288,
|
| 243 |
"in_f_padded": 4096,
|
|
@@ -245,7 +245,7 @@
|
|
| 245 |
"bits": 5,
|
| 246 |
"block_size": 128
|
| 247 |
},
|
| 248 |
-
"model.layers.3.mlp.up_proj": {
|
| 249 |
"in_features": 4096,
|
| 250 |
"out_features": 12288,
|
| 251 |
"in_f_padded": 4096,
|
|
@@ -253,7 +253,7 @@
|
|
| 253 |
"bits": 5,
|
| 254 |
"block_size": 128
|
| 255 |
},
|
| 256 |
-
"model.layers.3.mlp.down_proj": {
|
| 257 |
"in_features": 12288,
|
| 258 |
"out_features": 4096,
|
| 259 |
"in_f_padded": 12288,
|
|
@@ -261,7 +261,7 @@
|
|
| 261 |
"bits": 5,
|
| 262 |
"block_size": 128
|
| 263 |
},
|
| 264 |
-
"model.layers.4.linear_attn.out_proj": {
|
| 265 |
"in_features": 4096,
|
| 266 |
"out_features": 4096,
|
| 267 |
"in_f_padded": 4096,
|
|
@@ -269,7 +269,7 @@
|
|
| 269 |
"bits": 5,
|
| 270 |
"block_size": 128
|
| 271 |
},
|
| 272 |
-
"model.layers.4.linear_attn.in_proj_qkv": {
|
| 273 |
"in_features": 4096,
|
| 274 |
"out_features": 8192,
|
| 275 |
"in_f_padded": 4096,
|
|
@@ -277,7 +277,7 @@
|
|
| 277 |
"bits": 5,
|
| 278 |
"block_size": 128
|
| 279 |
},
|
| 280 |
-
"model.layers.4.linear_attn.in_proj_z": {
|
| 281 |
"in_features": 4096,
|
| 282 |
"out_features": 4096,
|
| 283 |
"in_f_padded": 4096,
|
|
@@ -285,7 +285,7 @@
|
|
| 285 |
"bits": 5,
|
| 286 |
"block_size": 128
|
| 287 |
},
|
| 288 |
-
"model.layers.4.linear_attn.in_proj_b": {
|
| 289 |
"in_features": 4096,
|
| 290 |
"out_features": 32,
|
| 291 |
"in_f_padded": 4096,
|
|
@@ -293,7 +293,7 @@
|
|
| 293 |
"bits": 5,
|
| 294 |
"block_size": 128
|
| 295 |
},
|
| 296 |
-
"model.layers.4.linear_attn.in_proj_a": {
|
| 297 |
"in_features": 4096,
|
| 298 |
"out_features": 32,
|
| 299 |
"in_f_padded": 4096,
|
|
@@ -301,7 +301,7 @@
|
|
| 301 |
"bits": 5,
|
| 302 |
"block_size": 128
|
| 303 |
},
|
| 304 |
-
"model.layers.4.mlp.gate_proj": {
|
| 305 |
"in_features": 4096,
|
| 306 |
"out_features": 12288,
|
| 307 |
"in_f_padded": 4096,
|
|
@@ -309,7 +309,7 @@
|
|
| 309 |
"bits": 5,
|
| 310 |
"block_size": 128
|
| 311 |
},
|
| 312 |
-
"model.layers.4.mlp.up_proj": {
|
| 313 |
"in_features": 4096,
|
| 314 |
"out_features": 12288,
|
| 315 |
"in_f_padded": 4096,
|
|
@@ -317,7 +317,7 @@
|
|
| 317 |
"bits": 5,
|
| 318 |
"block_size": 128
|
| 319 |
},
|
| 320 |
-
"model.layers.4.mlp.down_proj": {
|
| 321 |
"in_features": 12288,
|
| 322 |
"out_features": 4096,
|
| 323 |
"in_f_padded": 12288,
|
|
@@ -325,7 +325,7 @@
|
|
| 325 |
"bits": 5,
|
| 326 |
"block_size": 128
|
| 327 |
},
|
| 328 |
-
"model.layers.5.linear_attn.out_proj": {
|
| 329 |
"in_features": 4096,
|
| 330 |
"out_features": 4096,
|
| 331 |
"in_f_padded": 4096,
|
|
@@ -333,7 +333,7 @@
|
|
| 333 |
"bits": 5,
|
| 334 |
"block_size": 128
|
| 335 |
},
|
| 336 |
-
"model.layers.5.linear_attn.in_proj_qkv": {
|
| 337 |
"in_features": 4096,
|
| 338 |
"out_features": 8192,
|
| 339 |
"in_f_padded": 4096,
|
|
@@ -341,7 +341,7 @@
|
|
| 341 |
"bits": 5,
|
| 342 |
"block_size": 128
|
| 343 |
},
|
| 344 |
-
"model.layers.5.linear_attn.in_proj_z": {
|
| 345 |
"in_features": 4096,
|
| 346 |
"out_features": 4096,
|
| 347 |
"in_f_padded": 4096,
|
|
@@ -349,7 +349,7 @@
|
|
| 349 |
"bits": 5,
|
| 350 |
"block_size": 128
|
| 351 |
},
|
| 352 |
-
"model.layers.5.linear_attn.in_proj_b": {
|
| 353 |
"in_features": 4096,
|
| 354 |
"out_features": 32,
|
| 355 |
"in_f_padded": 4096,
|
|
@@ -357,7 +357,7 @@
|
|
| 357 |
"bits": 5,
|
| 358 |
"block_size": 128
|
| 359 |
},
|
| 360 |
-
"model.layers.5.linear_attn.in_proj_a": {
|
| 361 |
"in_features": 4096,
|
| 362 |
"out_features": 32,
|
| 363 |
"in_f_padded": 4096,
|
|
@@ -365,7 +365,7 @@
|
|
| 365 |
"bits": 5,
|
| 366 |
"block_size": 128
|
| 367 |
},
|
| 368 |
-
"model.layers.5.mlp.gate_proj": {
|
| 369 |
"in_features": 4096,
|
| 370 |
"out_features": 12288,
|
| 371 |
"in_f_padded": 4096,
|
|
@@ -373,7 +373,7 @@
|
|
| 373 |
"bits": 5,
|
| 374 |
"block_size": 128
|
| 375 |
},
|
| 376 |
-
"model.layers.5.mlp.up_proj": {
|
| 377 |
"in_features": 4096,
|
| 378 |
"out_features": 12288,
|
| 379 |
"in_f_padded": 4096,
|
|
@@ -381,7 +381,7 @@
|
|
| 381 |
"bits": 5,
|
| 382 |
"block_size": 128
|
| 383 |
},
|
| 384 |
-
"model.layers.5.mlp.down_proj": {
|
| 385 |
"in_features": 12288,
|
| 386 |
"out_features": 4096,
|
| 387 |
"in_f_padded": 12288,
|
|
@@ -389,7 +389,7 @@
|
|
| 389 |
"bits": 5,
|
| 390 |
"block_size": 128
|
| 391 |
},
|
| 392 |
-
"model.layers.6.linear_attn.out_proj": {
|
| 393 |
"in_features": 4096,
|
| 394 |
"out_features": 4096,
|
| 395 |
"in_f_padded": 4096,
|
|
@@ -397,7 +397,7 @@
|
|
| 397 |
"bits": 5,
|
| 398 |
"block_size": 128
|
| 399 |
},
|
| 400 |
-
"model.layers.6.linear_attn.in_proj_qkv": {
|
| 401 |
"in_features": 4096,
|
| 402 |
"out_features": 8192,
|
| 403 |
"in_f_padded": 4096,
|
|
@@ -405,7 +405,7 @@
|
|
| 405 |
"bits": 5,
|
| 406 |
"block_size": 128
|
| 407 |
},
|
| 408 |
-
"model.layers.6.linear_attn.in_proj_z": {
|
| 409 |
"in_features": 4096,
|
| 410 |
"out_features": 4096,
|
| 411 |
"in_f_padded": 4096,
|
|
@@ -413,7 +413,7 @@
|
|
| 413 |
"bits": 5,
|
| 414 |
"block_size": 128
|
| 415 |
},
|
| 416 |
-
"model.layers.6.linear_attn.in_proj_b": {
|
| 417 |
"in_features": 4096,
|
| 418 |
"out_features": 32,
|
| 419 |
"in_f_padded": 4096,
|
|
@@ -421,7 +421,7 @@
|
|
| 421 |
"bits": 5,
|
| 422 |
"block_size": 128
|
| 423 |
},
|
| 424 |
-
"model.layers.6.linear_attn.in_proj_a": {
|
| 425 |
"in_features": 4096,
|
| 426 |
"out_features": 32,
|
| 427 |
"in_f_padded": 4096,
|
|
@@ -429,7 +429,7 @@
|
|
| 429 |
"bits": 5,
|
| 430 |
"block_size": 128
|
| 431 |
},
|
| 432 |
-
"model.layers.6.mlp.gate_proj": {
|
| 433 |
"in_features": 4096,
|
| 434 |
"out_features": 12288,
|
| 435 |
"in_f_padded": 4096,
|
|
@@ -437,7 +437,7 @@
|
|
| 437 |
"bits": 5,
|
| 438 |
"block_size": 128
|
| 439 |
},
|
| 440 |
-
"model.layers.6.mlp.up_proj": {
|
| 441 |
"in_features": 4096,
|
| 442 |
"out_features": 12288,
|
| 443 |
"in_f_padded": 4096,
|
|
@@ -445,7 +445,7 @@
|
|
| 445 |
"bits": 5,
|
| 446 |
"block_size": 128
|
| 447 |
},
|
| 448 |
-
"model.layers.6.mlp.down_proj": {
|
| 449 |
"in_features": 12288,
|
| 450 |
"out_features": 4096,
|
| 451 |
"in_f_padded": 12288,
|
|
@@ -453,7 +453,7 @@
|
|
| 453 |
"bits": 5,
|
| 454 |
"block_size": 128
|
| 455 |
},
|
| 456 |
-
"model.layers.7.self_attn.q_proj": {
|
| 457 |
"in_features": 4096,
|
| 458 |
"out_features": 8192,
|
| 459 |
"in_f_padded": 4096,
|
|
@@ -461,7 +461,7 @@
|
|
| 461 |
"bits": 5,
|
| 462 |
"block_size": 128
|
| 463 |
},
|
| 464 |
-
"model.layers.7.self_attn.k_proj": {
|
| 465 |
"in_features": 4096,
|
| 466 |
"out_features": 1024,
|
| 467 |
"in_f_padded": 4096,
|
|
@@ -469,7 +469,7 @@
|
|
| 469 |
"bits": 5,
|
| 470 |
"block_size": 128
|
| 471 |
},
|
| 472 |
-
"model.layers.7.self_attn.v_proj": {
|
| 473 |
"in_features": 4096,
|
| 474 |
"out_features": 1024,
|
| 475 |
"in_f_padded": 4096,
|
|
@@ -477,7 +477,7 @@
|
|
| 477 |
"bits": 5,
|
| 478 |
"block_size": 128
|
| 479 |
},
|
| 480 |
-
"model.layers.7.self_attn.o_proj": {
|
| 481 |
"in_features": 4096,
|
| 482 |
"out_features": 4096,
|
| 483 |
"in_f_padded": 4096,
|
|
@@ -485,7 +485,7 @@
|
|
| 485 |
"bits": 5,
|
| 486 |
"block_size": 128
|
| 487 |
},
|
| 488 |
-
"model.layers.7.mlp.gate_proj": {
|
| 489 |
"in_features": 4096,
|
| 490 |
"out_features": 12288,
|
| 491 |
"in_f_padded": 4096,
|
|
@@ -493,7 +493,7 @@
|
|
| 493 |
"bits": 5,
|
| 494 |
"block_size": 128
|
| 495 |
},
|
| 496 |
-
"model.layers.7.mlp.up_proj": {
|
| 497 |
"in_features": 4096,
|
| 498 |
"out_features": 12288,
|
| 499 |
"in_f_padded": 4096,
|
|
@@ -501,7 +501,7 @@
|
|
| 501 |
"bits": 5,
|
| 502 |
"block_size": 128
|
| 503 |
},
|
| 504 |
-
"model.layers.7.mlp.down_proj": {
|
| 505 |
"in_features": 12288,
|
| 506 |
"out_features": 4096,
|
| 507 |
"in_f_padded": 12288,
|
|
@@ -509,7 +509,7 @@
|
|
| 509 |
"bits": 5,
|
| 510 |
"block_size": 128
|
| 511 |
},
|
| 512 |
-
"model.layers.8.linear_attn.out_proj": {
|
| 513 |
"in_features": 4096,
|
| 514 |
"out_features": 4096,
|
| 515 |
"in_f_padded": 4096,
|
|
@@ -517,7 +517,7 @@
|
|
| 517 |
"bits": 5,
|
| 518 |
"block_size": 128
|
| 519 |
},
|
| 520 |
-
"model.layers.8.linear_attn.in_proj_qkv": {
|
| 521 |
"in_features": 4096,
|
| 522 |
"out_features": 8192,
|
| 523 |
"in_f_padded": 4096,
|
|
@@ -525,7 +525,7 @@
|
|
| 525 |
"bits": 5,
|
| 526 |
"block_size": 128
|
| 527 |
},
|
| 528 |
-
"model.layers.8.linear_attn.in_proj_z": {
|
| 529 |
"in_features": 4096,
|
| 530 |
"out_features": 4096,
|
| 531 |
"in_f_padded": 4096,
|
|
@@ -533,7 +533,7 @@
|
|
| 533 |
"bits": 5,
|
| 534 |
"block_size": 128
|
| 535 |
},
|
| 536 |
-
"model.layers.8.linear_attn.in_proj_b": {
|
| 537 |
"in_features": 4096,
|
| 538 |
"out_features": 32,
|
| 539 |
"in_f_padded": 4096,
|
|
@@ -541,7 +541,7 @@
|
|
| 541 |
"bits": 5,
|
| 542 |
"block_size": 128
|
| 543 |
},
|
| 544 |
-
"model.layers.8.linear_attn.in_proj_a": {
|
| 545 |
"in_features": 4096,
|
| 546 |
"out_features": 32,
|
| 547 |
"in_f_padded": 4096,
|
|
@@ -549,7 +549,7 @@
|
|
| 549 |
"bits": 5,
|
| 550 |
"block_size": 128
|
| 551 |
},
|
| 552 |
-
"model.layers.8.mlp.gate_proj": {
|
| 553 |
"in_features": 4096,
|
| 554 |
"out_features": 12288,
|
| 555 |
"in_f_padded": 4096,
|
|
@@ -557,7 +557,7 @@
|
|
| 557 |
"bits": 5,
|
| 558 |
"block_size": 128
|
| 559 |
},
|
| 560 |
-
"model.layers.8.mlp.up_proj": {
|
| 561 |
"in_features": 4096,
|
| 562 |
"out_features": 12288,
|
| 563 |
"in_f_padded": 4096,
|
|
@@ -565,7 +565,7 @@
|
|
| 565 |
"bits": 5,
|
| 566 |
"block_size": 128
|
| 567 |
},
|
| 568 |
-
"model.layers.8.mlp.down_proj": {
|
| 569 |
"in_features": 12288,
|
| 570 |
"out_features": 4096,
|
| 571 |
"in_f_padded": 12288,
|
|
@@ -573,7 +573,7 @@
|
|
| 573 |
"bits": 5,
|
| 574 |
"block_size": 128
|
| 575 |
},
|
| 576 |
-
"model.layers.9.linear_attn.out_proj": {
|
| 577 |
"in_features": 4096,
|
| 578 |
"out_features": 4096,
|
| 579 |
"in_f_padded": 4096,
|
|
@@ -581,7 +581,7 @@
|
|
| 581 |
"bits": 5,
|
| 582 |
"block_size": 128
|
| 583 |
},
|
| 584 |
-
"model.layers.9.linear_attn.in_proj_qkv": {
|
| 585 |
"in_features": 4096,
|
| 586 |
"out_features": 8192,
|
| 587 |
"in_f_padded": 4096,
|
|
@@ -589,7 +589,7 @@
|
|
| 589 |
"bits": 5,
|
| 590 |
"block_size": 128
|
| 591 |
},
|
| 592 |
-
"model.layers.9.linear_attn.in_proj_z": {
|
| 593 |
"in_features": 4096,
|
| 594 |
"out_features": 4096,
|
| 595 |
"in_f_padded": 4096,
|
|
@@ -597,7 +597,7 @@
|
|
| 597 |
"bits": 5,
|
| 598 |
"block_size": 128
|
| 599 |
},
|
| 600 |
-
"model.layers.9.linear_attn.in_proj_b": {
|
| 601 |
"in_features": 4096,
|
| 602 |
"out_features": 32,
|
| 603 |
"in_f_padded": 4096,
|
|
@@ -605,7 +605,7 @@
|
|
| 605 |
"bits": 5,
|
| 606 |
"block_size": 128
|
| 607 |
},
|
| 608 |
-
"model.layers.9.linear_attn.in_proj_a": {
|
| 609 |
"in_features": 4096,
|
| 610 |
"out_features": 32,
|
| 611 |
"in_f_padded": 4096,
|
|
@@ -613,7 +613,7 @@
|
|
| 613 |
"bits": 5,
|
| 614 |
"block_size": 128
|
| 615 |
},
|
| 616 |
-
"model.layers.9.mlp.gate_proj": {
|
| 617 |
"in_features": 4096,
|
| 618 |
"out_features": 12288,
|
| 619 |
"in_f_padded": 4096,
|
|
@@ -621,7 +621,7 @@
|
|
| 621 |
"bits": 5,
|
| 622 |
"block_size": 128
|
| 623 |
},
|
| 624 |
-
"model.layers.9.mlp.up_proj": {
|
| 625 |
"in_features": 4096,
|
| 626 |
"out_features": 12288,
|
| 627 |
"in_f_padded": 4096,
|
|
@@ -629,7 +629,7 @@
|
|
| 629 |
"bits": 5,
|
| 630 |
"block_size": 128
|
| 631 |
},
|
| 632 |
-
"model.layers.9.mlp.down_proj": {
|
| 633 |
"in_features": 12288,
|
| 634 |
"out_features": 4096,
|
| 635 |
"in_f_padded": 12288,
|
|
@@ -637,7 +637,7 @@
|
|
| 637 |
"bits": 5,
|
| 638 |
"block_size": 128
|
| 639 |
},
|
| 640 |
-
"model.layers.10.linear_attn.out_proj": {
|
| 641 |
"in_features": 4096,
|
| 642 |
"out_features": 4096,
|
| 643 |
"in_f_padded": 4096,
|
|
@@ -645,7 +645,7 @@
|
|
| 645 |
"bits": 5,
|
| 646 |
"block_size": 128
|
| 647 |
},
|
| 648 |
-
"model.layers.10.linear_attn.in_proj_qkv": {
|
| 649 |
"in_features": 4096,
|
| 650 |
"out_features": 8192,
|
| 651 |
"in_f_padded": 4096,
|
|
@@ -653,7 +653,7 @@
|
|
| 653 |
"bits": 5,
|
| 654 |
"block_size": 128
|
| 655 |
},
|
| 656 |
-
"model.layers.10.linear_attn.in_proj_z": {
|
| 657 |
"in_features": 4096,
|
| 658 |
"out_features": 4096,
|
| 659 |
"in_f_padded": 4096,
|
|
@@ -661,7 +661,7 @@
|
|
| 661 |
"bits": 5,
|
| 662 |
"block_size": 128
|
| 663 |
},
|
| 664 |
-
"model.layers.10.linear_attn.in_proj_b": {
|
| 665 |
"in_features": 4096,
|
| 666 |
"out_features": 32,
|
| 667 |
"in_f_padded": 4096,
|
|
@@ -669,7 +669,7 @@
|
|
| 669 |
"bits": 5,
|
| 670 |
"block_size": 128
|
| 671 |
},
|
| 672 |
-
"model.layers.10.linear_attn.in_proj_a": {
|
| 673 |
"in_features": 4096,
|
| 674 |
"out_features": 32,
|
| 675 |
"in_f_padded": 4096,
|
|
@@ -677,7 +677,7 @@
|
|
| 677 |
"bits": 5,
|
| 678 |
"block_size": 128
|
| 679 |
},
|
| 680 |
-
"model.layers.10.mlp.gate_proj": {
|
| 681 |
"in_features": 4096,
|
| 682 |
"out_features": 12288,
|
| 683 |
"in_f_padded": 4096,
|
|
@@ -685,7 +685,7 @@
|
|
| 685 |
"bits": 5,
|
| 686 |
"block_size": 128
|
| 687 |
},
|
| 688 |
-
"model.layers.10.mlp.up_proj": {
|
| 689 |
"in_features": 4096,
|
| 690 |
"out_features": 12288,
|
| 691 |
"in_f_padded": 4096,
|
|
@@ -693,7 +693,7 @@
|
|
| 693 |
"bits": 5,
|
| 694 |
"block_size": 128
|
| 695 |
},
|
| 696 |
-
"model.layers.10.mlp.down_proj": {
|
| 697 |
"in_features": 12288,
|
| 698 |
"out_features": 4096,
|
| 699 |
"in_f_padded": 12288,
|
|
@@ -701,7 +701,7 @@
|
|
| 701 |
"bits": 5,
|
| 702 |
"block_size": 128
|
| 703 |
},
|
| 704 |
-
"model.layers.11.self_attn.q_proj": {
|
| 705 |
"in_features": 4096,
|
| 706 |
"out_features": 8192,
|
| 707 |
"in_f_padded": 4096,
|
|
@@ -709,7 +709,7 @@
|
|
| 709 |
"bits": 5,
|
| 710 |
"block_size": 128
|
| 711 |
},
|
| 712 |
-
"model.layers.11.self_attn.k_proj": {
|
| 713 |
"in_features": 4096,
|
| 714 |
"out_features": 1024,
|
| 715 |
"in_f_padded": 4096,
|
|
@@ -717,7 +717,7 @@
|
|
| 717 |
"bits": 5,
|
| 718 |
"block_size": 128
|
| 719 |
},
|
| 720 |
-
"model.layers.11.self_attn.v_proj": {
|
| 721 |
"in_features": 4096,
|
| 722 |
"out_features": 1024,
|
| 723 |
"in_f_padded": 4096,
|
|
@@ -725,7 +725,7 @@
|
|
| 725 |
"bits": 5,
|
| 726 |
"block_size": 128
|
| 727 |
},
|
| 728 |
-
"model.layers.11.self_attn.o_proj": {
|
| 729 |
"in_features": 4096,
|
| 730 |
"out_features": 4096,
|
| 731 |
"in_f_padded": 4096,
|
|
@@ -733,7 +733,7 @@
|
|
| 733 |
"bits": 5,
|
| 734 |
"block_size": 128
|
| 735 |
},
|
| 736 |
-
"model.layers.11.mlp.gate_proj": {
|
| 737 |
"in_features": 4096,
|
| 738 |
"out_features": 12288,
|
| 739 |
"in_f_padded": 4096,
|
|
@@ -741,7 +741,7 @@
|
|
| 741 |
"bits": 5,
|
| 742 |
"block_size": 128
|
| 743 |
},
|
| 744 |
-
"model.layers.11.mlp.up_proj": {
|
| 745 |
"in_features": 4096,
|
| 746 |
"out_features": 12288,
|
| 747 |
"in_f_padded": 4096,
|
|
@@ -749,7 +749,7 @@
|
|
| 749 |
"bits": 5,
|
| 750 |
"block_size": 128
|
| 751 |
},
|
| 752 |
-
"model.layers.11.mlp.down_proj": {
|
| 753 |
"in_features": 12288,
|
| 754 |
"out_features": 4096,
|
| 755 |
"in_f_padded": 12288,
|
|
@@ -757,7 +757,7 @@
|
|
| 757 |
"bits": 5,
|
| 758 |
"block_size": 128
|
| 759 |
},
|
| 760 |
-
"model.layers.12.linear_attn.out_proj": {
|
| 761 |
"in_features": 4096,
|
| 762 |
"out_features": 4096,
|
| 763 |
"in_f_padded": 4096,
|
|
@@ -765,7 +765,7 @@
|
|
| 765 |
"bits": 5,
|
| 766 |
"block_size": 128
|
| 767 |
},
|
| 768 |
-
"model.layers.12.linear_attn.in_proj_qkv": {
|
| 769 |
"in_features": 4096,
|
| 770 |
"out_features": 8192,
|
| 771 |
"in_f_padded": 4096,
|
|
@@ -773,7 +773,7 @@
|
|
| 773 |
"bits": 5,
|
| 774 |
"block_size": 128
|
| 775 |
},
|
| 776 |
-
"model.layers.12.linear_attn.in_proj_z": {
|
| 777 |
"in_features": 4096,
|
| 778 |
"out_features": 4096,
|
| 779 |
"in_f_padded": 4096,
|
|
@@ -781,7 +781,7 @@
|
|
| 781 |
"bits": 5,
|
| 782 |
"block_size": 128
|
| 783 |
},
|
| 784 |
-
"model.layers.12.linear_attn.in_proj_b": {
|
| 785 |
"in_features": 4096,
|
| 786 |
"out_features": 32,
|
| 787 |
"in_f_padded": 4096,
|
|
@@ -789,7 +789,7 @@
|
|
| 789 |
"bits": 5,
|
| 790 |
"block_size": 128
|
| 791 |
},
|
| 792 |
-
"model.layers.12.linear_attn.in_proj_a": {
|
| 793 |
"in_features": 4096,
|
| 794 |
"out_features": 32,
|
| 795 |
"in_f_padded": 4096,
|
|
@@ -797,7 +797,7 @@
|
|
| 797 |
"bits": 5,
|
| 798 |
"block_size": 128
|
| 799 |
},
|
| 800 |
-
"model.layers.12.mlp.gate_proj": {
|
| 801 |
"in_features": 4096,
|
| 802 |
"out_features": 12288,
|
| 803 |
"in_f_padded": 4096,
|
|
@@ -805,7 +805,7 @@
|
|
| 805 |
"bits": 5,
|
| 806 |
"block_size": 128
|
| 807 |
},
|
| 808 |
-
"model.layers.12.mlp.up_proj": {
|
| 809 |
"in_features": 4096,
|
| 810 |
"out_features": 12288,
|
| 811 |
"in_f_padded": 4096,
|
|
@@ -813,7 +813,7 @@
|
|
| 813 |
"bits": 5,
|
| 814 |
"block_size": 128
|
| 815 |
},
|
| 816 |
-
"model.layers.12.mlp.down_proj": {
|
| 817 |
"in_features": 12288,
|
| 818 |
"out_features": 4096,
|
| 819 |
"in_f_padded": 12288,
|
|
@@ -821,7 +821,7 @@
|
|
| 821 |
"bits": 5,
|
| 822 |
"block_size": 128
|
| 823 |
},
|
| 824 |
-
"model.layers.13.linear_attn.out_proj": {
|
| 825 |
"in_features": 4096,
|
| 826 |
"out_features": 4096,
|
| 827 |
"in_f_padded": 4096,
|
|
@@ -829,7 +829,7 @@
|
|
| 829 |
"bits": 5,
|
| 830 |
"block_size": 128
|
| 831 |
},
|
| 832 |
-
"model.layers.13.linear_attn.in_proj_qkv": {
|
| 833 |
"in_features": 4096,
|
| 834 |
"out_features": 8192,
|
| 835 |
"in_f_padded": 4096,
|
|
@@ -837,7 +837,7 @@
|
|
| 837 |
"bits": 5,
|
| 838 |
"block_size": 128
|
| 839 |
},
|
| 840 |
-
"model.layers.13.linear_attn.in_proj_z": {
|
| 841 |
"in_features": 4096,
|
| 842 |
"out_features": 4096,
|
| 843 |
"in_f_padded": 4096,
|
|
@@ -845,7 +845,7 @@
|
|
| 845 |
"bits": 5,
|
| 846 |
"block_size": 128
|
| 847 |
},
|
| 848 |
-
"model.layers.13.linear_attn.in_proj_b": {
|
| 849 |
"in_features": 4096,
|
| 850 |
"out_features": 32,
|
| 851 |
"in_f_padded": 4096,
|
|
@@ -853,7 +853,7 @@
|
|
| 853 |
"bits": 5,
|
| 854 |
"block_size": 128
|
| 855 |
},
|
| 856 |
-
"model.layers.13.linear_attn.in_proj_a": {
|
| 857 |
"in_features": 4096,
|
| 858 |
"out_features": 32,
|
| 859 |
"in_f_padded": 4096,
|
|
@@ -861,7 +861,7 @@
|
|
| 861 |
"bits": 5,
|
| 862 |
"block_size": 128
|
| 863 |
},
|
| 864 |
-
"model.layers.13.mlp.gate_proj": {
|
| 865 |
"in_features": 4096,
|
| 866 |
"out_features": 12288,
|
| 867 |
"in_f_padded": 4096,
|
|
@@ -869,7 +869,7 @@
|
|
| 869 |
"bits": 5,
|
| 870 |
"block_size": 128
|
| 871 |
},
|
| 872 |
-
"model.layers.13.mlp.up_proj": {
|
| 873 |
"in_features": 4096,
|
| 874 |
"out_features": 12288,
|
| 875 |
"in_f_padded": 4096,
|
|
@@ -877,7 +877,7 @@
|
|
| 877 |
"bits": 5,
|
| 878 |
"block_size": 128
|
| 879 |
},
|
| 880 |
-
"model.layers.13.mlp.down_proj": {
|
| 881 |
"in_features": 12288,
|
| 882 |
"out_features": 4096,
|
| 883 |
"in_f_padded": 12288,
|
|
@@ -885,7 +885,7 @@
|
|
| 885 |
"bits": 5,
|
| 886 |
"block_size": 128
|
| 887 |
},
|
| 888 |
-
"model.layers.14.linear_attn.out_proj": {
|
| 889 |
"in_features": 4096,
|
| 890 |
"out_features": 4096,
|
| 891 |
"in_f_padded": 4096,
|
|
@@ -893,7 +893,7 @@
|
|
| 893 |
"bits": 5,
|
| 894 |
"block_size": 128
|
| 895 |
},
|
| 896 |
-
"model.layers.14.linear_attn.in_proj_qkv": {
|
| 897 |
"in_features": 4096,
|
| 898 |
"out_features": 8192,
|
| 899 |
"in_f_padded": 4096,
|
|
@@ -901,7 +901,7 @@
|
|
| 901 |
"bits": 5,
|
| 902 |
"block_size": 128
|
| 903 |
},
|
| 904 |
-
"model.layers.14.linear_attn.in_proj_z": {
|
| 905 |
"in_features": 4096,
|
| 906 |
"out_features": 4096,
|
| 907 |
"in_f_padded": 4096,
|
|
@@ -909,7 +909,7 @@
|
|
| 909 |
"bits": 5,
|
| 910 |
"block_size": 128
|
| 911 |
},
|
| 912 |
-
"model.layers.14.linear_attn.in_proj_b": {
|
| 913 |
"in_features": 4096,
|
| 914 |
"out_features": 32,
|
| 915 |
"in_f_padded": 4096,
|
|
@@ -917,7 +917,7 @@
|
|
| 917 |
"bits": 5,
|
| 918 |
"block_size": 128
|
| 919 |
},
|
| 920 |
-
"model.layers.14.linear_attn.in_proj_a": {
|
| 921 |
"in_features": 4096,
|
| 922 |
"out_features": 32,
|
| 923 |
"in_f_padded": 4096,
|
|
@@ -925,7 +925,7 @@
|
|
| 925 |
"bits": 5,
|
| 926 |
"block_size": 128
|
| 927 |
},
|
| 928 |
-
"model.layers.14.mlp.gate_proj": {
|
| 929 |
"in_features": 4096,
|
| 930 |
"out_features": 12288,
|
| 931 |
"in_f_padded": 4096,
|
|
@@ -933,7 +933,7 @@
|
|
| 933 |
"bits": 5,
|
| 934 |
"block_size": 128
|
| 935 |
},
|
| 936 |
-
"model.layers.14.mlp.up_proj": {
|
| 937 |
"in_features": 4096,
|
| 938 |
"out_features": 12288,
|
| 939 |
"in_f_padded": 4096,
|
|
@@ -941,7 +941,7 @@
|
|
| 941 |
"bits": 5,
|
| 942 |
"block_size": 128
|
| 943 |
},
|
| 944 |
-
"model.layers.14.mlp.down_proj": {
|
| 945 |
"in_features": 12288,
|
| 946 |
"out_features": 4096,
|
| 947 |
"in_f_padded": 12288,
|
|
@@ -949,7 +949,7 @@
|
|
| 949 |
"bits": 5,
|
| 950 |
"block_size": 128
|
| 951 |
},
|
| 952 |
-
"model.layers.15.self_attn.q_proj": {
|
| 953 |
"in_features": 4096,
|
| 954 |
"out_features": 8192,
|
| 955 |
"in_f_padded": 4096,
|
|
@@ -957,7 +957,7 @@
|
|
| 957 |
"bits": 5,
|
| 958 |
"block_size": 128
|
| 959 |
},
|
| 960 |
-
"model.layers.15.self_attn.k_proj": {
|
| 961 |
"in_features": 4096,
|
| 962 |
"out_features": 1024,
|
| 963 |
"in_f_padded": 4096,
|
|
@@ -965,7 +965,7 @@
|
|
| 965 |
"bits": 5,
|
| 966 |
"block_size": 128
|
| 967 |
},
|
| 968 |
-
"model.layers.15.self_attn.v_proj": {
|
| 969 |
"in_features": 4096,
|
| 970 |
"out_features": 1024,
|
| 971 |
"in_f_padded": 4096,
|
|
@@ -973,7 +973,7 @@
|
|
| 973 |
"bits": 5,
|
| 974 |
"block_size": 128
|
| 975 |
},
|
| 976 |
-
"model.layers.15.self_attn.o_proj": {
|
| 977 |
"in_features": 4096,
|
| 978 |
"out_features": 4096,
|
| 979 |
"in_f_padded": 4096,
|
|
@@ -981,7 +981,7 @@
|
|
| 981 |
"bits": 5,
|
| 982 |
"block_size": 128
|
| 983 |
},
|
| 984 |
-
"model.layers.15.mlp.gate_proj": {
|
| 985 |
"in_features": 4096,
|
| 986 |
"out_features": 12288,
|
| 987 |
"in_f_padded": 4096,
|
|
@@ -989,7 +989,7 @@
|
|
| 989 |
"bits": 5,
|
| 990 |
"block_size": 128
|
| 991 |
},
|
| 992 |
-
"model.layers.15.mlp.up_proj": {
|
| 993 |
"in_features": 4096,
|
| 994 |
"out_features": 12288,
|
| 995 |
"in_f_padded": 4096,
|
|
@@ -997,7 +997,7 @@
|
|
| 997 |
"bits": 5,
|
| 998 |
"block_size": 128
|
| 999 |
},
|
| 1000 |
-
"model.layers.15.mlp.down_proj": {
|
| 1001 |
"in_features": 12288,
|
| 1002 |
"out_features": 4096,
|
| 1003 |
"in_f_padded": 12288,
|
|
@@ -1005,7 +1005,7 @@
|
|
| 1005 |
"bits": 5,
|
| 1006 |
"block_size": 128
|
| 1007 |
},
|
| 1008 |
-
"model.layers.16.linear_attn.out_proj": {
|
| 1009 |
"in_features": 4096,
|
| 1010 |
"out_features": 4096,
|
| 1011 |
"in_f_padded": 4096,
|
|
@@ -1013,7 +1013,7 @@
|
|
| 1013 |
"bits": 5,
|
| 1014 |
"block_size": 128
|
| 1015 |
},
|
| 1016 |
-
"model.layers.16.linear_attn.in_proj_qkv": {
|
| 1017 |
"in_features": 4096,
|
| 1018 |
"out_features": 8192,
|
| 1019 |
"in_f_padded": 4096,
|
|
@@ -1021,7 +1021,7 @@
|
|
| 1021 |
"bits": 5,
|
| 1022 |
"block_size": 128
|
| 1023 |
},
|
| 1024 |
-
"model.layers.16.linear_attn.in_proj_z": {
|
| 1025 |
"in_features": 4096,
|
| 1026 |
"out_features": 4096,
|
| 1027 |
"in_f_padded": 4096,
|
|
@@ -1029,7 +1029,7 @@
|
|
| 1029 |
"bits": 5,
|
| 1030 |
"block_size": 128
|
| 1031 |
},
|
| 1032 |
-
"model.layers.16.linear_attn.in_proj_b": {
|
| 1033 |
"in_features": 4096,
|
| 1034 |
"out_features": 32,
|
| 1035 |
"in_f_padded": 4096,
|
|
@@ -1037,7 +1037,7 @@
|
|
| 1037 |
"bits": 5,
|
| 1038 |
"block_size": 128
|
| 1039 |
},
|
| 1040 |
-
"model.layers.16.linear_attn.in_proj_a": {
|
| 1041 |
"in_features": 4096,
|
| 1042 |
"out_features": 32,
|
| 1043 |
"in_f_padded": 4096,
|
|
@@ -1045,7 +1045,7 @@
|
|
| 1045 |
"bits": 5,
|
| 1046 |
"block_size": 128
|
| 1047 |
},
|
| 1048 |
-
"model.layers.16.mlp.gate_proj": {
|
| 1049 |
"in_features": 4096,
|
| 1050 |
"out_features": 12288,
|
| 1051 |
"in_f_padded": 4096,
|
|
@@ -1053,7 +1053,7 @@
|
|
| 1053 |
"bits": 5,
|
| 1054 |
"block_size": 128
|
| 1055 |
},
|
| 1056 |
-
"model.layers.16.mlp.up_proj": {
|
| 1057 |
"in_features": 4096,
|
| 1058 |
"out_features": 12288,
|
| 1059 |
"in_f_padded": 4096,
|
|
@@ -1061,7 +1061,7 @@
|
|
| 1061 |
"bits": 5,
|
| 1062 |
"block_size": 128
|
| 1063 |
},
|
| 1064 |
-
"model.layers.16.mlp.down_proj": {
|
| 1065 |
"in_features": 12288,
|
| 1066 |
"out_features": 4096,
|
| 1067 |
"in_f_padded": 12288,
|
|
@@ -1069,7 +1069,7 @@
|
|
| 1069 |
"bits": 5,
|
| 1070 |
"block_size": 128
|
| 1071 |
},
|
| 1072 |
-
"model.layers.17.linear_attn.out_proj": {
|
| 1073 |
"in_features": 4096,
|
| 1074 |
"out_features": 4096,
|
| 1075 |
"in_f_padded": 4096,
|
|
@@ -1077,7 +1077,7 @@
|
|
| 1077 |
"bits": 5,
|
| 1078 |
"block_size": 128
|
| 1079 |
},
|
| 1080 |
-
"model.layers.17.linear_attn.in_proj_qkv": {
|
| 1081 |
"in_features": 4096,
|
| 1082 |
"out_features": 8192,
|
| 1083 |
"in_f_padded": 4096,
|
|
@@ -1085,7 +1085,7 @@
|
|
| 1085 |
"bits": 5,
|
| 1086 |
"block_size": 128
|
| 1087 |
},
|
| 1088 |
-
"model.layers.17.linear_attn.in_proj_z": {
|
| 1089 |
"in_features": 4096,
|
| 1090 |
"out_features": 4096,
|
| 1091 |
"in_f_padded": 4096,
|
|
@@ -1093,7 +1093,7 @@
|
|
| 1093 |
"bits": 5,
|
| 1094 |
"block_size": 128
|
| 1095 |
},
|
| 1096 |
-
"model.layers.17.linear_attn.in_proj_b": {
|
| 1097 |
"in_features": 4096,
|
| 1098 |
"out_features": 32,
|
| 1099 |
"in_f_padded": 4096,
|
|
@@ -1101,7 +1101,7 @@
|
|
| 1101 |
"bits": 5,
|
| 1102 |
"block_size": 128
|
| 1103 |
},
|
| 1104 |
-
"model.layers.17.linear_attn.in_proj_a": {
|
| 1105 |
"in_features": 4096,
|
| 1106 |
"out_features": 32,
|
| 1107 |
"in_f_padded": 4096,
|
|
@@ -1109,7 +1109,7 @@
|
|
| 1109 |
"bits": 5,
|
| 1110 |
"block_size": 128
|
| 1111 |
},
|
| 1112 |
-
"model.layers.17.mlp.gate_proj": {
|
| 1113 |
"in_features": 4096,
|
| 1114 |
"out_features": 12288,
|
| 1115 |
"in_f_padded": 4096,
|
|
@@ -1117,7 +1117,7 @@
|
|
| 1117 |
"bits": 5,
|
| 1118 |
"block_size": 128
|
| 1119 |
},
|
| 1120 |
-
"model.layers.17.mlp.up_proj": {
|
| 1121 |
"in_features": 4096,
|
| 1122 |
"out_features": 12288,
|
| 1123 |
"in_f_padded": 4096,
|
|
@@ -1125,7 +1125,7 @@
|
|
| 1125 |
"bits": 5,
|
| 1126 |
"block_size": 128
|
| 1127 |
},
|
| 1128 |
-
"model.layers.17.mlp.down_proj": {
|
| 1129 |
"in_features": 12288,
|
| 1130 |
"out_features": 4096,
|
| 1131 |
"in_f_padded": 12288,
|
|
@@ -1133,7 +1133,7 @@
|
|
| 1133 |
"bits": 5,
|
| 1134 |
"block_size": 128
|
| 1135 |
},
|
| 1136 |
-
"model.layers.18.linear_attn.out_proj": {
|
| 1137 |
"in_features": 4096,
|
| 1138 |
"out_features": 4096,
|
| 1139 |
"in_f_padded": 4096,
|
|
@@ -1141,7 +1141,7 @@
|
|
| 1141 |
"bits": 5,
|
| 1142 |
"block_size": 128
|
| 1143 |
},
|
| 1144 |
-
"model.layers.18.linear_attn.in_proj_qkv": {
|
| 1145 |
"in_features": 4096,
|
| 1146 |
"out_features": 8192,
|
| 1147 |
"in_f_padded": 4096,
|
|
@@ -1149,7 +1149,7 @@
|
|
| 1149 |
"bits": 5,
|
| 1150 |
"block_size": 128
|
| 1151 |
},
|
| 1152 |
-
"model.layers.18.linear_attn.in_proj_z": {
|
| 1153 |
"in_features": 4096,
|
| 1154 |
"out_features": 4096,
|
| 1155 |
"in_f_padded": 4096,
|
|
@@ -1157,7 +1157,7 @@
|
|
| 1157 |
"bits": 5,
|
| 1158 |
"block_size": 128
|
| 1159 |
},
|
| 1160 |
-
"model.layers.18.linear_attn.in_proj_b": {
|
| 1161 |
"in_features": 4096,
|
| 1162 |
"out_features": 32,
|
| 1163 |
"in_f_padded": 4096,
|
|
@@ -1165,7 +1165,7 @@
|
|
| 1165 |
"bits": 5,
|
| 1166 |
"block_size": 128
|
| 1167 |
},
|
| 1168 |
-
"model.layers.18.linear_attn.in_proj_a": {
|
| 1169 |
"in_features": 4096,
|
| 1170 |
"out_features": 32,
|
| 1171 |
"in_f_padded": 4096,
|
|
@@ -1173,7 +1173,7 @@
|
|
| 1173 |
"bits": 5,
|
| 1174 |
"block_size": 128
|
| 1175 |
},
|
| 1176 |
-
"model.layers.18.mlp.gate_proj": {
|
| 1177 |
"in_features": 4096,
|
| 1178 |
"out_features": 12288,
|
| 1179 |
"in_f_padded": 4096,
|
|
@@ -1181,7 +1181,7 @@
|
|
| 1181 |
"bits": 5,
|
| 1182 |
"block_size": 128
|
| 1183 |
},
|
| 1184 |
-
"model.layers.18.mlp.up_proj": {
|
| 1185 |
"in_features": 4096,
|
| 1186 |
"out_features": 12288,
|
| 1187 |
"in_f_padded": 4096,
|
|
@@ -1189,7 +1189,7 @@
|
|
| 1189 |
"bits": 5,
|
| 1190 |
"block_size": 128
|
| 1191 |
},
|
| 1192 |
-
"model.layers.18.mlp.down_proj": {
|
| 1193 |
"in_features": 12288,
|
| 1194 |
"out_features": 4096,
|
| 1195 |
"in_f_padded": 12288,
|
|
@@ -1197,7 +1197,7 @@
|
|
| 1197 |
"bits": 5,
|
| 1198 |
"block_size": 128
|
| 1199 |
},
|
| 1200 |
-
"model.layers.19.self_attn.q_proj": {
|
| 1201 |
"in_features": 4096,
|
| 1202 |
"out_features": 8192,
|
| 1203 |
"in_f_padded": 4096,
|
|
@@ -1205,7 +1205,7 @@
|
|
| 1205 |
"bits": 5,
|
| 1206 |
"block_size": 128
|
| 1207 |
},
|
| 1208 |
-
"model.layers.19.self_attn.k_proj": {
|
| 1209 |
"in_features": 4096,
|
| 1210 |
"out_features": 1024,
|
| 1211 |
"in_f_padded": 4096,
|
|
@@ -1213,7 +1213,7 @@
|
|
| 1213 |
"bits": 5,
|
| 1214 |
"block_size": 128
|
| 1215 |
},
|
| 1216 |
-
"model.layers.19.self_attn.v_proj": {
|
| 1217 |
"in_features": 4096,
|
| 1218 |
"out_features": 1024,
|
| 1219 |
"in_f_padded": 4096,
|
|
@@ -1221,7 +1221,7 @@
|
|
| 1221 |
"bits": 5,
|
| 1222 |
"block_size": 128
|
| 1223 |
},
|
| 1224 |
-
"model.layers.19.self_attn.o_proj": {
|
| 1225 |
"in_features": 4096,
|
| 1226 |
"out_features": 4096,
|
| 1227 |
"in_f_padded": 4096,
|
|
@@ -1229,7 +1229,7 @@
|
|
| 1229 |
"bits": 5,
|
| 1230 |
"block_size": 128
|
| 1231 |
},
|
| 1232 |
-
"model.layers.19.mlp.gate_proj": {
|
| 1233 |
"in_features": 4096,
|
| 1234 |
"out_features": 12288,
|
| 1235 |
"in_f_padded": 4096,
|
|
@@ -1237,7 +1237,7 @@
|
|
| 1237 |
"bits": 5,
|
| 1238 |
"block_size": 128
|
| 1239 |
},
|
| 1240 |
-
"model.layers.19.mlp.up_proj": {
|
| 1241 |
"in_features": 4096,
|
| 1242 |
"out_features": 12288,
|
| 1243 |
"in_f_padded": 4096,
|
|
@@ -1245,7 +1245,7 @@
|
|
| 1245 |
"bits": 5,
|
| 1246 |
"block_size": 128
|
| 1247 |
},
|
| 1248 |
-
"model.layers.19.mlp.down_proj": {
|
| 1249 |
"in_features": 12288,
|
| 1250 |
"out_features": 4096,
|
| 1251 |
"in_f_padded": 12288,
|
|
@@ -1253,7 +1253,7 @@
|
|
| 1253 |
"bits": 5,
|
| 1254 |
"block_size": 128
|
| 1255 |
},
|
| 1256 |
-
"model.layers.20.linear_attn.out_proj": {
|
| 1257 |
"in_features": 4096,
|
| 1258 |
"out_features": 4096,
|
| 1259 |
"in_f_padded": 4096,
|
|
@@ -1261,7 +1261,7 @@
|
|
| 1261 |
"bits": 5,
|
| 1262 |
"block_size": 128
|
| 1263 |
},
|
| 1264 |
-
"model.layers.20.linear_attn.in_proj_qkv": {
|
| 1265 |
"in_features": 4096,
|
| 1266 |
"out_features": 8192,
|
| 1267 |
"in_f_padded": 4096,
|
|
@@ -1269,7 +1269,7 @@
|
|
| 1269 |
"bits": 5,
|
| 1270 |
"block_size": 128
|
| 1271 |
},
|
| 1272 |
-
"model.layers.20.linear_attn.in_proj_z": {
|
| 1273 |
"in_features": 4096,
|
| 1274 |
"out_features": 4096,
|
| 1275 |
"in_f_padded": 4096,
|
|
@@ -1277,7 +1277,7 @@
|
|
| 1277 |
"bits": 5,
|
| 1278 |
"block_size": 128
|
| 1279 |
},
|
| 1280 |
-
"model.layers.20.linear_attn.in_proj_b": {
|
| 1281 |
"in_features": 4096,
|
| 1282 |
"out_features": 32,
|
| 1283 |
"in_f_padded": 4096,
|
|
@@ -1285,7 +1285,7 @@
|
|
| 1285 |
"bits": 5,
|
| 1286 |
"block_size": 128
|
| 1287 |
},
|
| 1288 |
-
"model.layers.20.linear_attn.in_proj_a": {
|
| 1289 |
"in_features": 4096,
|
| 1290 |
"out_features": 32,
|
| 1291 |
"in_f_padded": 4096,
|
|
@@ -1293,7 +1293,7 @@
|
|
| 1293 |
"bits": 5,
|
| 1294 |
"block_size": 128
|
| 1295 |
},
|
| 1296 |
-
"model.layers.20.mlp.gate_proj": {
|
| 1297 |
"in_features": 4096,
|
| 1298 |
"out_features": 12288,
|
| 1299 |
"in_f_padded": 4096,
|
|
@@ -1301,7 +1301,7 @@
|
|
| 1301 |
"bits": 5,
|
| 1302 |
"block_size": 128
|
| 1303 |
},
|
| 1304 |
-
"model.layers.20.mlp.up_proj": {
|
| 1305 |
"in_features": 4096,
|
| 1306 |
"out_features": 12288,
|
| 1307 |
"in_f_padded": 4096,
|
|
@@ -1309,7 +1309,7 @@
|
|
| 1309 |
"bits": 5,
|
| 1310 |
"block_size": 128
|
| 1311 |
},
|
| 1312 |
-
"model.layers.20.mlp.down_proj": {
|
| 1313 |
"in_features": 12288,
|
| 1314 |
"out_features": 4096,
|
| 1315 |
"in_f_padded": 12288,
|
|
@@ -1317,7 +1317,7 @@
|
|
| 1317 |
"bits": 5,
|
| 1318 |
"block_size": 128
|
| 1319 |
},
|
| 1320 |
-
"model.layers.21.linear_attn.out_proj": {
|
| 1321 |
"in_features": 4096,
|
| 1322 |
"out_features": 4096,
|
| 1323 |
"in_f_padded": 4096,
|
|
@@ -1325,7 +1325,7 @@
|
|
| 1325 |
"bits": 5,
|
| 1326 |
"block_size": 128
|
| 1327 |
},
|
| 1328 |
-
"model.layers.21.linear_attn.in_proj_qkv": {
|
| 1329 |
"in_features": 4096,
|
| 1330 |
"out_features": 8192,
|
| 1331 |
"in_f_padded": 4096,
|
|
@@ -1333,7 +1333,7 @@
|
|
| 1333 |
"bits": 5,
|
| 1334 |
"block_size": 128
|
| 1335 |
},
|
| 1336 |
-
"model.layers.21.linear_attn.in_proj_z": {
|
| 1337 |
"in_features": 4096,
|
| 1338 |
"out_features": 4096,
|
| 1339 |
"in_f_padded": 4096,
|
|
@@ -1341,7 +1341,7 @@
|
|
| 1341 |
"bits": 5,
|
| 1342 |
"block_size": 128
|
| 1343 |
},
|
| 1344 |
-
"model.layers.21.linear_attn.in_proj_b": {
|
| 1345 |
"in_features": 4096,
|
| 1346 |
"out_features": 32,
|
| 1347 |
"in_f_padded": 4096,
|
|
@@ -1349,7 +1349,7 @@
|
|
| 1349 |
"bits": 5,
|
| 1350 |
"block_size": 128
|
| 1351 |
},
|
| 1352 |
-
"model.layers.21.linear_attn.in_proj_a": {
|
| 1353 |
"in_features": 4096,
|
| 1354 |
"out_features": 32,
|
| 1355 |
"in_f_padded": 4096,
|
|
@@ -1357,7 +1357,7 @@
|
|
| 1357 |
"bits": 5,
|
| 1358 |
"block_size": 128
|
| 1359 |
},
|
| 1360 |
-
"model.layers.21.mlp.gate_proj": {
|
| 1361 |
"in_features": 4096,
|
| 1362 |
"out_features": 12288,
|
| 1363 |
"in_f_padded": 4096,
|
|
@@ -1365,7 +1365,7 @@
|
|
| 1365 |
"bits": 5,
|
| 1366 |
"block_size": 128
|
| 1367 |
},
|
| 1368 |
-
"model.layers.21.mlp.up_proj": {
|
| 1369 |
"in_features": 4096,
|
| 1370 |
"out_features": 12288,
|
| 1371 |
"in_f_padded": 4096,
|
|
@@ -1373,7 +1373,7 @@
|
|
| 1373 |
"bits": 5,
|
| 1374 |
"block_size": 128
|
| 1375 |
},
|
| 1376 |
-
"model.layers.21.mlp.down_proj": {
|
| 1377 |
"in_features": 12288,
|
| 1378 |
"out_features": 4096,
|
| 1379 |
"in_f_padded": 12288,
|
|
@@ -1381,7 +1381,7 @@
|
|
| 1381 |
"bits": 5,
|
| 1382 |
"block_size": 128
|
| 1383 |
},
|
| 1384 |
-
"model.layers.22.linear_attn.out_proj": {
|
| 1385 |
"in_features": 4096,
|
| 1386 |
"out_features": 4096,
|
| 1387 |
"in_f_padded": 4096,
|
|
@@ -1389,7 +1389,7 @@
|
|
| 1389 |
"bits": 5,
|
| 1390 |
"block_size": 128
|
| 1391 |
},
|
| 1392 |
-
"model.layers.22.linear_attn.in_proj_qkv": {
|
| 1393 |
"in_features": 4096,
|
| 1394 |
"out_features": 8192,
|
| 1395 |
"in_f_padded": 4096,
|
|
@@ -1397,7 +1397,7 @@
|
|
| 1397 |
"bits": 5,
|
| 1398 |
"block_size": 128
|
| 1399 |
},
|
| 1400 |
-
"model.layers.22.linear_attn.in_proj_z": {
|
| 1401 |
"in_features": 4096,
|
| 1402 |
"out_features": 4096,
|
| 1403 |
"in_f_padded": 4096,
|
|
@@ -1405,7 +1405,7 @@
|
|
| 1405 |
"bits": 5,
|
| 1406 |
"block_size": 128
|
| 1407 |
},
|
| 1408 |
-
"model.layers.22.linear_attn.in_proj_b": {
|
| 1409 |
"in_features": 4096,
|
| 1410 |
"out_features": 32,
|
| 1411 |
"in_f_padded": 4096,
|
|
@@ -1413,7 +1413,7 @@
|
|
| 1413 |
"bits": 5,
|
| 1414 |
"block_size": 128
|
| 1415 |
},
|
| 1416 |
-
"model.layers.22.linear_attn.in_proj_a": {
|
| 1417 |
"in_features": 4096,
|
| 1418 |
"out_features": 32,
|
| 1419 |
"in_f_padded": 4096,
|
|
@@ -1421,7 +1421,7 @@
|
|
| 1421 |
"bits": 5,
|
| 1422 |
"block_size": 128
|
| 1423 |
},
|
| 1424 |
-
"model.layers.22.mlp.gate_proj": {
|
| 1425 |
"in_features": 4096,
|
| 1426 |
"out_features": 12288,
|
| 1427 |
"in_f_padded": 4096,
|
|
@@ -1429,7 +1429,7 @@
|
|
| 1429 |
"bits": 5,
|
| 1430 |
"block_size": 128
|
| 1431 |
},
|
| 1432 |
-
"model.layers.22.mlp.up_proj": {
|
| 1433 |
"in_features": 4096,
|
| 1434 |
"out_features": 12288,
|
| 1435 |
"in_f_padded": 4096,
|
|
@@ -1437,7 +1437,7 @@
|
|
| 1437 |
"bits": 5,
|
| 1438 |
"block_size": 128
|
| 1439 |
},
|
| 1440 |
-
"model.layers.22.mlp.down_proj": {
|
| 1441 |
"in_features": 12288,
|
| 1442 |
"out_features": 4096,
|
| 1443 |
"in_f_padded": 12288,
|
|
@@ -1445,7 +1445,7 @@
|
|
| 1445 |
"bits": 5,
|
| 1446 |
"block_size": 128
|
| 1447 |
},
|
| 1448 |
-
"model.layers.23.self_attn.q_proj": {
|
| 1449 |
"in_features": 4096,
|
| 1450 |
"out_features": 8192,
|
| 1451 |
"in_f_padded": 4096,
|
|
@@ -1453,7 +1453,7 @@
|
|
| 1453 |
"bits": 5,
|
| 1454 |
"block_size": 128
|
| 1455 |
},
|
| 1456 |
-
"model.layers.23.self_attn.k_proj": {
|
| 1457 |
"in_features": 4096,
|
| 1458 |
"out_features": 1024,
|
| 1459 |
"in_f_padded": 4096,
|
|
@@ -1461,7 +1461,7 @@
|
|
| 1461 |
"bits": 5,
|
| 1462 |
"block_size": 128
|
| 1463 |
},
|
| 1464 |
-
"model.layers.23.self_attn.v_proj": {
|
| 1465 |
"in_features": 4096,
|
| 1466 |
"out_features": 1024,
|
| 1467 |
"in_f_padded": 4096,
|
|
@@ -1469,7 +1469,7 @@
|
|
| 1469 |
"bits": 5,
|
| 1470 |
"block_size": 128
|
| 1471 |
},
|
| 1472 |
-
"model.layers.23.self_attn.o_proj": {
|
| 1473 |
"in_features": 4096,
|
| 1474 |
"out_features": 4096,
|
| 1475 |
"in_f_padded": 4096,
|
|
@@ -1477,7 +1477,7 @@
|
|
| 1477 |
"bits": 5,
|
| 1478 |
"block_size": 128
|
| 1479 |
},
|
| 1480 |
-
"model.layers.23.mlp.gate_proj": {
|
| 1481 |
"in_features": 4096,
|
| 1482 |
"out_features": 12288,
|
| 1483 |
"in_f_padded": 4096,
|
|
@@ -1485,7 +1485,7 @@
|
|
| 1485 |
"bits": 5,
|
| 1486 |
"block_size": 128
|
| 1487 |
},
|
| 1488 |
-
"model.layers.23.mlp.up_proj": {
|
| 1489 |
"in_features": 4096,
|
| 1490 |
"out_features": 12288,
|
| 1491 |
"in_f_padded": 4096,
|
|
@@ -1493,7 +1493,7 @@
|
|
| 1493 |
"bits": 5,
|
| 1494 |
"block_size": 128
|
| 1495 |
},
|
| 1496 |
-
"model.layers.23.mlp.down_proj": {
|
| 1497 |
"in_features": 12288,
|
| 1498 |
"out_features": 4096,
|
| 1499 |
"in_f_padded": 12288,
|
|
@@ -1501,7 +1501,7 @@
|
|
| 1501 |
"bits": 5,
|
| 1502 |
"block_size": 128
|
| 1503 |
},
|
| 1504 |
-
"model.layers.24.linear_attn.out_proj": {
|
| 1505 |
"in_features": 4096,
|
| 1506 |
"out_features": 4096,
|
| 1507 |
"in_f_padded": 4096,
|
|
@@ -1509,7 +1509,7 @@
|
|
| 1509 |
"bits": 5,
|
| 1510 |
"block_size": 128
|
| 1511 |
},
|
| 1512 |
-
"model.layers.24.linear_attn.in_proj_qkv": {
|
| 1513 |
"in_features": 4096,
|
| 1514 |
"out_features": 8192,
|
| 1515 |
"in_f_padded": 4096,
|
|
@@ -1517,7 +1517,7 @@
|
|
| 1517 |
"bits": 5,
|
| 1518 |
"block_size": 128
|
| 1519 |
},
|
| 1520 |
-
"model.layers.24.linear_attn.in_proj_z": {
|
| 1521 |
"in_features": 4096,
|
| 1522 |
"out_features": 4096,
|
| 1523 |
"in_f_padded": 4096,
|
|
@@ -1525,7 +1525,7 @@
|
|
| 1525 |
"bits": 5,
|
| 1526 |
"block_size": 128
|
| 1527 |
},
|
| 1528 |
-
"model.layers.24.linear_attn.in_proj_b": {
|
| 1529 |
"in_features": 4096,
|
| 1530 |
"out_features": 32,
|
| 1531 |
"in_f_padded": 4096,
|
|
@@ -1533,7 +1533,7 @@
|
|
| 1533 |
"bits": 5,
|
| 1534 |
"block_size": 128
|
| 1535 |
},
|
| 1536 |
-
"model.layers.24.linear_attn.in_proj_a": {
|
| 1537 |
"in_features": 4096,
|
| 1538 |
"out_features": 32,
|
| 1539 |
"in_f_padded": 4096,
|
|
@@ -1541,7 +1541,7 @@
|
|
| 1541 |
"bits": 5,
|
| 1542 |
"block_size": 128
|
| 1543 |
},
|
| 1544 |
-
"model.layers.24.mlp.gate_proj": {
|
| 1545 |
"in_features": 4096,
|
| 1546 |
"out_features": 12288,
|
| 1547 |
"in_f_padded": 4096,
|
|
@@ -1549,7 +1549,7 @@
|
|
| 1549 |
"bits": 5,
|
| 1550 |
"block_size": 128
|
| 1551 |
},
|
| 1552 |
-
"model.layers.24.mlp.up_proj": {
|
| 1553 |
"in_features": 4096,
|
| 1554 |
"out_features": 12288,
|
| 1555 |
"in_f_padded": 4096,
|
|
@@ -1557,7 +1557,7 @@
|
|
| 1557 |
"bits": 5,
|
| 1558 |
"block_size": 128
|
| 1559 |
},
|
| 1560 |
-
"model.layers.24.mlp.down_proj": {
|
| 1561 |
"in_features": 12288,
|
| 1562 |
"out_features": 4096,
|
| 1563 |
"in_f_padded": 12288,
|
|
@@ -1565,7 +1565,7 @@
|
|
| 1565 |
"bits": 5,
|
| 1566 |
"block_size": 128
|
| 1567 |
},
|
| 1568 |
-
"model.layers.25.linear_attn.out_proj": {
|
| 1569 |
"in_features": 4096,
|
| 1570 |
"out_features": 4096,
|
| 1571 |
"in_f_padded": 4096,
|
|
@@ -1573,7 +1573,7 @@
|
|
| 1573 |
"bits": 5,
|
| 1574 |
"block_size": 128
|
| 1575 |
},
|
| 1576 |
-
"model.layers.25.linear_attn.in_proj_qkv": {
|
| 1577 |
"in_features": 4096,
|
| 1578 |
"out_features": 8192,
|
| 1579 |
"in_f_padded": 4096,
|
|
@@ -1581,7 +1581,7 @@
|
|
| 1581 |
"bits": 5,
|
| 1582 |
"block_size": 128
|
| 1583 |
},
|
| 1584 |
-
"model.layers.25.linear_attn.in_proj_z": {
|
| 1585 |
"in_features": 4096,
|
| 1586 |
"out_features": 4096,
|
| 1587 |
"in_f_padded": 4096,
|
|
@@ -1589,7 +1589,7 @@
|
|
| 1589 |
"bits": 5,
|
| 1590 |
"block_size": 128
|
| 1591 |
},
|
| 1592 |
-
"model.layers.25.linear_attn.in_proj_b": {
|
| 1593 |
"in_features": 4096,
|
| 1594 |
"out_features": 32,
|
| 1595 |
"in_f_padded": 4096,
|
|
@@ -1597,7 +1597,7 @@
|
|
| 1597 |
"bits": 5,
|
| 1598 |
"block_size": 128
|
| 1599 |
},
|
| 1600 |
-
"model.layers.25.linear_attn.in_proj_a": {
|
| 1601 |
"in_features": 4096,
|
| 1602 |
"out_features": 32,
|
| 1603 |
"in_f_padded": 4096,
|
|
@@ -1605,7 +1605,7 @@
|
|
| 1605 |
"bits": 5,
|
| 1606 |
"block_size": 128
|
| 1607 |
},
|
| 1608 |
-
"model.layers.25.mlp.gate_proj": {
|
| 1609 |
"in_features": 4096,
|
| 1610 |
"out_features": 12288,
|
| 1611 |
"in_f_padded": 4096,
|
|
@@ -1613,7 +1613,7 @@
|
|
| 1613 |
"bits": 5,
|
| 1614 |
"block_size": 128
|
| 1615 |
},
|
| 1616 |
-
"model.layers.25.mlp.up_proj": {
|
| 1617 |
"in_features": 4096,
|
| 1618 |
"out_features": 12288,
|
| 1619 |
"in_f_padded": 4096,
|
|
@@ -1621,7 +1621,7 @@
|
|
| 1621 |
"bits": 5,
|
| 1622 |
"block_size": 128
|
| 1623 |
},
|
| 1624 |
-
"model.layers.25.mlp.down_proj": {
|
| 1625 |
"in_features": 12288,
|
| 1626 |
"out_features": 4096,
|
| 1627 |
"in_f_padded": 12288,
|
|
@@ -1629,7 +1629,7 @@
|
|
| 1629 |
"bits": 5,
|
| 1630 |
"block_size": 128
|
| 1631 |
},
|
| 1632 |
-
"model.layers.26.linear_attn.out_proj": {
|
| 1633 |
"in_features": 4096,
|
| 1634 |
"out_features": 4096,
|
| 1635 |
"in_f_padded": 4096,
|
|
@@ -1637,7 +1637,7 @@
|
|
| 1637 |
"bits": 5,
|
| 1638 |
"block_size": 128
|
| 1639 |
},
|
| 1640 |
-
"model.layers.26.linear_attn.in_proj_qkv": {
|
| 1641 |
"in_features": 4096,
|
| 1642 |
"out_features": 8192,
|
| 1643 |
"in_f_padded": 4096,
|
|
@@ -1645,7 +1645,7 @@
|
|
| 1645 |
"bits": 5,
|
| 1646 |
"block_size": 128
|
| 1647 |
},
|
| 1648 |
-
"model.layers.26.linear_attn.in_proj_z": {
|
| 1649 |
"in_features": 4096,
|
| 1650 |
"out_features": 4096,
|
| 1651 |
"in_f_padded": 4096,
|
|
@@ -1653,7 +1653,7 @@
|
|
| 1653 |
"bits": 5,
|
| 1654 |
"block_size": 128
|
| 1655 |
},
|
| 1656 |
-
"model.layers.26.linear_attn.in_proj_b": {
|
| 1657 |
"in_features": 4096,
|
| 1658 |
"out_features": 32,
|
| 1659 |
"in_f_padded": 4096,
|
|
@@ -1661,7 +1661,7 @@
|
|
| 1661 |
"bits": 5,
|
| 1662 |
"block_size": 128
|
| 1663 |
},
|
| 1664 |
-
"model.layers.26.linear_attn.in_proj_a": {
|
| 1665 |
"in_features": 4096,
|
| 1666 |
"out_features": 32,
|
| 1667 |
"in_f_padded": 4096,
|
|
@@ -1669,7 +1669,7 @@
|
|
| 1669 |
"bits": 5,
|
| 1670 |
"block_size": 128
|
| 1671 |
},
|
| 1672 |
-
"model.layers.26.mlp.gate_proj": {
|
| 1673 |
"in_features": 4096,
|
| 1674 |
"out_features": 12288,
|
| 1675 |
"in_f_padded": 4096,
|
|
@@ -1677,7 +1677,7 @@
|
|
| 1677 |
"bits": 5,
|
| 1678 |
"block_size": 128
|
| 1679 |
},
|
| 1680 |
-
"model.layers.26.mlp.up_proj": {
|
| 1681 |
"in_features": 4096,
|
| 1682 |
"out_features": 12288,
|
| 1683 |
"in_f_padded": 4096,
|
|
@@ -1685,7 +1685,7 @@
|
|
| 1685 |
"bits": 5,
|
| 1686 |
"block_size": 128
|
| 1687 |
},
|
| 1688 |
-
"model.layers.26.mlp.down_proj": {
|
| 1689 |
"in_features": 12288,
|
| 1690 |
"out_features": 4096,
|
| 1691 |
"in_f_padded": 12288,
|
|
@@ -1693,7 +1693,7 @@
|
|
| 1693 |
"bits": 5,
|
| 1694 |
"block_size": 128
|
| 1695 |
},
|
| 1696 |
-
"model.layers.27.self_attn.q_proj": {
|
| 1697 |
"in_features": 4096,
|
| 1698 |
"out_features": 8192,
|
| 1699 |
"in_f_padded": 4096,
|
|
@@ -1701,7 +1701,7 @@
|
|
| 1701 |
"bits": 5,
|
| 1702 |
"block_size": 128
|
| 1703 |
},
|
| 1704 |
-
"model.layers.27.self_attn.k_proj": {
|
| 1705 |
"in_features": 4096,
|
| 1706 |
"out_features": 1024,
|
| 1707 |
"in_f_padded": 4096,
|
|
@@ -1709,7 +1709,7 @@
|
|
| 1709 |
"bits": 5,
|
| 1710 |
"block_size": 128
|
| 1711 |
},
|
| 1712 |
-
"model.layers.27.self_attn.v_proj": {
|
| 1713 |
"in_features": 4096,
|
| 1714 |
"out_features": 1024,
|
| 1715 |
"in_f_padded": 4096,
|
|
@@ -1717,7 +1717,7 @@
|
|
| 1717 |
"bits": 5,
|
| 1718 |
"block_size": 128
|
| 1719 |
},
|
| 1720 |
-
"model.layers.27.self_attn.o_proj": {
|
| 1721 |
"in_features": 4096,
|
| 1722 |
"out_features": 4096,
|
| 1723 |
"in_f_padded": 4096,
|
|
@@ -1725,7 +1725,7 @@
|
|
| 1725 |
"bits": 5,
|
| 1726 |
"block_size": 128
|
| 1727 |
},
|
| 1728 |
-
"model.layers.27.mlp.gate_proj": {
|
| 1729 |
"in_features": 4096,
|
| 1730 |
"out_features": 12288,
|
| 1731 |
"in_f_padded": 4096,
|
|
@@ -1733,7 +1733,7 @@
|
|
| 1733 |
"bits": 5,
|
| 1734 |
"block_size": 128
|
| 1735 |
},
|
| 1736 |
-
"model.layers.27.mlp.up_proj": {
|
| 1737 |
"in_features": 4096,
|
| 1738 |
"out_features": 12288,
|
| 1739 |
"in_f_padded": 4096,
|
|
@@ -1741,7 +1741,7 @@
|
|
| 1741 |
"bits": 5,
|
| 1742 |
"block_size": 128
|
| 1743 |
},
|
| 1744 |
-
"model.layers.27.mlp.down_proj": {
|
| 1745 |
"in_features": 12288,
|
| 1746 |
"out_features": 4096,
|
| 1747 |
"in_f_padded": 12288,
|
|
@@ -1749,7 +1749,7 @@
|
|
| 1749 |
"bits": 5,
|
| 1750 |
"block_size": 128
|
| 1751 |
},
|
| 1752 |
-
"model.layers.28.linear_attn.out_proj": {
|
| 1753 |
"in_features": 4096,
|
| 1754 |
"out_features": 4096,
|
| 1755 |
"in_f_padded": 4096,
|
|
@@ -1757,7 +1757,7 @@
|
|
| 1757 |
"bits": 5,
|
| 1758 |
"block_size": 128
|
| 1759 |
},
|
| 1760 |
-
"model.layers.28.linear_attn.in_proj_qkv": {
|
| 1761 |
"in_features": 4096,
|
| 1762 |
"out_features": 8192,
|
| 1763 |
"in_f_padded": 4096,
|
|
@@ -1765,7 +1765,7 @@
|
|
| 1765 |
"bits": 5,
|
| 1766 |
"block_size": 128
|
| 1767 |
},
|
| 1768 |
-
"model.layers.28.linear_attn.in_proj_z": {
|
| 1769 |
"in_features": 4096,
|
| 1770 |
"out_features": 4096,
|
| 1771 |
"in_f_padded": 4096,
|
|
@@ -1773,7 +1773,7 @@
|
|
| 1773 |
"bits": 5,
|
| 1774 |
"block_size": 128
|
| 1775 |
},
|
| 1776 |
-
"model.layers.28.linear_attn.in_proj_b": {
|
| 1777 |
"in_features": 4096,
|
| 1778 |
"out_features": 32,
|
| 1779 |
"in_f_padded": 4096,
|
|
@@ -1781,7 +1781,7 @@
|
|
| 1781 |
"bits": 5,
|
| 1782 |
"block_size": 128
|
| 1783 |
},
|
| 1784 |
-
"model.layers.28.linear_attn.in_proj_a": {
|
| 1785 |
"in_features": 4096,
|
| 1786 |
"out_features": 32,
|
| 1787 |
"in_f_padded": 4096,
|
|
@@ -1789,7 +1789,7 @@
|
|
| 1789 |
"bits": 5,
|
| 1790 |
"block_size": 128
|
| 1791 |
},
|
| 1792 |
-
"model.layers.28.mlp.gate_proj": {
|
| 1793 |
"in_features": 4096,
|
| 1794 |
"out_features": 12288,
|
| 1795 |
"in_f_padded": 4096,
|
|
@@ -1797,7 +1797,7 @@
|
|
| 1797 |
"bits": 5,
|
| 1798 |
"block_size": 128
|
| 1799 |
},
|
| 1800 |
-
"model.layers.28.mlp.up_proj": {
|
| 1801 |
"in_features": 4096,
|
| 1802 |
"out_features": 12288,
|
| 1803 |
"in_f_padded": 4096,
|
|
@@ -1805,7 +1805,7 @@
|
|
| 1805 |
"bits": 5,
|
| 1806 |
"block_size": 128
|
| 1807 |
},
|
| 1808 |
-
"model.layers.28.mlp.down_proj": {
|
| 1809 |
"in_features": 12288,
|
| 1810 |
"out_features": 4096,
|
| 1811 |
"in_f_padded": 12288,
|
|
@@ -1813,7 +1813,7 @@
|
|
| 1813 |
"bits": 5,
|
| 1814 |
"block_size": 128
|
| 1815 |
},
|
| 1816 |
-
"model.layers.29.linear_attn.out_proj": {
|
| 1817 |
"in_features": 4096,
|
| 1818 |
"out_features": 4096,
|
| 1819 |
"in_f_padded": 4096,
|
|
@@ -1821,7 +1821,7 @@
|
|
| 1821 |
"bits": 5,
|
| 1822 |
"block_size": 128
|
| 1823 |
},
|
| 1824 |
-
"model.layers.29.linear_attn.in_proj_qkv": {
|
| 1825 |
"in_features": 4096,
|
| 1826 |
"out_features": 8192,
|
| 1827 |
"in_f_padded": 4096,
|
|
@@ -1829,7 +1829,7 @@
|
|
| 1829 |
"bits": 5,
|
| 1830 |
"block_size": 128
|
| 1831 |
},
|
| 1832 |
-
"model.layers.29.linear_attn.in_proj_z": {
|
| 1833 |
"in_features": 4096,
|
| 1834 |
"out_features": 4096,
|
| 1835 |
"in_f_padded": 4096,
|
|
@@ -1837,7 +1837,7 @@
|
|
| 1837 |
"bits": 5,
|
| 1838 |
"block_size": 128
|
| 1839 |
},
|
| 1840 |
-
"model.layers.29.linear_attn.in_proj_b": {
|
| 1841 |
"in_features": 4096,
|
| 1842 |
"out_features": 32,
|
| 1843 |
"in_f_padded": 4096,
|
|
@@ -1845,7 +1845,7 @@
|
|
| 1845 |
"bits": 5,
|
| 1846 |
"block_size": 128
|
| 1847 |
},
|
| 1848 |
-
"model.layers.29.linear_attn.in_proj_a": {
|
| 1849 |
"in_features": 4096,
|
| 1850 |
"out_features": 32,
|
| 1851 |
"in_f_padded": 4096,
|
|
@@ -1853,7 +1853,7 @@
|
|
| 1853 |
"bits": 5,
|
| 1854 |
"block_size": 128
|
| 1855 |
},
|
| 1856 |
-
"model.layers.29.mlp.gate_proj": {
|
| 1857 |
"in_features": 4096,
|
| 1858 |
"out_features": 12288,
|
| 1859 |
"in_f_padded": 4096,
|
|
@@ -1861,7 +1861,7 @@
|
|
| 1861 |
"bits": 5,
|
| 1862 |
"block_size": 128
|
| 1863 |
},
|
| 1864 |
-
"model.layers.29.mlp.up_proj": {
|
| 1865 |
"in_features": 4096,
|
| 1866 |
"out_features": 12288,
|
| 1867 |
"in_f_padded": 4096,
|
|
@@ -1869,7 +1869,7 @@
|
|
| 1869 |
"bits": 5,
|
| 1870 |
"block_size": 128
|
| 1871 |
},
|
| 1872 |
-
"model.layers.29.mlp.down_proj": {
|
| 1873 |
"in_features": 12288,
|
| 1874 |
"out_features": 4096,
|
| 1875 |
"in_f_padded": 12288,
|
|
@@ -1877,7 +1877,7 @@
|
|
| 1877 |
"bits": 5,
|
| 1878 |
"block_size": 128
|
| 1879 |
},
|
| 1880 |
-
"model.layers.30.linear_attn.out_proj": {
|
| 1881 |
"in_features": 4096,
|
| 1882 |
"out_features": 4096,
|
| 1883 |
"in_f_padded": 4096,
|
|
@@ -1885,7 +1885,7 @@
|
|
| 1885 |
"bits": 5,
|
| 1886 |
"block_size": 128
|
| 1887 |
},
|
| 1888 |
-
"model.layers.30.linear_attn.in_proj_qkv": {
|
| 1889 |
"in_features": 4096,
|
| 1890 |
"out_features": 8192,
|
| 1891 |
"in_f_padded": 4096,
|
|
@@ -1893,7 +1893,7 @@
|
|
| 1893 |
"bits": 5,
|
| 1894 |
"block_size": 128
|
| 1895 |
},
|
| 1896 |
-
"model.layers.30.linear_attn.in_proj_z": {
|
| 1897 |
"in_features": 4096,
|
| 1898 |
"out_features": 4096,
|
| 1899 |
"in_f_padded": 4096,
|
|
@@ -1901,7 +1901,7 @@
|
|
| 1901 |
"bits": 5,
|
| 1902 |
"block_size": 128
|
| 1903 |
},
|
| 1904 |
-
"model.layers.30.linear_attn.in_proj_b": {
|
| 1905 |
"in_features": 4096,
|
| 1906 |
"out_features": 32,
|
| 1907 |
"in_f_padded": 4096,
|
|
@@ -1909,7 +1909,7 @@
|
|
| 1909 |
"bits": 5,
|
| 1910 |
"block_size": 128
|
| 1911 |
},
|
| 1912 |
-
"model.layers.30.linear_attn.in_proj_a": {
|
| 1913 |
"in_features": 4096,
|
| 1914 |
"out_features": 32,
|
| 1915 |
"in_f_padded": 4096,
|
|
@@ -1917,7 +1917,7 @@
|
|
| 1917 |
"bits": 5,
|
| 1918 |
"block_size": 128
|
| 1919 |
},
|
| 1920 |
-
"model.layers.30.mlp.gate_proj": {
|
| 1921 |
"in_features": 4096,
|
| 1922 |
"out_features": 12288,
|
| 1923 |
"in_f_padded": 4096,
|
|
@@ -1925,7 +1925,7 @@
|
|
| 1925 |
"bits": 5,
|
| 1926 |
"block_size": 128
|
| 1927 |
},
|
| 1928 |
-
"model.layers.30.mlp.up_proj": {
|
| 1929 |
"in_features": 4096,
|
| 1930 |
"out_features": 12288,
|
| 1931 |
"in_f_padded": 4096,
|
|
@@ -1933,7 +1933,7 @@
|
|
| 1933 |
"bits": 5,
|
| 1934 |
"block_size": 128
|
| 1935 |
},
|
| 1936 |
-
"model.layers.30.mlp.down_proj": {
|
| 1937 |
"in_features": 12288,
|
| 1938 |
"out_features": 4096,
|
| 1939 |
"in_f_padded": 12288,
|
|
@@ -1941,7 +1941,7 @@
|
|
| 1941 |
"bits": 5,
|
| 1942 |
"block_size": 128
|
| 1943 |
},
|
| 1944 |
-
"model.layers.31.self_attn.q_proj": {
|
| 1945 |
"in_features": 4096,
|
| 1946 |
"out_features": 8192,
|
| 1947 |
"in_f_padded": 4096,
|
|
@@ -1949,7 +1949,7 @@
|
|
| 1949 |
"bits": 5,
|
| 1950 |
"block_size": 128
|
| 1951 |
},
|
| 1952 |
-
"model.layers.31.self_attn.k_proj": {
|
| 1953 |
"in_features": 4096,
|
| 1954 |
"out_features": 1024,
|
| 1955 |
"in_f_padded": 4096,
|
|
@@ -1957,7 +1957,7 @@
|
|
| 1957 |
"bits": 5,
|
| 1958 |
"block_size": 128
|
| 1959 |
},
|
| 1960 |
-
"model.layers.31.self_attn.v_proj": {
|
| 1961 |
"in_features": 4096,
|
| 1962 |
"out_features": 1024,
|
| 1963 |
"in_f_padded": 4096,
|
|
@@ -1965,7 +1965,7 @@
|
|
| 1965 |
"bits": 5,
|
| 1966 |
"block_size": 128
|
| 1967 |
},
|
| 1968 |
-
"model.layers.31.self_attn.o_proj": {
|
| 1969 |
"in_features": 4096,
|
| 1970 |
"out_features": 4096,
|
| 1971 |
"in_f_padded": 4096,
|
|
@@ -1973,7 +1973,7 @@
|
|
| 1973 |
"bits": 5,
|
| 1974 |
"block_size": 128
|
| 1975 |
},
|
| 1976 |
-
"model.layers.31.mlp.gate_proj": {
|
| 1977 |
"in_features": 4096,
|
| 1978 |
"out_features": 12288,
|
| 1979 |
"in_f_padded": 4096,
|
|
@@ -1981,7 +1981,7 @@
|
|
| 1981 |
"bits": 5,
|
| 1982 |
"block_size": 128
|
| 1983 |
},
|
| 1984 |
-
"model.layers.31.mlp.up_proj": {
|
| 1985 |
"in_features": 4096,
|
| 1986 |
"out_features": 12288,
|
| 1987 |
"in_f_padded": 4096,
|
|
@@ -1989,7 +1989,7 @@
|
|
| 1989 |
"bits": 5,
|
| 1990 |
"block_size": 128
|
| 1991 |
},
|
| 1992 |
-
"model.layers.31.mlp.down_proj": {
|
| 1993 |
"in_features": 12288,
|
| 1994 |
"out_features": 4096,
|
| 1995 |
"in_f_padded": 12288,
|
|
|
|
| 5 |
"quantization": "PolarQuant Q5 (Lloyd-Max + Hadamard)",
|
| 6 |
"bits": 5,
|
| 7 |
"layers": {
|
| 8 |
+
"model.language_model.embed_tokens": {
|
| 9 |
"in_features": 4096,
|
| 10 |
"out_features": 248320,
|
| 11 |
"in_f_padded": 4096,
|
|
|
|
| 13 |
"bits": 5,
|
| 14 |
"block_size": 128
|
| 15 |
},
|
| 16 |
+
"model.language_model.layers.0.linear_attn.out_proj": {
|
| 17 |
"in_features": 4096,
|
| 18 |
"out_features": 4096,
|
| 19 |
"in_f_padded": 4096,
|
|
|
|
| 21 |
"bits": 5,
|
| 22 |
"block_size": 128
|
| 23 |
},
|
| 24 |
+
"model.language_model.layers.0.linear_attn.in_proj_qkv": {
|
| 25 |
"in_features": 4096,
|
| 26 |
"out_features": 8192,
|
| 27 |
"in_f_padded": 4096,
|
|
|
|
| 29 |
"bits": 5,
|
| 30 |
"block_size": 128
|
| 31 |
},
|
| 32 |
+
"model.language_model.layers.0.linear_attn.in_proj_z": {
|
| 33 |
"in_features": 4096,
|
| 34 |
"out_features": 4096,
|
| 35 |
"in_f_padded": 4096,
|
|
|
|
| 37 |
"bits": 5,
|
| 38 |
"block_size": 128
|
| 39 |
},
|
| 40 |
+
"model.language_model.layers.0.linear_attn.in_proj_b": {
|
| 41 |
"in_features": 4096,
|
| 42 |
"out_features": 32,
|
| 43 |
"in_f_padded": 4096,
|
|
|
|
| 45 |
"bits": 5,
|
| 46 |
"block_size": 128
|
| 47 |
},
|
| 48 |
+
"model.language_model.layers.0.linear_attn.in_proj_a": {
|
| 49 |
"in_features": 4096,
|
| 50 |
"out_features": 32,
|
| 51 |
"in_f_padded": 4096,
|
|
|
|
| 53 |
"bits": 5,
|
| 54 |
"block_size": 128
|
| 55 |
},
|
| 56 |
+
"model.language_model.layers.0.mlp.gate_proj": {
|
| 57 |
"in_features": 4096,
|
| 58 |
"out_features": 12288,
|
| 59 |
"in_f_padded": 4096,
|
|
|
|
| 61 |
"bits": 5,
|
| 62 |
"block_size": 128
|
| 63 |
},
|
| 64 |
+
"model.language_model.layers.0.mlp.up_proj": {
|
| 65 |
"in_features": 4096,
|
| 66 |
"out_features": 12288,
|
| 67 |
"in_f_padded": 4096,
|
|
|
|
| 69 |
"bits": 5,
|
| 70 |
"block_size": 128
|
| 71 |
},
|
| 72 |
+
"model.language_model.layers.0.mlp.down_proj": {
|
| 73 |
"in_features": 12288,
|
| 74 |
"out_features": 4096,
|
| 75 |
"in_f_padded": 12288,
|
|
|
|
| 77 |
"bits": 5,
|
| 78 |
"block_size": 128
|
| 79 |
},
|
| 80 |
+
"model.language_model.layers.1.linear_attn.out_proj": {
|
| 81 |
"in_features": 4096,
|
| 82 |
"out_features": 4096,
|
| 83 |
"in_f_padded": 4096,
|
|
|
|
| 85 |
"bits": 5,
|
| 86 |
"block_size": 128
|
| 87 |
},
|
| 88 |
+
"model.language_model.layers.1.linear_attn.in_proj_qkv": {
|
| 89 |
"in_features": 4096,
|
| 90 |
"out_features": 8192,
|
| 91 |
"in_f_padded": 4096,
|
|
|
|
| 93 |
"bits": 5,
|
| 94 |
"block_size": 128
|
| 95 |
},
|
| 96 |
+
"model.language_model.layers.1.linear_attn.in_proj_z": {
|
| 97 |
"in_features": 4096,
|
| 98 |
"out_features": 4096,
|
| 99 |
"in_f_padded": 4096,
|
|
|
|
| 101 |
"bits": 5,
|
| 102 |
"block_size": 128
|
| 103 |
},
|
| 104 |
+
"model.language_model.layers.1.linear_attn.in_proj_b": {
|
| 105 |
"in_features": 4096,
|
| 106 |
"out_features": 32,
|
| 107 |
"in_f_padded": 4096,
|
|
|
|
| 109 |
"bits": 5,
|
| 110 |
"block_size": 128
|
| 111 |
},
|
| 112 |
+
"model.language_model.layers.1.linear_attn.in_proj_a": {
|
| 113 |
"in_features": 4096,
|
| 114 |
"out_features": 32,
|
| 115 |
"in_f_padded": 4096,
|
|
|
|
| 117 |
"bits": 5,
|
| 118 |
"block_size": 128
|
| 119 |
},
|
| 120 |
+
"model.language_model.layers.1.mlp.gate_proj": {
|
| 121 |
"in_features": 4096,
|
| 122 |
"out_features": 12288,
|
| 123 |
"in_f_padded": 4096,
|
|
|
|
| 125 |
"bits": 5,
|
| 126 |
"block_size": 128
|
| 127 |
},
|
| 128 |
+
"model.language_model.layers.1.mlp.up_proj": {
|
| 129 |
"in_features": 4096,
|
| 130 |
"out_features": 12288,
|
| 131 |
"in_f_padded": 4096,
|
|
|
|
| 133 |
"bits": 5,
|
| 134 |
"block_size": 128
|
| 135 |
},
|
| 136 |
+
"model.language_model.layers.1.mlp.down_proj": {
|
| 137 |
"in_features": 12288,
|
| 138 |
"out_features": 4096,
|
| 139 |
"in_f_padded": 12288,
|
|
|
|
| 141 |
"bits": 5,
|
| 142 |
"block_size": 128
|
| 143 |
},
|
| 144 |
+
"model.language_model.layers.2.linear_attn.out_proj": {
|
| 145 |
"in_features": 4096,
|
| 146 |
"out_features": 4096,
|
| 147 |
"in_f_padded": 4096,
|
|
|
|
| 149 |
"bits": 5,
|
| 150 |
"block_size": 128
|
| 151 |
},
|
| 152 |
+
"model.language_model.layers.2.linear_attn.in_proj_qkv": {
|
| 153 |
"in_features": 4096,
|
| 154 |
"out_features": 8192,
|
| 155 |
"in_f_padded": 4096,
|
|
|
|
| 157 |
"bits": 5,
|
| 158 |
"block_size": 128
|
| 159 |
},
|
| 160 |
+
"model.language_model.layers.2.linear_attn.in_proj_z": {
|
| 161 |
"in_features": 4096,
|
| 162 |
"out_features": 4096,
|
| 163 |
"in_f_padded": 4096,
|
|
|
|
| 165 |
"bits": 5,
|
| 166 |
"block_size": 128
|
| 167 |
},
|
| 168 |
+
"model.language_model.layers.2.linear_attn.in_proj_b": {
|
| 169 |
"in_features": 4096,
|
| 170 |
"out_features": 32,
|
| 171 |
"in_f_padded": 4096,
|
|
|
|
| 173 |
"bits": 5,
|
| 174 |
"block_size": 128
|
| 175 |
},
|
| 176 |
+
"model.language_model.layers.2.linear_attn.in_proj_a": {
|
| 177 |
"in_features": 4096,
|
| 178 |
"out_features": 32,
|
| 179 |
"in_f_padded": 4096,
|
|
|
|
| 181 |
"bits": 5,
|
| 182 |
"block_size": 128
|
| 183 |
},
|
| 184 |
+
"model.language_model.layers.2.mlp.gate_proj": {
|
| 185 |
"in_features": 4096,
|
| 186 |
"out_features": 12288,
|
| 187 |
"in_f_padded": 4096,
|
|
|
|
| 189 |
"bits": 5,
|
| 190 |
"block_size": 128
|
| 191 |
},
|
| 192 |
+
"model.language_model.layers.2.mlp.up_proj": {
|
| 193 |
"in_features": 4096,
|
| 194 |
"out_features": 12288,
|
| 195 |
"in_f_padded": 4096,
|
|
|
|
| 197 |
"bits": 5,
|
| 198 |
"block_size": 128
|
| 199 |
},
|
| 200 |
+
"model.language_model.layers.2.mlp.down_proj": {
|
| 201 |
"in_features": 12288,
|
| 202 |
"out_features": 4096,
|
| 203 |
"in_f_padded": 12288,
|
|
|
|
| 205 |
"bits": 5,
|
| 206 |
"block_size": 128
|
| 207 |
},
|
| 208 |
+
"model.language_model.layers.3.self_attn.q_proj": {
|
| 209 |
"in_features": 4096,
|
| 210 |
"out_features": 8192,
|
| 211 |
"in_f_padded": 4096,
|
|
|
|
| 213 |
"bits": 5,
|
| 214 |
"block_size": 128
|
| 215 |
},
|
| 216 |
+
"model.language_model.layers.3.self_attn.k_proj": {
|
| 217 |
"in_features": 4096,
|
| 218 |
"out_features": 1024,
|
| 219 |
"in_f_padded": 4096,
|
|
|
|
| 221 |
"bits": 5,
|
| 222 |
"block_size": 128
|
| 223 |
},
|
| 224 |
+
"model.language_model.layers.3.self_attn.v_proj": {
|
| 225 |
"in_features": 4096,
|
| 226 |
"out_features": 1024,
|
| 227 |
"in_f_padded": 4096,
|
|
|
|
| 229 |
"bits": 5,
|
| 230 |
"block_size": 128
|
| 231 |
},
|
| 232 |
+
"model.language_model.layers.3.self_attn.o_proj": {
|
| 233 |
"in_features": 4096,
|
| 234 |
"out_features": 4096,
|
| 235 |
"in_f_padded": 4096,
|
|
|
|
| 237 |
"bits": 5,
|
| 238 |
"block_size": 128
|
| 239 |
},
|
| 240 |
+
"model.language_model.layers.3.mlp.gate_proj": {
|
| 241 |
"in_features": 4096,
|
| 242 |
"out_features": 12288,
|
| 243 |
"in_f_padded": 4096,
|
|
|
|
| 245 |
"bits": 5,
|
| 246 |
"block_size": 128
|
| 247 |
},
|
| 248 |
+
"model.language_model.layers.3.mlp.up_proj": {
|
| 249 |
"in_features": 4096,
|
| 250 |
"out_features": 12288,
|
| 251 |
"in_f_padded": 4096,
|
|
|
|
| 253 |
"bits": 5,
|
| 254 |
"block_size": 128
|
| 255 |
},
|
| 256 |
+
"model.language_model.layers.3.mlp.down_proj": {
|
| 257 |
"in_features": 12288,
|
| 258 |
"out_features": 4096,
|
| 259 |
"in_f_padded": 12288,
|
|
|
|
| 261 |
"bits": 5,
|
| 262 |
"block_size": 128
|
| 263 |
},
|
| 264 |
+
"model.language_model.layers.4.linear_attn.out_proj": {
|
| 265 |
"in_features": 4096,
|
| 266 |
"out_features": 4096,
|
| 267 |
"in_f_padded": 4096,
|
|
|
|
| 269 |
"bits": 5,
|
| 270 |
"block_size": 128
|
| 271 |
},
|
| 272 |
+
"model.language_model.layers.4.linear_attn.in_proj_qkv": {
|
| 273 |
"in_features": 4096,
|
| 274 |
"out_features": 8192,
|
| 275 |
"in_f_padded": 4096,
|
|
|
|
| 277 |
"bits": 5,
|
| 278 |
"block_size": 128
|
| 279 |
},
|
| 280 |
+
"model.language_model.layers.4.linear_attn.in_proj_z": {
|
| 281 |
"in_features": 4096,
|
| 282 |
"out_features": 4096,
|
| 283 |
"in_f_padded": 4096,
|
|
|
|
| 285 |
"bits": 5,
|
| 286 |
"block_size": 128
|
| 287 |
},
|
| 288 |
+
"model.language_model.layers.4.linear_attn.in_proj_b": {
|
| 289 |
"in_features": 4096,
|
| 290 |
"out_features": 32,
|
| 291 |
"in_f_padded": 4096,
|
|
|
|
| 293 |
"bits": 5,
|
| 294 |
"block_size": 128
|
| 295 |
},
|
| 296 |
+
"model.language_model.layers.4.linear_attn.in_proj_a": {
|
| 297 |
"in_features": 4096,
|
| 298 |
"out_features": 32,
|
| 299 |
"in_f_padded": 4096,
|
|
|
|
| 301 |
"bits": 5,
|
| 302 |
"block_size": 128
|
| 303 |
},
|
| 304 |
+
"model.language_model.layers.4.mlp.gate_proj": {
|
| 305 |
"in_features": 4096,
|
| 306 |
"out_features": 12288,
|
| 307 |
"in_f_padded": 4096,
|
|
|
|
| 309 |
"bits": 5,
|
| 310 |
"block_size": 128
|
| 311 |
},
|
| 312 |
+
"model.language_model.layers.4.mlp.up_proj": {
|
| 313 |
"in_features": 4096,
|
| 314 |
"out_features": 12288,
|
| 315 |
"in_f_padded": 4096,
|
|
|
|
| 317 |
"bits": 5,
|
| 318 |
"block_size": 128
|
| 319 |
},
|
| 320 |
+
"model.language_model.layers.4.mlp.down_proj": {
|
| 321 |
"in_features": 12288,
|
| 322 |
"out_features": 4096,
|
| 323 |
"in_f_padded": 12288,
|
|
|
|
| 325 |
"bits": 5,
|
| 326 |
"block_size": 128
|
| 327 |
},
|
| 328 |
+
"model.language_model.layers.5.linear_attn.out_proj": {
|
| 329 |
"in_features": 4096,
|
| 330 |
"out_features": 4096,
|
| 331 |
"in_f_padded": 4096,
|
|
|
|
| 333 |
"bits": 5,
|
| 334 |
"block_size": 128
|
| 335 |
},
|
| 336 |
+
"model.language_model.layers.5.linear_attn.in_proj_qkv": {
|
| 337 |
"in_features": 4096,
|
| 338 |
"out_features": 8192,
|
| 339 |
"in_f_padded": 4096,
|
|
|
|
| 341 |
"bits": 5,
|
| 342 |
"block_size": 128
|
| 343 |
},
|
| 344 |
+
"model.language_model.layers.5.linear_attn.in_proj_z": {
|
| 345 |
"in_features": 4096,
|
| 346 |
"out_features": 4096,
|
| 347 |
"in_f_padded": 4096,
|
|
|
|
| 349 |
"bits": 5,
|
| 350 |
"block_size": 128
|
| 351 |
},
|
| 352 |
+
"model.language_model.layers.5.linear_attn.in_proj_b": {
|
| 353 |
"in_features": 4096,
|
| 354 |
"out_features": 32,
|
| 355 |
"in_f_padded": 4096,
|
|
|
|
| 357 |
"bits": 5,
|
| 358 |
"block_size": 128
|
| 359 |
},
|
| 360 |
+
"model.language_model.layers.5.linear_attn.in_proj_a": {
|
| 361 |
"in_features": 4096,
|
| 362 |
"out_features": 32,
|
| 363 |
"in_f_padded": 4096,
|
|
|
|
| 365 |
"bits": 5,
|
| 366 |
"block_size": 128
|
| 367 |
},
|
| 368 |
+
"model.language_model.layers.5.mlp.gate_proj": {
|
| 369 |
"in_features": 4096,
|
| 370 |
"out_features": 12288,
|
| 371 |
"in_f_padded": 4096,
|
|
|
|
| 373 |
"bits": 5,
|
| 374 |
"block_size": 128
|
| 375 |
},
|
| 376 |
+
"model.language_model.layers.5.mlp.up_proj": {
|
| 377 |
"in_features": 4096,
|
| 378 |
"out_features": 12288,
|
| 379 |
"in_f_padded": 4096,
|
|
|
|
| 381 |
"bits": 5,
|
| 382 |
"block_size": 128
|
| 383 |
},
|
| 384 |
+
"model.language_model.layers.5.mlp.down_proj": {
|
| 385 |
"in_features": 12288,
|
| 386 |
"out_features": 4096,
|
| 387 |
"in_f_padded": 12288,
|
|
|
|
| 389 |
"bits": 5,
|
| 390 |
"block_size": 128
|
| 391 |
},
|
| 392 |
+
"model.language_model.layers.6.linear_attn.out_proj": {
|
| 393 |
"in_features": 4096,
|
| 394 |
"out_features": 4096,
|
| 395 |
"in_f_padded": 4096,
|
|
|
|
| 397 |
"bits": 5,
|
| 398 |
"block_size": 128
|
| 399 |
},
|
| 400 |
+
"model.language_model.layers.6.linear_attn.in_proj_qkv": {
|
| 401 |
"in_features": 4096,
|
| 402 |
"out_features": 8192,
|
| 403 |
"in_f_padded": 4096,
|
|
|
|
| 405 |
"bits": 5,
|
| 406 |
"block_size": 128
|
| 407 |
},
|
| 408 |
+
"model.language_model.layers.6.linear_attn.in_proj_z": {
|
| 409 |
"in_features": 4096,
|
| 410 |
"out_features": 4096,
|
| 411 |
"in_f_padded": 4096,
|
|
|
|
| 413 |
"bits": 5,
|
| 414 |
"block_size": 128
|
| 415 |
},
|
| 416 |
+
"model.language_model.layers.6.linear_attn.in_proj_b": {
|
| 417 |
"in_features": 4096,
|
| 418 |
"out_features": 32,
|
| 419 |
"in_f_padded": 4096,
|
|
|
|
| 421 |
"bits": 5,
|
| 422 |
"block_size": 128
|
| 423 |
},
|
| 424 |
+
"model.language_model.layers.6.linear_attn.in_proj_a": {
|
| 425 |
"in_features": 4096,
|
| 426 |
"out_features": 32,
|
| 427 |
"in_f_padded": 4096,
|
|
|
|
| 429 |
"bits": 5,
|
| 430 |
"block_size": 128
|
| 431 |
},
|
| 432 |
+
"model.language_model.layers.6.mlp.gate_proj": {
|
| 433 |
"in_features": 4096,
|
| 434 |
"out_features": 12288,
|
| 435 |
"in_f_padded": 4096,
|
|
|
|
| 437 |
"bits": 5,
|
| 438 |
"block_size": 128
|
| 439 |
},
|
| 440 |
+
"model.language_model.layers.6.mlp.up_proj": {
|
| 441 |
"in_features": 4096,
|
| 442 |
"out_features": 12288,
|
| 443 |
"in_f_padded": 4096,
|
|
|
|
| 445 |
"bits": 5,
|
| 446 |
"block_size": 128
|
| 447 |
},
|
| 448 |
+
"model.language_model.layers.6.mlp.down_proj": {
|
| 449 |
"in_features": 12288,
|
| 450 |
"out_features": 4096,
|
| 451 |
"in_f_padded": 12288,
|
|
|
|
| 453 |
"bits": 5,
|
| 454 |
"block_size": 128
|
| 455 |
},
|
| 456 |
+
"model.language_model.layers.7.self_attn.q_proj": {
|
| 457 |
"in_features": 4096,
|
| 458 |
"out_features": 8192,
|
| 459 |
"in_f_padded": 4096,
|
|
|
|
| 461 |
"bits": 5,
|
| 462 |
"block_size": 128
|
| 463 |
},
|
| 464 |
+
"model.language_model.layers.7.self_attn.k_proj": {
|
| 465 |
"in_features": 4096,
|
| 466 |
"out_features": 1024,
|
| 467 |
"in_f_padded": 4096,
|
|
|
|
| 469 |
"bits": 5,
|
| 470 |
"block_size": 128
|
| 471 |
},
|
| 472 |
+
"model.language_model.layers.7.self_attn.v_proj": {
|
| 473 |
"in_features": 4096,
|
| 474 |
"out_features": 1024,
|
| 475 |
"in_f_padded": 4096,
|
|
|
|
| 477 |
"bits": 5,
|
| 478 |
"block_size": 128
|
| 479 |
},
|
| 480 |
+
"model.language_model.layers.7.self_attn.o_proj": {
|
| 481 |
"in_features": 4096,
|
| 482 |
"out_features": 4096,
|
| 483 |
"in_f_padded": 4096,
|
|
|
|
| 485 |
"bits": 5,
|
| 486 |
"block_size": 128
|
| 487 |
},
|
| 488 |
+
"model.language_model.layers.7.mlp.gate_proj": {
|
| 489 |
"in_features": 4096,
|
| 490 |
"out_features": 12288,
|
| 491 |
"in_f_padded": 4096,
|
|
|
|
| 493 |
"bits": 5,
|
| 494 |
"block_size": 128
|
| 495 |
},
|
| 496 |
+
"model.language_model.layers.7.mlp.up_proj": {
|
| 497 |
"in_features": 4096,
|
| 498 |
"out_features": 12288,
|
| 499 |
"in_f_padded": 4096,
|
|
|
|
| 501 |
"bits": 5,
|
| 502 |
"block_size": 128
|
| 503 |
},
|
| 504 |
+
"model.language_model.layers.7.mlp.down_proj": {
|
| 505 |
"in_features": 12288,
|
| 506 |
"out_features": 4096,
|
| 507 |
"in_f_padded": 12288,
|
|
|
|
| 509 |
"bits": 5,
|
| 510 |
"block_size": 128
|
| 511 |
},
|
| 512 |
+
"model.language_model.layers.8.linear_attn.out_proj": {
|
| 513 |
"in_features": 4096,
|
| 514 |
"out_features": 4096,
|
| 515 |
"in_f_padded": 4096,
|
|
|
|
| 517 |
"bits": 5,
|
| 518 |
"block_size": 128
|
| 519 |
},
|
| 520 |
+
"model.language_model.layers.8.linear_attn.in_proj_qkv": {
|
| 521 |
"in_features": 4096,
|
| 522 |
"out_features": 8192,
|
| 523 |
"in_f_padded": 4096,
|
|
|
|
| 525 |
"bits": 5,
|
| 526 |
"block_size": 128
|
| 527 |
},
|
| 528 |
+
"model.language_model.layers.8.linear_attn.in_proj_z": {
|
| 529 |
"in_features": 4096,
|
| 530 |
"out_features": 4096,
|
| 531 |
"in_f_padded": 4096,
|
|
|
|
| 533 |
"bits": 5,
|
| 534 |
"block_size": 128
|
| 535 |
},
|
| 536 |
+
"model.language_model.layers.8.linear_attn.in_proj_b": {
|
| 537 |
"in_features": 4096,
|
| 538 |
"out_features": 32,
|
| 539 |
"in_f_padded": 4096,
|
|
|
|
| 541 |
"bits": 5,
|
| 542 |
"block_size": 128
|
| 543 |
},
|
| 544 |
+
"model.language_model.layers.8.linear_attn.in_proj_a": {
|
| 545 |
"in_features": 4096,
|
| 546 |
"out_features": 32,
|
| 547 |
"in_f_padded": 4096,
|
|
|
|
| 549 |
"bits": 5,
|
| 550 |
"block_size": 128
|
| 551 |
},
|
| 552 |
+
"model.language_model.layers.8.mlp.gate_proj": {
|
| 553 |
"in_features": 4096,
|
| 554 |
"out_features": 12288,
|
| 555 |
"in_f_padded": 4096,
|
|
|
|
| 557 |
"bits": 5,
|
| 558 |
"block_size": 128
|
| 559 |
},
|
| 560 |
+
"model.language_model.layers.8.mlp.up_proj": {
|
| 561 |
"in_features": 4096,
|
| 562 |
"out_features": 12288,
|
| 563 |
"in_f_padded": 4096,
|
|
|
|
| 565 |
"bits": 5,
|
| 566 |
"block_size": 128
|
| 567 |
},
|
| 568 |
+
"model.language_model.layers.8.mlp.down_proj": {
|
| 569 |
"in_features": 12288,
|
| 570 |
"out_features": 4096,
|
| 571 |
"in_f_padded": 12288,
|
|
|
|
| 573 |
"bits": 5,
|
| 574 |
"block_size": 128
|
| 575 |
},
|
| 576 |
+
"model.language_model.layers.9.linear_attn.out_proj": {
|
| 577 |
"in_features": 4096,
|
| 578 |
"out_features": 4096,
|
| 579 |
"in_f_padded": 4096,
|
|
|
|
| 581 |
"bits": 5,
|
| 582 |
"block_size": 128
|
| 583 |
},
|
| 584 |
+
"model.language_model.layers.9.linear_attn.in_proj_qkv": {
|
| 585 |
"in_features": 4096,
|
| 586 |
"out_features": 8192,
|
| 587 |
"in_f_padded": 4096,
|
|
|
|
| 589 |
"bits": 5,
|
| 590 |
"block_size": 128
|
| 591 |
},
|
| 592 |
+
"model.language_model.layers.9.linear_attn.in_proj_z": {
|
| 593 |
"in_features": 4096,
|
| 594 |
"out_features": 4096,
|
| 595 |
"in_f_padded": 4096,
|
|
|
|
| 597 |
"bits": 5,
|
| 598 |
"block_size": 128
|
| 599 |
},
|
| 600 |
+
"model.language_model.layers.9.linear_attn.in_proj_b": {
|
| 601 |
"in_features": 4096,
|
| 602 |
"out_features": 32,
|
| 603 |
"in_f_padded": 4096,
|
|
|
|
| 605 |
"bits": 5,
|
| 606 |
"block_size": 128
|
| 607 |
},
|
| 608 |
+
"model.language_model.layers.9.linear_attn.in_proj_a": {
|
| 609 |
"in_features": 4096,
|
| 610 |
"out_features": 32,
|
| 611 |
"in_f_padded": 4096,
|
|
|
|
| 613 |
"bits": 5,
|
| 614 |
"block_size": 128
|
| 615 |
},
|
| 616 |
+
"model.language_model.layers.9.mlp.gate_proj": {
|
| 617 |
"in_features": 4096,
|
| 618 |
"out_features": 12288,
|
| 619 |
"in_f_padded": 4096,
|
|
|
|
| 621 |
"bits": 5,
|
| 622 |
"block_size": 128
|
| 623 |
},
|
| 624 |
+
"model.language_model.layers.9.mlp.up_proj": {
|
| 625 |
"in_features": 4096,
|
| 626 |
"out_features": 12288,
|
| 627 |
"in_f_padded": 4096,
|
|
|
|
| 629 |
"bits": 5,
|
| 630 |
"block_size": 128
|
| 631 |
},
|
| 632 |
+
"model.language_model.layers.9.mlp.down_proj": {
|
| 633 |
"in_features": 12288,
|
| 634 |
"out_features": 4096,
|
| 635 |
"in_f_padded": 12288,
|
|
|
|
| 637 |
"bits": 5,
|
| 638 |
"block_size": 128
|
| 639 |
},
|
| 640 |
+
"model.language_model.layers.10.linear_attn.out_proj": {
|
| 641 |
"in_features": 4096,
|
| 642 |
"out_features": 4096,
|
| 643 |
"in_f_padded": 4096,
|
|
|
|
| 645 |
"bits": 5,
|
| 646 |
"block_size": 128
|
| 647 |
},
|
| 648 |
+
"model.language_model.layers.10.linear_attn.in_proj_qkv": {
|
| 649 |
"in_features": 4096,
|
| 650 |
"out_features": 8192,
|
| 651 |
"in_f_padded": 4096,
|
|
|
|
| 653 |
"bits": 5,
|
| 654 |
"block_size": 128
|
| 655 |
},
|
| 656 |
+
"model.language_model.layers.10.linear_attn.in_proj_z": {
|
| 657 |
"in_features": 4096,
|
| 658 |
"out_features": 4096,
|
| 659 |
"in_f_padded": 4096,
|
|
|
|
| 661 |
"bits": 5,
|
| 662 |
"block_size": 128
|
| 663 |
},
|
| 664 |
+
"model.language_model.layers.10.linear_attn.in_proj_b": {
|
| 665 |
"in_features": 4096,
|
| 666 |
"out_features": 32,
|
| 667 |
"in_f_padded": 4096,
|
|
|
|
| 669 |
"bits": 5,
|
| 670 |
"block_size": 128
|
| 671 |
},
|
| 672 |
+
"model.language_model.layers.10.linear_attn.in_proj_a": {
|
| 673 |
"in_features": 4096,
|
| 674 |
"out_features": 32,
|
| 675 |
"in_f_padded": 4096,
|
|
|
|
| 677 |
"bits": 5,
|
| 678 |
"block_size": 128
|
| 679 |
},
|
| 680 |
+
"model.language_model.layers.10.mlp.gate_proj": {
|
| 681 |
"in_features": 4096,
|
| 682 |
"out_features": 12288,
|
| 683 |
"in_f_padded": 4096,
|
|
|
|
| 685 |
"bits": 5,
|
| 686 |
"block_size": 128
|
| 687 |
},
|
| 688 |
+
"model.language_model.layers.10.mlp.up_proj": {
|
| 689 |
"in_features": 4096,
|
| 690 |
"out_features": 12288,
|
| 691 |
"in_f_padded": 4096,
|
|
|
|
| 693 |
"bits": 5,
|
| 694 |
"block_size": 128
|
| 695 |
},
|
| 696 |
+
"model.language_model.layers.10.mlp.down_proj": {
|
| 697 |
"in_features": 12288,
|
| 698 |
"out_features": 4096,
|
| 699 |
"in_f_padded": 12288,
|
|
|
|
| 701 |
"bits": 5,
|
| 702 |
"block_size": 128
|
| 703 |
},
|
| 704 |
+
"model.language_model.layers.11.self_attn.q_proj": {
|
| 705 |
"in_features": 4096,
|
| 706 |
"out_features": 8192,
|
| 707 |
"in_f_padded": 4096,
|
|
|
|
| 709 |
"bits": 5,
|
| 710 |
"block_size": 128
|
| 711 |
},
|
| 712 |
+
"model.language_model.layers.11.self_attn.k_proj": {
|
| 713 |
"in_features": 4096,
|
| 714 |
"out_features": 1024,
|
| 715 |
"in_f_padded": 4096,
|
|
|
|
| 717 |
"bits": 5,
|
| 718 |
"block_size": 128
|
| 719 |
},
|
| 720 |
+
"model.language_model.layers.11.self_attn.v_proj": {
|
| 721 |
"in_features": 4096,
|
| 722 |
"out_features": 1024,
|
| 723 |
"in_f_padded": 4096,
|
|
|
|
| 725 |
"bits": 5,
|
| 726 |
"block_size": 128
|
| 727 |
},
|
| 728 |
+
"model.language_model.layers.11.self_attn.o_proj": {
|
| 729 |
"in_features": 4096,
|
| 730 |
"out_features": 4096,
|
| 731 |
"in_f_padded": 4096,
|
|
|
|
| 733 |
"bits": 5,
|
| 734 |
"block_size": 128
|
| 735 |
},
|
| 736 |
+
"model.language_model.layers.11.mlp.gate_proj": {
|
| 737 |
"in_features": 4096,
|
| 738 |
"out_features": 12288,
|
| 739 |
"in_f_padded": 4096,
|
|
|
|
| 741 |
"bits": 5,
|
| 742 |
"block_size": 128
|
| 743 |
},
|
| 744 |
+
"model.language_model.layers.11.mlp.up_proj": {
|
| 745 |
"in_features": 4096,
|
| 746 |
"out_features": 12288,
|
| 747 |
"in_f_padded": 4096,
|
|
|
|
| 749 |
"bits": 5,
|
| 750 |
"block_size": 128
|
| 751 |
},
|
| 752 |
+
"model.language_model.layers.11.mlp.down_proj": {
|
| 753 |
"in_features": 12288,
|
| 754 |
"out_features": 4096,
|
| 755 |
"in_f_padded": 12288,
|
|
|
|
| 757 |
"bits": 5,
|
| 758 |
"block_size": 128
|
| 759 |
},
|
| 760 |
+
"model.language_model.layers.12.linear_attn.out_proj": {
|
| 761 |
"in_features": 4096,
|
| 762 |
"out_features": 4096,
|
| 763 |
"in_f_padded": 4096,
|
|
|
|
| 765 |
"bits": 5,
|
| 766 |
"block_size": 128
|
| 767 |
},
|
| 768 |
+
"model.language_model.layers.12.linear_attn.in_proj_qkv": {
|
| 769 |
"in_features": 4096,
|
| 770 |
"out_features": 8192,
|
| 771 |
"in_f_padded": 4096,
|
|
|
|
| 773 |
"bits": 5,
|
| 774 |
"block_size": 128
|
| 775 |
},
|
| 776 |
+
"model.language_model.layers.12.linear_attn.in_proj_z": {
|
| 777 |
"in_features": 4096,
|
| 778 |
"out_features": 4096,
|
| 779 |
"in_f_padded": 4096,
|
|
|
|
| 781 |
"bits": 5,
|
| 782 |
"block_size": 128
|
| 783 |
},
|
| 784 |
+
"model.language_model.layers.12.linear_attn.in_proj_b": {
|
| 785 |
"in_features": 4096,
|
| 786 |
"out_features": 32,
|
| 787 |
"in_f_padded": 4096,
|
|
|
|
| 789 |
"bits": 5,
|
| 790 |
"block_size": 128
|
| 791 |
},
|
| 792 |
+
"model.language_model.layers.12.linear_attn.in_proj_a": {
|
| 793 |
"in_features": 4096,
|
| 794 |
"out_features": 32,
|
| 795 |
"in_f_padded": 4096,
|
|
|
|
| 797 |
"bits": 5,
|
| 798 |
"block_size": 128
|
| 799 |
},
|
| 800 |
+
"model.language_model.layers.12.mlp.gate_proj": {
|
| 801 |
"in_features": 4096,
|
| 802 |
"out_features": 12288,
|
| 803 |
"in_f_padded": 4096,
|
|
|
|
| 805 |
"bits": 5,
|
| 806 |
"block_size": 128
|
| 807 |
},
|
| 808 |
+
"model.language_model.layers.12.mlp.up_proj": {
|
| 809 |
"in_features": 4096,
|
| 810 |
"out_features": 12288,
|
| 811 |
"in_f_padded": 4096,
|
|
|
|
| 813 |
"bits": 5,
|
| 814 |
"block_size": 128
|
| 815 |
},
|
| 816 |
+
"model.language_model.layers.12.mlp.down_proj": {
|
| 817 |
"in_features": 12288,
|
| 818 |
"out_features": 4096,
|
| 819 |
"in_f_padded": 12288,
|
|
|
|
| 821 |
"bits": 5,
|
| 822 |
"block_size": 128
|
| 823 |
},
|
| 824 |
+
"model.language_model.layers.13.linear_attn.out_proj": {
|
| 825 |
"in_features": 4096,
|
| 826 |
"out_features": 4096,
|
| 827 |
"in_f_padded": 4096,
|
|
|
|
| 829 |
"bits": 5,
|
| 830 |
"block_size": 128
|
| 831 |
},
|
| 832 |
+
"model.language_model.layers.13.linear_attn.in_proj_qkv": {
|
| 833 |
"in_features": 4096,
|
| 834 |
"out_features": 8192,
|
| 835 |
"in_f_padded": 4096,
|
|
|
|
| 837 |
"bits": 5,
|
| 838 |
"block_size": 128
|
| 839 |
},
|
| 840 |
+
"model.language_model.layers.13.linear_attn.in_proj_z": {
|
| 841 |
"in_features": 4096,
|
| 842 |
"out_features": 4096,
|
| 843 |
"in_f_padded": 4096,
|
|
|
|
| 845 |
"bits": 5,
|
| 846 |
"block_size": 128
|
| 847 |
},
|
| 848 |
+
"model.language_model.layers.13.linear_attn.in_proj_b": {
|
| 849 |
"in_features": 4096,
|
| 850 |
"out_features": 32,
|
| 851 |
"in_f_padded": 4096,
|
|
|
|
| 853 |
"bits": 5,
|
| 854 |
"block_size": 128
|
| 855 |
},
|
| 856 |
+
"model.language_model.layers.13.linear_attn.in_proj_a": {
|
| 857 |
"in_features": 4096,
|
| 858 |
"out_features": 32,
|
| 859 |
"in_f_padded": 4096,
|
|
|
|
| 861 |
"bits": 5,
|
| 862 |
"block_size": 128
|
| 863 |
},
|
| 864 |
+
"model.language_model.layers.13.mlp.gate_proj": {
|
| 865 |
"in_features": 4096,
|
| 866 |
"out_features": 12288,
|
| 867 |
"in_f_padded": 4096,
|
|
|
|
| 869 |
"bits": 5,
|
| 870 |
"block_size": 128
|
| 871 |
},
|
| 872 |
+
"model.language_model.layers.13.mlp.up_proj": {
|
| 873 |
"in_features": 4096,
|
| 874 |
"out_features": 12288,
|
| 875 |
"in_f_padded": 4096,
|
|
|
|
| 877 |
"bits": 5,
|
| 878 |
"block_size": 128
|
| 879 |
},
|
| 880 |
+
"model.language_model.layers.13.mlp.down_proj": {
|
| 881 |
"in_features": 12288,
|
| 882 |
"out_features": 4096,
|
| 883 |
"in_f_padded": 12288,
|
|
|
|
| 885 |
"bits": 5,
|
| 886 |
"block_size": 128
|
| 887 |
},
|
| 888 |
+
"model.language_model.layers.14.linear_attn.out_proj": {
|
| 889 |
"in_features": 4096,
|
| 890 |
"out_features": 4096,
|
| 891 |
"in_f_padded": 4096,
|
|
|
|
| 893 |
"bits": 5,
|
| 894 |
"block_size": 128
|
| 895 |
},
|
| 896 |
+
"model.language_model.layers.14.linear_attn.in_proj_qkv": {
|
| 897 |
"in_features": 4096,
|
| 898 |
"out_features": 8192,
|
| 899 |
"in_f_padded": 4096,
|
|
|
|
| 901 |
"bits": 5,
|
| 902 |
"block_size": 128
|
| 903 |
},
|
| 904 |
+
"model.language_model.layers.14.linear_attn.in_proj_z": {
|
| 905 |
"in_features": 4096,
|
| 906 |
"out_features": 4096,
|
| 907 |
"in_f_padded": 4096,
|
|
|
|
| 909 |
"bits": 5,
|
| 910 |
"block_size": 128
|
| 911 |
},
|
| 912 |
+
"model.language_model.layers.14.linear_attn.in_proj_b": {
|
| 913 |
"in_features": 4096,
|
| 914 |
"out_features": 32,
|
| 915 |
"in_f_padded": 4096,
|
|
|
|
| 917 |
"bits": 5,
|
| 918 |
"block_size": 128
|
| 919 |
},
|
| 920 |
+
"model.language_model.layers.14.linear_attn.in_proj_a": {
|
| 921 |
"in_features": 4096,
|
| 922 |
"out_features": 32,
|
| 923 |
"in_f_padded": 4096,
|
|
|
|
| 925 |
"bits": 5,
|
| 926 |
"block_size": 128
|
| 927 |
},
|
| 928 |
+
"model.language_model.layers.14.mlp.gate_proj": {
|
| 929 |
"in_features": 4096,
|
| 930 |
"out_features": 12288,
|
| 931 |
"in_f_padded": 4096,
|
|
|
|
| 933 |
"bits": 5,
|
| 934 |
"block_size": 128
|
| 935 |
},
|
| 936 |
+
"model.language_model.layers.14.mlp.up_proj": {
|
| 937 |
"in_features": 4096,
|
| 938 |
"out_features": 12288,
|
| 939 |
"in_f_padded": 4096,
|
|
|
|
| 941 |
"bits": 5,
|
| 942 |
"block_size": 128
|
| 943 |
},
|
| 944 |
+
"model.language_model.layers.14.mlp.down_proj": {
|
| 945 |
"in_features": 12288,
|
| 946 |
"out_features": 4096,
|
| 947 |
"in_f_padded": 12288,
|
|
|
|
| 949 |
"bits": 5,
|
| 950 |
"block_size": 128
|
| 951 |
},
|
| 952 |
+
"model.language_model.layers.15.self_attn.q_proj": {
|
| 953 |
"in_features": 4096,
|
| 954 |
"out_features": 8192,
|
| 955 |
"in_f_padded": 4096,
|
|
|
|
| 957 |
"bits": 5,
|
| 958 |
"block_size": 128
|
| 959 |
},
|
| 960 |
+
"model.language_model.layers.15.self_attn.k_proj": {
|
| 961 |
"in_features": 4096,
|
| 962 |
"out_features": 1024,
|
| 963 |
"in_f_padded": 4096,
|
|
|
|
| 965 |
"bits": 5,
|
| 966 |
"block_size": 128
|
| 967 |
},
|
| 968 |
+
"model.language_model.layers.15.self_attn.v_proj": {
|
| 969 |
"in_features": 4096,
|
| 970 |
"out_features": 1024,
|
| 971 |
"in_f_padded": 4096,
|
|
|
|
| 973 |
"bits": 5,
|
| 974 |
"block_size": 128
|
| 975 |
},
|
| 976 |
+
"model.language_model.layers.15.self_attn.o_proj": {
|
| 977 |
"in_features": 4096,
|
| 978 |
"out_features": 4096,
|
| 979 |
"in_f_padded": 4096,
|
|
|
|
| 981 |
"bits": 5,
|
| 982 |
"block_size": 128
|
| 983 |
},
|
| 984 |
+
"model.language_model.layers.15.mlp.gate_proj": {
|
| 985 |
"in_features": 4096,
|
| 986 |
"out_features": 12288,
|
| 987 |
"in_f_padded": 4096,
|
|
|
|
| 989 |
"bits": 5,
|
| 990 |
"block_size": 128
|
| 991 |
},
|
| 992 |
+
"model.language_model.layers.15.mlp.up_proj": {
|
| 993 |
"in_features": 4096,
|
| 994 |
"out_features": 12288,
|
| 995 |
"in_f_padded": 4096,
|
|
|
|
| 997 |
"bits": 5,
|
| 998 |
"block_size": 128
|
| 999 |
},
|
| 1000 |
+
"model.language_model.layers.15.mlp.down_proj": {
|
| 1001 |
"in_features": 12288,
|
| 1002 |
"out_features": 4096,
|
| 1003 |
"in_f_padded": 12288,
|
|
|
|
| 1005 |
"bits": 5,
|
| 1006 |
"block_size": 128
|
| 1007 |
},
|
| 1008 |
+
"model.language_model.layers.16.linear_attn.out_proj": {
|
| 1009 |
"in_features": 4096,
|
| 1010 |
"out_features": 4096,
|
| 1011 |
"in_f_padded": 4096,
|
|
|
|
| 1013 |
"bits": 5,
|
| 1014 |
"block_size": 128
|
| 1015 |
},
|
| 1016 |
+
"model.language_model.layers.16.linear_attn.in_proj_qkv": {
|
| 1017 |
"in_features": 4096,
|
| 1018 |
"out_features": 8192,
|
| 1019 |
"in_f_padded": 4096,
|
|
|
|
| 1021 |
"bits": 5,
|
| 1022 |
"block_size": 128
|
| 1023 |
},
|
| 1024 |
+
"model.language_model.layers.16.linear_attn.in_proj_z": {
|
| 1025 |
"in_features": 4096,
|
| 1026 |
"out_features": 4096,
|
| 1027 |
"in_f_padded": 4096,
|
|
|
|
| 1029 |
"bits": 5,
|
| 1030 |
"block_size": 128
|
| 1031 |
},
|
| 1032 |
+
"model.language_model.layers.16.linear_attn.in_proj_b": {
|
| 1033 |
"in_features": 4096,
|
| 1034 |
"out_features": 32,
|
| 1035 |
"in_f_padded": 4096,
|
|
|
|
| 1037 |
"bits": 5,
|
| 1038 |
"block_size": 128
|
| 1039 |
},
|
| 1040 |
+
"model.language_model.layers.16.linear_attn.in_proj_a": {
|
| 1041 |
"in_features": 4096,
|
| 1042 |
"out_features": 32,
|
| 1043 |
"in_f_padded": 4096,
|
|
|
|
| 1045 |
"bits": 5,
|
| 1046 |
"block_size": 128
|
| 1047 |
},
|
| 1048 |
+
"model.language_model.layers.16.mlp.gate_proj": {
|
| 1049 |
"in_features": 4096,
|
| 1050 |
"out_features": 12288,
|
| 1051 |
"in_f_padded": 4096,
|
|
|
|
| 1053 |
"bits": 5,
|
| 1054 |
"block_size": 128
|
| 1055 |
},
|
| 1056 |
+
"model.language_model.layers.16.mlp.up_proj": {
|
| 1057 |
"in_features": 4096,
|
| 1058 |
"out_features": 12288,
|
| 1059 |
"in_f_padded": 4096,
|
|
|
|
| 1061 |
"bits": 5,
|
| 1062 |
"block_size": 128
|
| 1063 |
},
|
| 1064 |
+
"model.language_model.layers.16.mlp.down_proj": {
|
| 1065 |
"in_features": 12288,
|
| 1066 |
"out_features": 4096,
|
| 1067 |
"in_f_padded": 12288,
|
|
|
|
| 1069 |
"bits": 5,
|
| 1070 |
"block_size": 128
|
| 1071 |
},
|
| 1072 |
+
"model.language_model.layers.17.linear_attn.out_proj": {
|
| 1073 |
"in_features": 4096,
|
| 1074 |
"out_features": 4096,
|
| 1075 |
"in_f_padded": 4096,
|
|
|
|
| 1077 |
"bits": 5,
|
| 1078 |
"block_size": 128
|
| 1079 |
},
|
| 1080 |
+
"model.language_model.layers.17.linear_attn.in_proj_qkv": {
|
| 1081 |
"in_features": 4096,
|
| 1082 |
"out_features": 8192,
|
| 1083 |
"in_f_padded": 4096,
|
|
|
|
| 1085 |
"bits": 5,
|
| 1086 |
"block_size": 128
|
| 1087 |
},
|
| 1088 |
+
"model.language_model.layers.17.linear_attn.in_proj_z": {
|
| 1089 |
"in_features": 4096,
|
| 1090 |
"out_features": 4096,
|
| 1091 |
"in_f_padded": 4096,
|
|
|
|
| 1093 |
"bits": 5,
|
| 1094 |
"block_size": 128
|
| 1095 |
},
|
| 1096 |
+
"model.language_model.layers.17.linear_attn.in_proj_b": {
|
| 1097 |
"in_features": 4096,
|
| 1098 |
"out_features": 32,
|
| 1099 |
"in_f_padded": 4096,
|
|
|
|
| 1101 |
"bits": 5,
|
| 1102 |
"block_size": 128
|
| 1103 |
},
|
| 1104 |
+
"model.language_model.layers.17.linear_attn.in_proj_a": {
|
| 1105 |
"in_features": 4096,
|
| 1106 |
"out_features": 32,
|
| 1107 |
"in_f_padded": 4096,
|
|
|
|
| 1109 |
"bits": 5,
|
| 1110 |
"block_size": 128
|
| 1111 |
},
|
| 1112 |
+
"model.language_model.layers.17.mlp.gate_proj": {
|
| 1113 |
"in_features": 4096,
|
| 1114 |
"out_features": 12288,
|
| 1115 |
"in_f_padded": 4096,
|
|
|
|
| 1117 |
"bits": 5,
|
| 1118 |
"block_size": 128
|
| 1119 |
},
|
| 1120 |
+
"model.language_model.layers.17.mlp.up_proj": {
|
| 1121 |
"in_features": 4096,
|
| 1122 |
"out_features": 12288,
|
| 1123 |
"in_f_padded": 4096,
|
|
|
|
| 1125 |
"bits": 5,
|
| 1126 |
"block_size": 128
|
| 1127 |
},
|
| 1128 |
+
"model.language_model.layers.17.mlp.down_proj": {
|
| 1129 |
"in_features": 12288,
|
| 1130 |
"out_features": 4096,
|
| 1131 |
"in_f_padded": 12288,
|
|
|
|
| 1133 |
"bits": 5,
|
| 1134 |
"block_size": 128
|
| 1135 |
},
|
| 1136 |
+
"model.language_model.layers.18.linear_attn.out_proj": {
|
| 1137 |
"in_features": 4096,
|
| 1138 |
"out_features": 4096,
|
| 1139 |
"in_f_padded": 4096,
|
|
|
|
| 1141 |
"bits": 5,
|
| 1142 |
"block_size": 128
|
| 1143 |
},
|
| 1144 |
+
"model.language_model.layers.18.linear_attn.in_proj_qkv": {
|
| 1145 |
"in_features": 4096,
|
| 1146 |
"out_features": 8192,
|
| 1147 |
"in_f_padded": 4096,
|
|
|
|
| 1149 |
"bits": 5,
|
| 1150 |
"block_size": 128
|
| 1151 |
},
|
| 1152 |
+
"model.language_model.layers.18.linear_attn.in_proj_z": {
|
| 1153 |
"in_features": 4096,
|
| 1154 |
"out_features": 4096,
|
| 1155 |
"in_f_padded": 4096,
|
|
|
|
| 1157 |
"bits": 5,
|
| 1158 |
"block_size": 128
|
| 1159 |
},
|
| 1160 |
+
"model.language_model.layers.18.linear_attn.in_proj_b": {
|
| 1161 |
"in_features": 4096,
|
| 1162 |
"out_features": 32,
|
| 1163 |
"in_f_padded": 4096,
|
|
|
|
| 1165 |
"bits": 5,
|
| 1166 |
"block_size": 128
|
| 1167 |
},
|
| 1168 |
+
"model.language_model.layers.18.linear_attn.in_proj_a": {
|
| 1169 |
"in_features": 4096,
|
| 1170 |
"out_features": 32,
|
| 1171 |
"in_f_padded": 4096,
|
|
|
|
| 1173 |
"bits": 5,
|
| 1174 |
"block_size": 128
|
| 1175 |
},
|
| 1176 |
+
"model.language_model.layers.18.mlp.gate_proj": {
|
| 1177 |
"in_features": 4096,
|
| 1178 |
"out_features": 12288,
|
| 1179 |
"in_f_padded": 4096,
|
|
|
|
| 1181 |
"bits": 5,
|
| 1182 |
"block_size": 128
|
| 1183 |
},
|
| 1184 |
+
"model.language_model.layers.18.mlp.up_proj": {
|
| 1185 |
"in_features": 4096,
|
| 1186 |
"out_features": 12288,
|
| 1187 |
"in_f_padded": 4096,
|
|
|
|
| 1189 |
"bits": 5,
|
| 1190 |
"block_size": 128
|
| 1191 |
},
|
| 1192 |
+
"model.language_model.layers.18.mlp.down_proj": {
|
| 1193 |
"in_features": 12288,
|
| 1194 |
"out_features": 4096,
|
| 1195 |
"in_f_padded": 12288,
|
|
|
|
| 1197 |
"bits": 5,
|
| 1198 |
"block_size": 128
|
| 1199 |
},
|
| 1200 |
+
"model.language_model.layers.19.self_attn.q_proj": {
|
| 1201 |
"in_features": 4096,
|
| 1202 |
"out_features": 8192,
|
| 1203 |
"in_f_padded": 4096,
|
|
|
|
| 1205 |
"bits": 5,
|
| 1206 |
"block_size": 128
|
| 1207 |
},
|
| 1208 |
+
"model.language_model.layers.19.self_attn.k_proj": {
|
| 1209 |
"in_features": 4096,
|
| 1210 |
"out_features": 1024,
|
| 1211 |
"in_f_padded": 4096,
|
|
|
|
| 1213 |
"bits": 5,
|
| 1214 |
"block_size": 128
|
| 1215 |
},
|
| 1216 |
+
"model.language_model.layers.19.self_attn.v_proj": {
|
| 1217 |
"in_features": 4096,
|
| 1218 |
"out_features": 1024,
|
| 1219 |
"in_f_padded": 4096,
|
|
|
|
| 1221 |
"bits": 5,
|
| 1222 |
"block_size": 128
|
| 1223 |
},
|
| 1224 |
+
"model.language_model.layers.19.self_attn.o_proj": {
|
| 1225 |
"in_features": 4096,
|
| 1226 |
"out_features": 4096,
|
| 1227 |
"in_f_padded": 4096,
|
|
|
|
| 1229 |
"bits": 5,
|
| 1230 |
"block_size": 128
|
| 1231 |
},
|
| 1232 |
+
"model.language_model.layers.19.mlp.gate_proj": {
|
| 1233 |
"in_features": 4096,
|
| 1234 |
"out_features": 12288,
|
| 1235 |
"in_f_padded": 4096,
|
|
|
|
| 1237 |
"bits": 5,
|
| 1238 |
"block_size": 128
|
| 1239 |
},
|
| 1240 |
+
"model.language_model.layers.19.mlp.up_proj": {
|
| 1241 |
"in_features": 4096,
|
| 1242 |
"out_features": 12288,
|
| 1243 |
"in_f_padded": 4096,
|
|
|
|
| 1245 |
"bits": 5,
|
| 1246 |
"block_size": 128
|
| 1247 |
},
|
| 1248 |
+
"model.language_model.layers.19.mlp.down_proj": {
|
| 1249 |
"in_features": 12288,
|
| 1250 |
"out_features": 4096,
|
| 1251 |
"in_f_padded": 12288,
|
|
|
|
| 1253 |
"bits": 5,
|
| 1254 |
"block_size": 128
|
| 1255 |
},
|
| 1256 |
+
"model.language_model.layers.20.linear_attn.out_proj": {
|
| 1257 |
"in_features": 4096,
|
| 1258 |
"out_features": 4096,
|
| 1259 |
"in_f_padded": 4096,
|
|
|
|
| 1261 |
"bits": 5,
|
| 1262 |
"block_size": 128
|
| 1263 |
},
|
| 1264 |
+
"model.language_model.layers.20.linear_attn.in_proj_qkv": {
|
| 1265 |
"in_features": 4096,
|
| 1266 |
"out_features": 8192,
|
| 1267 |
"in_f_padded": 4096,
|
|
|
|
| 1269 |
"bits": 5,
|
| 1270 |
"block_size": 128
|
| 1271 |
},
|
| 1272 |
+
"model.language_model.layers.20.linear_attn.in_proj_z": {
|
| 1273 |
"in_features": 4096,
|
| 1274 |
"out_features": 4096,
|
| 1275 |
"in_f_padded": 4096,
|
|
|
|
| 1277 |
"bits": 5,
|
| 1278 |
"block_size": 128
|
| 1279 |
},
|
| 1280 |
+
"model.language_model.layers.20.linear_attn.in_proj_b": {
|
| 1281 |
"in_features": 4096,
|
| 1282 |
"out_features": 32,
|
| 1283 |
"in_f_padded": 4096,
|
|
|
|
| 1285 |
"bits": 5,
|
| 1286 |
"block_size": 128
|
| 1287 |
},
|
| 1288 |
+
"model.language_model.layers.20.linear_attn.in_proj_a": {
|
| 1289 |
"in_features": 4096,
|
| 1290 |
"out_features": 32,
|
| 1291 |
"in_f_padded": 4096,
|
|
|
|
| 1293 |
"bits": 5,
|
| 1294 |
"block_size": 128
|
| 1295 |
},
|
| 1296 |
+
"model.language_model.layers.20.mlp.gate_proj": {
|
| 1297 |
"in_features": 4096,
|
| 1298 |
"out_features": 12288,
|
| 1299 |
"in_f_padded": 4096,
|
|
|
|
| 1301 |
"bits": 5,
|
| 1302 |
"block_size": 128
|
| 1303 |
},
|
| 1304 |
+
"model.language_model.layers.20.mlp.up_proj": {
|
| 1305 |
"in_features": 4096,
|
| 1306 |
"out_features": 12288,
|
| 1307 |
"in_f_padded": 4096,
|
|
|
|
| 1309 |
"bits": 5,
|
| 1310 |
"block_size": 128
|
| 1311 |
},
|
| 1312 |
+
"model.language_model.layers.20.mlp.down_proj": {
|
| 1313 |
"in_features": 12288,
|
| 1314 |
"out_features": 4096,
|
| 1315 |
"in_f_padded": 12288,
|
|
|
|
| 1317 |
"bits": 5,
|
| 1318 |
"block_size": 128
|
| 1319 |
},
|
| 1320 |
+
"model.language_model.layers.21.linear_attn.out_proj": {
|
| 1321 |
"in_features": 4096,
|
| 1322 |
"out_features": 4096,
|
| 1323 |
"in_f_padded": 4096,
|
|
|
|
| 1325 |
"bits": 5,
|
| 1326 |
"block_size": 128
|
| 1327 |
},
|
| 1328 |
+
"model.language_model.layers.21.linear_attn.in_proj_qkv": {
|
| 1329 |
"in_features": 4096,
|
| 1330 |
"out_features": 8192,
|
| 1331 |
"in_f_padded": 4096,
|
|
|
|
| 1333 |
"bits": 5,
|
| 1334 |
"block_size": 128
|
| 1335 |
},
|
| 1336 |
+
"model.language_model.layers.21.linear_attn.in_proj_z": {
|
| 1337 |
"in_features": 4096,
|
| 1338 |
"out_features": 4096,
|
| 1339 |
"in_f_padded": 4096,
|
|
|
|
| 1341 |
"bits": 5,
|
| 1342 |
"block_size": 128
|
| 1343 |
},
|
| 1344 |
+
"model.language_model.layers.21.linear_attn.in_proj_b": {
|
| 1345 |
"in_features": 4096,
|
| 1346 |
"out_features": 32,
|
| 1347 |
"in_f_padded": 4096,
|
|
|
|
| 1349 |
"bits": 5,
|
| 1350 |
"block_size": 128
|
| 1351 |
},
|
| 1352 |
+
"model.language_model.layers.21.linear_attn.in_proj_a": {
|
| 1353 |
"in_features": 4096,
|
| 1354 |
"out_features": 32,
|
| 1355 |
"in_f_padded": 4096,
|
|
|
|
| 1357 |
"bits": 5,
|
| 1358 |
"block_size": 128
|
| 1359 |
},
|
| 1360 |
+
"model.language_model.layers.21.mlp.gate_proj": {
|
| 1361 |
"in_features": 4096,
|
| 1362 |
"out_features": 12288,
|
| 1363 |
"in_f_padded": 4096,
|
|
|
|
| 1365 |
"bits": 5,
|
| 1366 |
"block_size": 128
|
| 1367 |
},
|
| 1368 |
+
"model.language_model.layers.21.mlp.up_proj": {
|
| 1369 |
"in_features": 4096,
|
| 1370 |
"out_features": 12288,
|
| 1371 |
"in_f_padded": 4096,
|
|
|
|
| 1373 |
"bits": 5,
|
| 1374 |
"block_size": 128
|
| 1375 |
},
|
| 1376 |
+
"model.language_model.layers.21.mlp.down_proj": {
|
| 1377 |
"in_features": 12288,
|
| 1378 |
"out_features": 4096,
|
| 1379 |
"in_f_padded": 12288,
|
|
|
|
| 1381 |
"bits": 5,
|
| 1382 |
"block_size": 128
|
| 1383 |
},
|
| 1384 |
+
"model.language_model.layers.22.linear_attn.out_proj": {
|
| 1385 |
"in_features": 4096,
|
| 1386 |
"out_features": 4096,
|
| 1387 |
"in_f_padded": 4096,
|
|
|
|
| 1389 |
"bits": 5,
|
| 1390 |
"block_size": 128
|
| 1391 |
},
|
| 1392 |
+
"model.language_model.layers.22.linear_attn.in_proj_qkv": {
|
| 1393 |
"in_features": 4096,
|
| 1394 |
"out_features": 8192,
|
| 1395 |
"in_f_padded": 4096,
|
|
|
|
| 1397 |
"bits": 5,
|
| 1398 |
"block_size": 128
|
| 1399 |
},
|
| 1400 |
+
"model.language_model.layers.22.linear_attn.in_proj_z": {
|
| 1401 |
"in_features": 4096,
|
| 1402 |
"out_features": 4096,
|
| 1403 |
"in_f_padded": 4096,
|
|
|
|
| 1405 |
"bits": 5,
|
| 1406 |
"block_size": 128
|
| 1407 |
},
|
| 1408 |
+
"model.language_model.layers.22.linear_attn.in_proj_b": {
|
| 1409 |
"in_features": 4096,
|
| 1410 |
"out_features": 32,
|
| 1411 |
"in_f_padded": 4096,
|
|
|
|
| 1413 |
"bits": 5,
|
| 1414 |
"block_size": 128
|
| 1415 |
},
|
| 1416 |
+
"model.language_model.layers.22.linear_attn.in_proj_a": {
|
| 1417 |
"in_features": 4096,
|
| 1418 |
"out_features": 32,
|
| 1419 |
"in_f_padded": 4096,
|
|
|
|
| 1421 |
"bits": 5,
|
| 1422 |
"block_size": 128
|
| 1423 |
},
|
| 1424 |
+
"model.language_model.layers.22.mlp.gate_proj": {
|
| 1425 |
"in_features": 4096,
|
| 1426 |
"out_features": 12288,
|
| 1427 |
"in_f_padded": 4096,
|
|
|
|
| 1429 |
"bits": 5,
|
| 1430 |
"block_size": 128
|
| 1431 |
},
|
| 1432 |
+
"model.language_model.layers.22.mlp.up_proj": {
|
| 1433 |
"in_features": 4096,
|
| 1434 |
"out_features": 12288,
|
| 1435 |
"in_f_padded": 4096,
|
|
|
|
| 1437 |
"bits": 5,
|
| 1438 |
"block_size": 128
|
| 1439 |
},
|
| 1440 |
+
"model.language_model.layers.22.mlp.down_proj": {
|
| 1441 |
"in_features": 12288,
|
| 1442 |
"out_features": 4096,
|
| 1443 |
"in_f_padded": 12288,
|
|
|
|
| 1445 |
"bits": 5,
|
| 1446 |
"block_size": 128
|
| 1447 |
},
|
| 1448 |
+
"model.language_model.layers.23.self_attn.q_proj": {
|
| 1449 |
"in_features": 4096,
|
| 1450 |
"out_features": 8192,
|
| 1451 |
"in_f_padded": 4096,
|
|
|
|
| 1453 |
"bits": 5,
|
| 1454 |
"block_size": 128
|
| 1455 |
},
|
| 1456 |
+
"model.language_model.layers.23.self_attn.k_proj": {
|
| 1457 |
"in_features": 4096,
|
| 1458 |
"out_features": 1024,
|
| 1459 |
"in_f_padded": 4096,
|
|
|
|
| 1461 |
"bits": 5,
|
| 1462 |
"block_size": 128
|
| 1463 |
},
|
| 1464 |
+
"model.language_model.layers.23.self_attn.v_proj": {
|
| 1465 |
"in_features": 4096,
|
| 1466 |
"out_features": 1024,
|
| 1467 |
"in_f_padded": 4096,
|
|
|
|
| 1469 |
"bits": 5,
|
| 1470 |
"block_size": 128
|
| 1471 |
},
|
| 1472 |
+
"model.language_model.layers.23.self_attn.o_proj": {
|
| 1473 |
"in_features": 4096,
|
| 1474 |
"out_features": 4096,
|
| 1475 |
"in_f_padded": 4096,
|
|
|
|
| 1477 |
"bits": 5,
|
| 1478 |
"block_size": 128
|
| 1479 |
},
|
| 1480 |
+
"model.language_model.layers.23.mlp.gate_proj": {
|
| 1481 |
"in_features": 4096,
|
| 1482 |
"out_features": 12288,
|
| 1483 |
"in_f_padded": 4096,
|
|
|
|
| 1485 |
"bits": 5,
|
| 1486 |
"block_size": 128
|
| 1487 |
},
|
| 1488 |
+
"model.language_model.layers.23.mlp.up_proj": {
|
| 1489 |
"in_features": 4096,
|
| 1490 |
"out_features": 12288,
|
| 1491 |
"in_f_padded": 4096,
|
|
|
|
| 1493 |
"bits": 5,
|
| 1494 |
"block_size": 128
|
| 1495 |
},
|
| 1496 |
+
"model.language_model.layers.23.mlp.down_proj": {
|
| 1497 |
"in_features": 12288,
|
| 1498 |
"out_features": 4096,
|
| 1499 |
"in_f_padded": 12288,
|
|
|
|
| 1501 |
"bits": 5,
|
| 1502 |
"block_size": 128
|
| 1503 |
},
|
| 1504 |
+
"model.language_model.layers.24.linear_attn.out_proj": {
|
| 1505 |
"in_features": 4096,
|
| 1506 |
"out_features": 4096,
|
| 1507 |
"in_f_padded": 4096,
|
|
|
|
| 1509 |
"bits": 5,
|
| 1510 |
"block_size": 128
|
| 1511 |
},
|
| 1512 |
+
"model.language_model.layers.24.linear_attn.in_proj_qkv": {
|
| 1513 |
"in_features": 4096,
|
| 1514 |
"out_features": 8192,
|
| 1515 |
"in_f_padded": 4096,
|
|
|
|
| 1517 |
"bits": 5,
|
| 1518 |
"block_size": 128
|
| 1519 |
},
|
| 1520 |
+
"model.language_model.layers.24.linear_attn.in_proj_z": {
|
| 1521 |
"in_features": 4096,
|
| 1522 |
"out_features": 4096,
|
| 1523 |
"in_f_padded": 4096,
|
|
|
|
| 1525 |
"bits": 5,
|
| 1526 |
"block_size": 128
|
| 1527 |
},
|
| 1528 |
+
"model.language_model.layers.24.linear_attn.in_proj_b": {
|
| 1529 |
"in_features": 4096,
|
| 1530 |
"out_features": 32,
|
| 1531 |
"in_f_padded": 4096,
|
|
|
|
| 1533 |
"bits": 5,
|
| 1534 |
"block_size": 128
|
| 1535 |
},
|
| 1536 |
+
"model.language_model.layers.24.linear_attn.in_proj_a": {
|
| 1537 |
"in_features": 4096,
|
| 1538 |
"out_features": 32,
|
| 1539 |
"in_f_padded": 4096,
|
|
|
|
| 1541 |
"bits": 5,
|
| 1542 |
"block_size": 128
|
| 1543 |
},
|
| 1544 |
+
"model.language_model.layers.24.mlp.gate_proj": {
|
| 1545 |
"in_features": 4096,
|
| 1546 |
"out_features": 12288,
|
| 1547 |
"in_f_padded": 4096,
|
|
|
|
| 1549 |
"bits": 5,
|
| 1550 |
"block_size": 128
|
| 1551 |
},
|
| 1552 |
+
"model.language_model.layers.24.mlp.up_proj": {
|
| 1553 |
"in_features": 4096,
|
| 1554 |
"out_features": 12288,
|
| 1555 |
"in_f_padded": 4096,
|
|
|
|
| 1557 |
"bits": 5,
|
| 1558 |
"block_size": 128
|
| 1559 |
},
|
| 1560 |
+
"model.language_model.layers.24.mlp.down_proj": {
|
| 1561 |
"in_features": 12288,
|
| 1562 |
"out_features": 4096,
|
| 1563 |
"in_f_padded": 12288,
|
|
|
|
| 1565 |
"bits": 5,
|
| 1566 |
"block_size": 128
|
| 1567 |
},
|
| 1568 |
+
"model.language_model.layers.25.linear_attn.out_proj": {
|
| 1569 |
"in_features": 4096,
|
| 1570 |
"out_features": 4096,
|
| 1571 |
"in_f_padded": 4096,
|
|
|
|
| 1573 |
"bits": 5,
|
| 1574 |
"block_size": 128
|
| 1575 |
},
|
| 1576 |
+
"model.language_model.layers.25.linear_attn.in_proj_qkv": {
|
| 1577 |
"in_features": 4096,
|
| 1578 |
"out_features": 8192,
|
| 1579 |
"in_f_padded": 4096,
|
|
|
|
| 1581 |
"bits": 5,
|
| 1582 |
"block_size": 128
|
| 1583 |
},
|
| 1584 |
+
"model.language_model.layers.25.linear_attn.in_proj_z": {
|
| 1585 |
"in_features": 4096,
|
| 1586 |
"out_features": 4096,
|
| 1587 |
"in_f_padded": 4096,
|
|
|
|
| 1589 |
"bits": 5,
|
| 1590 |
"block_size": 128
|
| 1591 |
},
|
| 1592 |
+
"model.language_model.layers.25.linear_attn.in_proj_b": {
|
| 1593 |
"in_features": 4096,
|
| 1594 |
"out_features": 32,
|
| 1595 |
"in_f_padded": 4096,
|
|
|
|
| 1597 |
"bits": 5,
|
| 1598 |
"block_size": 128
|
| 1599 |
},
|
| 1600 |
+
"model.language_model.layers.25.linear_attn.in_proj_a": {
|
| 1601 |
"in_features": 4096,
|
| 1602 |
"out_features": 32,
|
| 1603 |
"in_f_padded": 4096,
|
|
|
|
| 1605 |
"bits": 5,
|
| 1606 |
"block_size": 128
|
| 1607 |
},
|
| 1608 |
+
"model.language_model.layers.25.mlp.gate_proj": {
|
| 1609 |
"in_features": 4096,
|
| 1610 |
"out_features": 12288,
|
| 1611 |
"in_f_padded": 4096,
|
|
|
|
| 1613 |
"bits": 5,
|
| 1614 |
"block_size": 128
|
| 1615 |
},
|
| 1616 |
+
"model.language_model.layers.25.mlp.up_proj": {
|
| 1617 |
"in_features": 4096,
|
| 1618 |
"out_features": 12288,
|
| 1619 |
"in_f_padded": 4096,
|
|
|
|
| 1621 |
"bits": 5,
|
| 1622 |
"block_size": 128
|
| 1623 |
},
|
| 1624 |
+
"model.language_model.layers.25.mlp.down_proj": {
|
| 1625 |
"in_features": 12288,
|
| 1626 |
"out_features": 4096,
|
| 1627 |
"in_f_padded": 12288,
|
|
|
|
| 1629 |
"bits": 5,
|
| 1630 |
"block_size": 128
|
| 1631 |
},
|
| 1632 |
+
"model.language_model.layers.26.linear_attn.out_proj": {
|
| 1633 |
"in_features": 4096,
|
| 1634 |
"out_features": 4096,
|
| 1635 |
"in_f_padded": 4096,
|
|
|
|
| 1637 |
"bits": 5,
|
| 1638 |
"block_size": 128
|
| 1639 |
},
|
| 1640 |
+
"model.language_model.layers.26.linear_attn.in_proj_qkv": {
|
| 1641 |
"in_features": 4096,
|
| 1642 |
"out_features": 8192,
|
| 1643 |
"in_f_padded": 4096,
|
|
|
|
| 1645 |
"bits": 5,
|
| 1646 |
"block_size": 128
|
| 1647 |
},
|
| 1648 |
+
"model.language_model.layers.26.linear_attn.in_proj_z": {
|
| 1649 |
"in_features": 4096,
|
| 1650 |
"out_features": 4096,
|
| 1651 |
"in_f_padded": 4096,
|
|
|
|
| 1653 |
"bits": 5,
|
| 1654 |
"block_size": 128
|
| 1655 |
},
|
| 1656 |
+
"model.language_model.layers.26.linear_attn.in_proj_b": {
|
| 1657 |
"in_features": 4096,
|
| 1658 |
"out_features": 32,
|
| 1659 |
"in_f_padded": 4096,
|
|
|
|
| 1661 |
"bits": 5,
|
| 1662 |
"block_size": 128
|
| 1663 |
},
|
| 1664 |
+
"model.language_model.layers.26.linear_attn.in_proj_a": {
|
| 1665 |
"in_features": 4096,
|
| 1666 |
"out_features": 32,
|
| 1667 |
"in_f_padded": 4096,
|
|
|
|
| 1669 |
"bits": 5,
|
| 1670 |
"block_size": 128
|
| 1671 |
},
|
| 1672 |
+
"model.language_model.layers.26.mlp.gate_proj": {
|
| 1673 |
"in_features": 4096,
|
| 1674 |
"out_features": 12288,
|
| 1675 |
"in_f_padded": 4096,
|
|
|
|
| 1677 |
"bits": 5,
|
| 1678 |
"block_size": 128
|
| 1679 |
},
|
| 1680 |
+
"model.language_model.layers.26.mlp.up_proj": {
|
| 1681 |
"in_features": 4096,
|
| 1682 |
"out_features": 12288,
|
| 1683 |
"in_f_padded": 4096,
|
|
|
|
| 1685 |
"bits": 5,
|
| 1686 |
"block_size": 128
|
| 1687 |
},
|
| 1688 |
+
"model.language_model.layers.26.mlp.down_proj": {
|
| 1689 |
"in_features": 12288,
|
| 1690 |
"out_features": 4096,
|
| 1691 |
"in_f_padded": 12288,
|
|
|
|
| 1693 |
"bits": 5,
|
| 1694 |
"block_size": 128
|
| 1695 |
},
|
| 1696 |
+
"model.language_model.layers.27.self_attn.q_proj": {
|
| 1697 |
"in_features": 4096,
|
| 1698 |
"out_features": 8192,
|
| 1699 |
"in_f_padded": 4096,
|
|
|
|
| 1701 |
"bits": 5,
|
| 1702 |
"block_size": 128
|
| 1703 |
},
|
| 1704 |
+
"model.language_model.layers.27.self_attn.k_proj": {
|
| 1705 |
"in_features": 4096,
|
| 1706 |
"out_features": 1024,
|
| 1707 |
"in_f_padded": 4096,
|
|
|
|
| 1709 |
"bits": 5,
|
| 1710 |
"block_size": 128
|
| 1711 |
},
|
| 1712 |
+
"model.language_model.layers.27.self_attn.v_proj": {
|
| 1713 |
"in_features": 4096,
|
| 1714 |
"out_features": 1024,
|
| 1715 |
"in_f_padded": 4096,
|
|
|
|
| 1717 |
"bits": 5,
|
| 1718 |
"block_size": 128
|
| 1719 |
},
|
| 1720 |
+
"model.language_model.layers.27.self_attn.o_proj": {
|
| 1721 |
"in_features": 4096,
|
| 1722 |
"out_features": 4096,
|
| 1723 |
"in_f_padded": 4096,
|
|
|
|
| 1725 |
"bits": 5,
|
| 1726 |
"block_size": 128
|
| 1727 |
},
|
| 1728 |
+
"model.language_model.layers.27.mlp.gate_proj": {
|
| 1729 |
"in_features": 4096,
|
| 1730 |
"out_features": 12288,
|
| 1731 |
"in_f_padded": 4096,
|
|
|
|
| 1733 |
"bits": 5,
|
| 1734 |
"block_size": 128
|
| 1735 |
},
|
| 1736 |
+
"model.language_model.layers.27.mlp.up_proj": {
|
| 1737 |
"in_features": 4096,
|
| 1738 |
"out_features": 12288,
|
| 1739 |
"in_f_padded": 4096,
|
|
|
|
| 1741 |
"bits": 5,
|
| 1742 |
"block_size": 128
|
| 1743 |
},
|
| 1744 |
+
"model.language_model.layers.27.mlp.down_proj": {
|
| 1745 |
"in_features": 12288,
|
| 1746 |
"out_features": 4096,
|
| 1747 |
"in_f_padded": 12288,
|
|
|
|
| 1749 |
"bits": 5,
|
| 1750 |
"block_size": 128
|
| 1751 |
},
|
| 1752 |
+
"model.language_model.layers.28.linear_attn.out_proj": {
|
| 1753 |
"in_features": 4096,
|
| 1754 |
"out_features": 4096,
|
| 1755 |
"in_f_padded": 4096,
|
|
|
|
| 1757 |
"bits": 5,
|
| 1758 |
"block_size": 128
|
| 1759 |
},
|
| 1760 |
+
"model.language_model.layers.28.linear_attn.in_proj_qkv": {
|
| 1761 |
"in_features": 4096,
|
| 1762 |
"out_features": 8192,
|
| 1763 |
"in_f_padded": 4096,
|
|
|
|
| 1765 |
"bits": 5,
|
| 1766 |
"block_size": 128
|
| 1767 |
},
|
| 1768 |
+
"model.language_model.layers.28.linear_attn.in_proj_z": {
|
| 1769 |
"in_features": 4096,
|
| 1770 |
"out_features": 4096,
|
| 1771 |
"in_f_padded": 4096,
|
|
|
|
| 1773 |
"bits": 5,
|
| 1774 |
"block_size": 128
|
| 1775 |
},
|
| 1776 |
+
"model.language_model.layers.28.linear_attn.in_proj_b": {
|
| 1777 |
"in_features": 4096,
|
| 1778 |
"out_features": 32,
|
| 1779 |
"in_f_padded": 4096,
|
|
|
|
| 1781 |
"bits": 5,
|
| 1782 |
"block_size": 128
|
| 1783 |
},
|
| 1784 |
+
"model.language_model.layers.28.linear_attn.in_proj_a": {
|
| 1785 |
"in_features": 4096,
|
| 1786 |
"out_features": 32,
|
| 1787 |
"in_f_padded": 4096,
|
|
|
|
| 1789 |
"bits": 5,
|
| 1790 |
"block_size": 128
|
| 1791 |
},
|
| 1792 |
+
"model.language_model.layers.28.mlp.gate_proj": {
|
| 1793 |
"in_features": 4096,
|
| 1794 |
"out_features": 12288,
|
| 1795 |
"in_f_padded": 4096,
|
|
|
|
| 1797 |
"bits": 5,
|
| 1798 |
"block_size": 128
|
| 1799 |
},
|
| 1800 |
+
"model.language_model.layers.28.mlp.up_proj": {
|
| 1801 |
"in_features": 4096,
|
| 1802 |
"out_features": 12288,
|
| 1803 |
"in_f_padded": 4096,
|
|
|
|
| 1805 |
"bits": 5,
|
| 1806 |
"block_size": 128
|
| 1807 |
},
|
| 1808 |
+
"model.language_model.layers.28.mlp.down_proj": {
|
| 1809 |
"in_features": 12288,
|
| 1810 |
"out_features": 4096,
|
| 1811 |
"in_f_padded": 12288,
|
|
|
|
| 1813 |
"bits": 5,
|
| 1814 |
"block_size": 128
|
| 1815 |
},
|
| 1816 |
+
"model.language_model.layers.29.linear_attn.out_proj": {
|
| 1817 |
"in_features": 4096,
|
| 1818 |
"out_features": 4096,
|
| 1819 |
"in_f_padded": 4096,
|
|
|
|
| 1821 |
"bits": 5,
|
| 1822 |
"block_size": 128
|
| 1823 |
},
|
| 1824 |
+
"model.language_model.layers.29.linear_attn.in_proj_qkv": {
|
| 1825 |
"in_features": 4096,
|
| 1826 |
"out_features": 8192,
|
| 1827 |
"in_f_padded": 4096,
|
|
|
|
| 1829 |
"bits": 5,
|
| 1830 |
"block_size": 128
|
| 1831 |
},
|
| 1832 |
+
"model.language_model.layers.29.linear_attn.in_proj_z": {
|
| 1833 |
"in_features": 4096,
|
| 1834 |
"out_features": 4096,
|
| 1835 |
"in_f_padded": 4096,
|
|
|
|
| 1837 |
"bits": 5,
|
| 1838 |
"block_size": 128
|
| 1839 |
},
|
| 1840 |
+
"model.language_model.layers.29.linear_attn.in_proj_b": {
|
| 1841 |
"in_features": 4096,
|
| 1842 |
"out_features": 32,
|
| 1843 |
"in_f_padded": 4096,
|
|
|
|
| 1845 |
"bits": 5,
|
| 1846 |
"block_size": 128
|
| 1847 |
},
|
| 1848 |
+
"model.language_model.layers.29.linear_attn.in_proj_a": {
|
| 1849 |
"in_features": 4096,
|
| 1850 |
"out_features": 32,
|
| 1851 |
"in_f_padded": 4096,
|
|
|
|
| 1853 |
"bits": 5,
|
| 1854 |
"block_size": 128
|
| 1855 |
},
|
| 1856 |
+
"model.language_model.layers.29.mlp.gate_proj": {
|
| 1857 |
"in_features": 4096,
|
| 1858 |
"out_features": 12288,
|
| 1859 |
"in_f_padded": 4096,
|
|
|
|
| 1861 |
"bits": 5,
|
| 1862 |
"block_size": 128
|
| 1863 |
},
|
| 1864 |
+
"model.language_model.layers.29.mlp.up_proj": {
|
| 1865 |
"in_features": 4096,
|
| 1866 |
"out_features": 12288,
|
| 1867 |
"in_f_padded": 4096,
|
|
|
|
| 1869 |
"bits": 5,
|
| 1870 |
"block_size": 128
|
| 1871 |
},
|
| 1872 |
+
"model.language_model.layers.29.mlp.down_proj": {
|
| 1873 |
"in_features": 12288,
|
| 1874 |
"out_features": 4096,
|
| 1875 |
"in_f_padded": 12288,
|
|
|
|
| 1877 |
"bits": 5,
|
| 1878 |
"block_size": 128
|
| 1879 |
},
|
| 1880 |
+
"model.language_model.layers.30.linear_attn.out_proj": {
|
| 1881 |
"in_features": 4096,
|
| 1882 |
"out_features": 4096,
|
| 1883 |
"in_f_padded": 4096,
|
|
|
|
| 1885 |
"bits": 5,
|
| 1886 |
"block_size": 128
|
| 1887 |
},
|
| 1888 |
+
"model.language_model.layers.30.linear_attn.in_proj_qkv": {
|
| 1889 |
"in_features": 4096,
|
| 1890 |
"out_features": 8192,
|
| 1891 |
"in_f_padded": 4096,
|
|
|
|
| 1893 |
"bits": 5,
|
| 1894 |
"block_size": 128
|
| 1895 |
},
|
| 1896 |
+
"model.language_model.layers.30.linear_attn.in_proj_z": {
|
| 1897 |
"in_features": 4096,
|
| 1898 |
"out_features": 4096,
|
| 1899 |
"in_f_padded": 4096,
|
|
|
|
| 1901 |
"bits": 5,
|
| 1902 |
"block_size": 128
|
| 1903 |
},
|
| 1904 |
+
"model.language_model.layers.30.linear_attn.in_proj_b": {
|
| 1905 |
"in_features": 4096,
|
| 1906 |
"out_features": 32,
|
| 1907 |
"in_f_padded": 4096,
|
|
|
|
| 1909 |
"bits": 5,
|
| 1910 |
"block_size": 128
|
| 1911 |
},
|
| 1912 |
+
"model.language_model.layers.30.linear_attn.in_proj_a": {
|
| 1913 |
"in_features": 4096,
|
| 1914 |
"out_features": 32,
|
| 1915 |
"in_f_padded": 4096,
|
|
|
|
| 1917 |
"bits": 5,
|
| 1918 |
"block_size": 128
|
| 1919 |
},
|
| 1920 |
+
"model.language_model.layers.30.mlp.gate_proj": {
|
| 1921 |
"in_features": 4096,
|
| 1922 |
"out_features": 12288,
|
| 1923 |
"in_f_padded": 4096,
|
|
|
|
| 1925 |
"bits": 5,
|
| 1926 |
"block_size": 128
|
| 1927 |
},
|
| 1928 |
+
"model.language_model.layers.30.mlp.up_proj": {
|
| 1929 |
"in_features": 4096,
|
| 1930 |
"out_features": 12288,
|
| 1931 |
"in_f_padded": 4096,
|
|
|
|
| 1933 |
"bits": 5,
|
| 1934 |
"block_size": 128
|
| 1935 |
},
|
| 1936 |
+
"model.language_model.layers.30.mlp.down_proj": {
|
| 1937 |
"in_features": 12288,
|
| 1938 |
"out_features": 4096,
|
| 1939 |
"in_f_padded": 12288,
|
|
|
|
| 1941 |
"bits": 5,
|
| 1942 |
"block_size": 128
|
| 1943 |
},
|
| 1944 |
+
"model.language_model.layers.31.self_attn.q_proj": {
|
| 1945 |
"in_features": 4096,
|
| 1946 |
"out_features": 8192,
|
| 1947 |
"in_f_padded": 4096,
|
|
|
|
| 1949 |
"bits": 5,
|
| 1950 |
"block_size": 128
|
| 1951 |
},
|
| 1952 |
+
"model.language_model.layers.31.self_attn.k_proj": {
|
| 1953 |
"in_features": 4096,
|
| 1954 |
"out_features": 1024,
|
| 1955 |
"in_f_padded": 4096,
|
|
|
|
| 1957 |
"bits": 5,
|
| 1958 |
"block_size": 128
|
| 1959 |
},
|
| 1960 |
+
"model.language_model.layers.31.self_attn.v_proj": {
|
| 1961 |
"in_features": 4096,
|
| 1962 |
"out_features": 1024,
|
| 1963 |
"in_f_padded": 4096,
|
|
|
|
| 1965 |
"bits": 5,
|
| 1966 |
"block_size": 128
|
| 1967 |
},
|
| 1968 |
+
"model.language_model.layers.31.self_attn.o_proj": {
|
| 1969 |
"in_features": 4096,
|
| 1970 |
"out_features": 4096,
|
| 1971 |
"in_f_padded": 4096,
|
|
|
|
| 1973 |
"bits": 5,
|
| 1974 |
"block_size": 128
|
| 1975 |
},
|
| 1976 |
+
"model.language_model.layers.31.mlp.gate_proj": {
|
| 1977 |
"in_features": 4096,
|
| 1978 |
"out_features": 12288,
|
| 1979 |
"in_f_padded": 4096,
|
|
|
|
| 1981 |
"bits": 5,
|
| 1982 |
"block_size": 128
|
| 1983 |
},
|
| 1984 |
+
"model.language_model.layers.31.mlp.up_proj": {
|
| 1985 |
"in_features": 4096,
|
| 1986 |
"out_features": 12288,
|
| 1987 |
"in_f_padded": 4096,
|
|
|
|
| 1989 |
"bits": 5,
|
| 1990 |
"block_size": 128
|
| 1991 |
},
|
| 1992 |
+
"model.language_model.layers.31.mlp.down_proj": {
|
| 1993 |
"in_features": 12288,
|
| 1994 |
"out_features": 4096,
|
| 1995 |
"in_f_padded": 12288,
|
tokenizer_config.json
CHANGED
|
@@ -23,9 +23,9 @@
|
|
| 23 |
"pad_token": "<|endoftext|>",
|
| 24 |
"pretokenize_regex": "(?i:'s|'t|'re|'ve|'m|'ll|'d)|[^\\r\\n\\p{L}\\p{N}]?[\\p{L}\\p{M}]+|\\p{N}| ?[^\\s\\p{L}\\p{M}\\p{N}]+[\\r\\n]*|\\s*[\\r\\n]+|\\s+(?!\\S)|\\s+",
|
| 25 |
"split_special_tokens": false,
|
| 26 |
-
"tokenizer_class": "
|
| 27 |
"unk_token": null,
|
| 28 |
"video_token": "<|video_pad|>",
|
| 29 |
"vision_bos_token": "<|vision_start|>",
|
| 30 |
"vision_eos_token": "<|vision_end|>"
|
| 31 |
-
}
|
|
|
|
| 23 |
"pad_token": "<|endoftext|>",
|
| 24 |
"pretokenize_regex": "(?i:'s|'t|'re|'ve|'m|'ll|'d)|[^\\r\\n\\p{L}\\p{N}]?[\\p{L}\\p{M}]+|\\p{N}| ?[^\\s\\p{L}\\p{M}\\p{N}]+[\\r\\n]*|\\s*[\\r\\n]+|\\s+(?!\\S)|\\s+",
|
| 25 |
"split_special_tokens": false,
|
| 26 |
+
"tokenizer_class": "Qwen2TokenizerFast",
|
| 27 |
"unk_token": null,
|
| 28 |
"video_token": "<|video_pad|>",
|
| 29 |
"vision_bos_token": "<|vision_start|>",
|
| 30 |
"vision_eos_token": "<|vision_end|>"
|
| 31 |
+
}
|