helcig commited on
Commit
40e76c0
·
verified ·
1 Parent(s): a40d384

Update files

Browse files
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ qwen3_4b_tiled64/tokenizer.json filter=lfs diff=lfs merge=lfs -text
eval/eval_model.sh ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/bin/bash
2
+ # Combined perplexity + zero-shot eval for one checkpoint. Just point it at a model.
3
+ #
4
+ # eval_model.sh <model_path_or_hf_id> [name] [gpu]
5
+ #
6
+ # Runs, on one GPU, sequentially (PPL via HF, then zero-shot via lm_eval+vllm):
7
+ # - WT2 + C4 perplexity
8
+ # - 7-task zero-shot (arc_easy, arc_challenge, hellaswag, winogrande, piqa,
9
+ # boolq, openbookqa)
10
+ # then prints a combined table. Results go under ~/results/eval_<name>/.
11
+ # Zero-shot table uses acc_norm for arc/hellaswag/piqa/openbookqa, acc otherwise.
12
+ set -uo pipefail
13
+ . ~/local/venvs/main/bin/activate
14
+ HERE="$(cd "$(dirname "$0")" && pwd)"
15
+
16
+ MODEL="${1:?usage: eval_model.sh <model> [name] [gpu]}"
17
+ NAME="${2:-$(basename "$MODEL")}"
18
+ GPU="${3:-0}"
19
+ TASKS=arc_easy,arc_challenge,hellaswag,winogrande,piqa,boolq,openbookqa
20
+ OUT="$HOME/results/eval_${NAME}"
21
+ mkdir -p "$OUT"
22
+ echo "[eval] model=$MODEL name=$NAME gpu=$GPU -> $OUT"
23
+
24
+ echo "[eval] 1/2 perplexity (wikitext2 + c4)..."
25
+ CUDA_VISIBLE_DEVICES=$GPU python "$HERE/ppl_eval.py" "$MODEL" --out "$OUT/ppl.json"
26
+
27
+ echo "[eval] 2/2 zero-shot (lm_eval + vllm)..."
28
+ rm -rf "$OUT/zeroshot"
29
+ CUDA_VISIBLE_DEVICES=$GPU lm_eval --model vllm \
30
+ --model_args "pretrained=$MODEL,tensor_parallel_size=1,gpu_memory_utilization=0.85,dtype=bfloat16,max_model_len=4096,trust_remote_code=True" \
31
+ --tasks "$TASKS" --batch_size auto --output_path "$OUT/zeroshot"
32
+
33
+ echo "[eval] ===== $NAME ====="
34
+ python - "$OUT" <<'PY'
35
+ import glob, json, os, sys
36
+ OUT = sys.argv[1]
37
+ NORM = {"arc_easy", "arc_challenge", "hellaswag", "piqa", "openbookqa"}
38
+ TASKS = ["arc_easy", "arc_challenge", "hellaswag", "winogrande", "piqa", "boolq", "openbookqa"]
39
+ ppl = json.load(open(os.path.join(OUT, "ppl.json")))
40
+ print(f" WT2 {ppl['wikitext2']:.2f}")
41
+ print(f" C4 {ppl['c4']:.2f}")
42
+ fs = glob.glob(os.path.join(OUT, "zeroshot", "**", "*.json"), recursive=True)
43
+ r = (json.load(open(sorted(fs)[-1])).get("results", {})) if fs else {}
44
+ vals = {}
45
+ for t in TASKS:
46
+ x = r.get(t)
47
+ if x:
48
+ m = "acc_norm,none" if t in NORM else "acc,none"
49
+ vals[t] = x.get(m, x.get("acc,none")) * 100
50
+ print(f" {t:14s} {vals[t]:.2f}")
51
+ if vals:
52
+ print(f" {'ZS avg':14s} {sum(vals.values())/len(vals):.2f}")
53
+ PY
eval/ppl_eval.py ADDED
@@ -0,0 +1,80 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ #!/usr/bin/env python3
2
+ """Sliding-window WT2 + C4 perplexity for one causal-LM checkpoint.
3
+
4
+ Uses the checkpoint's own tokenizer, so it works for a plain HF model id or a
5
+ local fake-quant checkpoint. Prints the two numbers and (optionally) writes them
6
+ to a JSON file.
7
+
8
+ Usage:
9
+ ppl_eval.py MODEL [--out ppl.json] [--seq 2048] [--stride 512] [--device cuda:0]
10
+ """
11
+ import argparse
12
+ import json
13
+
14
+ import numpy as np
15
+ import torch
16
+ from datasets import load_dataset
17
+ from transformers import AutoModelForCausalLM, AutoTokenizer
18
+
19
+
20
+ def wt2_text():
21
+ return "\n\n".join(load_dataset("wikitext", "wikitext-2-raw-v1", split="test")["text"])
22
+
23
+
24
+ def c4_text(min_chars):
25
+ ds = load_dataset("allenai/c4", "en", split="validation", streaming=True)
26
+ parts, tot = [], 0
27
+ for ex in ds:
28
+ parts.append(ex["text"]); tot += len(ex["text"])
29
+ if tot >= min_chars:
30
+ break
31
+ return "\n\n".join(parts)
32
+
33
+
34
+ def perplexity(model, tok, text, seq, stride, device):
35
+ ids = tok(text, return_tensors="pt").input_ids[0]
36
+ n = len(ids); nlls = []; prev_end = 0
37
+ for begin in range(0, n - 1, stride):
38
+ end = min(begin + seq, n)
39
+ trg_len = end - prev_end
40
+ chunk = ids[begin:end].unsqueeze(0).to(device)
41
+ with torch.no_grad():
42
+ logits = model(chunk, labels=chunk).logits
43
+ sl = logits[:, prev_end - begin:-1, :].contiguous()
44
+ lbl = chunk[:, prev_end - begin + 1:].contiguous()
45
+ loss = torch.nn.functional.cross_entropy(sl.view(-1, sl.size(-1)), lbl.view(-1))
46
+ nlls.append(loss.item() * trg_len)
47
+ prev_end = end
48
+ if end == n:
49
+ break
50
+ return float(np.exp(sum(nlls) / prev_end))
51
+
52
+
53
+ def main():
54
+ ap = argparse.ArgumentParser()
55
+ ap.add_argument("model")
56
+ ap.add_argument("--out", default=None, help="write {wikitext2, c4} JSON here")
57
+ ap.add_argument("--seq", type=int, default=2048)
58
+ ap.add_argument("--stride", type=int, default=512)
59
+ ap.add_argument("--device", default="cuda:0")
60
+ ap.add_argument("--c4-chars", type=int, default=2_621_440)
61
+ args = ap.parse_args()
62
+
63
+ tok = AutoTokenizer.from_pretrained(args.model, trust_remote_code=True)
64
+ model = AutoModelForCausalLM.from_pretrained(
65
+ args.model, torch_dtype=torch.bfloat16, device_map=args.device,
66
+ trust_remote_code=True).eval()
67
+
68
+ res = {}
69
+ res["wikitext2"] = perplexity(model, tok, wt2_text(), args.seq, args.stride, args.device)
70
+ print(f"WT2 {res['wikitext2']:.4f}", flush=True)
71
+ res["c4"] = perplexity(model, tok, c4_text(args.c4_chars), args.seq, args.stride, args.device)
72
+ print(f"C4 {res['c4']:.4f}", flush=True)
73
+ if args.out:
74
+ with open(args.out, "w") as f:
75
+ json.dump(res, f, indent=2)
76
+ return 0
77
+
78
+
79
+ if __name__ == "__main__":
80
+ raise SystemExit(main())
qwen3_4b_tiled64/README.md ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # RCO quant pack
2
+
3
+ Self-describing mixed-precision checkpoint. Everything needed to read it is in
4
+ this directory (loader deps: `torch`, `safetensors`).
5
+
6
+ ```
7
+ quant_pack-*.safetensors per-layer tensors
8
+ manifest.json index + quant scheme + per-layer bit stats
9
+ load_pack.py standalone loader
10
+ README.md this file
11
+ ```
12
+
13
+ Per quantized layer `<name>` (block sizes / group_size in `manifest.json`):
14
+
15
+ | tensor | shape | dtype | meaning |
16
+ |-------------------|----------|-------|-----------------------------------------------|
17
+ | `<name>.tile_bits`| (Rb, Cb) | uint8 | bitwidth of each `row_block x col_block` tile |
18
+ | `<name>.qweight` | (out,in) | uint8 | integer codes, 0 .. 2^bw-1 per tile |
19
+ | `<name>.scales` | (out, G) | bf16 | per output row x input group |
20
+ | `<name>.zeros` | (out, G) | bf16 | per output row x input group |
21
+ | `<name>.weight` | (out,in) | bf16 | fake-quant weight (optional) |
22
+
23
+ Dequant (asymmetric, grouped along input columns): `w = scale * (qcode - zero)`.
24
+ Bitwidth of element (r, c): `tile_bits[r // row_block, c // col_block]`.
25
+
26
+ ```python
27
+ python load_pack.py . # summary
28
+ from load_pack import load_quant_pack, dequant
29
+ man, get = load_quant_pack(".")
30
+ L = get("model.layers.0.self_attn.q_proj")
31
+ W = dequant(L["qweight"], L["scales"], L["zeros"], man["quant_scheme"]["group_size"])
32
+ ```
qwen3_4b_tiled64/chat_template.jinja ADDED
@@ -0,0 +1,89 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|im_start|>system\n' }}
3
+ {%- if messages[0].role == 'system' %}
4
+ {{- messages[0].content + '\n\n' }}
5
+ {%- endif %}
6
+ {{- "# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
7
+ {%- for tool in tools %}
8
+ {{- "\n" }}
9
+ {{- tool | tojson }}
10
+ {%- endfor %}
11
+ {{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
12
+ {%- else %}
13
+ {%- if messages[0].role == 'system' %}
14
+ {{- '<|im_start|>system\n' + messages[0].content + '<|im_end|>\n' }}
15
+ {%- endif %}
16
+ {%- endif %}
17
+ {%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
18
+ {%- for message in messages[::-1] %}
19
+ {%- set index = (messages|length - 1) - loop.index0 %}
20
+ {%- if ns.multi_step_tool and message.role == "user" and message.content is string and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %}
21
+ {%- set ns.multi_step_tool = false %}
22
+ {%- set ns.last_query_index = index %}
23
+ {%- endif %}
24
+ {%- endfor %}
25
+ {%- for message in messages %}
26
+ {%- if message.content is string %}
27
+ {%- set content = message.content %}
28
+ {%- else %}
29
+ {%- set content = '' %}
30
+ {%- endif %}
31
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) %}
32
+ {{- '<|im_start|>' + message.role + '\n' + content + '<|im_end|>' + '\n' }}
33
+ {%- elif message.role == "assistant" %}
34
+ {%- set reasoning_content = '' %}
35
+ {%- if message.reasoning_content is string %}
36
+ {%- set reasoning_content = message.reasoning_content %}
37
+ {%- else %}
38
+ {%- if '</think>' in content %}
39
+ {%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
40
+ {%- set content = content.split('</think>')[-1].lstrip('\n') %}
41
+ {%- endif %}
42
+ {%- endif %}
43
+ {%- if loop.index0 > ns.last_query_index %}
44
+ {%- if loop.last or (not loop.last and reasoning_content) %}
45
+ {{- '<|im_start|>' + message.role + '\n<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
46
+ {%- else %}
47
+ {{- '<|im_start|>' + message.role + '\n' + content }}
48
+ {%- endif %}
49
+ {%- else %}
50
+ {{- '<|im_start|>' + message.role + '\n' + content }}
51
+ {%- endif %}
52
+ {%- if message.tool_calls %}
53
+ {%- for tool_call in message.tool_calls %}
54
+ {%- if (loop.first and content) or (not loop.first) %}
55
+ {{- '\n' }}
56
+ {%- endif %}
57
+ {%- if tool_call.function %}
58
+ {%- set tool_call = tool_call.function %}
59
+ {%- endif %}
60
+ {{- '<tool_call>\n{"name": "' }}
61
+ {{- tool_call.name }}
62
+ {{- '", "arguments": ' }}
63
+ {%- if tool_call.arguments is string %}
64
+ {{- tool_call.arguments }}
65
+ {%- else %}
66
+ {{- tool_call.arguments | tojson }}
67
+ {%- endif %}
68
+ {{- '}\n</tool_call>' }}
69
+ {%- endfor %}
70
+ {%- endif %}
71
+ {{- '<|im_end|>\n' }}
72
+ {%- elif message.role == "tool" %}
73
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
74
+ {{- '<|im_start|>user' }}
75
+ {%- endif %}
76
+ {{- '\n<tool_response>\n' }}
77
+ {{- content }}
78
+ {{- '\n</tool_response>' }}
79
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
80
+ {{- '<|im_end|>\n' }}
81
+ {%- endif %}
82
+ {%- endif %}
83
+ {%- endfor %}
84
+ {%- if add_generation_prompt %}
85
+ {{- '<|im_start|>assistant\n' }}
86
+ {%- if enable_thinking is defined and enable_thinking is false %}
87
+ {{- '<think>\n\n</think>\n\n' }}
88
+ {%- endif %}
89
+ {%- endif %}
qwen3_4b_tiled64/config.json ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Qwen3ForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "bos_token_id": 151643,
8
+ "dtype": "bfloat16",
9
+ "eos_token_id": 151645,
10
+ "head_dim": 128,
11
+ "hidden_act": "silu",
12
+ "hidden_size": 2560,
13
+ "initializer_range": 0.02,
14
+ "intermediate_size": 9728,
15
+ "layer_types": [
16
+ "full_attention",
17
+ "full_attention",
18
+ "full_attention",
19
+ "full_attention",
20
+ "full_attention",
21
+ "full_attention",
22
+ "full_attention",
23
+ "full_attention",
24
+ "full_attention",
25
+ "full_attention",
26
+ "full_attention",
27
+ "full_attention",
28
+ "full_attention",
29
+ "full_attention",
30
+ "full_attention",
31
+ "full_attention",
32
+ "full_attention",
33
+ "full_attention",
34
+ "full_attention",
35
+ "full_attention",
36
+ "full_attention",
37
+ "full_attention",
38
+ "full_attention",
39
+ "full_attention",
40
+ "full_attention",
41
+ "full_attention",
42
+ "full_attention",
43
+ "full_attention",
44
+ "full_attention",
45
+ "full_attention",
46
+ "full_attention",
47
+ "full_attention",
48
+ "full_attention",
49
+ "full_attention",
50
+ "full_attention",
51
+ "full_attention"
52
+ ],
53
+ "max_position_embeddings": 40960,
54
+ "max_window_layers": 36,
55
+ "model_type": "qwen3",
56
+ "num_attention_heads": 32,
57
+ "num_hidden_layers": 36,
58
+ "num_key_value_heads": 8,
59
+ "pad_token_id": null,
60
+ "rms_norm_eps": 1e-06,
61
+ "rope_parameters": {
62
+ "rope_theta": 1000000,
63
+ "rope_type": "default"
64
+ },
65
+ "sliding_window": null,
66
+ "tie_word_embeddings": true,
67
+ "transformers_version": "5.6.2",
68
+ "use_cache": true,
69
+ "use_sliding_window": false,
70
+ "vocab_size": 151936
71
+ }
qwen3_4b_tiled64/generation_config.json ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token_id": 151643,
3
+ "do_sample": true,
4
+ "eos_token_id": [
5
+ 151645,
6
+ 151643
7
+ ],
8
+ "pad_token_id": 151643,
9
+ "temperature": 0.6,
10
+ "top_k": 20,
11
+ "top_p": 0.95,
12
+ "transformers_version": "5.6.2"
13
+ }
qwen3_4b_tiled64/load_pack.py ADDED
@@ -0,0 +1,49 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """Standalone loader for an RCO quant pack. Dependencies: torch, safetensors.
2
+
3
+ from load_pack import load_quant_pack, dequant
4
+ man, get = load_quant_pack(".") # pack dir
5
+ L = get("model.layers.0.self_attn.q_proj") # tile_bits/qweight/scales/zeros/weight
6
+ W = dequant(L["qweight"], L["scales"], L["zeros"], man["quant_scheme"]["group_size"])
7
+
8
+ Dequant: w = scale * (qcode - zero). Tile of element (r,c) is
9
+ tile_bits[r // row_block, c // col_block] (block sizes in manifest.json).
10
+ """
11
+ import glob, json, os
12
+ import torch
13
+ from safetensors import safe_open
14
+
15
+
16
+ def dequant(qweight, scales, zeros, group_size):
17
+ q = qweight.to(torch.float32)
18
+ s = scales.to(torch.float32).repeat_interleave(group_size, dim=1)
19
+ z = zeros.to(torch.float32).repeat_interleave(group_size, dim=1)
20
+ return (s * (q - z)).to(torch.bfloat16)
21
+
22
+
23
+ def load_quant_pack(pack_dir="."):
24
+ manifest = json.loads(open(os.path.join(pack_dir, "manifest.json")).read())
25
+ shards = manifest.get("shards") or sorted(
26
+ os.path.basename(p) for p in glob.glob(os.path.join(pack_dir, "*.safetensors")))
27
+ handles, key2file = {}, {}
28
+ for fn in shards:
29
+ p = os.path.join(pack_dir, fn)
30
+ h = safe_open(p, framework="pt"); handles[p] = h
31
+ for k in h.keys():
32
+ key2file[k] = p
33
+
34
+ def get_layer(name):
35
+ out = {}
36
+ for field in ("tile_bits", "qweight", "scales", "zeros", "weight"):
37
+ k = name + "." + field
38
+ if k in key2file:
39
+ out[field] = handles[key2file[k]].get_tensor(k)
40
+ return out
41
+
42
+ return manifest, get_layer
43
+
44
+
45
+ if __name__ == "__main__":
46
+ import sys
47
+ m, get = load_quant_pack(sys.argv[1] if len(sys.argv) > 1 else ".")
48
+ print("model", m["model"], "| layers", m["n_layers"],
49
+ "| avg bits", round(m["overall_avg_bits"], 4), "| scheme", m["quant_scheme"])
qwen3_4b_tiled64/manifest.json ADDED
@@ -0,0 +1,4431 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "format": "rco-quant-pack/v1",
3
+ "model": "Qwen/Qwen3-4B",
4
+ "dequant_formula": "w = scale * (qcode - zero)",
5
+ "quant_scheme": {
6
+ "asymmetric": true,
7
+ "quant_axis": "input-group",
8
+ "group_size": 64,
9
+ "row_block_size": 64,
10
+ "col_block_size": 64,
11
+ "bitwidths": [
12
+ 2,
13
+ 3,
14
+ 4,
15
+ 5,
16
+ 6,
17
+ 7,
18
+ 8
19
+ ],
20
+ "qcode_range": "0 .. 2**bw - 1 per tile (see tile_bits)"
21
+ },
22
+ "fields": [
23
+ "tile_bits",
24
+ "qweight",
25
+ "scales",
26
+ "zeros"
27
+ ],
28
+ "n_layers": 252,
29
+ "overall_avg_bits": 2.249978585762723,
30
+ "target_avg_bits": 2.25,
31
+ "actual_avg_bits": 2.249978542327881,
32
+ "shards": [
33
+ "quant_pack-00001.safetensors"
34
+ ],
35
+ "layers": {
36
+ "model.layers.0.self_attn.q_proj": {
37
+ "out": 4096,
38
+ "in_features": 2560,
39
+ "group_size": 64,
40
+ "groups": 40,
41
+ "grid_shape": [
42
+ 64,
43
+ 40
44
+ ],
45
+ "avg_bits": 2.2320313453674316,
46
+ "tile_bit_hist": {
47
+ "2": 2039,
48
+ "3": 457,
49
+ "4": 55,
50
+ "5": 9
51
+ }
52
+ },
53
+ "model.layers.0.self_attn.k_proj": {
54
+ "out": 1024,
55
+ "in_features": 2560,
56
+ "group_size": 64,
57
+ "groups": 40,
58
+ "grid_shape": [
59
+ 16,
60
+ 40
61
+ ],
62
+ "avg_bits": 2.518749952316284,
63
+ "tile_bit_hist": {
64
+ "2": 375,
65
+ "3": 209,
66
+ "4": 46,
67
+ "5": 9,
68
+ "6": 1
69
+ }
70
+ },
71
+ "model.layers.0.self_attn.v_proj": {
72
+ "out": 1024,
73
+ "in_features": 2560,
74
+ "group_size": 64,
75
+ "groups": 40,
76
+ "grid_shape": [
77
+ 16,
78
+ 40
79
+ ],
80
+ "avg_bits": 2.9234375953674316,
81
+ "tile_bit_hist": {
82
+ "2": 245,
83
+ "3": 242,
84
+ "4": 114,
85
+ "5": 35,
86
+ "6": 4
87
+ }
88
+ },
89
+ "model.layers.0.self_attn.o_proj": {
90
+ "out": 2560,
91
+ "in_features": 4096,
92
+ "group_size": 64,
93
+ "groups": 64,
94
+ "grid_shape": [
95
+ 40,
96
+ 64
97
+ ],
98
+ "avg_bits": 2.5035157203674316,
99
+ "tile_bit_hist": {
100
+ "2": 1601,
101
+ "3": 696,
102
+ "4": 202,
103
+ "5": 57,
104
+ "6": 3,
105
+ "8": 1
106
+ }
107
+ },
108
+ "model.layers.0.mlp.gate_proj": {
109
+ "out": 9728,
110
+ "in_features": 2560,
111
+ "group_size": 64,
112
+ "groups": 40,
113
+ "grid_shape": [
114
+ 152,
115
+ 40
116
+ ],
117
+ "avg_bits": 2.28092098236084,
118
+ "tile_bit_hist": {
119
+ "2": 4587,
120
+ "3": 1292,
121
+ "4": 187,
122
+ "5": 14
123
+ }
124
+ },
125
+ "model.layers.0.mlp.up_proj": {
126
+ "out": 9728,
127
+ "in_features": 2560,
128
+ "group_size": 64,
129
+ "groups": 40,
130
+ "grid_shape": [
131
+ 152,
132
+ 40
133
+ ],
134
+ "avg_bits": 2.2879934310913086,
135
+ "tile_bit_hist": {
136
+ "2": 4579,
137
+ "3": 1274,
138
+ "4": 204,
139
+ "5": 23
140
+ }
141
+ },
142
+ "model.layers.0.mlp.down_proj": {
143
+ "out": 2560,
144
+ "in_features": 9728,
145
+ "group_size": 64,
146
+ "groups": 152,
147
+ "grid_shape": [
148
+ 40,
149
+ 152
150
+ ],
151
+ "avg_bits": 2.50016450881958,
152
+ "tile_bit_hist": {
153
+ "2": 3691,
154
+ "3": 1838,
155
+ "4": 457,
156
+ "5": 88,
157
+ "6": 5,
158
+ "7": 1
159
+ }
160
+ },
161
+ "model.layers.1.self_attn.q_proj": {
162
+ "out": 4096,
163
+ "in_features": 2560,
164
+ "group_size": 64,
165
+ "groups": 40,
166
+ "grid_shape": [
167
+ 64,
168
+ 40
169
+ ],
170
+ "avg_bits": 2.1195311546325684,
171
+ "tile_bit_hist": {
172
+ "2": 2288,
173
+ "3": 241,
174
+ "4": 28,
175
+ "5": 3
176
+ }
177
+ },
178
+ "model.layers.1.self_attn.k_proj": {
179
+ "out": 1024,
180
+ "in_features": 2560,
181
+ "group_size": 64,
182
+ "groups": 40,
183
+ "grid_shape": [
184
+ 16,
185
+ 40
186
+ ],
187
+ "avg_bits": 2.3453125953674316,
188
+ "tile_bit_hist": {
189
+ "2": 467,
190
+ "3": 129,
191
+ "4": 40,
192
+ "5": 4
193
+ }
194
+ },
195
+ "model.layers.1.self_attn.v_proj": {
196
+ "out": 1024,
197
+ "in_features": 2560,
198
+ "group_size": 64,
199
+ "groups": 40,
200
+ "grid_shape": [
201
+ 16,
202
+ 40
203
+ ],
204
+ "avg_bits": 2.484375,
205
+ "tile_bit_hist": {
206
+ "2": 393,
207
+ "3": 192,
208
+ "4": 47,
209
+ "5": 8
210
+ }
211
+ },
212
+ "model.layers.1.self_attn.o_proj": {
213
+ "out": 2560,
214
+ "in_features": 4096,
215
+ "group_size": 64,
216
+ "groups": 64,
217
+ "grid_shape": [
218
+ 40,
219
+ 64
220
+ ],
221
+ "avg_bits": 2.339062452316284,
222
+ "tile_bit_hist": {
223
+ "2": 1822,
224
+ "3": 622,
225
+ "4": 102,
226
+ "5": 14
227
+ }
228
+ },
229
+ "model.layers.1.mlp.gate_proj": {
230
+ "out": 9728,
231
+ "in_features": 2560,
232
+ "group_size": 64,
233
+ "groups": 40,
234
+ "grid_shape": [
235
+ 152,
236
+ 40
237
+ ],
238
+ "avg_bits": 2.1254935264587402,
239
+ "tile_bit_hist": {
240
+ "2": 5431,
241
+ "3": 545,
242
+ "4": 94,
243
+ "5": 10
244
+ }
245
+ },
246
+ "model.layers.1.mlp.up_proj": {
247
+ "out": 9728,
248
+ "in_features": 2560,
249
+ "group_size": 64,
250
+ "groups": 40,
251
+ "grid_shape": [
252
+ 152,
253
+ 40
254
+ ],
255
+ "avg_bits": 2.1467106342315674,
256
+ "tile_bit_hist": {
257
+ "2": 5323,
258
+ "3": 642,
259
+ "4": 98,
260
+ "5": 14,
261
+ "6": 3
262
+ }
263
+ },
264
+ "model.layers.1.mlp.down_proj": {
265
+ "out": 2560,
266
+ "in_features": 9728,
267
+ "group_size": 64,
268
+ "groups": 152,
269
+ "grid_shape": [
270
+ 40,
271
+ 152
272
+ ],
273
+ "avg_bits": 2.2651314735412598,
274
+ "tile_bit_hist": {
275
+ "2": 4773,
276
+ "3": 1052,
277
+ "4": 212,
278
+ "5": 40,
279
+ "6": 1,
280
+ "8": 2
281
+ }
282
+ },
283
+ "model.layers.2.self_attn.q_proj": {
284
+ "out": 4096,
285
+ "in_features": 2560,
286
+ "group_size": 64,
287
+ "groups": 40,
288
+ "grid_shape": [
289
+ 64,
290
+ 40
291
+ ],
292
+ "avg_bits": 2.190624952316284,
293
+ "tile_bit_hist": {
294
+ "2": 2136,
295
+ "3": 364,
296
+ "4": 56,
297
+ "5": 4
298
+ }
299
+ },
300
+ "model.layers.2.self_attn.k_proj": {
301
+ "out": 1024,
302
+ "in_features": 2560,
303
+ "group_size": 64,
304
+ "groups": 40,
305
+ "grid_shape": [
306
+ 16,
307
+ 40
308
+ ],
309
+ "avg_bits": 2.3265624046325684,
310
+ "tile_bit_hist": {
311
+ "2": 461,
312
+ "3": 152,
313
+ "4": 24,
314
+ "5": 3
315
+ }
316
+ },
317
+ "model.layers.2.self_attn.v_proj": {
318
+ "out": 1024,
319
+ "in_features": 2560,
320
+ "group_size": 64,
321
+ "groups": 40,
322
+ "grid_shape": [
323
+ 16,
324
+ 40
325
+ ],
326
+ "avg_bits": 2.4671874046325684,
327
+ "tile_bit_hist": {
328
+ "2": 404,
329
+ "3": 179,
330
+ "4": 51,
331
+ "5": 6
332
+ }
333
+ },
334
+ "model.layers.2.self_attn.o_proj": {
335
+ "out": 2560,
336
+ "in_features": 4096,
337
+ "group_size": 64,
338
+ "groups": 64,
339
+ "grid_shape": [
340
+ 40,
341
+ 64
342
+ ],
343
+ "avg_bits": 2.3207030296325684,
344
+ "tile_bit_hist": {
345
+ "2": 1855,
346
+ "3": 597,
347
+ "4": 100,
348
+ "5": 8
349
+ }
350
+ },
351
+ "model.layers.2.mlp.gate_proj": {
352
+ "out": 9728,
353
+ "in_features": 2560,
354
+ "group_size": 64,
355
+ "groups": 40,
356
+ "grid_shape": [
357
+ 152,
358
+ 40
359
+ ],
360
+ "avg_bits": 2.19523024559021,
361
+ "tile_bit_hist": {
362
+ "2": 5074,
363
+ "3": 851,
364
+ "4": 133,
365
+ "5": 18,
366
+ "6": 4
367
+ }
368
+ },
369
+ "model.layers.2.mlp.up_proj": {
370
+ "out": 9728,
371
+ "in_features": 2560,
372
+ "group_size": 64,
373
+ "groups": 40,
374
+ "grid_shape": [
375
+ 152,
376
+ 40
377
+ ],
378
+ "avg_bits": 2.210361957550049,
379
+ "tile_bit_hist": {
380
+ "2": 4976,
381
+ "3": 950,
382
+ "4": 135,
383
+ "5": 17,
384
+ "6": 2
385
+ }
386
+ },
387
+ "model.layers.2.mlp.down_proj": {
388
+ "out": 2560,
389
+ "in_features": 9728,
390
+ "group_size": 64,
391
+ "groups": 152,
392
+ "grid_shape": [
393
+ 40,
394
+ 152
395
+ ],
396
+ "avg_bits": 2.268256664276123,
397
+ "tile_bit_hist": {
398
+ "2": 4622,
399
+ "3": 1299,
400
+ "4": 145,
401
+ "5": 14
402
+ }
403
+ },
404
+ "model.layers.3.self_attn.q_proj": {
405
+ "out": 4096,
406
+ "in_features": 2560,
407
+ "group_size": 64,
408
+ "groups": 40,
409
+ "grid_shape": [
410
+ 64,
411
+ 40
412
+ ],
413
+ "avg_bits": 2.192578077316284,
414
+ "tile_bit_hist": {
415
+ "2": 2134,
416
+ "3": 368,
417
+ "4": 50,
418
+ "5": 7,
419
+ "6": 1
420
+ }
421
+ },
422
+ "model.layers.3.self_attn.k_proj": {
423
+ "out": 1024,
424
+ "in_features": 2560,
425
+ "group_size": 64,
426
+ "groups": 40,
427
+ "grid_shape": [
428
+ 16,
429
+ 40
430
+ ],
431
+ "avg_bits": 2.3578124046325684,
432
+ "tile_bit_hist": {
433
+ "2": 452,
434
+ "3": 149,
435
+ "4": 37,
436
+ "5": 2
437
+ }
438
+ },
439
+ "model.layers.3.self_attn.v_proj": {
440
+ "out": 1024,
441
+ "in_features": 2560,
442
+ "group_size": 64,
443
+ "groups": 40,
444
+ "grid_shape": [
445
+ 16,
446
+ 40
447
+ ],
448
+ "avg_bits": 2.4828124046325684,
449
+ "tile_bit_hist": {
450
+ "2": 397,
451
+ "3": 185,
452
+ "4": 51,
453
+ "5": 6,
454
+ "6": 1
455
+ }
456
+ },
457
+ "model.layers.3.self_attn.o_proj": {
458
+ "out": 2560,
459
+ "in_features": 4096,
460
+ "group_size": 64,
461
+ "groups": 64,
462
+ "grid_shape": [
463
+ 40,
464
+ 64
465
+ ],
466
+ "avg_bits": 2.3515625,
467
+ "tile_bit_hist": {
468
+ "2": 1794,
469
+ "3": 640,
470
+ "4": 118,
471
+ "5": 8
472
+ }
473
+ },
474
+ "model.layers.3.mlp.gate_proj": {
475
+ "out": 9728,
476
+ "in_features": 2560,
477
+ "group_size": 64,
478
+ "groups": 40,
479
+ "grid_shape": [
480
+ 152,
481
+ 40
482
+ ],
483
+ "avg_bits": 2.205592155456543,
484
+ "tile_bit_hist": {
485
+ "2": 5033,
486
+ "3": 872,
487
+ "4": 151,
488
+ "5": 22,
489
+ "6": 1,
490
+ "8": 1
491
+ }
492
+ },
493
+ "model.layers.3.mlp.up_proj": {
494
+ "out": 9728,
495
+ "in_features": 2560,
496
+ "group_size": 64,
497
+ "groups": 40,
498
+ "grid_shape": [
499
+ 152,
500
+ 40
501
+ ],
502
+ "avg_bits": 2.208717107772827,
503
+ "tile_bit_hist": {
504
+ "2": 4985,
505
+ "3": 941,
506
+ "4": 136,
507
+ "5": 16,
508
+ "6": 2
509
+ }
510
+ },
511
+ "model.layers.3.mlp.down_proj": {
512
+ "out": 2560,
513
+ "in_features": 9728,
514
+ "group_size": 64,
515
+ "groups": 152,
516
+ "grid_shape": [
517
+ 40,
518
+ 152
519
+ ],
520
+ "avg_bits": 2.388486862182617,
521
+ "tile_bit_hist": {
522
+ "2": 4174,
523
+ "3": 1506,
524
+ "4": 345,
525
+ "5": 54,
526
+ "6": 1
527
+ }
528
+ },
529
+ "model.layers.4.self_attn.q_proj": {
530
+ "out": 4096,
531
+ "in_features": 2560,
532
+ "group_size": 64,
533
+ "groups": 40,
534
+ "grid_shape": [
535
+ 64,
536
+ 40
537
+ ],
538
+ "avg_bits": 2.181640625,
539
+ "tile_bit_hist": {
540
+ "2": 2143,
541
+ "3": 375,
542
+ "4": 36,
543
+ "5": 6
544
+ }
545
+ },
546
+ "model.layers.4.self_attn.k_proj": {
547
+ "out": 1024,
548
+ "in_features": 2560,
549
+ "group_size": 64,
550
+ "groups": 40,
551
+ "grid_shape": [
552
+ 16,
553
+ 40
554
+ ],
555
+ "avg_bits": 2.4046874046325684,
556
+ "tile_bit_hist": {
557
+ "2": 431,
558
+ "3": 163,
559
+ "4": 42,
560
+ "5": 4
561
+ }
562
+ },
563
+ "model.layers.4.self_attn.v_proj": {
564
+ "out": 1024,
565
+ "in_features": 2560,
566
+ "group_size": 64,
567
+ "groups": 40,
568
+ "grid_shape": [
569
+ 16,
570
+ 40
571
+ ],
572
+ "avg_bits": 2.5484375953674316,
573
+ "tile_bit_hist": {
574
+ "2": 376,
575
+ "3": 194,
576
+ "4": 55,
577
+ "5": 13,
578
+ "6": 2
579
+ }
580
+ },
581
+ "model.layers.4.self_attn.o_proj": {
582
+ "out": 2560,
583
+ "in_features": 4096,
584
+ "group_size": 64,
585
+ "groups": 64,
586
+ "grid_shape": [
587
+ 40,
588
+ 64
589
+ ],
590
+ "avg_bits": 2.3335938453674316,
591
+ "tile_bit_hist": {
592
+ "2": 1824,
593
+ "3": 628,
594
+ "4": 98,
595
+ "5": 10
596
+ }
597
+ },
598
+ "model.layers.4.mlp.gate_proj": {
599
+ "out": 9728,
600
+ "in_features": 2560,
601
+ "group_size": 64,
602
+ "groups": 40,
603
+ "grid_shape": [
604
+ 152,
605
+ 40
606
+ ],
607
+ "avg_bits": 2.299506664276123,
608
+ "tile_bit_hist": {
609
+ "2": 4544,
610
+ "3": 1297,
611
+ "4": 198,
612
+ "5": 36,
613
+ "6": 5
614
+ }
615
+ },
616
+ "model.layers.4.mlp.up_proj": {
617
+ "out": 9728,
618
+ "in_features": 2560,
619
+ "group_size": 64,
620
+ "groups": 40,
621
+ "grid_shape": [
622
+ 152,
623
+ 40
624
+ ],
625
+ "avg_bits": 2.325822353363037,
626
+ "tile_bit_hist": {
627
+ "2": 4407,
628
+ "3": 1395,
629
+ "4": 248,
630
+ "5": 30
631
+ }
632
+ },
633
+ "model.layers.4.mlp.down_proj": {
634
+ "out": 2560,
635
+ "in_features": 9728,
636
+ "group_size": 64,
637
+ "groups": 152,
638
+ "grid_shape": [
639
+ 40,
640
+ 152
641
+ ],
642
+ "avg_bits": 2.4932565689086914,
643
+ "tile_bit_hist": {
644
+ "2": 3668,
645
+ "3": 1890,
646
+ "4": 459,
647
+ "5": 61,
648
+ "6": 2
649
+ }
650
+ },
651
+ "model.layers.5.self_attn.q_proj": {
652
+ "out": 4096,
653
+ "in_features": 2560,
654
+ "group_size": 64,
655
+ "groups": 40,
656
+ "grid_shape": [
657
+ 64,
658
+ 40
659
+ ],
660
+ "avg_bits": 2.1753907203674316,
661
+ "tile_bit_hist": {
662
+ "2": 2159,
663
+ "3": 357,
664
+ "4": 40,
665
+ "5": 4
666
+ }
667
+ },
668
+ "model.layers.5.self_attn.k_proj": {
669
+ "out": 1024,
670
+ "in_features": 2560,
671
+ "group_size": 64,
672
+ "groups": 40,
673
+ "grid_shape": [
674
+ 16,
675
+ 40
676
+ ],
677
+ "avg_bits": 2.34375,
678
+ "tile_bit_hist": {
679
+ "2": 460,
680
+ "3": 145,
681
+ "4": 30,
682
+ "5": 5
683
+ }
684
+ },
685
+ "model.layers.5.self_attn.v_proj": {
686
+ "out": 1024,
687
+ "in_features": 2560,
688
+ "group_size": 64,
689
+ "groups": 40,
690
+ "grid_shape": [
691
+ 16,
692
+ 40
693
+ ],
694
+ "avg_bits": 2.53125,
695
+ "tile_bit_hist": {
696
+ "2": 380,
697
+ "3": 196,
698
+ "4": 50,
699
+ "5": 12,
700
+ "6": 2
701
+ }
702
+ },
703
+ "model.layers.5.self_attn.o_proj": {
704
+ "out": 2560,
705
+ "in_features": 4096,
706
+ "group_size": 64,
707
+ "groups": 64,
708
+ "grid_shape": [
709
+ 40,
710
+ 64
711
+ ],
712
+ "avg_bits": 2.338671922683716,
713
+ "tile_bit_hist": {
714
+ "2": 1821,
715
+ "3": 620,
716
+ "4": 110,
717
+ "5": 9
718
+ }
719
+ },
720
+ "model.layers.5.mlp.gate_proj": {
721
+ "out": 9728,
722
+ "in_features": 2560,
723
+ "group_size": 64,
724
+ "groups": 40,
725
+ "grid_shape": [
726
+ 152,
727
+ 40
728
+ ],
729
+ "avg_bits": 2.341118335723877,
730
+ "tile_bit_hist": {
731
+ "2": 4338,
732
+ "3": 1448,
733
+ "4": 258,
734
+ "5": 34,
735
+ "6": 2
736
+ }
737
+ },
738
+ "model.layers.5.mlp.up_proj": {
739
+ "out": 9728,
740
+ "in_features": 2560,
741
+ "group_size": 64,
742
+ "groups": 40,
743
+ "grid_shape": [
744
+ 152,
745
+ 40
746
+ ],
747
+ "avg_bits": 2.4174342155456543,
748
+ "tile_bit_hist": {
749
+ "2": 3993,
750
+ "3": 1698,
751
+ "4": 330,
752
+ "5": 56,
753
+ "6": 3
754
+ }
755
+ },
756
+ "model.layers.5.mlp.down_proj": {
757
+ "out": 2560,
758
+ "in_features": 9728,
759
+ "group_size": 64,
760
+ "groups": 152,
761
+ "grid_shape": [
762
+ 40,
763
+ 152
764
+ ],
765
+ "avg_bits": 2.48421049118042,
766
+ "tile_bit_hist": {
767
+ "2": 3743,
768
+ "3": 1808,
769
+ "4": 456,
770
+ "5": 68,
771
+ "6": 5
772
+ }
773
+ },
774
+ "model.layers.6.self_attn.q_proj": {
775
+ "out": 4096,
776
+ "in_features": 2560,
777
+ "group_size": 64,
778
+ "groups": 40,
779
+ "grid_shape": [
780
+ 64,
781
+ 40
782
+ ],
783
+ "avg_bits": 2.1859374046325684,
784
+ "tile_bit_hist": {
785
+ "2": 2139,
786
+ "3": 374,
787
+ "4": 39,
788
+ "5": 8
789
+ }
790
+ },
791
+ "model.layers.6.self_attn.k_proj": {
792
+ "out": 1024,
793
+ "in_features": 2560,
794
+ "group_size": 64,
795
+ "groups": 40,
796
+ "grid_shape": [
797
+ 16,
798
+ 40
799
+ ],
800
+ "avg_bits": 2.3734374046325684,
801
+ "tile_bit_hist": {
802
+ "2": 441,
803
+ "3": 165,
804
+ "4": 29,
805
+ "5": 4,
806
+ "6": 1
807
+ }
808
+ },
809
+ "model.layers.6.self_attn.v_proj": {
810
+ "out": 1024,
811
+ "in_features": 2560,
812
+ "group_size": 64,
813
+ "groups": 40,
814
+ "grid_shape": [
815
+ 16,
816
+ 40
817
+ ],
818
+ "avg_bits": 2.59375,
819
+ "tile_bit_hist": {
820
+ "2": 362,
821
+ "3": 196,
822
+ "4": 63,
823
+ "5": 18,
824
+ "6": 1
825
+ }
826
+ },
827
+ "model.layers.6.self_attn.o_proj": {
828
+ "out": 2560,
829
+ "in_features": 4096,
830
+ "group_size": 64,
831
+ "groups": 64,
832
+ "grid_shape": [
833
+ 40,
834
+ 64
835
+ ],
836
+ "avg_bits": 2.4117188453674316,
837
+ "tile_bit_hist": {
838
+ "2": 1705,
839
+ "3": 677,
840
+ "4": 158,
841
+ "5": 19,
842
+ "6": 1
843
+ }
844
+ },
845
+ "model.layers.6.mlp.gate_proj": {
846
+ "out": 9728,
847
+ "in_features": 2560,
848
+ "group_size": 64,
849
+ "groups": 40,
850
+ "grid_shape": [
851
+ 152,
852
+ 40
853
+ ],
854
+ "avg_bits": 2.35148024559021,
855
+ "tile_bit_hist": {
856
+ "2": 4290,
857
+ "3": 1474,
858
+ "4": 288,
859
+ "5": 27,
860
+ "8": 1
861
+ }
862
+ },
863
+ "model.layers.6.mlp.up_proj": {
864
+ "out": 9728,
865
+ "in_features": 2560,
866
+ "group_size": 64,
867
+ "groups": 40,
868
+ "grid_shape": [
869
+ 152,
870
+ 40
871
+ ],
872
+ "avg_bits": 2.3809211254119873,
873
+ "tile_bit_hist": {
874
+ "2": 4140,
875
+ "3": 1609,
876
+ "4": 290,
877
+ "5": 37,
878
+ "6": 4
879
+ }
880
+ },
881
+ "model.layers.6.mlp.down_proj": {
882
+ "out": 2560,
883
+ "in_features": 9728,
884
+ "group_size": 64,
885
+ "groups": 152,
886
+ "grid_shape": [
887
+ 40,
888
+ 152
889
+ ],
890
+ "avg_bits": 2.419079065322876,
891
+ "tile_bit_hist": {
892
+ "2": 3981,
893
+ "3": 1717,
894
+ "4": 335,
895
+ "5": 39,
896
+ "6": 2,
897
+ "8": 6
898
+ }
899
+ },
900
+ "model.layers.7.self_attn.q_proj": {
901
+ "out": 4096,
902
+ "in_features": 2560,
903
+ "group_size": 64,
904
+ "groups": 40,
905
+ "grid_shape": [
906
+ 64,
907
+ 40
908
+ ],
909
+ "avg_bits": 2.2027344703674316,
910
+ "tile_bit_hist": {
911
+ "2": 2103,
912
+ "3": 404,
913
+ "4": 44,
914
+ "5": 9
915
+ }
916
+ },
917
+ "model.layers.7.self_attn.k_proj": {
918
+ "out": 1024,
919
+ "in_features": 2560,
920
+ "group_size": 64,
921
+ "groups": 40,
922
+ "grid_shape": [
923
+ 16,
924
+ 40
925
+ ],
926
+ "avg_bits": 2.3453125953674316,
927
+ "tile_bit_hist": {
928
+ "2": 455,
929
+ "3": 153,
930
+ "4": 29,
931
+ "5": 2,
932
+ "6": 1
933
+ }
934
+ },
935
+ "model.layers.7.self_attn.v_proj": {
936
+ "out": 1024,
937
+ "in_features": 2560,
938
+ "group_size": 64,
939
+ "groups": 40,
940
+ "grid_shape": [
941
+ 16,
942
+ 40
943
+ ],
944
+ "avg_bits": 2.495312452316284,
945
+ "tile_bit_hist": {
946
+ "2": 398,
947
+ "3": 180,
948
+ "4": 49,
949
+ "5": 13
950
+ }
951
+ },
952
+ "model.layers.7.self_attn.o_proj": {
953
+ "out": 2560,
954
+ "in_features": 4096,
955
+ "group_size": 64,
956
+ "groups": 64,
957
+ "grid_shape": [
958
+ 40,
959
+ 64
960
+ ],
961
+ "avg_bits": 2.362109422683716,
962
+ "tile_bit_hist": {
963
+ "2": 1796,
964
+ "3": 619,
965
+ "4": 128,
966
+ "5": 16,
967
+ "6": 1
968
+ }
969
+ },
970
+ "model.layers.7.mlp.gate_proj": {
971
+ "out": 9728,
972
+ "in_features": 2560,
973
+ "group_size": 64,
974
+ "groups": 40,
975
+ "grid_shape": [
976
+ 152,
977
+ 40
978
+ ],
979
+ "avg_bits": 2.3340461254119873,
980
+ "tile_bit_hist": {
981
+ "2": 4342,
982
+ "3": 1471,
983
+ "4": 241,
984
+ "5": 26
985
+ }
986
+ },
987
+ "model.layers.7.mlp.up_proj": {
988
+ "out": 9728,
989
+ "in_features": 2560,
990
+ "group_size": 64,
991
+ "groups": 40,
992
+ "grid_shape": [
993
+ 152,
994
+ 40
995
+ ],
996
+ "avg_bits": 2.370394706726074,
997
+ "tile_bit_hist": {
998
+ "2": 4167,
999
+ "3": 1606,
1000
+ "4": 276,
1001
+ "5": 30,
1002
+ "6": 1
1003
+ }
1004
+ },
1005
+ "model.layers.7.mlp.down_proj": {
1006
+ "out": 2560,
1007
+ "in_features": 9728,
1008
+ "group_size": 64,
1009
+ "groups": 152,
1010
+ "grid_shape": [
1011
+ 40,
1012
+ 152
1013
+ ],
1014
+ "avg_bits": 2.42154598236084,
1015
+ "tile_bit_hist": {
1016
+ "2": 3940,
1017
+ "3": 1763,
1018
+ "4": 333,
1019
+ "5": 42,
1020
+ "6": 2
1021
+ }
1022
+ },
1023
+ "model.layers.8.self_attn.q_proj": {
1024
+ "out": 4096,
1025
+ "in_features": 2560,
1026
+ "group_size": 64,
1027
+ "groups": 40,
1028
+ "grid_shape": [
1029
+ 64,
1030
+ 40
1031
+ ],
1032
+ "avg_bits": 2.2105469703674316,
1033
+ "tile_bit_hist": {
1034
+ "2": 2091,
1035
+ "3": 407,
1036
+ "4": 54,
1037
+ "5": 8
1038
+ }
1039
+ },
1040
+ "model.layers.8.self_attn.k_proj": {
1041
+ "out": 1024,
1042
+ "in_features": 2560,
1043
+ "group_size": 64,
1044
+ "groups": 40,
1045
+ "grid_shape": [
1046
+ 16,
1047
+ 40
1048
+ ],
1049
+ "avg_bits": 2.3499999046325684,
1050
+ "tile_bit_hist": {
1051
+ "2": 458,
1052
+ "3": 145,
1053
+ "4": 33,
1054
+ "5": 3,
1055
+ "6": 1
1056
+ }
1057
+ },
1058
+ "model.layers.8.self_attn.v_proj": {
1059
+ "out": 1024,
1060
+ "in_features": 2560,
1061
+ "group_size": 64,
1062
+ "groups": 40,
1063
+ "grid_shape": [
1064
+ 16,
1065
+ 40
1066
+ ],
1067
+ "avg_bits": 2.5562500953674316,
1068
+ "tile_bit_hist": {
1069
+ "2": 364,
1070
+ "3": 206,
1071
+ "4": 61,
1072
+ "5": 8,
1073
+ "6": 1
1074
+ }
1075
+ },
1076
+ "model.layers.8.self_attn.o_proj": {
1077
+ "out": 2560,
1078
+ "in_features": 4096,
1079
+ "group_size": 64,
1080
+ "groups": 64,
1081
+ "grid_shape": [
1082
+ 40,
1083
+ 64
1084
+ ],
1085
+ "avg_bits": 2.3843750953674316,
1086
+ "tile_bit_hist": {
1087
+ "2": 1755,
1088
+ "3": 643,
1089
+ "4": 148,
1090
+ "5": 11,
1091
+ "6": 3
1092
+ }
1093
+ },
1094
+ "model.layers.8.mlp.gate_proj": {
1095
+ "out": 9728,
1096
+ "in_features": 2560,
1097
+ "group_size": 64,
1098
+ "groups": 40,
1099
+ "grid_shape": [
1100
+ 152,
1101
+ 40
1102
+ ],
1103
+ "avg_bits": 2.322697401046753,
1104
+ "tile_bit_hist": {
1105
+ "2": 4413,
1106
+ "3": 1394,
1107
+ "4": 253,
1108
+ "5": 18,
1109
+ "6": 2
1110
+ }
1111
+ },
1112
+ "model.layers.8.mlp.up_proj": {
1113
+ "out": 9728,
1114
+ "in_features": 2560,
1115
+ "group_size": 64,
1116
+ "groups": 40,
1117
+ "grid_shape": [
1118
+ 152,
1119
+ 40
1120
+ ],
1121
+ "avg_bits": 2.387829065322876,
1122
+ "tile_bit_hist": {
1123
+ "2": 4125,
1124
+ "3": 1596,
1125
+ "4": 317,
1126
+ "5": 40,
1127
+ "6": 2
1128
+ }
1129
+ },
1130
+ "model.layers.8.mlp.down_proj": {
1131
+ "out": 2560,
1132
+ "in_features": 9728,
1133
+ "group_size": 64,
1134
+ "groups": 152,
1135
+ "grid_shape": [
1136
+ 40,
1137
+ 152
1138
+ ],
1139
+ "avg_bits": 2.4175987243652344,
1140
+ "tile_bit_hist": {
1141
+ "2": 3991,
1142
+ "3": 1683,
1143
+ "4": 363,
1144
+ "5": 42,
1145
+ "6": 1
1146
+ }
1147
+ },
1148
+ "model.layers.9.self_attn.q_proj": {
1149
+ "out": 4096,
1150
+ "in_features": 2560,
1151
+ "group_size": 64,
1152
+ "groups": 40,
1153
+ "grid_shape": [
1154
+ 64,
1155
+ 40
1156
+ ],
1157
+ "avg_bits": 2.177734375,
1158
+ "tile_bit_hist": {
1159
+ "2": 2169,
1160
+ "3": 332,
1161
+ "4": 55,
1162
+ "5": 3,
1163
+ "6": 1
1164
+ }
1165
+ },
1166
+ "model.layers.9.self_attn.k_proj": {
1167
+ "out": 1024,
1168
+ "in_features": 2560,
1169
+ "group_size": 64,
1170
+ "groups": 40,
1171
+ "grid_shape": [
1172
+ 16,
1173
+ 40
1174
+ ],
1175
+ "avg_bits": 2.3671875,
1176
+ "tile_bit_hist": {
1177
+ "2": 445,
1178
+ "3": 164,
1179
+ "4": 23,
1180
+ "5": 7,
1181
+ "6": 1
1182
+ }
1183
+ },
1184
+ "model.layers.9.self_attn.v_proj": {
1185
+ "out": 1024,
1186
+ "in_features": 2560,
1187
+ "group_size": 64,
1188
+ "groups": 40,
1189
+ "grid_shape": [
1190
+ 16,
1191
+ 40
1192
+ ],
1193
+ "avg_bits": 2.453125,
1194
+ "tile_bit_hist": {
1195
+ "2": 409,
1196
+ "3": 179,
1197
+ "4": 45,
1198
+ "5": 7
1199
+ }
1200
+ },
1201
+ "model.layers.9.self_attn.o_proj": {
1202
+ "out": 2560,
1203
+ "in_features": 4096,
1204
+ "group_size": 64,
1205
+ "groups": 64,
1206
+ "grid_shape": [
1207
+ 40,
1208
+ 64
1209
+ ],
1210
+ "avg_bits": 2.303906202316284,
1211
+ "tile_bit_hist": {
1212
+ "2": 1900,
1213
+ "3": 547,
1214
+ "4": 108,
1215
+ "5": 5
1216
+ }
1217
+ },
1218
+ "model.layers.9.mlp.gate_proj": {
1219
+ "out": 9728,
1220
+ "in_features": 2560,
1221
+ "group_size": 64,
1222
+ "groups": 40,
1223
+ "grid_shape": [
1224
+ 152,
1225
+ 40
1226
+ ],
1227
+ "avg_bits": 2.309539556503296,
1228
+ "tile_bit_hist": {
1229
+ "2": 4467,
1230
+ "3": 1367,
1231
+ "4": 223,
1232
+ "5": 23
1233
+ }
1234
+ },
1235
+ "model.layers.9.mlp.up_proj": {
1236
+ "out": 9728,
1237
+ "in_features": 2560,
1238
+ "group_size": 64,
1239
+ "groups": 40,
1240
+ "grid_shape": [
1241
+ 152,
1242
+ 40
1243
+ ],
1244
+ "avg_bits": 2.4126644134521484,
1245
+ "tile_bit_hist": {
1246
+ "2": 4004,
1247
+ "3": 1675,
1248
+ "4": 370,
1249
+ "5": 30,
1250
+ "6": 1
1251
+ }
1252
+ },
1253
+ "model.layers.9.mlp.down_proj": {
1254
+ "out": 2560,
1255
+ "in_features": 9728,
1256
+ "group_size": 64,
1257
+ "groups": 152,
1258
+ "grid_shape": [
1259
+ 40,
1260
+ 152
1261
+ ],
1262
+ "avg_bits": 2.419572353363037,
1263
+ "tile_bit_hist": {
1264
+ "2": 3976,
1265
+ "3": 1708,
1266
+ "4": 348,
1267
+ "5": 45,
1268
+ "6": 3
1269
+ }
1270
+ },
1271
+ "model.layers.10.self_attn.q_proj": {
1272
+ "out": 4096,
1273
+ "in_features": 2560,
1274
+ "group_size": 64,
1275
+ "groups": 40,
1276
+ "grid_shape": [
1277
+ 64,
1278
+ 40
1279
+ ],
1280
+ "avg_bits": 2.189453125,
1281
+ "tile_bit_hist": {
1282
+ "2": 2135,
1283
+ "3": 373,
1284
+ "4": 44,
1285
+ "5": 8
1286
+ }
1287
+ },
1288
+ "model.layers.10.self_attn.k_proj": {
1289
+ "out": 1024,
1290
+ "in_features": 2560,
1291
+ "group_size": 64,
1292
+ "groups": 40,
1293
+ "grid_shape": [
1294
+ 16,
1295
+ 40
1296
+ ],
1297
+ "avg_bits": 2.301562547683716,
1298
+ "tile_bit_hist": {
1299
+ "2": 476,
1300
+ "3": 138,
1301
+ "4": 24,
1302
+ "5": 1,
1303
+ "6": 1
1304
+ }
1305
+ },
1306
+ "model.layers.10.self_attn.v_proj": {
1307
+ "out": 1024,
1308
+ "in_features": 2560,
1309
+ "group_size": 64,
1310
+ "groups": 40,
1311
+ "grid_shape": [
1312
+ 16,
1313
+ 40
1314
+ ],
1315
+ "avg_bits": 2.5796875953674316,
1316
+ "tile_bit_hist": {
1317
+ "2": 359,
1318
+ "3": 203,
1319
+ "4": 67,
1320
+ "5": 10,
1321
+ "6": 1
1322
+ }
1323
+ },
1324
+ "model.layers.10.self_attn.o_proj": {
1325
+ "out": 2560,
1326
+ "in_features": 4096,
1327
+ "group_size": 64,
1328
+ "groups": 64,
1329
+ "grid_shape": [
1330
+ 40,
1331
+ 64
1332
+ ],
1333
+ "avg_bits": 2.389453172683716,
1334
+ "tile_bit_hist": {
1335
+ "2": 1740,
1336
+ "3": 661,
1337
+ "4": 142,
1338
+ "5": 16,
1339
+ "6": 1
1340
+ }
1341
+ },
1342
+ "model.layers.10.mlp.gate_proj": {
1343
+ "out": 9728,
1344
+ "in_features": 2560,
1345
+ "group_size": 64,
1346
+ "groups": 40,
1347
+ "grid_shape": [
1348
+ 152,
1349
+ 40
1350
+ ],
1351
+ "avg_bits": 2.2929277420043945,
1352
+ "tile_bit_hist": {
1353
+ "2": 4538,
1354
+ "3": 1323,
1355
+ "4": 201,
1356
+ "5": 16,
1357
+ "6": 2
1358
+ }
1359
+ },
1360
+ "model.layers.10.mlp.up_proj": {
1361
+ "out": 9728,
1362
+ "in_features": 2560,
1363
+ "group_size": 64,
1364
+ "groups": 40,
1365
+ "grid_shape": [
1366
+ 152,
1367
+ 40
1368
+ ],
1369
+ "avg_bits": 2.3916118144989014,
1370
+ "tile_bit_hist": {
1371
+ "2": 4083,
1372
+ "3": 1646,
1373
+ "4": 320,
1374
+ "5": 29,
1375
+ "6": 2
1376
+ }
1377
+ },
1378
+ "model.layers.10.mlp.down_proj": {
1379
+ "out": 2560,
1380
+ "in_features": 9728,
1381
+ "group_size": 64,
1382
+ "groups": 152,
1383
+ "grid_shape": [
1384
+ 40,
1385
+ 152
1386
+ ],
1387
+ "avg_bits": 2.442269802093506,
1388
+ "tile_bit_hist": {
1389
+ "2": 3861,
1390
+ "3": 1805,
1391
+ "4": 362,
1392
+ "5": 48,
1393
+ "6": 4
1394
+ }
1395
+ },
1396
+ "model.layers.11.self_attn.q_proj": {
1397
+ "out": 4096,
1398
+ "in_features": 2560,
1399
+ "group_size": 64,
1400
+ "groups": 40,
1401
+ "grid_shape": [
1402
+ 64,
1403
+ 40
1404
+ ],
1405
+ "avg_bits": 2.19140625,
1406
+ "tile_bit_hist": {
1407
+ "2": 2135,
1408
+ "3": 370,
1409
+ "4": 45,
1410
+ "5": 10
1411
+ }
1412
+ },
1413
+ "model.layers.11.self_attn.k_proj": {
1414
+ "out": 1024,
1415
+ "in_features": 2560,
1416
+ "group_size": 64,
1417
+ "groups": 40,
1418
+ "grid_shape": [
1419
+ 16,
1420
+ 40
1421
+ ],
1422
+ "avg_bits": 2.328125,
1423
+ "tile_bit_hist": {
1424
+ "2": 460,
1425
+ "3": 154,
1426
+ "4": 22,
1427
+ "5": 4
1428
+ }
1429
+ },
1430
+ "model.layers.11.self_attn.v_proj": {
1431
+ "out": 1024,
1432
+ "in_features": 2560,
1433
+ "group_size": 64,
1434
+ "groups": 40,
1435
+ "grid_shape": [
1436
+ 16,
1437
+ 40
1438
+ ],
1439
+ "avg_bits": 2.5078125,
1440
+ "tile_bit_hist": {
1441
+ "2": 389,
1442
+ "3": 186,
1443
+ "4": 56,
1444
+ "5": 9
1445
+ }
1446
+ },
1447
+ "model.layers.11.self_attn.o_proj": {
1448
+ "out": 2560,
1449
+ "in_features": 4096,
1450
+ "group_size": 64,
1451
+ "groups": 64,
1452
+ "grid_shape": [
1453
+ 40,
1454
+ 64
1455
+ ],
1456
+ "avg_bits": 2.3453125953674316,
1457
+ "tile_bit_hist": {
1458
+ "2": 1812,
1459
+ "3": 629,
1460
+ "4": 104,
1461
+ "5": 13,
1462
+ "6": 2
1463
+ }
1464
+ },
1465
+ "model.layers.11.mlp.gate_proj": {
1466
+ "out": 9728,
1467
+ "in_features": 2560,
1468
+ "group_size": 64,
1469
+ "groups": 40,
1470
+ "grid_shape": [
1471
+ 152,
1472
+ 40
1473
+ ],
1474
+ "avg_bits": 2.2960526943206787,
1475
+ "tile_bit_hist": {
1476
+ "2": 4518,
1477
+ "3": 1344,
1478
+ "4": 200,
1479
+ "5": 16,
1480
+ "6": 2
1481
+ }
1482
+ },
1483
+ "model.layers.11.mlp.up_proj": {
1484
+ "out": 9728,
1485
+ "in_features": 2560,
1486
+ "group_size": 64,
1487
+ "groups": 40,
1488
+ "grid_shape": [
1489
+ 152,
1490
+ 40
1491
+ ],
1492
+ "avg_bits": 2.37467098236084,
1493
+ "tile_bit_hist": {
1494
+ "2": 4151,
1495
+ "3": 1601,
1496
+ "4": 307,
1497
+ "5": 21
1498
+ }
1499
+ },
1500
+ "model.layers.11.mlp.down_proj": {
1501
+ "out": 2560,
1502
+ "in_features": 9728,
1503
+ "group_size": 64,
1504
+ "groups": 152,
1505
+ "grid_shape": [
1506
+ 40,
1507
+ 152
1508
+ ],
1509
+ "avg_bits": 2.4047696590423584,
1510
+ "tile_bit_hist": {
1511
+ "2": 4028,
1512
+ "3": 1686,
1513
+ "4": 330,
1514
+ "5": 31,
1515
+ "6": 4,
1516
+ "8": 1
1517
+ }
1518
+ },
1519
+ "model.layers.12.self_attn.q_proj": {
1520
+ "out": 4096,
1521
+ "in_features": 2560,
1522
+ "group_size": 64,
1523
+ "groups": 40,
1524
+ "grid_shape": [
1525
+ 64,
1526
+ 40
1527
+ ],
1528
+ "avg_bits": 2.151171922683716,
1529
+ "tile_bit_hist": {
1530
+ "2": 2217,
1531
+ "3": 304,
1532
+ "4": 34,
1533
+ "5": 5
1534
+ }
1535
+ },
1536
+ "model.layers.12.self_attn.k_proj": {
1537
+ "out": 1024,
1538
+ "in_features": 2560,
1539
+ "group_size": 64,
1540
+ "groups": 40,
1541
+ "grid_shape": [
1542
+ 16,
1543
+ 40
1544
+ ],
1545
+ "avg_bits": 2.293750047683716,
1546
+ "tile_bit_hist": {
1547
+ "2": 476,
1548
+ "3": 143,
1549
+ "4": 18,
1550
+ "5": 3
1551
+ }
1552
+ },
1553
+ "model.layers.12.self_attn.v_proj": {
1554
+ "out": 1024,
1555
+ "in_features": 2560,
1556
+ "group_size": 64,
1557
+ "groups": 40,
1558
+ "grid_shape": [
1559
+ 16,
1560
+ 40
1561
+ ],
1562
+ "avg_bits": 2.5484375953674316,
1563
+ "tile_bit_hist": {
1564
+ "2": 368,
1565
+ "3": 200,
1566
+ "4": 65,
1567
+ "5": 7
1568
+ }
1569
+ },
1570
+ "model.layers.12.self_attn.o_proj": {
1571
+ "out": 2560,
1572
+ "in_features": 4096,
1573
+ "group_size": 64,
1574
+ "groups": 64,
1575
+ "grid_shape": [
1576
+ 40,
1577
+ 64
1578
+ ],
1579
+ "avg_bits": 2.360156297683716,
1580
+ "tile_bit_hist": {
1581
+ "2": 1796,
1582
+ "3": 628,
1583
+ "4": 116,
1584
+ "5": 18,
1585
+ "6": 2
1586
+ }
1587
+ },
1588
+ "model.layers.12.mlp.gate_proj": {
1589
+ "out": 9728,
1590
+ "in_features": 2560,
1591
+ "group_size": 64,
1592
+ "groups": 40,
1593
+ "grid_shape": [
1594
+ 152,
1595
+ 40
1596
+ ],
1597
+ "avg_bits": 2.2822368144989014,
1598
+ "tile_bit_hist": {
1599
+ "2": 4575,
1600
+ "3": 1317,
1601
+ "4": 165,
1602
+ "5": 23
1603
+ }
1604
+ },
1605
+ "model.layers.12.mlp.up_proj": {
1606
+ "out": 9728,
1607
+ "in_features": 2560,
1608
+ "group_size": 64,
1609
+ "groups": 40,
1610
+ "grid_shape": [
1611
+ 152,
1612
+ 40
1613
+ ],
1614
+ "avg_bits": 2.3552632331848145,
1615
+ "tile_bit_hist": {
1616
+ "2": 4239,
1617
+ "3": 1556,
1618
+ "4": 253,
1619
+ "5": 30,
1620
+ "6": 2
1621
+ }
1622
+ },
1623
+ "model.layers.12.mlp.down_proj": {
1624
+ "out": 2560,
1625
+ "in_features": 9728,
1626
+ "group_size": 64,
1627
+ "groups": 152,
1628
+ "grid_shape": [
1629
+ 40,
1630
+ 152
1631
+ ],
1632
+ "avg_bits": 2.3601973056793213,
1633
+ "tile_bit_hist": {
1634
+ "2": 4219,
1635
+ "3": 1563,
1636
+ "4": 268,
1637
+ "5": 29,
1638
+ "6": 1
1639
+ }
1640
+ },
1641
+ "model.layers.13.self_attn.q_proj": {
1642
+ "out": 4096,
1643
+ "in_features": 2560,
1644
+ "group_size": 64,
1645
+ "groups": 40,
1646
+ "grid_shape": [
1647
+ 64,
1648
+ 40
1649
+ ],
1650
+ "avg_bits": 2.1937499046325684,
1651
+ "tile_bit_hist": {
1652
+ "2": 2113,
1653
+ "3": 402,
1654
+ "4": 41,
1655
+ "5": 4
1656
+ }
1657
+ },
1658
+ "model.layers.13.self_attn.k_proj": {
1659
+ "out": 1024,
1660
+ "in_features": 2560,
1661
+ "group_size": 64,
1662
+ "groups": 40,
1663
+ "grid_shape": [
1664
+ 16,
1665
+ 40
1666
+ ],
1667
+ "avg_bits": 2.3828125,
1668
+ "tile_bit_hist": {
1669
+ "2": 442,
1670
+ "3": 162,
1671
+ "4": 27,
1672
+ "5": 7,
1673
+ "6": 2
1674
+ }
1675
+ },
1676
+ "model.layers.13.self_attn.v_proj": {
1677
+ "out": 1024,
1678
+ "in_features": 2560,
1679
+ "group_size": 64,
1680
+ "groups": 40,
1681
+ "grid_shape": [
1682
+ 16,
1683
+ 40
1684
+ ],
1685
+ "avg_bits": 2.4937500953674316,
1686
+ "tile_bit_hist": {
1687
+ "2": 402,
1688
+ "3": 171,
1689
+ "4": 58,
1690
+ "5": 7,
1691
+ "6": 2
1692
+ }
1693
+ },
1694
+ "model.layers.13.self_attn.o_proj": {
1695
+ "out": 2560,
1696
+ "in_features": 4096,
1697
+ "group_size": 64,
1698
+ "groups": 64,
1699
+ "grid_shape": [
1700
+ 40,
1701
+ 64
1702
+ ],
1703
+ "avg_bits": 2.326953172683716,
1704
+ "tile_bit_hist": {
1705
+ "2": 1868,
1706
+ "3": 566,
1707
+ "4": 107,
1708
+ "5": 19
1709
+ }
1710
+ },
1711
+ "model.layers.13.mlp.gate_proj": {
1712
+ "out": 9728,
1713
+ "in_features": 2560,
1714
+ "group_size": 64,
1715
+ "groups": 40,
1716
+ "grid_shape": [
1717
+ 152,
1718
+ 40
1719
+ ],
1720
+ "avg_bits": 2.229605197906494,
1721
+ "tile_bit_hist": {
1722
+ "2": 4820,
1723
+ "3": 1134,
1724
+ "4": 117,
1725
+ "5": 8,
1726
+ "6": 1
1727
+ }
1728
+ },
1729
+ "model.layers.13.mlp.up_proj": {
1730
+ "out": 9728,
1731
+ "in_features": 2560,
1732
+ "group_size": 64,
1733
+ "groups": 40,
1734
+ "grid_shape": [
1735
+ 152,
1736
+ 40
1737
+ ],
1738
+ "avg_bits": 2.3269736766815186,
1739
+ "tile_bit_hist": {
1740
+ "2": 4359,
1741
+ "3": 1478,
1742
+ "4": 219,
1743
+ "5": 24
1744
+ }
1745
+ },
1746
+ "model.layers.13.mlp.down_proj": {
1747
+ "out": 2560,
1748
+ "in_features": 9728,
1749
+ "group_size": 64,
1750
+ "groups": 152,
1751
+ "grid_shape": [
1752
+ 40,
1753
+ 152
1754
+ ],
1755
+ "avg_bits": 2.3317434787750244,
1756
+ "tile_bit_hist": {
1757
+ "2": 4317,
1758
+ "3": 1523,
1759
+ "4": 226,
1760
+ "5": 14
1761
+ }
1762
+ },
1763
+ "model.layers.14.self_attn.q_proj": {
1764
+ "out": 4096,
1765
+ "in_features": 2560,
1766
+ "group_size": 64,
1767
+ "groups": 40,
1768
+ "grid_shape": [
1769
+ 64,
1770
+ 40
1771
+ ],
1772
+ "avg_bits": 2.2125000953674316,
1773
+ "tile_bit_hist": {
1774
+ "2": 2086,
1775
+ "3": 414,
1776
+ "4": 50,
1777
+ "5": 10
1778
+ }
1779
+ },
1780
+ "model.layers.14.self_attn.k_proj": {
1781
+ "out": 1024,
1782
+ "in_features": 2560,
1783
+ "group_size": 64,
1784
+ "groups": 40,
1785
+ "grid_shape": [
1786
+ 16,
1787
+ 40
1788
+ ],
1789
+ "avg_bits": 2.3499999046325684,
1790
+ "tile_bit_hist": {
1791
+ "2": 462,
1792
+ "3": 137,
1793
+ "4": 36,
1794
+ "5": 5
1795
+ }
1796
+ },
1797
+ "model.layers.14.self_attn.v_proj": {
1798
+ "out": 1024,
1799
+ "in_features": 2560,
1800
+ "group_size": 64,
1801
+ "groups": 40,
1802
+ "grid_shape": [
1803
+ 16,
1804
+ 40
1805
+ ],
1806
+ "avg_bits": 2.596874952316284,
1807
+ "tile_bit_hist": {
1808
+ "2": 344,
1809
+ "3": 225,
1810
+ "4": 59,
1811
+ "5": 11,
1812
+ "8": 1
1813
+ }
1814
+ },
1815
+ "model.layers.14.self_attn.o_proj": {
1816
+ "out": 2560,
1817
+ "in_features": 4096,
1818
+ "group_size": 64,
1819
+ "groups": 64,
1820
+ "grid_shape": [
1821
+ 40,
1822
+ 64
1823
+ ],
1824
+ "avg_bits": 2.4203124046325684,
1825
+ "tile_bit_hist": {
1826
+ "2": 1717,
1827
+ "3": 644,
1828
+ "4": 169,
1829
+ "5": 26,
1830
+ "6": 4
1831
+ }
1832
+ },
1833
+ "model.layers.14.mlp.gate_proj": {
1834
+ "out": 9728,
1835
+ "in_features": 2560,
1836
+ "group_size": 64,
1837
+ "groups": 40,
1838
+ "grid_shape": [
1839
+ 152,
1840
+ 40
1841
+ ],
1842
+ "avg_bits": 2.1866776943206787,
1843
+ "tile_bit_hist": {
1844
+ "2": 5044,
1845
+ "3": 945,
1846
+ "4": 83,
1847
+ "5": 8
1848
+ }
1849
+ },
1850
+ "model.layers.14.mlp.up_proj": {
1851
+ "out": 9728,
1852
+ "in_features": 2560,
1853
+ "group_size": 64,
1854
+ "groups": 40,
1855
+ "grid_shape": [
1856
+ 152,
1857
+ 40
1858
+ ],
1859
+ "avg_bits": 2.2983553409576416,
1860
+ "tile_bit_hist": {
1861
+ "2": 4504,
1862
+ "3": 1362,
1863
+ "4": 191,
1864
+ "5": 22,
1865
+ "6": 1
1866
+ }
1867
+ },
1868
+ "model.layers.14.mlp.down_proj": {
1869
+ "out": 2560,
1870
+ "in_features": 9728,
1871
+ "group_size": 64,
1872
+ "groups": 152,
1873
+ "grid_shape": [
1874
+ 40,
1875
+ 152
1876
+ ],
1877
+ "avg_bits": 2.3039474487304688,
1878
+ "tile_bit_hist": {
1879
+ "2": 4465,
1880
+ "3": 1407,
1881
+ "4": 184,
1882
+ "5": 23,
1883
+ "6": 1
1884
+ }
1885
+ },
1886
+ "model.layers.15.self_attn.q_proj": {
1887
+ "out": 4096,
1888
+ "in_features": 2560,
1889
+ "group_size": 64,
1890
+ "groups": 40,
1891
+ "grid_shape": [
1892
+ 64,
1893
+ 40
1894
+ ],
1895
+ "avg_bits": 2.189453125,
1896
+ "tile_bit_hist": {
1897
+ "2": 2137,
1898
+ "3": 367,
1899
+ "4": 50,
1900
+ "5": 6
1901
+ }
1902
+ },
1903
+ "model.layers.15.self_attn.k_proj": {
1904
+ "out": 1024,
1905
+ "in_features": 2560,
1906
+ "group_size": 64,
1907
+ "groups": 40,
1908
+ "grid_shape": [
1909
+ 16,
1910
+ 40
1911
+ ],
1912
+ "avg_bits": 2.34375,
1913
+ "tile_bit_hist": {
1914
+ "2": 460,
1915
+ "3": 146,
1916
+ "4": 29,
1917
+ "5": 4,
1918
+ "6": 1
1919
+ }
1920
+ },
1921
+ "model.layers.15.self_attn.v_proj": {
1922
+ "out": 1024,
1923
+ "in_features": 2560,
1924
+ "group_size": 64,
1925
+ "groups": 40,
1926
+ "grid_shape": [
1927
+ 16,
1928
+ 40
1929
+ ],
1930
+ "avg_bits": 2.535937547683716,
1931
+ "tile_bit_hist": {
1932
+ "2": 364,
1933
+ "3": 216,
1934
+ "4": 54,
1935
+ "5": 5,
1936
+ "6": 1
1937
+ }
1938
+ },
1939
+ "model.layers.15.self_attn.o_proj": {
1940
+ "out": 2560,
1941
+ "in_features": 4096,
1942
+ "group_size": 64,
1943
+ "groups": 64,
1944
+ "grid_shape": [
1945
+ 40,
1946
+ 64
1947
+ ],
1948
+ "avg_bits": 2.403515577316284,
1949
+ "tile_bit_hist": {
1950
+ "2": 1745,
1951
+ "3": 634,
1952
+ "4": 147,
1953
+ "5": 31,
1954
+ "6": 3
1955
+ }
1956
+ },
1957
+ "model.layers.15.mlp.gate_proj": {
1958
+ "out": 9728,
1959
+ "in_features": 2560,
1960
+ "group_size": 64,
1961
+ "groups": 40,
1962
+ "grid_shape": [
1963
+ 152,
1964
+ 40
1965
+ ],
1966
+ "avg_bits": 2.1661183834075928,
1967
+ "tile_bit_hist": {
1968
+ "2": 5146,
1969
+ "3": 861,
1970
+ "4": 70,
1971
+ "5": 3
1972
+ }
1973
+ },
1974
+ "model.layers.15.mlp.up_proj": {
1975
+ "out": 9728,
1976
+ "in_features": 2560,
1977
+ "group_size": 64,
1978
+ "groups": 40,
1979
+ "grid_shape": [
1980
+ 152,
1981
+ 40
1982
+ ],
1983
+ "avg_bits": 2.242763042449951,
1984
+ "tile_bit_hist": {
1985
+ "2": 4749,
1986
+ "3": 1197,
1987
+ "4": 123,
1988
+ "5": 11
1989
+ }
1990
+ },
1991
+ "model.layers.15.mlp.down_proj": {
1992
+ "out": 2560,
1993
+ "in_features": 9728,
1994
+ "group_size": 64,
1995
+ "groups": 152,
1996
+ "grid_shape": [
1997
+ 40,
1998
+ 152
1999
+ ],
2000
+ "avg_bits": 2.2559211254119873,
2001
+ "tile_bit_hist": {
2002
+ "2": 4686,
2003
+ "3": 1246,
2004
+ "4": 134,
2005
+ "5": 14
2006
+ }
2007
+ },
2008
+ "model.layers.16.self_attn.q_proj": {
2009
+ "out": 4096,
2010
+ "in_features": 2560,
2011
+ "group_size": 64,
2012
+ "groups": 40,
2013
+ "grid_shape": [
2014
+ 64,
2015
+ 40
2016
+ ],
2017
+ "avg_bits": 2.143749952316284,
2018
+ "tile_bit_hist": {
2019
+ "2": 2221,
2020
+ "3": 310,
2021
+ "4": 29
2022
+ }
2023
+ },
2024
+ "model.layers.16.self_attn.k_proj": {
2025
+ "out": 1024,
2026
+ "in_features": 2560,
2027
+ "group_size": 64,
2028
+ "groups": 40,
2029
+ "grid_shape": [
2030
+ 16,
2031
+ 40
2032
+ ],
2033
+ "avg_bits": 2.3656249046325684,
2034
+ "tile_bit_hist": {
2035
+ "2": 442,
2036
+ "3": 166,
2037
+ "4": 28,
2038
+ "5": 4
2039
+ }
2040
+ },
2041
+ "model.layers.16.self_attn.v_proj": {
2042
+ "out": 1024,
2043
+ "in_features": 2560,
2044
+ "group_size": 64,
2045
+ "groups": 40,
2046
+ "grid_shape": [
2047
+ 16,
2048
+ 40
2049
+ ],
2050
+ "avg_bits": 2.5999999046325684,
2051
+ "tile_bit_hist": {
2052
+ "2": 344,
2053
+ "3": 219,
2054
+ "4": 66,
2055
+ "5": 11
2056
+ }
2057
+ },
2058
+ "model.layers.16.self_attn.o_proj": {
2059
+ "out": 2560,
2060
+ "in_features": 4096,
2061
+ "group_size": 64,
2062
+ "groups": 64,
2063
+ "grid_shape": [
2064
+ 40,
2065
+ 64
2066
+ ],
2067
+ "avg_bits": 2.364062547683716,
2068
+ "tile_bit_hist": {
2069
+ "2": 1798,
2070
+ "3": 611,
2071
+ "4": 132,
2072
+ "5": 19
2073
+ }
2074
+ },
2075
+ "model.layers.16.mlp.gate_proj": {
2076
+ "out": 9728,
2077
+ "in_features": 2560,
2078
+ "group_size": 64,
2079
+ "groups": 40,
2080
+ "grid_shape": [
2081
+ 152,
2082
+ 40
2083
+ ],
2084
+ "avg_bits": 2.1425986289978027,
2085
+ "tile_bit_hist": {
2086
+ "2": 5279,
2087
+ "3": 739,
2088
+ "4": 58,
2089
+ "5": 4
2090
+ }
2091
+ },
2092
+ "model.layers.16.mlp.up_proj": {
2093
+ "out": 9728,
2094
+ "in_features": 2560,
2095
+ "group_size": 64,
2096
+ "groups": 40,
2097
+ "grid_shape": [
2098
+ 152,
2099
+ 40
2100
+ ],
2101
+ "avg_bits": 2.24967098236084,
2102
+ "tile_bit_hist": {
2103
+ "2": 4722,
2104
+ "3": 1209,
2105
+ "4": 140,
2106
+ "5": 7,
2107
+ "6": 2
2108
+ }
2109
+ },
2110
+ "model.layers.16.mlp.down_proj": {
2111
+ "out": 2560,
2112
+ "in_features": 9728,
2113
+ "group_size": 64,
2114
+ "groups": 152,
2115
+ "grid_shape": [
2116
+ 40,
2117
+ 152
2118
+ ],
2119
+ "avg_bits": 2.247697353363037,
2120
+ "tile_bit_hist": {
2121
+ "2": 4715,
2122
+ "3": 1233,
2123
+ "4": 123,
2124
+ "5": 9
2125
+ }
2126
+ },
2127
+ "model.layers.17.self_attn.q_proj": {
2128
+ "out": 4096,
2129
+ "in_features": 2560,
2130
+ "group_size": 64,
2131
+ "groups": 40,
2132
+ "grid_shape": [
2133
+ 64,
2134
+ 40
2135
+ ],
2136
+ "avg_bits": 2.163281202316284,
2137
+ "tile_bit_hist": {
2138
+ "2": 2175,
2139
+ "3": 353,
2140
+ "4": 31,
2141
+ "5": 1
2142
+ }
2143
+ },
2144
+ "model.layers.17.self_attn.k_proj": {
2145
+ "out": 1024,
2146
+ "in_features": 2560,
2147
+ "group_size": 64,
2148
+ "groups": 40,
2149
+ "grid_shape": [
2150
+ 16,
2151
+ 40
2152
+ ],
2153
+ "avg_bits": 2.3499999046325684,
2154
+ "tile_bit_hist": {
2155
+ "2": 463,
2156
+ "3": 140,
2157
+ "4": 28,
2158
+ "5": 8,
2159
+ "6": 1
2160
+ }
2161
+ },
2162
+ "model.layers.17.self_attn.v_proj": {
2163
+ "out": 1024,
2164
+ "in_features": 2560,
2165
+ "group_size": 64,
2166
+ "groups": 40,
2167
+ "grid_shape": [
2168
+ 16,
2169
+ 40
2170
+ ],
2171
+ "avg_bits": 2.5062499046325684,
2172
+ "tile_bit_hist": {
2173
+ "2": 380,
2174
+ "3": 206,
2175
+ "4": 45,
2176
+ "5": 8,
2177
+ "6": 1
2178
+ }
2179
+ },
2180
+ "model.layers.17.self_attn.o_proj": {
2181
+ "out": 2560,
2182
+ "in_features": 4096,
2183
+ "group_size": 64,
2184
+ "groups": 64,
2185
+ "grid_shape": [
2186
+ 40,
2187
+ 64
2188
+ ],
2189
+ "avg_bits": 2.3695311546325684,
2190
+ "tile_bit_hist": {
2191
+ "2": 1801,
2192
+ "3": 595,
2193
+ "4": 142,
2194
+ "5": 21,
2195
+ "6": 1
2196
+ }
2197
+ },
2198
+ "model.layers.17.mlp.gate_proj": {
2199
+ "out": 9728,
2200
+ "in_features": 2560,
2201
+ "group_size": 64,
2202
+ "groups": 40,
2203
+ "grid_shape": [
2204
+ 152,
2205
+ 40
2206
+ ],
2207
+ "avg_bits": 2.138486862182617,
2208
+ "tile_bit_hist": {
2209
+ "2": 5309,
2210
+ "3": 706,
2211
+ "4": 60,
2212
+ "5": 4,
2213
+ "6": 1
2214
+ }
2215
+ },
2216
+ "model.layers.17.mlp.up_proj": {
2217
+ "out": 9728,
2218
+ "in_features": 2560,
2219
+ "group_size": 64,
2220
+ "groups": 40,
2221
+ "grid_shape": [
2222
+ 152,
2223
+ 40
2224
+ ],
2225
+ "avg_bits": 2.2286183834075928,
2226
+ "tile_bit_hist": {
2227
+ "2": 4827,
2228
+ "3": 1126,
2229
+ "4": 117,
2230
+ "5": 10
2231
+ }
2232
+ },
2233
+ "model.layers.17.mlp.down_proj": {
2234
+ "out": 2560,
2235
+ "in_features": 9728,
2236
+ "group_size": 64,
2237
+ "groups": 152,
2238
+ "grid_shape": [
2239
+ 40,
2240
+ 152
2241
+ ],
2242
+ "avg_bits": 2.2338814735412598,
2243
+ "tile_bit_hist": {
2244
+ "2": 4806,
2245
+ "3": 1143,
2246
+ "4": 118,
2247
+ "5": 9,
2248
+ "6": 4
2249
+ }
2250
+ },
2251
+ "model.layers.18.self_attn.q_proj": {
2252
+ "out": 4096,
2253
+ "in_features": 2560,
2254
+ "group_size": 64,
2255
+ "groups": 40,
2256
+ "grid_shape": [
2257
+ 64,
2258
+ 40
2259
+ ],
2260
+ "avg_bits": 2.1640625,
2261
+ "tile_bit_hist": {
2262
+ "2": 2196,
2263
+ "3": 312,
2264
+ "4": 48,
2265
+ "5": 4
2266
+ }
2267
+ },
2268
+ "model.layers.18.self_attn.k_proj": {
2269
+ "out": 1024,
2270
+ "in_features": 2560,
2271
+ "group_size": 64,
2272
+ "groups": 40,
2273
+ "grid_shape": [
2274
+ 16,
2275
+ 40
2276
+ ],
2277
+ "avg_bits": 2.323437452316284,
2278
+ "tile_bit_hist": {
2279
+ "2": 467,
2280
+ "3": 144,
2281
+ "4": 24,
2282
+ "5": 5
2283
+ }
2284
+ },
2285
+ "model.layers.18.self_attn.v_proj": {
2286
+ "out": 1024,
2287
+ "in_features": 2560,
2288
+ "group_size": 64,
2289
+ "groups": 40,
2290
+ "grid_shape": [
2291
+ 16,
2292
+ 40
2293
+ ],
2294
+ "avg_bits": 2.5218749046325684,
2295
+ "tile_bit_hist": {
2296
+ "2": 367,
2297
+ "3": 217,
2298
+ "4": 51,
2299
+ "5": 5
2300
+ }
2301
+ },
2302
+ "model.layers.18.self_attn.o_proj": {
2303
+ "out": 2560,
2304
+ "in_features": 4096,
2305
+ "group_size": 64,
2306
+ "groups": 64,
2307
+ "grid_shape": [
2308
+ 40,
2309
+ 64
2310
+ ],
2311
+ "avg_bits": 2.3773436546325684,
2312
+ "tile_bit_hist": {
2313
+ "2": 1786,
2314
+ "3": 610,
2315
+ "4": 137,
2316
+ "5": 26,
2317
+ "6": 1
2318
+ }
2319
+ },
2320
+ "model.layers.18.mlp.gate_proj": {
2321
+ "out": 9728,
2322
+ "in_features": 2560,
2323
+ "group_size": 64,
2324
+ "groups": 40,
2325
+ "grid_shape": [
2326
+ 152,
2327
+ 40
2328
+ ],
2329
+ "avg_bits": 2.1312499046325684,
2330
+ "tile_bit_hist": {
2331
+ "2": 5333,
2332
+ "3": 699,
2333
+ "4": 45,
2334
+ "5": 3
2335
+ }
2336
+ },
2337
+ "model.layers.18.mlp.up_proj": {
2338
+ "out": 9728,
2339
+ "in_features": 2560,
2340
+ "group_size": 64,
2341
+ "groups": 40,
2342
+ "grid_shape": [
2343
+ 152,
2344
+ 40
2345
+ ],
2346
+ "avg_bits": 2.2175986766815186,
2347
+ "tile_bit_hist": {
2348
+ "2": 4886,
2349
+ "3": 1077,
2350
+ "4": 105,
2351
+ "5": 12
2352
+ }
2353
+ },
2354
+ "model.layers.18.mlp.down_proj": {
2355
+ "out": 2560,
2356
+ "in_features": 9728,
2357
+ "group_size": 64,
2358
+ "groups": 152,
2359
+ "grid_shape": [
2360
+ 40,
2361
+ 152
2362
+ ],
2363
+ "avg_bits": 2.2248356342315674,
2364
+ "tile_bit_hist": {
2365
+ "2": 4852,
2366
+ "3": 1102,
2367
+ "4": 114,
2368
+ "5": 11,
2369
+ "6": 1
2370
+ }
2371
+ },
2372
+ "model.layers.19.self_attn.q_proj": {
2373
+ "out": 4096,
2374
+ "in_features": 2560,
2375
+ "group_size": 64,
2376
+ "groups": 40,
2377
+ "grid_shape": [
2378
+ 64,
2379
+ 40
2380
+ ],
2381
+ "avg_bits": 2.161328077316284,
2382
+ "tile_bit_hist": {
2383
+ "2": 2196,
2384
+ "3": 320,
2385
+ "4": 39,
2386
+ "5": 5
2387
+ }
2388
+ },
2389
+ "model.layers.19.self_attn.k_proj": {
2390
+ "out": 1024,
2391
+ "in_features": 2560,
2392
+ "group_size": 64,
2393
+ "groups": 40,
2394
+ "grid_shape": [
2395
+ 16,
2396
+ 40
2397
+ ],
2398
+ "avg_bits": 2.3609375953674316,
2399
+ "tile_bit_hist": {
2400
+ "2": 443,
2401
+ "3": 165,
2402
+ "4": 30,
2403
+ "5": 2
2404
+ }
2405
+ },
2406
+ "model.layers.19.self_attn.v_proj": {
2407
+ "out": 1024,
2408
+ "in_features": 2560,
2409
+ "group_size": 64,
2410
+ "groups": 40,
2411
+ "grid_shape": [
2412
+ 16,
2413
+ 40
2414
+ ],
2415
+ "avg_bits": 2.5718750953674316,
2416
+ "tile_bit_hist": {
2417
+ "2": 350,
2418
+ "3": 222,
2419
+ "4": 60,
2420
+ "5": 8
2421
+ }
2422
+ },
2423
+ "model.layers.19.self_attn.o_proj": {
2424
+ "out": 2560,
2425
+ "in_features": 4096,
2426
+ "group_size": 64,
2427
+ "groups": 64,
2428
+ "grid_shape": [
2429
+ 40,
2430
+ 64
2431
+ ],
2432
+ "avg_bits": 2.3695311546325684,
2433
+ "tile_bit_hist": {
2434
+ "2": 1801,
2435
+ "3": 596,
2436
+ "4": 142,
2437
+ "5": 18,
2438
+ "6": 3
2439
+ }
2440
+ },
2441
+ "model.layers.19.mlp.gate_proj": {
2442
+ "out": 9728,
2443
+ "in_features": 2560,
2444
+ "group_size": 64,
2445
+ "groups": 40,
2446
+ "grid_shape": [
2447
+ 152,
2448
+ 40
2449
+ ],
2450
+ "avg_bits": 2.12532901763916,
2451
+ "tile_bit_hist": {
2452
+ "2": 5371,
2453
+ "3": 659,
2454
+ "4": 47,
2455
+ "5": 3
2456
+ }
2457
+ },
2458
+ "model.layers.19.mlp.up_proj": {
2459
+ "out": 9728,
2460
+ "in_features": 2560,
2461
+ "group_size": 64,
2462
+ "groups": 40,
2463
+ "grid_shape": [
2464
+ 152,
2465
+ 40
2466
+ ],
2467
+ "avg_bits": 2.2042763233184814,
2468
+ "tile_bit_hist": {
2469
+ "2": 4943,
2470
+ "3": 1039,
2471
+ "4": 91,
2472
+ "5": 7
2473
+ }
2474
+ },
2475
+ "model.layers.19.mlp.down_proj": {
2476
+ "out": 2560,
2477
+ "in_features": 9728,
2478
+ "group_size": 64,
2479
+ "groups": 152,
2480
+ "grid_shape": [
2481
+ 40,
2482
+ 152
2483
+ ],
2484
+ "avg_bits": 2.2284538745880127,
2485
+ "tile_bit_hist": {
2486
+ "2": 4824,
2487
+ "3": 1140,
2488
+ "4": 99,
2489
+ "5": 17
2490
+ }
2491
+ },
2492
+ "model.layers.20.self_attn.q_proj": {
2493
+ "out": 4096,
2494
+ "in_features": 2560,
2495
+ "group_size": 64,
2496
+ "groups": 40,
2497
+ "grid_shape": [
2498
+ 64,
2499
+ 40
2500
+ ],
2501
+ "avg_bits": 2.1468749046325684,
2502
+ "tile_bit_hist": {
2503
+ "2": 2222,
2504
+ "3": 306,
2505
+ "4": 27,
2506
+ "5": 4,
2507
+ "6": 1
2508
+ }
2509
+ },
2510
+ "model.layers.20.self_attn.k_proj": {
2511
+ "out": 1024,
2512
+ "in_features": 2560,
2513
+ "group_size": 64,
2514
+ "groups": 40,
2515
+ "grid_shape": [
2516
+ 16,
2517
+ 40
2518
+ ],
2519
+ "avg_bits": 2.393749952316284,
2520
+ "tile_bit_hist": {
2521
+ "2": 423,
2522
+ "3": 185,
2523
+ "4": 29,
2524
+ "5": 3
2525
+ }
2526
+ },
2527
+ "model.layers.20.self_attn.v_proj": {
2528
+ "out": 1024,
2529
+ "in_features": 2560,
2530
+ "group_size": 64,
2531
+ "groups": 40,
2532
+ "grid_shape": [
2533
+ 16,
2534
+ 40
2535
+ ],
2536
+ "avg_bits": 2.528125047683716,
2537
+ "tile_bit_hist": {
2538
+ "2": 373,
2539
+ "3": 209,
2540
+ "4": 45,
2541
+ "5": 13
2542
+ }
2543
+ },
2544
+ "model.layers.20.self_attn.o_proj": {
2545
+ "out": 2560,
2546
+ "in_features": 4096,
2547
+ "group_size": 64,
2548
+ "groups": 64,
2549
+ "grid_shape": [
2550
+ 40,
2551
+ 64
2552
+ ],
2553
+ "avg_bits": 2.3187499046325684,
2554
+ "tile_bit_hist": {
2555
+ "2": 1890,
2556
+ "3": 539,
2557
+ "4": 116,
2558
+ "5": 15
2559
+ }
2560
+ },
2561
+ "model.layers.20.mlp.gate_proj": {
2562
+ "out": 9728,
2563
+ "in_features": 2560,
2564
+ "group_size": 64,
2565
+ "groups": 40,
2566
+ "grid_shape": [
2567
+ 152,
2568
+ 40
2569
+ ],
2570
+ "avg_bits": 2.112170934677124,
2571
+ "tile_bit_hist": {
2572
+ "2": 5442,
2573
+ "3": 597,
2574
+ "4": 38,
2575
+ "5": 3
2576
+ }
2577
+ },
2578
+ "model.layers.20.mlp.up_proj": {
2579
+ "out": 9728,
2580
+ "in_features": 2560,
2581
+ "group_size": 64,
2582
+ "groups": 40,
2583
+ "grid_shape": [
2584
+ 152,
2585
+ 40
2586
+ ],
2587
+ "avg_bits": 2.2148027420043945,
2588
+ "tile_bit_hist": {
2589
+ "2": 4894,
2590
+ "3": 1073,
2591
+ "4": 106,
2592
+ "5": 7
2593
+ }
2594
+ },
2595
+ "model.layers.20.mlp.down_proj": {
2596
+ "out": 2560,
2597
+ "in_features": 9728,
2598
+ "group_size": 64,
2599
+ "groups": 152,
2600
+ "grid_shape": [
2601
+ 40,
2602
+ 152
2603
+ ],
2604
+ "avg_bits": 2.2154605388641357,
2605
+ "tile_bit_hist": {
2606
+ "2": 4880,
2607
+ "3": 1095,
2608
+ "4": 100,
2609
+ "5": 5
2610
+ }
2611
+ },
2612
+ "model.layers.21.self_attn.q_proj": {
2613
+ "out": 4096,
2614
+ "in_features": 2560,
2615
+ "group_size": 64,
2616
+ "groups": 40,
2617
+ "grid_shape": [
2618
+ 64,
2619
+ 40
2620
+ ],
2621
+ "avg_bits": 2.14453125,
2622
+ "tile_bit_hist": {
2623
+ "2": 2231,
2624
+ "3": 294,
2625
+ "4": 29,
2626
+ "5": 6
2627
+ }
2628
+ },
2629
+ "model.layers.21.self_attn.k_proj": {
2630
+ "out": 1024,
2631
+ "in_features": 2560,
2632
+ "group_size": 64,
2633
+ "groups": 40,
2634
+ "grid_shape": [
2635
+ 16,
2636
+ 40
2637
+ ],
2638
+ "avg_bits": 2.348437547683716,
2639
+ "tile_bit_hist": {
2640
+ "2": 460,
2641
+ "3": 145,
2642
+ "4": 27,
2643
+ "5": 8
2644
+ }
2645
+ },
2646
+ "model.layers.21.self_attn.v_proj": {
2647
+ "out": 1024,
2648
+ "in_features": 2560,
2649
+ "group_size": 64,
2650
+ "groups": 40,
2651
+ "grid_shape": [
2652
+ 16,
2653
+ 40
2654
+ ],
2655
+ "avg_bits": 2.5140624046325684,
2656
+ "tile_bit_hist": {
2657
+ "2": 375,
2658
+ "3": 208,
2659
+ "4": 50,
2660
+ "5": 7
2661
+ }
2662
+ },
2663
+ "model.layers.21.self_attn.o_proj": {
2664
+ "out": 2560,
2665
+ "in_features": 4096,
2666
+ "group_size": 64,
2667
+ "groups": 64,
2668
+ "grid_shape": [
2669
+ 40,
2670
+ 64
2671
+ ],
2672
+ "avg_bits": 2.323437452316284,
2673
+ "tile_bit_hist": {
2674
+ "2": 1876,
2675
+ "3": 558,
2676
+ "4": 109,
2677
+ "5": 16,
2678
+ "6": 1
2679
+ }
2680
+ },
2681
+ "model.layers.21.mlp.gate_proj": {
2682
+ "out": 9728,
2683
+ "in_features": 2560,
2684
+ "group_size": 64,
2685
+ "groups": 40,
2686
+ "grid_shape": [
2687
+ 152,
2688
+ 40
2689
+ ],
2690
+ "avg_bits": 2.1162829399108887,
2691
+ "tile_bit_hist": {
2692
+ "2": 5431,
2693
+ "3": 600,
2694
+ "4": 40,
2695
+ "5": 9
2696
+ }
2697
+ },
2698
+ "model.layers.21.mlp.up_proj": {
2699
+ "out": 9728,
2700
+ "in_features": 2560,
2701
+ "group_size": 64,
2702
+ "groups": 40,
2703
+ "grid_shape": [
2704
+ 152,
2705
+ 40
2706
+ ],
2707
+ "avg_bits": 2.210361957550049,
2708
+ "tile_bit_hist": {
2709
+ "2": 4906,
2710
+ "3": 1081,
2711
+ "4": 82,
2712
+ "5": 10,
2713
+ "6": 1
2714
+ }
2715
+ },
2716
+ "model.layers.21.mlp.down_proj": {
2717
+ "out": 2560,
2718
+ "in_features": 9728,
2719
+ "group_size": 64,
2720
+ "groups": 152,
2721
+ "grid_shape": [
2722
+ 40,
2723
+ 152
2724
+ ],
2725
+ "avg_bits": 2.2404606342315674,
2726
+ "tile_bit_hist": {
2727
+ "2": 4792,
2728
+ "3": 1129,
2729
+ "4": 144,
2730
+ "5": 15
2731
+ }
2732
+ },
2733
+ "model.layers.22.self_attn.q_proj": {
2734
+ "out": 4096,
2735
+ "in_features": 2560,
2736
+ "group_size": 64,
2737
+ "groups": 40,
2738
+ "grid_shape": [
2739
+ 64,
2740
+ 40
2741
+ ],
2742
+ "avg_bits": 2.142578125,
2743
+ "tile_bit_hist": {
2744
+ "2": 2245,
2745
+ "3": 272,
2746
+ "4": 36,
2747
+ "5": 7
2748
+ }
2749
+ },
2750
+ "model.layers.22.self_attn.k_proj": {
2751
+ "out": 1024,
2752
+ "in_features": 2560,
2753
+ "group_size": 64,
2754
+ "groups": 40,
2755
+ "grid_shape": [
2756
+ 16,
2757
+ 40
2758
+ ],
2759
+ "avg_bits": 2.390625,
2760
+ "tile_bit_hist": {
2761
+ "2": 443,
2762
+ "3": 146,
2763
+ "4": 49,
2764
+ "5": 2
2765
+ }
2766
+ },
2767
+ "model.layers.22.self_attn.v_proj": {
2768
+ "out": 1024,
2769
+ "in_features": 2560,
2770
+ "group_size": 64,
2771
+ "groups": 40,
2772
+ "grid_shape": [
2773
+ 16,
2774
+ 40
2775
+ ],
2776
+ "avg_bits": 2.6640625,
2777
+ "tile_bit_hist": {
2778
+ "2": 315,
2779
+ "3": 241,
2780
+ "4": 68,
2781
+ "5": 16
2782
+ }
2783
+ },
2784
+ "model.layers.22.self_attn.o_proj": {
2785
+ "out": 2560,
2786
+ "in_features": 4096,
2787
+ "group_size": 64,
2788
+ "groups": 64,
2789
+ "grid_shape": [
2790
+ 40,
2791
+ 64
2792
+ ],
2793
+ "avg_bits": 2.3707032203674316,
2794
+ "tile_bit_hist": {
2795
+ "2": 1788,
2796
+ "3": 618,
2797
+ "4": 132,
2798
+ "5": 21,
2799
+ "6": 1
2800
+ }
2801
+ },
2802
+ "model.layers.22.mlp.gate_proj": {
2803
+ "out": 9728,
2804
+ "in_features": 2560,
2805
+ "group_size": 64,
2806
+ "groups": 40,
2807
+ "grid_shape": [
2808
+ 152,
2809
+ 40
2810
+ ],
2811
+ "avg_bits": 2.1386513710021973,
2812
+ "tile_bit_hist": {
2813
+ "2": 5311,
2814
+ "3": 711,
2815
+ "4": 46,
2816
+ "5": 10,
2817
+ "6": 1,
2818
+ "8": 1
2819
+ }
2820
+ },
2821
+ "model.layers.22.mlp.up_proj": {
2822
+ "out": 9728,
2823
+ "in_features": 2560,
2824
+ "group_size": 64,
2825
+ "groups": 40,
2826
+ "grid_shape": [
2827
+ 152,
2828
+ 40
2829
+ ],
2830
+ "avg_bits": 2.2167763710021973,
2831
+ "tile_bit_hist": {
2832
+ "2": 4886,
2833
+ "3": 1074,
2834
+ "4": 116,
2835
+ "5": 4
2836
+ }
2837
+ },
2838
+ "model.layers.22.mlp.down_proj": {
2839
+ "out": 2560,
2840
+ "in_features": 9728,
2841
+ "group_size": 64,
2842
+ "groups": 152,
2843
+ "grid_shape": [
2844
+ 40,
2845
+ 152
2846
+ ],
2847
+ "avg_bits": 2.28914475440979,
2848
+ "tile_bit_hist": {
2849
+ "2": 4545,
2850
+ "3": 1334,
2851
+ "4": 180,
2852
+ "5": 20,
2853
+ "6": 1
2854
+ }
2855
+ },
2856
+ "model.layers.23.self_attn.q_proj": {
2857
+ "out": 4096,
2858
+ "in_features": 2560,
2859
+ "group_size": 64,
2860
+ "groups": 40,
2861
+ "grid_shape": [
2862
+ 64,
2863
+ 40
2864
+ ],
2865
+ "avg_bits": 2.1441407203674316,
2866
+ "tile_bit_hist": {
2867
+ "2": 2237,
2868
+ "3": 281,
2869
+ "4": 38,
2870
+ "5": 4
2871
+ }
2872
+ },
2873
+ "model.layers.23.self_attn.k_proj": {
2874
+ "out": 1024,
2875
+ "in_features": 2560,
2876
+ "group_size": 64,
2877
+ "groups": 40,
2878
+ "grid_shape": [
2879
+ 16,
2880
+ 40
2881
+ ],
2882
+ "avg_bits": 2.426562547683716,
2883
+ "tile_bit_hist": {
2884
+ "2": 426,
2885
+ "3": 164,
2886
+ "4": 43,
2887
+ "5": 5,
2888
+ "6": 2
2889
+ }
2890
+ },
2891
+ "model.layers.23.self_attn.v_proj": {
2892
+ "out": 1024,
2893
+ "in_features": 2560,
2894
+ "group_size": 64,
2895
+ "groups": 40,
2896
+ "grid_shape": [
2897
+ 16,
2898
+ 40
2899
+ ],
2900
+ "avg_bits": 2.6468749046325684,
2901
+ "tile_bit_hist": {
2902
+ "2": 335,
2903
+ "3": 221,
2904
+ "4": 60,
2905
+ "5": 23,
2906
+ "6": 1
2907
+ }
2908
+ },
2909
+ "model.layers.23.self_attn.o_proj": {
2910
+ "out": 2560,
2911
+ "in_features": 4096,
2912
+ "group_size": 64,
2913
+ "groups": 64,
2914
+ "grid_shape": [
2915
+ 40,
2916
+ 64
2917
+ ],
2918
+ "avg_bits": 2.3285155296325684,
2919
+ "tile_bit_hist": {
2920
+ "2": 1882,
2921
+ "3": 538,
2922
+ "4": 118,
2923
+ "5": 21,
2924
+ "6": 1
2925
+ }
2926
+ },
2927
+ "model.layers.23.mlp.gate_proj": {
2928
+ "out": 9728,
2929
+ "in_features": 2560,
2930
+ "group_size": 64,
2931
+ "groups": 40,
2932
+ "grid_shape": [
2933
+ 152,
2934
+ 40
2935
+ ],
2936
+ "avg_bits": 2.13305926322937,
2937
+ "tile_bit_hist": {
2938
+ "2": 5362,
2939
+ "3": 638,
2940
+ "4": 70,
2941
+ "5": 9,
2942
+ "6": 1
2943
+ }
2944
+ },
2945
+ "model.layers.23.mlp.up_proj": {
2946
+ "out": 9728,
2947
+ "in_features": 2560,
2948
+ "group_size": 64,
2949
+ "groups": 40,
2950
+ "grid_shape": [
2951
+ 152,
2952
+ 40
2953
+ ],
2954
+ "avg_bits": 2.1986842155456543,
2955
+ "tile_bit_hist": {
2956
+ "2": 4991,
2957
+ "3": 980,
2958
+ "4": 99,
2959
+ "5": 10
2960
+ }
2961
+ },
2962
+ "model.layers.23.mlp.down_proj": {
2963
+ "out": 2560,
2964
+ "in_features": 9728,
2965
+ "group_size": 64,
2966
+ "groups": 152,
2967
+ "grid_shape": [
2968
+ 40,
2969
+ 152
2970
+ ],
2971
+ "avg_bits": 2.2797696590423584,
2972
+ "tile_bit_hist": {
2973
+ "2": 4582,
2974
+ "3": 1311,
2975
+ "4": 173,
2976
+ "5": 12,
2977
+ "6": 2
2978
+ }
2979
+ },
2980
+ "model.layers.24.self_attn.q_proj": {
2981
+ "out": 4096,
2982
+ "in_features": 2560,
2983
+ "group_size": 64,
2984
+ "groups": 40,
2985
+ "grid_shape": [
2986
+ 64,
2987
+ 40
2988
+ ],
2989
+ "avg_bits": 2.166796922683716,
2990
+ "tile_bit_hist": {
2991
+ "2": 2187,
2992
+ "3": 324,
2993
+ "4": 44,
2994
+ "5": 5
2995
+ }
2996
+ },
2997
+ "model.layers.24.self_attn.k_proj": {
2998
+ "out": 1024,
2999
+ "in_features": 2560,
3000
+ "group_size": 64,
3001
+ "groups": 40,
3002
+ "grid_shape": [
3003
+ 16,
3004
+ 40
3005
+ ],
3006
+ "avg_bits": 2.409374952316284,
3007
+ "tile_bit_hist": {
3008
+ "2": 429,
3009
+ "3": 169,
3010
+ "4": 34,
3011
+ "5": 7,
3012
+ "6": 1
3013
+ }
3014
+ },
3015
+ "model.layers.24.self_attn.v_proj": {
3016
+ "out": 1024,
3017
+ "in_features": 2560,
3018
+ "group_size": 64,
3019
+ "groups": 40,
3020
+ "grid_shape": [
3021
+ 16,
3022
+ 40
3023
+ ],
3024
+ "avg_bits": 2.5687499046325684,
3025
+ "tile_bit_hist": {
3026
+ "2": 360,
3027
+ "3": 207,
3028
+ "4": 64,
3029
+ "5": 7,
3030
+ "6": 2
3031
+ }
3032
+ },
3033
+ "model.layers.24.self_attn.o_proj": {
3034
+ "out": 2560,
3035
+ "in_features": 4096,
3036
+ "group_size": 64,
3037
+ "groups": 64,
3038
+ "grid_shape": [
3039
+ 40,
3040
+ 64
3041
+ ],
3042
+ "avg_bits": 2.311328172683716,
3043
+ "tile_bit_hist": {
3044
+ "2": 1896,
3045
+ "3": 545,
3046
+ "4": 106,
3047
+ "5": 12,
3048
+ "6": 1
3049
+ }
3050
+ },
3051
+ "model.layers.24.mlp.gate_proj": {
3052
+ "out": 9728,
3053
+ "in_features": 2560,
3054
+ "group_size": 64,
3055
+ "groups": 40,
3056
+ "grid_shape": [
3057
+ 152,
3058
+ 40
3059
+ ],
3060
+ "avg_bits": 2.121875047683716,
3061
+ "tile_bit_hist": {
3062
+ "2": 5405,
3063
+ "3": 612,
3064
+ "4": 60,
3065
+ "5": 3
3066
+ }
3067
+ },
3068
+ "model.layers.24.mlp.up_proj": {
3069
+ "out": 9728,
3070
+ "in_features": 2560,
3071
+ "group_size": 64,
3072
+ "groups": 40,
3073
+ "grid_shape": [
3074
+ 152,
3075
+ 40
3076
+ ],
3077
+ "avg_bits": 2.1758222579956055,
3078
+ "tile_bit_hist": {
3079
+ "2": 5125,
3080
+ "3": 853,
3081
+ "4": 90,
3082
+ "5": 12
3083
+ }
3084
+ },
3085
+ "model.layers.24.mlp.down_proj": {
3086
+ "out": 2560,
3087
+ "in_features": 9728,
3088
+ "group_size": 64,
3089
+ "groups": 152,
3090
+ "grid_shape": [
3091
+ 40,
3092
+ 152
3093
+ ],
3094
+ "avg_bits": 2.3032894134521484,
3095
+ "tile_bit_hist": {
3096
+ "2": 4465,
3097
+ "3": 1404,
3098
+ "4": 193,
3099
+ "5": 18
3100
+ }
3101
+ },
3102
+ "model.layers.25.self_attn.q_proj": {
3103
+ "out": 4096,
3104
+ "in_features": 2560,
3105
+ "group_size": 64,
3106
+ "groups": 40,
3107
+ "grid_shape": [
3108
+ 64,
3109
+ 40
3110
+ ],
3111
+ "avg_bits": 2.0894532203674316,
3112
+ "tile_bit_hist": {
3113
+ "2": 2359,
3114
+ "3": 176,
3115
+ "4": 23,
3116
+ "5": 1,
3117
+ "6": 1
3118
+ }
3119
+ },
3120
+ "model.layers.25.self_attn.k_proj": {
3121
+ "out": 1024,
3122
+ "in_features": 2560,
3123
+ "group_size": 64,
3124
+ "groups": 40,
3125
+ "grid_shape": [
3126
+ 16,
3127
+ 40
3128
+ ],
3129
+ "avg_bits": 2.237499952316284,
3130
+ "tile_bit_hist": {
3131
+ "2": 517,
3132
+ "3": 96,
3133
+ "4": 25,
3134
+ "5": 2
3135
+ }
3136
+ },
3137
+ "model.layers.25.self_attn.v_proj": {
3138
+ "out": 1024,
3139
+ "in_features": 2560,
3140
+ "group_size": 64,
3141
+ "groups": 40,
3142
+ "grid_shape": [
3143
+ 16,
3144
+ 40
3145
+ ],
3146
+ "avg_bits": 2.410937547683716,
3147
+ "tile_bit_hist": {
3148
+ "2": 436,
3149
+ "3": 156,
3150
+ "4": 38,
3151
+ "5": 9,
3152
+ "6": 1
3153
+ }
3154
+ },
3155
+ "model.layers.25.self_attn.o_proj": {
3156
+ "out": 2560,
3157
+ "in_features": 4096,
3158
+ "group_size": 64,
3159
+ "groups": 64,
3160
+ "grid_shape": [
3161
+ 40,
3162
+ 64
3163
+ ],
3164
+ "avg_bits": 2.181640625,
3165
+ "tile_bit_hist": {
3166
+ "2": 2153,
3167
+ "3": 353,
3168
+ "4": 50,
3169
+ "5": 4
3170
+ }
3171
+ },
3172
+ "model.layers.25.mlp.gate_proj": {
3173
+ "out": 9728,
3174
+ "in_features": 2560,
3175
+ "group_size": 64,
3176
+ "groups": 40,
3177
+ "grid_shape": [
3178
+ 152,
3179
+ 40
3180
+ ],
3181
+ "avg_bits": 2.1291117668151855,
3182
+ "tile_bit_hist": {
3183
+ "2": 5369,
3184
+ "3": 644,
3185
+ "4": 61,
3186
+ "5": 5,
3187
+ "6": 1
3188
+ }
3189
+ },
3190
+ "model.layers.25.mlp.up_proj": {
3191
+ "out": 9728,
3192
+ "in_features": 2560,
3193
+ "group_size": 64,
3194
+ "groups": 40,
3195
+ "grid_shape": [
3196
+ 152,
3197
+ 40
3198
+ ],
3199
+ "avg_bits": 2.1702301502227783,
3200
+ "tile_bit_hist": {
3201
+ "2": 5144,
3202
+ "3": 851,
3203
+ "4": 73,
3204
+ "5": 10,
3205
+ "6": 2
3206
+ }
3207
+ },
3208
+ "model.layers.25.mlp.down_proj": {
3209
+ "out": 2560,
3210
+ "in_features": 9728,
3211
+ "group_size": 64,
3212
+ "groups": 152,
3213
+ "grid_shape": [
3214
+ 40,
3215
+ 152
3216
+ ],
3217
+ "avg_bits": 2.2661185264587402,
3218
+ "tile_bit_hist": {
3219
+ "2": 4618,
3220
+ "3": 1312,
3221
+ "4": 144,
3222
+ "5": 6
3223
+ }
3224
+ },
3225
+ "model.layers.26.self_attn.q_proj": {
3226
+ "out": 4096,
3227
+ "in_features": 2560,
3228
+ "group_size": 64,
3229
+ "groups": 40,
3230
+ "grid_shape": [
3231
+ 64,
3232
+ 40
3233
+ ],
3234
+ "avg_bits": 2.0687499046325684,
3235
+ "tile_bit_hist": {
3236
+ "2": 2399,
3237
+ "3": 147,
3238
+ "4": 13,
3239
+ "5": 1
3240
+ }
3241
+ },
3242
+ "model.layers.26.self_attn.k_proj": {
3243
+ "out": 1024,
3244
+ "in_features": 2560,
3245
+ "group_size": 64,
3246
+ "groups": 40,
3247
+ "grid_shape": [
3248
+ 16,
3249
+ 40
3250
+ ],
3251
+ "avg_bits": 2.2578125,
3252
+ "tile_bit_hist": {
3253
+ "2": 502,
3254
+ "3": 116,
3255
+ "4": 17,
3256
+ "5": 5
3257
+ }
3258
+ },
3259
+ "model.layers.26.self_attn.v_proj": {
3260
+ "out": 1024,
3261
+ "in_features": 2560,
3262
+ "group_size": 64,
3263
+ "groups": 40,
3264
+ "grid_shape": [
3265
+ 16,
3266
+ 40
3267
+ ],
3268
+ "avg_bits": 2.34375,
3269
+ "tile_bit_hist": {
3270
+ "2": 455,
3271
+ "3": 150,
3272
+ "4": 35
3273
+ }
3274
+ },
3275
+ "model.layers.26.self_attn.o_proj": {
3276
+ "out": 2560,
3277
+ "in_features": 4096,
3278
+ "group_size": 64,
3279
+ "groups": 64,
3280
+ "grid_shape": [
3281
+ 40,
3282
+ 64
3283
+ ],
3284
+ "avg_bits": 2.150390625,
3285
+ "tile_bit_hist": {
3286
+ "2": 2208,
3287
+ "3": 323,
3288
+ "4": 25,
3289
+ "5": 4
3290
+ }
3291
+ },
3292
+ "model.layers.26.mlp.gate_proj": {
3293
+ "out": 9728,
3294
+ "in_features": 2560,
3295
+ "group_size": 64,
3296
+ "groups": 40,
3297
+ "grid_shape": [
3298
+ 152,
3299
+ 40
3300
+ ],
3301
+ "avg_bits": 2.1348683834075928,
3302
+ "tile_bit_hist": {
3303
+ "2": 5343,
3304
+ "3": 664,
3305
+ "4": 67,
3306
+ "5": 4,
3307
+ "6": 1,
3308
+ "8": 1
3309
+ }
3310
+ },
3311
+ "model.layers.26.mlp.up_proj": {
3312
+ "out": 9728,
3313
+ "in_features": 2560,
3314
+ "group_size": 64,
3315
+ "groups": 40,
3316
+ "grid_shape": [
3317
+ 152,
3318
+ 40
3319
+ ],
3320
+ "avg_bits": 2.153947353363037,
3321
+ "tile_bit_hist": {
3322
+ "2": 5228,
3323
+ "3": 777,
3324
+ "4": 68,
3325
+ "5": 5,
3326
+ "6": 2
3327
+ }
3328
+ },
3329
+ "model.layers.26.mlp.down_proj": {
3330
+ "out": 2560,
3331
+ "in_features": 9728,
3332
+ "group_size": 64,
3333
+ "groups": 152,
3334
+ "grid_shape": [
3335
+ 40,
3336
+ 152
3337
+ ],
3338
+ "avg_bits": 2.25016450881958,
3339
+ "tile_bit_hist": {
3340
+ "2": 4720,
3341
+ "3": 1216,
3342
+ "4": 127,
3343
+ "5": 17
3344
+ }
3345
+ },
3346
+ "model.layers.27.self_attn.q_proj": {
3347
+ "out": 4096,
3348
+ "in_features": 2560,
3349
+ "group_size": 64,
3350
+ "groups": 40,
3351
+ "grid_shape": [
3352
+ 64,
3353
+ 40
3354
+ ],
3355
+ "avg_bits": 2.073046922683716,
3356
+ "tile_bit_hist": {
3357
+ "2": 2395,
3358
+ "3": 147,
3359
+ "4": 15,
3360
+ "5": 2,
3361
+ "6": 1
3362
+ }
3363
+ },
3364
+ "model.layers.27.self_attn.k_proj": {
3365
+ "out": 1024,
3366
+ "in_features": 2560,
3367
+ "group_size": 64,
3368
+ "groups": 40,
3369
+ "grid_shape": [
3370
+ 16,
3371
+ 40
3372
+ ],
3373
+ "avg_bits": 2.253124952316284,
3374
+ "tile_bit_hist": {
3375
+ "2": 507,
3376
+ "3": 106,
3377
+ "4": 25,
3378
+ "5": 2
3379
+ }
3380
+ },
3381
+ "model.layers.27.self_attn.v_proj": {
3382
+ "out": 1024,
3383
+ "in_features": 2560,
3384
+ "group_size": 64,
3385
+ "groups": 40,
3386
+ "grid_shape": [
3387
+ 16,
3388
+ 40
3389
+ ],
3390
+ "avg_bits": 2.2906250953674316,
3391
+ "tile_bit_hist": {
3392
+ "2": 483,
3393
+ "3": 131,
3394
+ "4": 24,
3395
+ "5": 1,
3396
+ "6": 1
3397
+ }
3398
+ },
3399
+ "model.layers.27.self_attn.o_proj": {
3400
+ "out": 2560,
3401
+ "in_features": 4096,
3402
+ "group_size": 64,
3403
+ "groups": 64,
3404
+ "grid_shape": [
3405
+ 40,
3406
+ 64
3407
+ ],
3408
+ "avg_bits": 2.1585936546325684,
3409
+ "tile_bit_hist": {
3410
+ "2": 2191,
3411
+ "3": 335,
3412
+ "4": 31,
3413
+ "5": 3
3414
+ }
3415
+ },
3416
+ "model.layers.27.mlp.gate_proj": {
3417
+ "out": 9728,
3418
+ "in_features": 2560,
3419
+ "group_size": 64,
3420
+ "groups": 40,
3421
+ "grid_shape": [
3422
+ 152,
3423
+ 40
3424
+ ],
3425
+ "avg_bits": 2.1261513233184814,
3426
+ "tile_bit_hist": {
3427
+ "2": 5377,
3428
+ "3": 645,
3429
+ "4": 52,
3430
+ "5": 6
3431
+ }
3432
+ },
3433
+ "model.layers.27.mlp.up_proj": {
3434
+ "out": 9728,
3435
+ "in_features": 2560,
3436
+ "group_size": 64,
3437
+ "groups": 40,
3438
+ "grid_shape": [
3439
+ 152,
3440
+ 40
3441
+ ],
3442
+ "avg_bits": 2.150986909866333,
3443
+ "tile_bit_hist": {
3444
+ "2": 5256,
3445
+ "3": 739,
3446
+ "4": 77,
3447
+ "5": 7,
3448
+ "6": 1
3449
+ }
3450
+ },
3451
+ "model.layers.27.mlp.down_proj": {
3452
+ "out": 2560,
3453
+ "in_features": 9728,
3454
+ "group_size": 64,
3455
+ "groups": 152,
3456
+ "grid_shape": [
3457
+ 40,
3458
+ 152
3459
+ ],
3460
+ "avg_bits": 2.2509868144989014,
3461
+ "tile_bit_hist": {
3462
+ "2": 4704,
3463
+ "3": 1234,
3464
+ "4": 134,
3465
+ "5": 8
3466
+ }
3467
+ },
3468
+ "model.layers.28.self_attn.q_proj": {
3469
+ "out": 4096,
3470
+ "in_features": 2560,
3471
+ "group_size": 64,
3472
+ "groups": 40,
3473
+ "grid_shape": [
3474
+ 64,
3475
+ 40
3476
+ ],
3477
+ "avg_bits": 2.0777344703674316,
3478
+ "tile_bit_hist": {
3479
+ "2": 2389,
3480
+ "3": 147,
3481
+ "4": 21,
3482
+ "5": 2,
3483
+ "6": 1
3484
+ }
3485
+ },
3486
+ "model.layers.28.self_attn.k_proj": {
3487
+ "out": 1024,
3488
+ "in_features": 2560,
3489
+ "group_size": 64,
3490
+ "groups": 40,
3491
+ "grid_shape": [
3492
+ 16,
3493
+ 40
3494
+ ],
3495
+ "avg_bits": 2.207812547683716,
3496
+ "tile_bit_hist": {
3497
+ "2": 527,
3498
+ "3": 95,
3499
+ "4": 16,
3500
+ "5": 2
3501
+ }
3502
+ },
3503
+ "model.layers.28.self_attn.v_proj": {
3504
+ "out": 1024,
3505
+ "in_features": 2560,
3506
+ "group_size": 64,
3507
+ "groups": 40,
3508
+ "grid_shape": [
3509
+ 16,
3510
+ 40
3511
+ ],
3512
+ "avg_bits": 2.299999952316284,
3513
+ "tile_bit_hist": {
3514
+ "2": 479,
3515
+ "3": 135,
3516
+ "4": 21,
3517
+ "5": 5
3518
+ }
3519
+ },
3520
+ "model.layers.28.self_attn.o_proj": {
3521
+ "out": 2560,
3522
+ "in_features": 4096,
3523
+ "group_size": 64,
3524
+ "groups": 64,
3525
+ "grid_shape": [
3526
+ 40,
3527
+ 64
3528
+ ],
3529
+ "avg_bits": 2.129687547683716,
3530
+ "tile_bit_hist": {
3531
+ "2": 2267,
3532
+ "3": 257,
3533
+ "4": 33,
3534
+ "5": 3
3535
+ }
3536
+ },
3537
+ "model.layers.28.mlp.gate_proj": {
3538
+ "out": 9728,
3539
+ "in_features": 2560,
3540
+ "group_size": 64,
3541
+ "groups": 40,
3542
+ "grid_shape": [
3543
+ 152,
3544
+ 40
3545
+ ],
3546
+ "avg_bits": 2.1524670124053955,
3547
+ "tile_bit_hist": {
3548
+ "2": 5236,
3549
+ "3": 770,
3550
+ "4": 66,
3551
+ "5": 7,
3552
+ "6": 1
3553
+ }
3554
+ },
3555
+ "model.layers.28.mlp.up_proj": {
3556
+ "out": 9728,
3557
+ "in_features": 2560,
3558
+ "group_size": 64,
3559
+ "groups": 40,
3560
+ "grid_shape": [
3561
+ 152,
3562
+ 40
3563
+ ],
3564
+ "avg_bits": 2.1631579399108887,
3565
+ "tile_bit_hist": {
3566
+ "2": 5194,
3567
+ "3": 789,
3568
+ "4": 88,
3569
+ "5": 9
3570
+ }
3571
+ },
3572
+ "model.layers.28.mlp.down_proj": {
3573
+ "out": 2560,
3574
+ "in_features": 9728,
3575
+ "group_size": 64,
3576
+ "groups": 152,
3577
+ "grid_shape": [
3578
+ 40,
3579
+ 152
3580
+ ],
3581
+ "avg_bits": 2.2467105388641357,
3582
+ "tile_bit_hist": {
3583
+ "2": 4741,
3584
+ "3": 1190,
3585
+ "4": 137,
3586
+ "5": 12
3587
+ }
3588
+ },
3589
+ "model.layers.29.self_attn.q_proj": {
3590
+ "out": 4096,
3591
+ "in_features": 2560,
3592
+ "group_size": 64,
3593
+ "groups": 40,
3594
+ "grid_shape": [
3595
+ 64,
3596
+ 40
3597
+ ],
3598
+ "avg_bits": 2.0609374046325684,
3599
+ "tile_bit_hist": {
3600
+ "2": 2421,
3601
+ "3": 124,
3602
+ "4": 13,
3603
+ "5": 2
3604
+ }
3605
+ },
3606
+ "model.layers.29.self_attn.k_proj": {
3607
+ "out": 1024,
3608
+ "in_features": 2560,
3609
+ "group_size": 64,
3610
+ "groups": 40,
3611
+ "grid_shape": [
3612
+ 16,
3613
+ 40
3614
+ ],
3615
+ "avg_bits": 2.2828125953674316,
3616
+ "tile_bit_hist": {
3617
+ "2": 494,
3618
+ "3": 114,
3619
+ "4": 29,
3620
+ "5": 3
3621
+ }
3622
+ },
3623
+ "model.layers.29.self_attn.v_proj": {
3624
+ "out": 1024,
3625
+ "in_features": 2560,
3626
+ "group_size": 64,
3627
+ "groups": 40,
3628
+ "grid_shape": [
3629
+ 16,
3630
+ 40
3631
+ ],
3632
+ "avg_bits": 2.270312547683716,
3633
+ "tile_bit_hist": {
3634
+ "2": 497,
3635
+ "3": 118,
3636
+ "4": 20,
3637
+ "5": 5
3638
+ }
3639
+ },
3640
+ "model.layers.29.self_attn.o_proj": {
3641
+ "out": 2560,
3642
+ "in_features": 4096,
3643
+ "group_size": 64,
3644
+ "groups": 64,
3645
+ "grid_shape": [
3646
+ 40,
3647
+ 64
3648
+ ],
3649
+ "avg_bits": 2.128124952316284,
3650
+ "tile_bit_hist": {
3651
+ "2": 2255,
3652
+ "3": 282,
3653
+ "4": 23
3654
+ }
3655
+ },
3656
+ "model.layers.29.mlp.gate_proj": {
3657
+ "out": 9728,
3658
+ "in_features": 2560,
3659
+ "group_size": 64,
3660
+ "groups": 40,
3661
+ "grid_shape": [
3662
+ 152,
3663
+ 40
3664
+ ],
3665
+ "avg_bits": 2.1445722579956055,
3666
+ "tile_bit_hist": {
3667
+ "2": 5269,
3668
+ "3": 750,
3669
+ "4": 54,
3670
+ "5": 7
3671
+ }
3672
+ },
3673
+ "model.layers.29.mlp.up_proj": {
3674
+ "out": 9728,
3675
+ "in_features": 2560,
3676
+ "group_size": 64,
3677
+ "groups": 40,
3678
+ "grid_shape": [
3679
+ 152,
3680
+ 40
3681
+ ],
3682
+ "avg_bits": 2.150657892227173,
3683
+ "tile_bit_hist": {
3684
+ "2": 5245,
3685
+ "3": 762,
3686
+ "4": 65,
3687
+ "5": 8
3688
+ }
3689
+ },
3690
+ "model.layers.29.mlp.down_proj": {
3691
+ "out": 2560,
3692
+ "in_features": 9728,
3693
+ "group_size": 64,
3694
+ "groups": 152,
3695
+ "grid_shape": [
3696
+ 40,
3697
+ 152
3698
+ ],
3699
+ "avg_bits": 2.216611862182617,
3700
+ "tile_bit_hist": {
3701
+ "2": 4874,
3702
+ "3": 1099,
3703
+ "4": 103,
3704
+ "5": 4
3705
+ }
3706
+ },
3707
+ "model.layers.30.self_attn.q_proj": {
3708
+ "out": 4096,
3709
+ "in_features": 2560,
3710
+ "group_size": 64,
3711
+ "groups": 40,
3712
+ "grid_shape": [
3713
+ 64,
3714
+ 40
3715
+ ],
3716
+ "avg_bits": 2.0511717796325684,
3717
+ "tile_bit_hist": {
3718
+ "2": 2440,
3719
+ "3": 109,
3720
+ "4": 11
3721
+ }
3722
+ },
3723
+ "model.layers.30.self_attn.k_proj": {
3724
+ "out": 1024,
3725
+ "in_features": 2560,
3726
+ "group_size": 64,
3727
+ "groups": 40,
3728
+ "grid_shape": [
3729
+ 16,
3730
+ 40
3731
+ ],
3732
+ "avg_bits": 2.2265625,
3733
+ "tile_bit_hist": {
3734
+ "2": 527,
3735
+ "3": 86,
3736
+ "4": 22,
3737
+ "5": 5
3738
+ }
3739
+ },
3740
+ "model.layers.30.self_attn.v_proj": {
3741
+ "out": 1024,
3742
+ "in_features": 2560,
3743
+ "group_size": 64,
3744
+ "groups": 40,
3745
+ "grid_shape": [
3746
+ 16,
3747
+ 40
3748
+ ],
3749
+ "avg_bits": 2.339062452316284,
3750
+ "tile_bit_hist": {
3751
+ "2": 459,
3752
+ "3": 148,
3753
+ "4": 30,
3754
+ "5": 3
3755
+ }
3756
+ },
3757
+ "model.layers.30.self_attn.o_proj": {
3758
+ "out": 2560,
3759
+ "in_features": 4096,
3760
+ "group_size": 64,
3761
+ "groups": 64,
3762
+ "grid_shape": [
3763
+ 40,
3764
+ 64
3765
+ ],
3766
+ "avg_bits": 2.126171827316284,
3767
+ "tile_bit_hist": {
3768
+ "2": 2274,
3769
+ "3": 253,
3770
+ "4": 29,
3771
+ "5": 4
3772
+ }
3773
+ },
3774
+ "model.layers.30.mlp.gate_proj": {
3775
+ "out": 9728,
3776
+ "in_features": 2560,
3777
+ "group_size": 64,
3778
+ "groups": 40,
3779
+ "grid_shape": [
3780
+ 152,
3781
+ 40
3782
+ ],
3783
+ "avg_bits": 2.1498355865478516,
3784
+ "tile_bit_hist": {
3785
+ "2": 5240,
3786
+ "3": 772,
3787
+ "4": 65,
3788
+ "5": 3
3789
+ }
3790
+ },
3791
+ "model.layers.30.mlp.up_proj": {
3792
+ "out": 9728,
3793
+ "in_features": 2560,
3794
+ "group_size": 64,
3795
+ "groups": 40,
3796
+ "grid_shape": [
3797
+ 152,
3798
+ 40
3799
+ ],
3800
+ "avg_bits": 2.151644706726074,
3801
+ "tile_bit_hist": {
3802
+ "2": 5229,
3803
+ "3": 783,
3804
+ "4": 66,
3805
+ "5": 1,
3806
+ "6": 1
3807
+ }
3808
+ },
3809
+ "model.layers.30.mlp.down_proj": {
3810
+ "out": 2560,
3811
+ "in_features": 9728,
3812
+ "group_size": 64,
3813
+ "groups": 152,
3814
+ "grid_shape": [
3815
+ 40,
3816
+ 152
3817
+ ],
3818
+ "avg_bits": 2.200164556503296,
3819
+ "tile_bit_hist": {
3820
+ "2": 4962,
3821
+ "3": 1024,
3822
+ "4": 89,
3823
+ "5": 5
3824
+ }
3825
+ },
3826
+ "model.layers.31.self_attn.q_proj": {
3827
+ "out": 4096,
3828
+ "in_features": 2560,
3829
+ "group_size": 64,
3830
+ "groups": 40,
3831
+ "grid_shape": [
3832
+ 64,
3833
+ 40
3834
+ ],
3835
+ "avg_bits": 2.053515672683716,
3836
+ "tile_bit_hist": {
3837
+ "2": 2434,
3838
+ "3": 115,
3839
+ "4": 11
3840
+ }
3841
+ },
3842
+ "model.layers.31.self_attn.k_proj": {
3843
+ "out": 1024,
3844
+ "in_features": 2560,
3845
+ "group_size": 64,
3846
+ "groups": 40,
3847
+ "grid_shape": [
3848
+ 16,
3849
+ 40
3850
+ ],
3851
+ "avg_bits": 2.2249999046325684,
3852
+ "tile_bit_hist": {
3853
+ "2": 521,
3854
+ "3": 98,
3855
+ "4": 17,
3856
+ "5": 4
3857
+ }
3858
+ },
3859
+ "model.layers.31.self_attn.v_proj": {
3860
+ "out": 1024,
3861
+ "in_features": 2560,
3862
+ "group_size": 64,
3863
+ "groups": 40,
3864
+ "grid_shape": [
3865
+ 16,
3866
+ 40
3867
+ ],
3868
+ "avg_bits": 2.359375,
3869
+ "tile_bit_hist": {
3870
+ "2": 457,
3871
+ "3": 143,
3872
+ "4": 34,
3873
+ "5": 5,
3874
+ "6": 1
3875
+ }
3876
+ },
3877
+ "model.layers.31.self_attn.o_proj": {
3878
+ "out": 2560,
3879
+ "in_features": 4096,
3880
+ "group_size": 64,
3881
+ "groups": 64,
3882
+ "grid_shape": [
3883
+ 40,
3884
+ 64
3885
+ ],
3886
+ "avg_bits": 2.1363282203674316,
3887
+ "tile_bit_hist": {
3888
+ "2": 2243,
3889
+ "3": 287,
3890
+ "4": 28,
3891
+ "5": 2
3892
+ }
3893
+ },
3894
+ "model.layers.31.mlp.gate_proj": {
3895
+ "out": 9728,
3896
+ "in_features": 2560,
3897
+ "group_size": 64,
3898
+ "groups": 40,
3899
+ "grid_shape": [
3900
+ 152,
3901
+ 40
3902
+ ],
3903
+ "avg_bits": 2.149013042449951,
3904
+ "tile_bit_hist": {
3905
+ "2": 5256,
3906
+ "3": 749,
3907
+ "4": 69,
3908
+ "5": 5,
3909
+ "6": 1
3910
+ }
3911
+ },
3912
+ "model.layers.31.mlp.up_proj": {
3913
+ "out": 9728,
3914
+ "in_features": 2560,
3915
+ "group_size": 64,
3916
+ "groups": 40,
3917
+ "grid_shape": [
3918
+ 152,
3919
+ 40
3920
+ ],
3921
+ "avg_bits": 2.1523027420043945,
3922
+ "tile_bit_hist": {
3923
+ "2": 5215,
3924
+ "3": 807,
3925
+ "4": 56,
3926
+ "5": 1,
3927
+ "6": 1
3928
+ }
3929
+ },
3930
+ "model.layers.31.mlp.down_proj": {
3931
+ "out": 2560,
3932
+ "in_features": 9728,
3933
+ "group_size": 64,
3934
+ "groups": 152,
3935
+ "grid_shape": [
3936
+ 40,
3937
+ 152
3938
+ ],
3939
+ "avg_bits": 2.197861909866333,
3940
+ "tile_bit_hist": {
3941
+ "2": 4980,
3942
+ "3": 1001,
3943
+ "4": 96,
3944
+ "5": 2,
3945
+ "6": 1
3946
+ }
3947
+ },
3948
+ "model.layers.32.self_attn.q_proj": {
3949
+ "out": 4096,
3950
+ "in_features": 2560,
3951
+ "group_size": 64,
3952
+ "groups": 40,
3953
+ "grid_shape": [
3954
+ 64,
3955
+ 40
3956
+ ],
3957
+ "avg_bits": 2.063671827316284,
3958
+ "tile_bit_hist": {
3959
+ "2": 2416,
3960
+ "3": 127,
3961
+ "4": 15,
3962
+ "5": 2
3963
+ }
3964
+ },
3965
+ "model.layers.32.self_attn.k_proj": {
3966
+ "out": 1024,
3967
+ "in_features": 2560,
3968
+ "group_size": 64,
3969
+ "groups": 40,
3970
+ "grid_shape": [
3971
+ 16,
3972
+ 40
3973
+ ],
3974
+ "avg_bits": 2.276562452316284,
3975
+ "tile_bit_hist": {
3976
+ "2": 501,
3977
+ "3": 104,
3978
+ "4": 32,
3979
+ "5": 3
3980
+ }
3981
+ },
3982
+ "model.layers.32.self_attn.v_proj": {
3983
+ "out": 1024,
3984
+ "in_features": 2560,
3985
+ "group_size": 64,
3986
+ "groups": 40,
3987
+ "grid_shape": [
3988
+ 16,
3989
+ 40
3990
+ ],
3991
+ "avg_bits": 2.265625,
3992
+ "tile_bit_hist": {
3993
+ "2": 492,
3994
+ "3": 129,
3995
+ "4": 16,
3996
+ "5": 3
3997
+ }
3998
+ },
3999
+ "model.layers.32.self_attn.o_proj": {
4000
+ "out": 2560,
4001
+ "in_features": 4096,
4002
+ "group_size": 64,
4003
+ "groups": 64,
4004
+ "grid_shape": [
4005
+ 40,
4006
+ 64
4007
+ ],
4008
+ "avg_bits": 2.1171875,
4009
+ "tile_bit_hist": {
4010
+ "2": 2279,
4011
+ "3": 263,
4012
+ "4": 17,
4013
+ "5": 1
4014
+ }
4015
+ },
4016
+ "model.layers.32.mlp.gate_proj": {
4017
+ "out": 9728,
4018
+ "in_features": 2560,
4019
+ "group_size": 64,
4020
+ "groups": 40,
4021
+ "grid_shape": [
4022
+ 152,
4023
+ 40
4024
+ ],
4025
+ "avg_bits": 2.1417763233184814,
4026
+ "tile_bit_hist": {
4027
+ "2": 5275,
4028
+ "3": 752,
4029
+ "4": 49,
4030
+ "5": 4
4031
+ }
4032
+ },
4033
+ "model.layers.32.mlp.up_proj": {
4034
+ "out": 9728,
4035
+ "in_features": 2560,
4036
+ "group_size": 64,
4037
+ "groups": 40,
4038
+ "grid_shape": [
4039
+ 152,
4040
+ 40
4041
+ ],
4042
+ "avg_bits": 2.155592203140259,
4043
+ "tile_bit_hist": {
4044
+ "2": 5209,
4045
+ "3": 801,
4046
+ "4": 65,
4047
+ "5": 5
4048
+ }
4049
+ },
4050
+ "model.layers.32.mlp.down_proj": {
4051
+ "out": 2560,
4052
+ "in_features": 9728,
4053
+ "group_size": 64,
4054
+ "groups": 152,
4055
+ "grid_shape": [
4056
+ 40,
4057
+ 152
4058
+ ],
4059
+ "avg_bits": 2.1894736289978027,
4060
+ "tile_bit_hist": {
4061
+ "2": 5015,
4062
+ "3": 981,
4063
+ "4": 81,
4064
+ "5": 3
4065
+ }
4066
+ },
4067
+ "model.layers.33.self_attn.q_proj": {
4068
+ "out": 4096,
4069
+ "in_features": 2560,
4070
+ "group_size": 64,
4071
+ "groups": 40,
4072
+ "grid_shape": [
4073
+ 64,
4074
+ 40
4075
+ ],
4076
+ "avg_bits": 2.100390672683716,
4077
+ "tile_bit_hist": {
4078
+ "2": 2346,
4079
+ "3": 174,
4080
+ "4": 37,
4081
+ "5": 3
4082
+ }
4083
+ },
4084
+ "model.layers.33.self_attn.k_proj": {
4085
+ "out": 1024,
4086
+ "in_features": 2560,
4087
+ "group_size": 64,
4088
+ "groups": 40,
4089
+ "grid_shape": [
4090
+ 16,
4091
+ 40
4092
+ ],
4093
+ "avg_bits": 2.356250047683716,
4094
+ "tile_bit_hist": {
4095
+ "2": 465,
4096
+ "3": 131,
4097
+ "4": 37,
4098
+ "5": 5,
4099
+ "6": 2
4100
+ }
4101
+ },
4102
+ "model.layers.33.self_attn.v_proj": {
4103
+ "out": 1024,
4104
+ "in_features": 2560,
4105
+ "group_size": 64,
4106
+ "groups": 40,
4107
+ "grid_shape": [
4108
+ 16,
4109
+ 40
4110
+ ],
4111
+ "avg_bits": 2.339062452316284,
4112
+ "tile_bit_hist": {
4113
+ "2": 468,
4114
+ "3": 134,
4115
+ "4": 32,
4116
+ "5": 5,
4117
+ "6": 1
4118
+ }
4119
+ },
4120
+ "model.layers.33.self_attn.o_proj": {
4121
+ "out": 2560,
4122
+ "in_features": 4096,
4123
+ "group_size": 64,
4124
+ "groups": 64,
4125
+ "grid_shape": [
4126
+ 40,
4127
+ 64
4128
+ ],
4129
+ "avg_bits": 2.173046827316284,
4130
+ "tile_bit_hist": {
4131
+ "2": 2163,
4132
+ "3": 353,
4133
+ "4": 42,
4134
+ "5": 2
4135
+ }
4136
+ },
4137
+ "model.layers.33.mlp.gate_proj": {
4138
+ "out": 9728,
4139
+ "in_features": 2560,
4140
+ "group_size": 64,
4141
+ "groups": 40,
4142
+ "grid_shape": [
4143
+ 152,
4144
+ 40
4145
+ ],
4146
+ "avg_bits": 2.130263090133667,
4147
+ "tile_bit_hist": {
4148
+ "2": 5342,
4149
+ "3": 688,
4150
+ "4": 46,
4151
+ "5": 4
4152
+ }
4153
+ },
4154
+ "model.layers.33.mlp.up_proj": {
4155
+ "out": 9728,
4156
+ "in_features": 2560,
4157
+ "group_size": 64,
4158
+ "groups": 40,
4159
+ "grid_shape": [
4160
+ 152,
4161
+ 40
4162
+ ],
4163
+ "avg_bits": 2.158717155456543,
4164
+ "tile_bit_hist": {
4165
+ "2": 5212,
4166
+ "3": 778,
4167
+ "4": 83,
4168
+ "5": 7
4169
+ }
4170
+ },
4171
+ "model.layers.33.mlp.down_proj": {
4172
+ "out": 2560,
4173
+ "in_features": 9728,
4174
+ "group_size": 64,
4175
+ "groups": 152,
4176
+ "grid_shape": [
4177
+ 40,
4178
+ 152
4179
+ ],
4180
+ "avg_bits": 2.1855263710021973,
4181
+ "tile_bit_hist": {
4182
+ "2": 5049,
4183
+ "3": 939,
4184
+ "4": 88,
4185
+ "5": 3,
4186
+ "6": 1
4187
+ }
4188
+ },
4189
+ "model.layers.34.self_attn.q_proj": {
4190
+ "out": 4096,
4191
+ "in_features": 2560,
4192
+ "group_size": 64,
4193
+ "groups": 40,
4194
+ "grid_shape": [
4195
+ 64,
4196
+ 40
4197
+ ],
4198
+ "avg_bits": 2.084765672683716,
4199
+ "tile_bit_hist": {
4200
+ "2": 2375,
4201
+ "3": 159,
4202
+ "4": 20,
4203
+ "5": 6
4204
+ }
4205
+ },
4206
+ "model.layers.34.self_attn.k_proj": {
4207
+ "out": 1024,
4208
+ "in_features": 2560,
4209
+ "group_size": 64,
4210
+ "groups": 40,
4211
+ "grid_shape": [
4212
+ 16,
4213
+ 40
4214
+ ],
4215
+ "avg_bits": 2.207812547683716,
4216
+ "tile_bit_hist": {
4217
+ "2": 535,
4218
+ "3": 83,
4219
+ "4": 17,
4220
+ "5": 4,
4221
+ "6": 1
4222
+ }
4223
+ },
4224
+ "model.layers.34.self_attn.v_proj": {
4225
+ "out": 1024,
4226
+ "in_features": 2560,
4227
+ "group_size": 64,
4228
+ "groups": 40,
4229
+ "grid_shape": [
4230
+ 16,
4231
+ 40
4232
+ ],
4233
+ "avg_bits": 2.4281249046325684,
4234
+ "tile_bit_hist": {
4235
+ "2": 423,
4236
+ "3": 165,
4237
+ "4": 48,
4238
+ "5": 3,
4239
+ "6": 1
4240
+ }
4241
+ },
4242
+ "model.layers.34.self_attn.o_proj": {
4243
+ "out": 2560,
4244
+ "in_features": 4096,
4245
+ "group_size": 64,
4246
+ "groups": 64,
4247
+ "grid_shape": [
4248
+ 40,
4249
+ 64
4250
+ ],
4251
+ "avg_bits": 2.1976561546325684,
4252
+ "tile_bit_hist": {
4253
+ "2": 2110,
4254
+ "3": 398,
4255
+ "4": 48,
4256
+ "5": 4
4257
+ }
4258
+ },
4259
+ "model.layers.34.mlp.gate_proj": {
4260
+ "out": 9728,
4261
+ "in_features": 2560,
4262
+ "group_size": 64,
4263
+ "groups": 40,
4264
+ "grid_shape": [
4265
+ 152,
4266
+ 40
4267
+ ],
4268
+ "avg_bits": 2.1393091678619385,
4269
+ "tile_bit_hist": {
4270
+ "2": 5319,
4271
+ "3": 682,
4272
+ "4": 72,
4273
+ "5": 7
4274
+ }
4275
+ },
4276
+ "model.layers.34.mlp.up_proj": {
4277
+ "out": 9728,
4278
+ "in_features": 2560,
4279
+ "group_size": 64,
4280
+ "groups": 40,
4281
+ "grid_shape": [
4282
+ 152,
4283
+ 40
4284
+ ],
4285
+ "avg_bits": 2.182565689086914,
4286
+ "tile_bit_hist": {
4287
+ "2": 5093,
4288
+ "3": 878,
4289
+ "4": 95,
4290
+ "5": 14
4291
+ }
4292
+ },
4293
+ "model.layers.34.mlp.down_proj": {
4294
+ "out": 2560,
4295
+ "in_features": 9728,
4296
+ "group_size": 64,
4297
+ "groups": 152,
4298
+ "grid_shape": [
4299
+ 40,
4300
+ 152
4301
+ ],
4302
+ "avg_bits": 2.2203948497772217,
4303
+ "tile_bit_hist": {
4304
+ "2": 4855,
4305
+ "3": 1121,
4306
+ "4": 93,
4307
+ "5": 11
4308
+ }
4309
+ },
4310
+ "model.layers.35.self_attn.q_proj": {
4311
+ "out": 4096,
4312
+ "in_features": 2560,
4313
+ "group_size": 64,
4314
+ "groups": 40,
4315
+ "grid_shape": [
4316
+ 64,
4317
+ 40
4318
+ ],
4319
+ "avg_bits": 2.051953077316284,
4320
+ "tile_bit_hist": {
4321
+ "2": 2438,
4322
+ "3": 111,
4323
+ "4": 11
4324
+ }
4325
+ },
4326
+ "model.layers.35.self_attn.k_proj": {
4327
+ "out": 1024,
4328
+ "in_features": 2560,
4329
+ "group_size": 64,
4330
+ "groups": 40,
4331
+ "grid_shape": [
4332
+ 16,
4333
+ 40
4334
+ ],
4335
+ "avg_bits": 2.114062547683716,
4336
+ "tile_bit_hist": {
4337
+ "2": 578,
4338
+ "3": 52,
4339
+ "4": 9,
4340
+ "5": 1
4341
+ }
4342
+ },
4343
+ "model.layers.35.self_attn.v_proj": {
4344
+ "out": 1024,
4345
+ "in_features": 2560,
4346
+ "group_size": 64,
4347
+ "groups": 40,
4348
+ "grid_shape": [
4349
+ 16,
4350
+ 40
4351
+ ],
4352
+ "avg_bits": 2.4281249046325684,
4353
+ "tile_bit_hist": {
4354
+ "2": 416,
4355
+ "3": 180,
4356
+ "4": 38,
4357
+ "5": 6
4358
+ }
4359
+ },
4360
+ "model.layers.35.self_attn.o_proj": {
4361
+ "out": 2560,
4362
+ "in_features": 4096,
4363
+ "group_size": 64,
4364
+ "groups": 64,
4365
+ "grid_shape": [
4366
+ 40,
4367
+ 64
4368
+ ],
4369
+ "avg_bits": 2.180468797683716,
4370
+ "tile_bit_hist": {
4371
+ "2": 2155,
4372
+ "3": 354,
4373
+ "4": 45,
4374
+ "5": 6
4375
+ }
4376
+ },
4377
+ "model.layers.35.mlp.gate_proj": {
4378
+ "out": 9728,
4379
+ "in_features": 2560,
4380
+ "group_size": 64,
4381
+ "groups": 40,
4382
+ "grid_shape": [
4383
+ 152,
4384
+ 40
4385
+ ],
4386
+ "avg_bits": 2.1674342155456543,
4387
+ "tile_bit_hist": {
4388
+ "2": 5188,
4389
+ "3": 790,
4390
+ "4": 82,
4391
+ "5": 16,
4392
+ "6": 4
4393
+ }
4394
+ },
4395
+ "model.layers.35.mlp.up_proj": {
4396
+ "out": 9728,
4397
+ "in_features": 2560,
4398
+ "group_size": 64,
4399
+ "groups": 40,
4400
+ "grid_shape": [
4401
+ 152,
4402
+ 40
4403
+ ],
4404
+ "avg_bits": 2.192105293273926,
4405
+ "tile_bit_hist": {
4406
+ "2": 5068,
4407
+ "3": 869,
4408
+ "4": 130,
4409
+ "5": 13
4410
+ }
4411
+ },
4412
+ "model.layers.35.mlp.down_proj": {
4413
+ "out": 2560,
4414
+ "in_features": 9728,
4415
+ "group_size": 64,
4416
+ "groups": 152,
4417
+ "grid_shape": [
4418
+ 40,
4419
+ 152
4420
+ ],
4421
+ "avg_bits": 2.2509868144989014,
4422
+ "tile_bit_hist": {
4423
+ "2": 4795,
4424
+ "3": 1070,
4425
+ "4": 191,
4426
+ "5": 22,
4427
+ "6": 2
4428
+ }
4429
+ }
4430
+ }
4431
+ }
qwen3_4b_tiled64/model-00001-of-00002.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9769db87c3691a83e594633319266d707bd495676ffbd82fd771bf26f747347e
3
+ size 4990818672
qwen3_4b_tiled64/model-00002-of-00002.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:395d549b3d914279d2bbdc5cba7240acbb43a77d72b5ab2070d21999c186a709
3
+ size 3054163328
qwen3_4b_tiled64/model.safetensors.index.json ADDED
@@ -0,0 +1,406 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "metadata": {
3
+ "total_parameters": 4022468096,
4
+ "total_size": 8044936192
5
+ },
6
+ "weight_map": {
7
+ "model.embed_tokens.weight": "model-00001-of-00002.safetensors",
8
+ "model.layers.0.input_layernorm.weight": "model-00001-of-00002.safetensors",
9
+ "model.layers.0.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
10
+ "model.layers.0.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
11
+ "model.layers.0.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
12
+ "model.layers.0.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
13
+ "model.layers.0.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
14
+ "model.layers.0.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
15
+ "model.layers.0.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
16
+ "model.layers.0.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
17
+ "model.layers.0.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
18
+ "model.layers.0.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
19
+ "model.layers.1.input_layernorm.weight": "model-00001-of-00002.safetensors",
20
+ "model.layers.1.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
21
+ "model.layers.1.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
22
+ "model.layers.1.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
23
+ "model.layers.1.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
24
+ "model.layers.1.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
25
+ "model.layers.1.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
26
+ "model.layers.1.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
27
+ "model.layers.1.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
28
+ "model.layers.1.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
29
+ "model.layers.1.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
30
+ "model.layers.10.input_layernorm.weight": "model-00001-of-00002.safetensors",
31
+ "model.layers.10.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
32
+ "model.layers.10.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
33
+ "model.layers.10.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
34
+ "model.layers.10.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
35
+ "model.layers.10.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
36
+ "model.layers.10.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
37
+ "model.layers.10.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
38
+ "model.layers.10.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
39
+ "model.layers.10.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
40
+ "model.layers.10.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
41
+ "model.layers.11.input_layernorm.weight": "model-00001-of-00002.safetensors",
42
+ "model.layers.11.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
43
+ "model.layers.11.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
44
+ "model.layers.11.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
45
+ "model.layers.11.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
46
+ "model.layers.11.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
47
+ "model.layers.11.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
48
+ "model.layers.11.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
49
+ "model.layers.11.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
50
+ "model.layers.11.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
51
+ "model.layers.11.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
52
+ "model.layers.12.input_layernorm.weight": "model-00001-of-00002.safetensors",
53
+ "model.layers.12.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
54
+ "model.layers.12.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
55
+ "model.layers.12.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
56
+ "model.layers.12.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
57
+ "model.layers.12.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
58
+ "model.layers.12.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
59
+ "model.layers.12.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
60
+ "model.layers.12.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
61
+ "model.layers.12.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
62
+ "model.layers.12.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
63
+ "model.layers.13.input_layernorm.weight": "model-00001-of-00002.safetensors",
64
+ "model.layers.13.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
65
+ "model.layers.13.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
66
+ "model.layers.13.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
67
+ "model.layers.13.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
68
+ "model.layers.13.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
69
+ "model.layers.13.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
70
+ "model.layers.13.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
71
+ "model.layers.13.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
72
+ "model.layers.13.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
73
+ "model.layers.13.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
74
+ "model.layers.14.input_layernorm.weight": "model-00001-of-00002.safetensors",
75
+ "model.layers.14.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
76
+ "model.layers.14.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
77
+ "model.layers.14.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
78
+ "model.layers.14.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
79
+ "model.layers.14.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
80
+ "model.layers.14.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
81
+ "model.layers.14.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
82
+ "model.layers.14.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
83
+ "model.layers.14.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
84
+ "model.layers.14.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
85
+ "model.layers.15.input_layernorm.weight": "model-00001-of-00002.safetensors",
86
+ "model.layers.15.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
87
+ "model.layers.15.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
88
+ "model.layers.15.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
89
+ "model.layers.15.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
90
+ "model.layers.15.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
91
+ "model.layers.15.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
92
+ "model.layers.15.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
93
+ "model.layers.15.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
94
+ "model.layers.15.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
95
+ "model.layers.15.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
96
+ "model.layers.16.input_layernorm.weight": "model-00001-of-00002.safetensors",
97
+ "model.layers.16.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
98
+ "model.layers.16.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
99
+ "model.layers.16.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
100
+ "model.layers.16.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
101
+ "model.layers.16.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
102
+ "model.layers.16.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
103
+ "model.layers.16.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
104
+ "model.layers.16.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
105
+ "model.layers.16.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
106
+ "model.layers.16.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
107
+ "model.layers.17.input_layernorm.weight": "model-00001-of-00002.safetensors",
108
+ "model.layers.17.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
109
+ "model.layers.17.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
110
+ "model.layers.17.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
111
+ "model.layers.17.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
112
+ "model.layers.17.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
113
+ "model.layers.17.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
114
+ "model.layers.17.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
115
+ "model.layers.17.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
116
+ "model.layers.17.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
117
+ "model.layers.17.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
118
+ "model.layers.18.input_layernorm.weight": "model-00001-of-00002.safetensors",
119
+ "model.layers.18.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
120
+ "model.layers.18.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
121
+ "model.layers.18.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
122
+ "model.layers.18.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
123
+ "model.layers.18.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
124
+ "model.layers.18.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
125
+ "model.layers.18.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
126
+ "model.layers.18.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
127
+ "model.layers.18.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
128
+ "model.layers.18.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
129
+ "model.layers.19.input_layernorm.weight": "model-00001-of-00002.safetensors",
130
+ "model.layers.19.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
131
+ "model.layers.19.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
132
+ "model.layers.19.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
133
+ "model.layers.19.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
134
+ "model.layers.19.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
135
+ "model.layers.19.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
136
+ "model.layers.19.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
137
+ "model.layers.19.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
138
+ "model.layers.19.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
139
+ "model.layers.19.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
140
+ "model.layers.2.input_layernorm.weight": "model-00001-of-00002.safetensors",
141
+ "model.layers.2.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
142
+ "model.layers.2.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
143
+ "model.layers.2.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
144
+ "model.layers.2.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
145
+ "model.layers.2.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
146
+ "model.layers.2.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
147
+ "model.layers.2.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
148
+ "model.layers.2.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
149
+ "model.layers.2.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
150
+ "model.layers.2.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
151
+ "model.layers.20.input_layernorm.weight": "model-00001-of-00002.safetensors",
152
+ "model.layers.20.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
153
+ "model.layers.20.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
154
+ "model.layers.20.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
155
+ "model.layers.20.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
156
+ "model.layers.20.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
157
+ "model.layers.20.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
158
+ "model.layers.20.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
159
+ "model.layers.20.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
160
+ "model.layers.20.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
161
+ "model.layers.20.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
162
+ "model.layers.21.input_layernorm.weight": "model-00002-of-00002.safetensors",
163
+ "model.layers.21.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
164
+ "model.layers.21.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
165
+ "model.layers.21.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
166
+ "model.layers.21.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
167
+ "model.layers.21.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
168
+ "model.layers.21.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
169
+ "model.layers.21.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
170
+ "model.layers.21.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
171
+ "model.layers.21.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
172
+ "model.layers.21.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
173
+ "model.layers.22.input_layernorm.weight": "model-00002-of-00002.safetensors",
174
+ "model.layers.22.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
175
+ "model.layers.22.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
176
+ "model.layers.22.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
177
+ "model.layers.22.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
178
+ "model.layers.22.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
179
+ "model.layers.22.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
180
+ "model.layers.22.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
181
+ "model.layers.22.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
182
+ "model.layers.22.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
183
+ "model.layers.22.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
184
+ "model.layers.23.input_layernorm.weight": "model-00002-of-00002.safetensors",
185
+ "model.layers.23.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
186
+ "model.layers.23.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
187
+ "model.layers.23.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
188
+ "model.layers.23.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
189
+ "model.layers.23.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
190
+ "model.layers.23.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
191
+ "model.layers.23.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
192
+ "model.layers.23.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
193
+ "model.layers.23.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
194
+ "model.layers.23.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
195
+ "model.layers.24.input_layernorm.weight": "model-00002-of-00002.safetensors",
196
+ "model.layers.24.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
197
+ "model.layers.24.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
198
+ "model.layers.24.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
199
+ "model.layers.24.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
200
+ "model.layers.24.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
201
+ "model.layers.24.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
202
+ "model.layers.24.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
203
+ "model.layers.24.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
204
+ "model.layers.24.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
205
+ "model.layers.24.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
206
+ "model.layers.25.input_layernorm.weight": "model-00002-of-00002.safetensors",
207
+ "model.layers.25.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
208
+ "model.layers.25.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
209
+ "model.layers.25.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
210
+ "model.layers.25.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
211
+ "model.layers.25.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
212
+ "model.layers.25.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
213
+ "model.layers.25.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
214
+ "model.layers.25.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
215
+ "model.layers.25.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
216
+ "model.layers.25.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
217
+ "model.layers.26.input_layernorm.weight": "model-00002-of-00002.safetensors",
218
+ "model.layers.26.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
219
+ "model.layers.26.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
220
+ "model.layers.26.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
221
+ "model.layers.26.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
222
+ "model.layers.26.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
223
+ "model.layers.26.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
224
+ "model.layers.26.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
225
+ "model.layers.26.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
226
+ "model.layers.26.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
227
+ "model.layers.26.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
228
+ "model.layers.27.input_layernorm.weight": "model-00002-of-00002.safetensors",
229
+ "model.layers.27.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
230
+ "model.layers.27.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
231
+ "model.layers.27.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
232
+ "model.layers.27.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
233
+ "model.layers.27.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
234
+ "model.layers.27.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
235
+ "model.layers.27.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
236
+ "model.layers.27.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
237
+ "model.layers.27.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
238
+ "model.layers.27.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
239
+ "model.layers.28.input_layernorm.weight": "model-00002-of-00002.safetensors",
240
+ "model.layers.28.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
241
+ "model.layers.28.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
242
+ "model.layers.28.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
243
+ "model.layers.28.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
244
+ "model.layers.28.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
245
+ "model.layers.28.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
246
+ "model.layers.28.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
247
+ "model.layers.28.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
248
+ "model.layers.28.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
249
+ "model.layers.28.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
250
+ "model.layers.29.input_layernorm.weight": "model-00002-of-00002.safetensors",
251
+ "model.layers.29.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
252
+ "model.layers.29.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
253
+ "model.layers.29.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
254
+ "model.layers.29.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
255
+ "model.layers.29.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
256
+ "model.layers.29.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
257
+ "model.layers.29.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
258
+ "model.layers.29.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
259
+ "model.layers.29.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
260
+ "model.layers.29.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
261
+ "model.layers.3.input_layernorm.weight": "model-00001-of-00002.safetensors",
262
+ "model.layers.3.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
263
+ "model.layers.3.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
264
+ "model.layers.3.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
265
+ "model.layers.3.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
266
+ "model.layers.3.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
267
+ "model.layers.3.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
268
+ "model.layers.3.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
269
+ "model.layers.3.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
270
+ "model.layers.3.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
271
+ "model.layers.3.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
272
+ "model.layers.30.input_layernorm.weight": "model-00002-of-00002.safetensors",
273
+ "model.layers.30.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
274
+ "model.layers.30.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
275
+ "model.layers.30.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
276
+ "model.layers.30.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
277
+ "model.layers.30.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
278
+ "model.layers.30.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
279
+ "model.layers.30.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
280
+ "model.layers.30.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
281
+ "model.layers.30.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
282
+ "model.layers.30.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
283
+ "model.layers.31.input_layernorm.weight": "model-00002-of-00002.safetensors",
284
+ "model.layers.31.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
285
+ "model.layers.31.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
286
+ "model.layers.31.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
287
+ "model.layers.31.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
288
+ "model.layers.31.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
289
+ "model.layers.31.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
290
+ "model.layers.31.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
291
+ "model.layers.31.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
292
+ "model.layers.31.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
293
+ "model.layers.31.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
294
+ "model.layers.32.input_layernorm.weight": "model-00002-of-00002.safetensors",
295
+ "model.layers.32.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
296
+ "model.layers.32.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
297
+ "model.layers.32.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
298
+ "model.layers.32.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
299
+ "model.layers.32.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
300
+ "model.layers.32.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
301
+ "model.layers.32.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
302
+ "model.layers.32.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
303
+ "model.layers.32.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
304
+ "model.layers.32.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
305
+ "model.layers.33.input_layernorm.weight": "model-00002-of-00002.safetensors",
306
+ "model.layers.33.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
307
+ "model.layers.33.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
308
+ "model.layers.33.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
309
+ "model.layers.33.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
310
+ "model.layers.33.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
311
+ "model.layers.33.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
312
+ "model.layers.33.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
313
+ "model.layers.33.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
314
+ "model.layers.33.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
315
+ "model.layers.33.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
316
+ "model.layers.34.input_layernorm.weight": "model-00002-of-00002.safetensors",
317
+ "model.layers.34.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
318
+ "model.layers.34.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
319
+ "model.layers.34.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
320
+ "model.layers.34.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
321
+ "model.layers.34.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
322
+ "model.layers.34.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
323
+ "model.layers.34.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
324
+ "model.layers.34.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
325
+ "model.layers.34.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
326
+ "model.layers.34.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
327
+ "model.layers.35.input_layernorm.weight": "model-00002-of-00002.safetensors",
328
+ "model.layers.35.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
329
+ "model.layers.35.mlp.gate_proj.weight": "model-00002-of-00002.safetensors",
330
+ "model.layers.35.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
331
+ "model.layers.35.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
332
+ "model.layers.35.self_attn.k_norm.weight": "model-00002-of-00002.safetensors",
333
+ "model.layers.35.self_attn.k_proj.weight": "model-00002-of-00002.safetensors",
334
+ "model.layers.35.self_attn.o_proj.weight": "model-00002-of-00002.safetensors",
335
+ "model.layers.35.self_attn.q_norm.weight": "model-00002-of-00002.safetensors",
336
+ "model.layers.35.self_attn.q_proj.weight": "model-00002-of-00002.safetensors",
337
+ "model.layers.35.self_attn.v_proj.weight": "model-00002-of-00002.safetensors",
338
+ "model.layers.4.input_layernorm.weight": "model-00001-of-00002.safetensors",
339
+ "model.layers.4.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
340
+ "model.layers.4.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
341
+ "model.layers.4.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
342
+ "model.layers.4.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
343
+ "model.layers.4.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
344
+ "model.layers.4.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
345
+ "model.layers.4.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
346
+ "model.layers.4.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
347
+ "model.layers.4.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
348
+ "model.layers.4.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
349
+ "model.layers.5.input_layernorm.weight": "model-00001-of-00002.safetensors",
350
+ "model.layers.5.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
351
+ "model.layers.5.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
352
+ "model.layers.5.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
353
+ "model.layers.5.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
354
+ "model.layers.5.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
355
+ "model.layers.5.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
356
+ "model.layers.5.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
357
+ "model.layers.5.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
358
+ "model.layers.5.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
359
+ "model.layers.5.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
360
+ "model.layers.6.input_layernorm.weight": "model-00001-of-00002.safetensors",
361
+ "model.layers.6.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
362
+ "model.layers.6.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
363
+ "model.layers.6.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
364
+ "model.layers.6.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
365
+ "model.layers.6.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
366
+ "model.layers.6.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
367
+ "model.layers.6.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
368
+ "model.layers.6.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
369
+ "model.layers.6.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
370
+ "model.layers.6.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
371
+ "model.layers.7.input_layernorm.weight": "model-00001-of-00002.safetensors",
372
+ "model.layers.7.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
373
+ "model.layers.7.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
374
+ "model.layers.7.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
375
+ "model.layers.7.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
376
+ "model.layers.7.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
377
+ "model.layers.7.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
378
+ "model.layers.7.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
379
+ "model.layers.7.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
380
+ "model.layers.7.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
381
+ "model.layers.7.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
382
+ "model.layers.8.input_layernorm.weight": "model-00001-of-00002.safetensors",
383
+ "model.layers.8.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
384
+ "model.layers.8.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
385
+ "model.layers.8.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
386
+ "model.layers.8.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
387
+ "model.layers.8.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
388
+ "model.layers.8.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
389
+ "model.layers.8.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
390
+ "model.layers.8.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
391
+ "model.layers.8.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
392
+ "model.layers.8.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
393
+ "model.layers.9.input_layernorm.weight": "model-00001-of-00002.safetensors",
394
+ "model.layers.9.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
395
+ "model.layers.9.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
396
+ "model.layers.9.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
397
+ "model.layers.9.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
398
+ "model.layers.9.self_attn.k_norm.weight": "model-00001-of-00002.safetensors",
399
+ "model.layers.9.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
400
+ "model.layers.9.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
401
+ "model.layers.9.self_attn.q_norm.weight": "model-00001-of-00002.safetensors",
402
+ "model.layers.9.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
403
+ "model.layers.9.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
404
+ "model.norm.weight": "model-00002-of-00002.safetensors"
405
+ }
406
+ }
qwen3_4b_tiled64/quant_pack-00001.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d23b39cc0124bbe2f141c2e5b4cad5e58ecb0c12d5354220dde91205c01fd306
3
+ size 3861398496
qwen3_4b_tiled64/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:be75606093db2094d7cd20f3c2f385c212750648bd6ea4fb2bf507a6a4c55506
3
+ size 11422650
qwen3_4b_tiled64/tokenizer_config.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "backend": "tokenizers",
4
+ "bos_token": null,
5
+ "clean_up_tokenization_spaces": false,
6
+ "eos_token": "<|im_end|>",
7
+ "errors": "replace",
8
+ "extra_special_tokens": [
9
+ "<|im_start|>",
10
+ "<|im_end|>",
11
+ "<|object_ref_start|>",
12
+ "<|object_ref_end|>",
13
+ "<|box_start|>",
14
+ "<|box_end|>",
15
+ "<|quad_start|>",
16
+ "<|quad_end|>",
17
+ "<|vision_start|>",
18
+ "<|vision_end|>",
19
+ "<|vision_pad|>",
20
+ "<|image_pad|>",
21
+ "<|video_pad|>"
22
+ ],
23
+ "is_local": false,
24
+ "local_files_only": false,
25
+ "model_max_length": 131072,
26
+ "pad_token": "<|endoftext|>",
27
+ "split_special_tokens": false,
28
+ "tokenizer_class": "Qwen2Tokenizer",
29
+ "unk_token": null
30
+ }