aquaman164 commited on
Commit
e781d8a
·
verified ·
1 Parent(s): 9bac296

Add files using upload-large-folder tool

Browse files
Files changed (50) hide show
  1. README.md +86 -0
  2. chat_template.jinja +119 -0
  3. config.json +0 -0
  4. generation_config.json +14 -0
  5. model.safetensors.index.json +0 -0
  6. quantization_config.json +0 -0
  7. tokenizer_config.json +34 -0
  8. vq-base-model-00002-of-00046.safetensors +3 -0
  9. vq-base-model-00006-of-00046.safetensors +3 -0
  10. vq-base-model-00008-of-00046.safetensors +3 -0
  11. vq-base-model-00013-of-00046.safetensors +3 -0
  12. vq-base-model-00019-of-00046.safetensors +3 -0
  13. vq-base-model-00020-of-00046.safetensors +3 -0
  14. vq-base-model-00023-of-00046.safetensors +3 -0
  15. vq-base-model-00025-of-00046.safetensors +3 -0
  16. vq-base-model-00026-of-00046.safetensors +3 -0
  17. vq-base-model-00030-of-00046.safetensors +3 -0
  18. vq-base-model-00033-of-00046.safetensors +3 -0
  19. vq-base-model-00034-of-00046.safetensors +3 -0
  20. vq-base-model-00035-of-00046.safetensors +3 -0
  21. vq-base-model-00036-of-00046.safetensors +3 -0
  22. vq-base-model-00038-of-00046.safetensors +3 -0
  23. vq-experts-L003.safetensors +3 -0
  24. vq-experts-L004.safetensors +3 -0
  25. vq-experts-L005.safetensors +3 -0
  26. vq-experts-L006.safetensors +3 -0
  27. vq-experts-L009.safetensors +3 -0
  28. vq-experts-L011.safetensors +3 -0
  29. vq-experts-L014.safetensors +3 -0
  30. vq-experts-L021.safetensors +3 -0
  31. vq-experts-L023.safetensors +3 -0
  32. vq-experts-L026.safetensors +3 -0
  33. vq-experts-L027.safetensors +3 -0
  34. vq-experts-L028.safetensors +3 -0
  35. vq-experts-L029.safetensors +3 -0
  36. vq-experts-L030.safetensors +3 -0
  37. vq-experts-L036.safetensors +3 -0
  38. vq-experts-L037.safetensors +3 -0
  39. vq-experts-L039.safetensors +3 -0
  40. vq-experts-L040.safetensors +3 -0
  41. vq-experts-L041.safetensors +3 -0
  42. vq-experts-L042.safetensors +3 -0
  43. vq-experts-L048.safetensors +3 -0
  44. vq-experts-L053.safetensors +3 -0
  45. vq-experts-L054.safetensors +3 -0
  46. vq-experts-L059.safetensors +3 -0
  47. vq-experts-L060.safetensors +3 -0
  48. vq-experts-L067.safetensors +3 -0
  49. vq-experts-L069.safetensors +3 -0
  50. vq-experts-L077.safetensors +3 -0
README.md ADDED
@@ -0,0 +1,86 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: mit
3
+ base_model:
4
+ - zai-org/GLM-5.2
5
+ base_model_relation: quantized
6
+ language:
7
+ - ja
8
+ - en
9
+ - zh
10
+ tags:
11
+ - quantization
12
+ - vector-quantization
13
+ - aqlm
14
+ - mixture-of-experts
15
+ - glm
16
+ - vllm
17
+ pipeline_tag: text-generation
18
+ ---
19
+
20
+ # GLM-5.2 — mixed-bit VQ (AQLM) ~1.86-bit
21
+
22
+ A **~180 GiB** quantization of **[GLM-5.2](https://huggingface.co/zai-org/GLM-5.2)**
23
+ (744B Chinese-native reasoning MoE, MIT) that keeps Japanese/English/Chinese
24
+ **thinking-mode** quality at **~1.86 bit/weight**, using **vector quantization with
25
+ GPTQ error compensation (AQLM-style)** instead of scalar rounding.
26
+
27
+ Runs on **2× RTX PRO 6000 (sm_120 Blackwell, ~95 GiB each)** via vLLM.
28
+
29
+ ## Why VQ
30
+
31
+ At the same size, scalar mixed-bit rounding loses too much at 1–2 bit. Replacing the
32
+ scalar codes with a **shared vector codebook + per-row error compensation** recovers most
33
+ of it (the two together are *super-additive* — neither alone is enough):
34
+
35
+ | Metric | Scalar mixed-bit (same ~180 GiB) | **This (VQ + compensation)** |
36
+ |---|---|---|
37
+ | Calibration KL (fake-quant, iso-size) | baseline | **−47 %** |
38
+ | Greedy arithmetic eval (JA/EN/ZH, terminate + correct) | 21/22 | **22/22** |
39
+ | 1-bit experts | collapse (KL ≈ 13) | **survive (KL ≈ 0.42)** |
40
+
41
+ > The −47 % KL is a fake-quant, iso-size comparison; the deployable end-to-end signal is
42
+ > the greedy eval (multi-digit multiplication and word problems in all three languages,
43
+ > including held-out items not in calibration).
44
+
45
+ ## Serving
46
+
47
+ This is **not** a plug-and-play GGUF — it needs a matching sm_120 stack:
48
+
49
+ - **vLLM** with `GlmMoeDsaForCausalLM` + sm_120 kernels (reference: `jasl/vllm` PR-41834 sm12x preview).
50
+ - **transformers 5.12**.
51
+ - The **VQ serving plugin** from **[mmzz164/OneCompression @ `glm-serving-v1`](https://github.com/mmzz164/OneCompression)** — see [`example/glm-5.2/`](https://github.com/mmzz164/OneCompression/tree/glm-serving-v1/example/glm-5.2) for the launcher and full instructions.
52
+ - **2× ~95 GiB sm_120 GPUs**, EP=1 / TP=2 (VQ codes can't be tensor-parallel-sharded).
53
+
54
+ ```bash
55
+ GLM_CKPT=/path/to/this/model bash start_glm_api_vq.sh # OpenAI API :8001, served as "glm-5.2"
56
+ ```
57
+
58
+ `MixedVQMoEMethod` is auto-selected from the `format:"vq"` markers in `quantization_config`.
59
+
60
+ ## Performance
61
+
62
+ - **~16 tok/s** steady-state decode (single stream), **38×** over the eager dequant baseline
63
+ (grouped Triton VQ-GEMM + CUDA graphs; the key win was fixing a shared-memory bank conflict
64
+ in the codebook gather).
65
+ - **Context ≤ 4096** (dense MLA — sm_120 has no sparse-DSA forward kernel; dense is exact at
66
+ ctx ≤ 2048 and validated functional, incl. >2048 needle retrieval, up to 4096).
67
+
68
+ ## Allocation
69
+
70
+ Mixed **1/2/3-bit per expert** (≈ 15.8k @1-bit / 34.0k @2-bit / 7.8k @3-bit projections),
71
+ allocated by activation-frequency-aware AutoBit (arithmetic-routing tuned), then re-encoded
72
+ to VQ codes + a shared codebook per bit-width. Non-expert "spine" stays scalar 4-bit.
73
+
74
+ ## Limitations
75
+
76
+ - sm_120-specific serving stack (not portable to plain wheels).
77
+ - Context capped at 4096 on this hardware (sm_120 sparse-attention kernel gap + VRAM); longer
78
+ context needs smaller weights.
79
+ - Default serving template is **thinking-on at max reasoning effort** — thorough but verbose
80
+ for casual chat (pass `chat_template_kwargs={"enable_thinking": false}` for direct answers).
81
+
82
+ ## License & attribution
83
+
84
+ - This quantized model: **MIT**.
85
+ - Base **GLM-5.2**: **MIT**, © Zhipu AI — this is a derivative; all rights/attribution to upstream.
86
+ - Quantization/serving built on **OneCompression** (MIT, © Fujitsu Ltd.) and vLLM / transformers (Apache-2.0).
chat_template.jinja ADDED
@@ -0,0 +1,119 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [gMASK]<sop>
2
+ {%- set effective_reasoning_effort = 'high' if reasoning_effort is defined and reasoning_effort == 'high' else 'max' -%}
3
+ {%- if (enable_thinking is not defined or enable_thinking) and effective_reasoning_effort is not none -%}<|system|>Reasoning Effort: {{ effective_reasoning_effort | capitalize }}{%- endif -%}
4
+ {%- if tools -%}
5
+ {%- macro tool_to_json(tool) -%}
6
+ {%- set ns_tool = namespace(first=true) -%}
7
+ {{ '{' -}}
8
+ {%- for k, v in tool.items() -%}
9
+ {%- if k != 'defer_loading' and k != 'strict' -%}
10
+ {%- if not ns_tool.first -%}{{- ', ' -}}{%- endif -%}
11
+ {%- set ns_tool.first = false -%}
12
+ "{{ k }}": {{ v | tojson(ensure_ascii=False) }}
13
+ {%- endif -%}
14
+ {%- endfor -%}
15
+ {{- '}' -}}
16
+ {%- endmacro -%}
17
+ <|system|>
18
+ # Tools
19
+
20
+ You may call one or more functions to assist with the user query.
21
+
22
+ You are provided with function signatures within <tools></tools> XML tags:
23
+ <tools>
24
+ {% for tool in tools %}
25
+ {%- if 'function' in tool -%}
26
+ {%- set tool = tool['function'] -%}
27
+ {%- endif -%}
28
+ {% if tool.defer_loading is not defined or not tool.defer_loading %}
29
+ {{ tool_to_json(tool) }}
30
+ {% endif %}
31
+ {% endfor %}
32
+ </tools>
33
+
34
+ For each function call, output the function name and arguments within the following XML format:
35
+ <tool_call>{function-name}<arg_key>{arg-key-1}</arg_key><arg_value>{arg-value-1}</arg_value><arg_key>{arg-key-2}</arg_key><arg_value>{arg-value-2}</arg_value>...</tool_call>{%- endif -%}
36
+ {%- macro visible_text(content) -%}
37
+ {%- if content is string -%}
38
+ {{- content }}
39
+ {%- elif content is iterable and content is not mapping -%}
40
+ {%- for item in content -%}
41
+ {%- if item is mapping and item.type == 'text' -%}
42
+ {{- item.text }}
43
+ {%- elif item is string -%}
44
+ {{- item }}
45
+ {%- elif item is mapping and item.type in ['image', 'image_url', 'video', 'video_url', 'audio', 'audio_url', 'input_audio'] -%}
46
+ {%- set media_type = item.type | replace('_url', '') | replace('input_', '') -%}
47
+ {{- "<reminder>You are unable to process this " ~ media_type ~ " because you don't have multi-modal input ability. Try different methods.</reminder>" }}
48
+ {%- endif -%}
49
+ {%- endfor -%}
50
+ {%- else -%}
51
+ {{- content }}
52
+ {%- endif -%}
53
+ {%- endmacro -%}
54
+ {%- set ns = namespace(last_user_index=-1) -%}
55
+ {%- for m in messages %}
56
+ {%- if m.role == 'user' %}
57
+ {%- set ns.last_user_index = loop.index0 -%}
58
+ {%- endif %}
59
+ {%- endfor %}
60
+ {%- for m in messages -%}
61
+ {%- if m.role == 'user' -%}<|user|>{{ visible_text(m.content) }}
62
+ {%- elif m.role == 'assistant' -%}
63
+ <|assistant|>
64
+ {%- set content = visible_text(m.content) %}
65
+ {%- if m.reasoning_content is string %}
66
+ {%- set reasoning_content = m.reasoning_content %}
67
+ {%- elif '</think>' in content %}
68
+ {%- set reasoning_content = content.split('</think>')[0].split('<think>')[-1] %}
69
+ {%- set content = content.split('</think>')[-1] %}
70
+ {%- endif %}
71
+ {%- if ((clear_thinking is defined and not clear_thinking) or loop.index0 > ns.last_user_index) and reasoning_content is defined -%}
72
+ {{ '<think>' + reasoning_content + '</think>'}}
73
+ {%- else -%}
74
+ {{ '<think></think>' }}
75
+ {%- endif -%}
76
+ {%- if content.strip() -%}
77
+ {{ content.strip() }}
78
+ {%- endif -%}
79
+ {% if m.tool_calls %}
80
+ {% for tc in m.tool_calls %}
81
+ {%- if tc.function %}
82
+ {%- set tc = tc.function %}
83
+ {%- endif %}
84
+ {{- '<tool_call>' + tc.name -}}
85
+ {% set _args = tc.arguments %}{% for k, v in _args.items() %}<arg_key>{{ k }}</arg_key><arg_value>{{ v | tojson(ensure_ascii=False) if v is not string else v }}</arg_value>{% endfor %}</tool_call>{% endfor %}
86
+ {% endif %}
87
+ {%- elif m.role == 'tool' -%}
88
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
89
+ {{- '<|observation|>' -}}
90
+ {%- endif %}
91
+ {%- if m.content is string -%}
92
+ {{- '<tool_response>' + m.content + '</tool_response>' -}}
93
+ {%- elif m.content is iterable and m.content is not mapping and m.content and m.content.0.type == "tool_reference" -%}
94
+ {{- '<tool_response><tools>\n' -}}
95
+ {% for tr in m.content %}
96
+ {%- for tool in tools -%}
97
+ {%- if 'function' in tool -%}
98
+ {%- set tool = tool['function'] -%}
99
+ {%- endif -%}
100
+ {%- if tool.name == tr.name -%}
101
+ {{- tool_to_json(tool) + '\n' -}}
102
+ {%- endif -%}
103
+ {%- endfor -%}
104
+ {%- endfor -%}
105
+ {{- '</tools></tool_response>' -}}
106
+ {%- elif m.content is iterable and m.content is not mapping and m.content and m.content.0 is mapping and m.content.0.output is defined -%}
107
+ {%- for tr in m.content -%}
108
+ {{- '<tool_response>' + tr.output + '</tool_response>' -}}
109
+ {%- endfor -%}
110
+ {%- else -%}
111
+ {{- '<tool_response>' + visible_text(m.content) + '</tool_response>' -}}
112
+ {% endif -%}
113
+ {%- elif m.role == 'system' -%}
114
+ <|system|>{{ visible_text(m.content) }}
115
+ {%- endif -%}
116
+ {%- endfor -%}
117
+ {%- if add_generation_prompt -%}
118
+ <|assistant|>{{- '<think></think>' if (enable_thinking is defined and not enable_thinking) else '<think>' -}}
119
+ {%- endif -%}
config.json ADDED
The diff for this file is too large to render. See raw diff
 
generation_config.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 0,
4
+ "eos_token_id": [
5
+ 154820,
6
+ 154827,
7
+ 154829
8
+ ],
9
+ "output_attentions": false,
10
+ "output_hidden_states": false,
11
+ "pad_token_id": 154820,
12
+ "transformers_version": "5.12.0",
13
+ "use_cache": true
14
+ }
model.safetensors.index.json ADDED
The diff for this file is too large to render. See raw diff
 
quantization_config.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "backend": "tokenizers",
3
+ "clean_up_tokenization_spaces": false,
4
+ "do_lower_case": false,
5
+ "eos_token": "<|endoftext|>",
6
+ "extra_special_tokens": [
7
+ "<|endoftext|>",
8
+ "[MASK]",
9
+ "[gMASK]",
10
+ "[sMASK]",
11
+ "<sop>",
12
+ "<eop>",
13
+ "<|system|>",
14
+ "<|user|>",
15
+ "<|assistant|>",
16
+ "<|observation|>",
17
+ "<|begin_of_image|>",
18
+ "<|end_of_image|>",
19
+ "<|begin_of_video|>",
20
+ "<|end_of_video|>",
21
+ "<|begin_of_audio|>",
22
+ "<|end_of_audio|>",
23
+ "<|begin_of_transcription|>",
24
+ "<|end_of_transcription|>"
25
+ ],
26
+ "is_local": true,
27
+ "local_files_only": false,
28
+ "model_max_length": 1048576,
29
+ "model_specific_special_tokens": {},
30
+ "pad_token": "<|endoftext|>",
31
+ "padding_side": "left",
32
+ "remove_space": false,
33
+ "tokenizer_class": "TokenizersBackend"
34
+ }
vq-base-model-00002-of-00046.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:dcb15f56f9e3cfc9732385f222f5c2fcf203d5bfed5fe238f0aa0978ed4b035e
3
+ size 236159704
vq-base-model-00006-of-00046.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6f22b0263ee5247e797757a9b4e52be1d140e4a82077f761e1bb9d35d86907b3
3
+ size 217415376
vq-base-model-00008-of-00046.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:be85ec345e5b5f0fef78c1d9020d752da64f9895437a4ae53f2282f672d60807
3
+ size 168700640
vq-base-model-00013-of-00046.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2ce5b2a9b460da4fd7af3a20b6a0d1c7f521a28919082f5ee6671bdde7999b5c
3
+ size 217415376
vq-base-model-00019-of-00046.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8dff8f1f927d8238653d8dbb44ae9ab799a52352bce8426b7e5e7091115c477a
3
+ size 236159784
vq-base-model-00020-of-00046.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2b6abdd7c5172988fd887aee68902a13f9a6541c5c79c4e881b528a51482aef6
3
+ size 165051656
vq-base-model-00023-of-00046.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:42b417d77f107dff8e9256480d609f2241777b059daaab6ab1610ee79ae68709
3
+ size 236159784
vq-base-model-00025-of-00046.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0e1ab6cd1eed5a14c010ce920cc3a189707dde4e66716a51ee0f677527c74675
3
+ size 217415376
vq-base-model-00026-of-00046.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:58a31c0fc22c4175d30057a27fb29f913691fc271c1b6c805abf192e1d7d6a9c
3
+ size 236159784
vq-base-model-00030-of-00046.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:27d1a5f6b897e2c6a413b8300216b88e4ee35e56a4bc3273c5f298bee8aeba47
3
+ size 108707664
vq-base-model-00033-of-00046.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e164d3df9c94bebc0c406d0cd7b7b318449b36c3ddbb4f5d6735bb4bc78d544b
3
+ size 156860776
vq-base-model-00034-of-00046.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e64116c2002f0eb50835b5986d81bd8fd98d4b3f4297fc4eace2c9d293c89d9f
3
+ size 188006672
vq-base-model-00035-of-00046.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:614f4bee1dcccb464756f3c1d4874aab270ce29528e517cd07c9aec9eeba3daf
3
+ size 236159784
vq-base-model-00036-of-00046.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:92e79454c6ec16f06497519dfcbc3c4209f66b43660845f19742d630de5d7b99
3
+ size 217415376
vq-base-model-00038-of-00046.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:09d78f05581770a4bb4cd5fd3cb10bcca0f4c6bf2679e5d0a25d271722454185
3
+ size 236159784
vq-experts-L003.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:10df3b804bc25f8698e2c8efe75d6578c694cf0b62d251dfb1aff065fa02fefe
3
+ size 2007162208
vq-experts-L004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f618d7a52d572e155648eb2c994b87450c30bd64123e9dc456c388afa57f1a0a
3
+ size 2403524176
vq-experts-L005.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9cd6e8c183029f5d59c7ec8272735e6b2e9ba116646b7dd5c9e2892a010a6100
3
+ size 2513624680
vq-experts-L006.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:86c14d7307227118e6f521b6cc73ae08669c844baa8937c5a7c74a68faf9059c
3
+ size 2653609672
vq-experts-L009.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c4cbcb339232b4e0168ee92a6ee542cad17cc4f20f4eb99dd6fe1ed8152f8bf1
3
+ size 2615860920
vq-experts-L011.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d7d835446417f018c763dea46ee6bc1a50ff5e3e0e5f1d495c59b28e07cfb99e
3
+ size 2601706656
vq-experts-L014.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:621989f591ad7ca4ef4bdc7d2a8d7e3623c05e4bfbdd9171844333cb657eeab2
3
+ size 2548229264
vq-experts-L021.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:40517e7dfd06fcaf16ee1a8ead23935d4d85359b4831da51599b2a694d1aeb84
3
+ size 2335892504
vq-experts-L023.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f27939b4e0bbf1f2d282c29002499e3d0af6309a3f9fdae71acf3edbd81c7bb6
3
+ size 2513626200
vq-experts-L026.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:af55f00e37e897808b78e192af54c7d962209a5c1fb1307559fbffe8f5bf08a8
3
+ size 2434982992
vq-experts-L027.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5b3dbf56931dce2b39b0d181d4b2c62364a959b9c2b79549bf124f45c386a9c7
3
+ size 2409817176
vq-experts-L028.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7f7ce97f0ecee5b0b13f80cd87033277d4a4f9ef68c1efe6190451a6da8370f0
3
+ size 2460148808
vq-experts-L029.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eb9bf1a15883bce8fced9a115ff13b968533671a5581adb769dd21a9fa303eb4
3
+ size 2340611080
vq-experts-L030.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a2dd35fc1ec3e40ebd92b79d2fae084c3a058b80a6d92e88c24b665c07aa2659
3
+ size 2434982968
vq-experts-L036.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:55f95b546debd8e9827e5b961256af09242b8efc004b60f9c0013ca612d06601
3
+ size 2324882424
vq-experts-L037.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:183f0e805002ed917b5b1847644fea568e04222daa54d11dfc30d16c2e15ef8c
3
+ size 2390942736
vq-experts-L039.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b5f7815b03ade2cd2a21a3d6608f9be286eb4ecb8770b219b56aba08d7d51c22
3
+ size 2332746816
vq-experts-L040.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:57f096fd1f01656f6c4a0a02724a53b0eafd3e6c0ecfb1cacf02adc1c65d81bd
3
+ size 2307580928
vq-experts-L041.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1f5efbd5333fba5260c11ac8ebd0ea89def811360d91854d61c92e51e62e7070
3
+ size 2326455312
vq-experts-L042.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5f415d16f03aa5cc041ab42ba7749acc0c8e209bfa153616648118a4b478bd43
3
+ size 2370495488
vq-experts-L048.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:46254f9d2ed47f9a716dbe0d953c4456001f7d05aac0445f09bd8939f49d2e48
3
+ size 2350048296
vq-experts-L053.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:718ae4fb55747c5238cdcde9b945394378da189c38698055a3cc7e19d4575e76
3
+ size 2444420128
vq-experts-L054.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:726e302fe061254b19a3afd285cfd908e98bb63021ae6e81b58ea7ccd950c559
3
+ size 2356339704
vq-experts-L059.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:703827b1d938dab6ce354d7408e3891ac7a2e8d6088ad100bb235aaa8a8998be
3
+ size 2350048280
vq-experts-L060.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:138463d0ac04140ebbc31224f87cd8b00f789457376130430450078d7361b9f2
3
+ size 2339038216
vq-experts-L067.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:fa677dd8e780ea4e307ca79b28f16dcfb19a0785ae8b13567a955693594c190e
3
+ size 2389369904
vq-experts-L069.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:8ac6b4dc999e16faeb4074bcf469369d0b2b2fa9474f7107f86fa7f1358f7b53
3
+ size 2368922664
vq-experts-L077.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c95b13572114cf46d22cc856b6e69de373a5a590764031b3bdbcd90016008d27
3
+ size 2466440272