Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- qwen25-1p5b__gptq__openhermes__n128__s2/BENCH_DONE +1 -0
- qwen25-1p5b__gptq__openhermes__n128__s2/chat_template.jinja +54 -0
- qwen25-1p5b__gptq__openhermes__n128__s2/config.json +108 -0
- qwen25-1p5b__gptq__openhermes__n128__s2/generation_config.json +14 -0
- qwen25-1p5b__gptq__openhermes__n128__s2/model.safetensors +3 -0
- qwen25-1p5b__gptq__openhermes__n128__s2/quant_log.csv +197 -0
- qwen25-1p5b__gptq__openhermes__n128__s2/quantize_config.json +47 -0
- qwen25-1p5b__gptq__openhermes__n128__s2/tokenizer.json +3 -0
- qwen25-1p5b__gptq__openhermes__n128__s2/tokenizer_config.json +30 -0
.gitattributes
CHANGED
|
@@ -54,3 +54,4 @@ qwen25-1p5b__awq__wikitext2__n512__s1/tokenizer.json filter=lfs diff=lfs merge=l
|
|
| 54 |
qwen25-1p5b__awq__wikitext2__n512__s2/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 55 |
qwen25-1p5b__gptq__openhermes__n128__s0/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 56 |
qwen25-1p5b__gptq__openhermes__n128__s1/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 54 |
qwen25-1p5b__awq__wikitext2__n512__s2/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 55 |
qwen25-1p5b__gptq__openhermes__n128__s0/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 56 |
qwen25-1p5b__gptq__openhermes__n128__s1/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 57 |
+
qwen25-1p5b__gptq__openhermes__n128__s2/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
qwen25-1p5b__gptq__openhermes__n128__s2/BENCH_DONE
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
2026-07-30T20:20:59.427253+00:00
|
qwen25-1p5b__gptq__openhermes__n128__s2/chat_template.jinja
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%- if tools %}
|
| 2 |
+
{{- '<|im_start|>system\n' }}
|
| 3 |
+
{%- if messages[0]['role'] == 'system' %}
|
| 4 |
+
{{- messages[0]['content'] }}
|
| 5 |
+
{%- else %}
|
| 6 |
+
{{- 'You are Qwen, created by Alibaba Cloud. You are a helpful assistant.' }}
|
| 7 |
+
{%- endif %}
|
| 8 |
+
{{- "\n\n# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
|
| 9 |
+
{%- for tool in tools %}
|
| 10 |
+
{{- "\n" }}
|
| 11 |
+
{{- tool | tojson }}
|
| 12 |
+
{%- endfor %}
|
| 13 |
+
{{- "\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" }}
|
| 14 |
+
{%- else %}
|
| 15 |
+
{%- if messages[0]['role'] == 'system' %}
|
| 16 |
+
{{- '<|im_start|>system\n' + messages[0]['content'] + '<|im_end|>\n' }}
|
| 17 |
+
{%- else %}
|
| 18 |
+
{{- '<|im_start|>system\nYou are Qwen, created by Alibaba Cloud. You are a helpful assistant.<|im_end|>\n' }}
|
| 19 |
+
{%- endif %}
|
| 20 |
+
{%- endif %}
|
| 21 |
+
{%- for message in messages %}
|
| 22 |
+
{%- if (message.role == "user") or (message.role == "system" and not loop.first) or (message.role == "assistant" and not message.tool_calls) %}
|
| 23 |
+
{{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
|
| 24 |
+
{%- elif message.role == "assistant" %}
|
| 25 |
+
{{- '<|im_start|>' + message.role }}
|
| 26 |
+
{%- if message.content %}
|
| 27 |
+
{{- '\n' + message.content }}
|
| 28 |
+
{%- endif %}
|
| 29 |
+
{%- for tool_call in message.tool_calls %}
|
| 30 |
+
{%- if tool_call.function is defined %}
|
| 31 |
+
{%- set tool_call = tool_call.function %}
|
| 32 |
+
{%- endif %}
|
| 33 |
+
{{- '\n<tool_call>\n{"name": "' }}
|
| 34 |
+
{{- tool_call.name }}
|
| 35 |
+
{{- '", "arguments": ' }}
|
| 36 |
+
{{- tool_call.arguments | tojson }}
|
| 37 |
+
{{- '}\n</tool_call>' }}
|
| 38 |
+
{%- endfor %}
|
| 39 |
+
{{- '<|im_end|>\n' }}
|
| 40 |
+
{%- elif message.role == "tool" %}
|
| 41 |
+
{%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != "tool") %}
|
| 42 |
+
{{- '<|im_start|>user' }}
|
| 43 |
+
{%- endif %}
|
| 44 |
+
{{- '\n<tool_response>\n' }}
|
| 45 |
+
{{- message.content }}
|
| 46 |
+
{{- '\n</tool_response>' }}
|
| 47 |
+
{%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
|
| 48 |
+
{{- '<|im_end|>\n' }}
|
| 49 |
+
{%- endif %}
|
| 50 |
+
{%- endif %}
|
| 51 |
+
{%- endfor %}
|
| 52 |
+
{%- if add_generation_prompt %}
|
| 53 |
+
{{- '<|im_start|>assistant\n' }}
|
| 54 |
+
{%- endif %}
|
qwen25-1p5b__gptq__openhermes__n128__s2/config.json
ADDED
|
@@ -0,0 +1,108 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"Qwen2ForCausalLM"
|
| 4 |
+
],
|
| 5 |
+
"attention_dropout": 0.0,
|
| 6 |
+
"bos_token_id": 151643,
|
| 7 |
+
"dtype": "bfloat16",
|
| 8 |
+
"eos_token_id": 151645,
|
| 9 |
+
"hidden_act": "silu",
|
| 10 |
+
"hidden_size": 1536,
|
| 11 |
+
"initializer_range": 0.02,
|
| 12 |
+
"intermediate_size": 8960,
|
| 13 |
+
"layer_types": [
|
| 14 |
+
"full_attention",
|
| 15 |
+
"full_attention",
|
| 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 |
+
],
|
| 43 |
+
"max_position_embeddings": 32768,
|
| 44 |
+
"max_window_layers": 21,
|
| 45 |
+
"model_type": "qwen2",
|
| 46 |
+
"num_attention_heads": 12,
|
| 47 |
+
"num_hidden_layers": 28,
|
| 48 |
+
"num_key_value_heads": 2,
|
| 49 |
+
"pad_token_id": 151643,
|
| 50 |
+
"quantization_config": {
|
| 51 |
+
"bits": 4,
|
| 52 |
+
"checkpoint_format": "gptq",
|
| 53 |
+
"desc_act": true,
|
| 54 |
+
"format": "gptq",
|
| 55 |
+
"group_size": 128,
|
| 56 |
+
"lm_head": false,
|
| 57 |
+
"meta": {
|
| 58 |
+
"act_group_aware": false,
|
| 59 |
+
"auto_forward_data_parallel": true,
|
| 60 |
+
"damp_auto_increment": 0.01,
|
| 61 |
+
"damp_percent": 0.01,
|
| 62 |
+
"dense_vram_strategy": "exclusive",
|
| 63 |
+
"dense_vram_strategy_devices": null,
|
| 64 |
+
"fallback": {
|
| 65 |
+
"smooth": null,
|
| 66 |
+
"strategy": "rtn",
|
| 67 |
+
"threshold": "0.5%"
|
| 68 |
+
},
|
| 69 |
+
"foem": null,
|
| 70 |
+
"gc_mode": "interval",
|
| 71 |
+
"gptaq": null,
|
| 72 |
+
"hessian": {
|
| 73 |
+
"chunk_bytes": null,
|
| 74 |
+
"chunk_size": null,
|
| 75 |
+
"staging_dtype": "float32"
|
| 76 |
+
},
|
| 77 |
+
"mock_quantization": false,
|
| 78 |
+
"moe_vram_strategy": "exclusive",
|
| 79 |
+
"moe_vram_strategy_devices": null,
|
| 80 |
+
"mse": 0.0,
|
| 81 |
+
"offload_to_disk": true,
|
| 82 |
+
"offload_to_disk_path": "/tmp/gptqmodel_de9miqnr",
|
| 83 |
+
"pack_impl": "cpu",
|
| 84 |
+
"quantizer": [
|
| 85 |
+
"gptqmodel:7.3.2"
|
| 86 |
+
],
|
| 87 |
+
"static_groups": false,
|
| 88 |
+
"true_sequential": true,
|
| 89 |
+
"uri": "https://github.com/modelcloud/gptqmodel",
|
| 90 |
+
"wait_for_submodule_finalizers": false
|
| 91 |
+
},
|
| 92 |
+
"method": "gptq",
|
| 93 |
+
"pack_dtype": "int32",
|
| 94 |
+
"quant_method": "gptq",
|
| 95 |
+
"sym": true
|
| 96 |
+
},
|
| 97 |
+
"rms_norm_eps": 1e-06,
|
| 98 |
+
"rope_parameters": {
|
| 99 |
+
"rope_theta": 1000000.0,
|
| 100 |
+
"rope_type": "default"
|
| 101 |
+
},
|
| 102 |
+
"sliding_window": null,
|
| 103 |
+
"tie_word_embeddings": true,
|
| 104 |
+
"transformers_version": "5.14.1",
|
| 105 |
+
"use_cache": true,
|
| 106 |
+
"use_sliding_window": false,
|
| 107 |
+
"vocab_size": 151936
|
| 108 |
+
}
|
qwen25-1p5b__gptq__openhermes__n128__s2/generation_config.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 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 |
+
"repetition_penalty": 1.1,
|
| 10 |
+
"temperature": 0.7,
|
| 11 |
+
"top_k": 20,
|
| 12 |
+
"top_p": 0.8,
|
| 13 |
+
"transformers_version": "5.14.1"
|
| 14 |
+
}
|
qwen25-1p5b__gptq__openhermes__n128__s2/model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:f51858316d599d12918db331ddcdf923bc3cb9dfa6806abee5bc3bc258dcb822
|
| 3 |
+
size 1149862904
|
qwen25-1p5b__gptq__openhermes__n128__s2/quant_log.csv
ADDED
|
@@ -0,0 +1,197 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
layer,module,loss,samples,damp,time
|
| 2 |
+
0,self_attn.q_proj,0.0000319646,0.01000,1.842
|
| 3 |
+
0,self_attn.v_proj,0.0000005211,0.01000,1.857
|
| 4 |
+
0,self_attn.k_proj,0.0000044181,0.01000,1.864
|
| 5 |
+
0,self_attn.o_proj,0.0000011771,0.01000,0.376
|
| 6 |
+
0,mlp.up_proj,0.0000091947,0.01000,1.038
|
| 7 |
+
0,mlp.gate_proj,0.0000134176,0.01000,1.045
|
| 8 |
+
0,mlp.down_proj,0.0000019787,0.01000,2.443
|
| 9 |
+
1,self_attn.q_proj,0.0000049392,0.01000,2.024
|
| 10 |
+
1,self_attn.k_proj,0.0000014705,0.01000,2.037
|
| 11 |
+
1,self_attn.v_proj,0.0000003274,0.01000,2.047
|
| 12 |
+
1,self_attn.o_proj,0.0000004704,0.01000,0.388
|
| 13 |
+
1,mlp.up_proj,0.0003023931,0.01000,1.049
|
| 14 |
+
1,mlp.gate_proj,0.0003719909,0.01000,1.060
|
| 15 |
+
1,mlp.down_proj,0.0000121116,0.01000,2.471
|
| 16 |
+
2,self_attn.q_proj,0.0000152563,0.01000,1.904
|
| 17 |
+
2,self_attn.k_proj,0.0000033363,0.01000,1.906
|
| 18 |
+
2,self_attn.v_proj,0.0000013520,0.01000,1.920
|
| 19 |
+
2,self_attn.o_proj,0.0000009652,0.01000,0.387
|
| 20 |
+
2,mlp.up_proj,0.0002022610,0.01000,1.049
|
| 21 |
+
2,mlp.gate_proj,0.0003254751,0.01000,1.053
|
| 22 |
+
2,mlp.down_proj,0.0000249425,0.01000,2.480
|
| 23 |
+
3,self_attn.v_proj,0.0000017420,0.01000,2.251
|
| 24 |
+
3,self_attn.q_proj,0.0000153622,0.01000,2.278
|
| 25 |
+
3,self_attn.k_proj,0.0000033193,0.01000,2.283
|
| 26 |
+
3,self_attn.o_proj,0.0000013310,0.01000,0.399
|
| 27 |
+
3,mlp.up_proj,0.0001400400,0.01000,1.273
|
| 28 |
+
3,mlp.gate_proj,0.0002659822,0.01000,1.304
|
| 29 |
+
3,mlp.down_proj,0.0000058773,0.01000,2.488
|
| 30 |
+
4,self_attn.k_proj,0.0000040419,0.01000,2.168
|
| 31 |
+
4,self_attn.q_proj,0.0000200073,0.01000,2.186
|
| 32 |
+
4,self_attn.v_proj,0.0000024775,0.01000,2.191
|
| 33 |
+
4,self_attn.o_proj,0.0000015609,0.01000,0.381
|
| 34 |
+
4,mlp.up_proj,0.0001108060,0.01000,1.215
|
| 35 |
+
4,mlp.gate_proj,0.0001859972,0.01000,1.226
|
| 36 |
+
4,mlp.down_proj,0.0000073995,0.01000,2.468
|
| 37 |
+
5,self_attn.q_proj,0.0000206139,0.01000,2.230
|
| 38 |
+
5,self_attn.k_proj,0.0000044533,0.01000,2.265
|
| 39 |
+
5,self_attn.v_proj,0.0000030414,0.01000,2.272
|
| 40 |
+
5,self_attn.o_proj,0.0000024222,0.01000,0.385
|
| 41 |
+
5,mlp.up_proj,0.0002224376,0.01000,1.047
|
| 42 |
+
5,mlp.gate_proj,0.0003453945,0.01000,1.060
|
| 43 |
+
5,mlp.down_proj,0.0000058981,0.01000,2.443
|
| 44 |
+
6,self_attn.q_proj,0.0000258748,0.01000,1.960
|
| 45 |
+
6,self_attn.v_proj,0.0000020174,0.01000,1.964
|
| 46 |
+
6,self_attn.k_proj,0.0000056834,0.01000,1.969
|
| 47 |
+
6,self_attn.o_proj,0.0000012291,0.01000,0.382
|
| 48 |
+
6,mlp.up_proj,0.0000805577,0.01000,1.036
|
| 49 |
+
6,mlp.gate_proj,0.0000978037,0.01000,1.046
|
| 50 |
+
6,mlp.down_proj,0.0000072550,0.01000,2.479
|
| 51 |
+
7,self_attn.k_proj,0.0000023802,0.01000,2.101
|
| 52 |
+
7,self_attn.q_proj,0.0000113747,0.01000,2.118
|
| 53 |
+
7,self_attn.v_proj,0.0000017001,0.01000,2.112
|
| 54 |
+
7,self_attn.o_proj,0.0000016333,0.01000,0.394
|
| 55 |
+
7,mlp.gate_proj,0.0000826219,0.01000,1.127
|
| 56 |
+
7,mlp.up_proj,0.0000774400,0.01000,1.130
|
| 57 |
+
7,mlp.down_proj,0.0000077422,0.01000,2.478
|
| 58 |
+
8,self_attn.q_proj,0.0000253171,0.01000,1.942
|
| 59 |
+
8,self_attn.v_proj,0.0000022720,0.01000,1.954
|
| 60 |
+
8,self_attn.k_proj,0.0000044455,0.01000,1.966
|
| 61 |
+
8,self_attn.o_proj,0.0000021184,0.01000,0.388
|
| 62 |
+
8,mlp.up_proj,0.0000782201,0.01000,1.121
|
| 63 |
+
8,mlp.gate_proj,0.0000857329,0.01000,1.131
|
| 64 |
+
8,mlp.down_proj,0.0000071938,0.01000,2.460
|
| 65 |
+
9,self_attn.k_proj,0.0000040673,0.01000,2.235
|
| 66 |
+
9,self_attn.q_proj,0.0000188360,0.01000,2.249
|
| 67 |
+
9,self_attn.v_proj,0.0000020412,0.01000,2.250
|
| 68 |
+
9,self_attn.o_proj,0.0000020255,0.01000,0.390
|
| 69 |
+
9,mlp.up_proj,0.0000748956,0.01000,1.292
|
| 70 |
+
9,mlp.gate_proj,0.0000779964,0.01000,1.297
|
| 71 |
+
9,mlp.down_proj,0.0000070629,0.01000,2.490
|
| 72 |
+
10,self_attn.v_proj,0.0000032345,0.01000,2.309
|
| 73 |
+
10,self_attn.k_proj,0.0000041419,0.01000,2.344
|
| 74 |
+
10,self_attn.q_proj,0.0000206274,0.01000,2.363
|
| 75 |
+
10,self_attn.o_proj,0.0000030455,0.01000,0.391
|
| 76 |
+
10,mlp.gate_proj,0.0000776552,0.01000,1.291
|
| 77 |
+
10,mlp.up_proj,0.0000731292,0.01000,1.302
|
| 78 |
+
10,mlp.down_proj,0.0000067923,0.01000,2.472
|
| 79 |
+
11,self_attn.k_proj,0.0000039650,0.01000,2.066
|
| 80 |
+
11,self_attn.q_proj,0.0000197664,0.01000,2.082
|
| 81 |
+
11,self_attn.v_proj,0.0000026011,0.01000,2.086
|
| 82 |
+
11,self_attn.o_proj,0.0000027957,0.01000,0.383
|
| 83 |
+
11,mlp.gate_proj,0.0000750577,0.01000,1.107
|
| 84 |
+
11,mlp.up_proj,0.0000660749,0.01000,1.109
|
| 85 |
+
11,mlp.down_proj,0.0000056842,0.01000,2.483
|
| 86 |
+
12,self_attn.q_proj,0.0000240605,0.01000,1.917
|
| 87 |
+
12,self_attn.k_proj,0.0000051733,0.01000,1.923
|
| 88 |
+
12,self_attn.v_proj,0.0000024800,0.01000,1.928
|
| 89 |
+
12,self_attn.o_proj,0.0000022580,0.01000,0.386
|
| 90 |
+
12,mlp.gate_proj,0.0000704571,0.01000,1.075
|
| 91 |
+
12,mlp.up_proj,0.0000649018,0.01000,1.073
|
| 92 |
+
12,mlp.down_proj,0.0000061569,0.01000,2.452
|
| 93 |
+
13,self_attn.k_proj,0.0000029875,0.01000,2.131
|
| 94 |
+
13,self_attn.v_proj,0.0000019626,0.01000,2.138
|
| 95 |
+
13,self_attn.q_proj,0.0000146839,0.01000,2.139
|
| 96 |
+
13,self_attn.o_proj,0.0000023179,0.01000,0.389
|
| 97 |
+
13,mlp.gate_proj,0.0000652862,0.01000,1.306
|
| 98 |
+
13,mlp.up_proj,0.0000628155,0.01000,1.310
|
| 99 |
+
13,mlp.down_proj,0.0000053307,0.01000,2.474
|
| 100 |
+
14,self_attn.k_proj,0.0000052121,0.01000,2.086
|
| 101 |
+
14,self_attn.q_proj,0.0000339141,0.01000,2.106
|
| 102 |
+
14,self_attn.v_proj,0.0000034786,0.01000,2.109
|
| 103 |
+
14,self_attn.o_proj,0.0000021510,0.01000,0.395
|
| 104 |
+
14,mlp.up_proj,0.0000712101,0.01000,1.275
|
| 105 |
+
14,mlp.gate_proj,0.0000693933,0.01000,1.270
|
| 106 |
+
14,mlp.down_proj,0.0000063415,0.01000,2.536
|
| 107 |
+
15,self_attn.q_proj,0.0000461348,0.01000,2.044
|
| 108 |
+
15,self_attn.v_proj,0.0000033089,0.01000,2.063
|
| 109 |
+
15,self_attn.k_proj,0.0000037807,0.01000,2.063
|
| 110 |
+
15,self_attn.o_proj,0.0000034658,0.01000,0.391
|
| 111 |
+
15,mlp.gate_proj,0.0000628773,0.01000,1.120
|
| 112 |
+
15,mlp.up_proj,0.0000599944,0.01000,1.124
|
| 113 |
+
15,mlp.down_proj,0.0000055154,0.01000,2.471
|
| 114 |
+
16,self_attn.q_proj,0.0000264368,0.01000,2.020
|
| 115 |
+
16,self_attn.v_proj,0.0000037057,0.01000,2.025
|
| 116 |
+
16,self_attn.k_proj,0.0000050082,0.01000,2.032
|
| 117 |
+
16,self_attn.o_proj,0.0000027638,0.01000,0.377
|
| 118 |
+
16,mlp.up_proj,0.0000695624,0.01000,1.108
|
| 119 |
+
16,mlp.gate_proj,0.0000710929,0.01000,1.112
|
| 120 |
+
16,mlp.down_proj,0.0000069760,0.01000,2.459
|
| 121 |
+
17,self_attn.k_proj,0.0000031100,0.01000,2.050
|
| 122 |
+
17,self_attn.q_proj,0.0000257555,0.01000,2.049
|
| 123 |
+
17,self_attn.v_proj,0.0000050330,0.01000,2.056
|
| 124 |
+
17,self_attn.o_proj,0.0000026143,0.01000,0.382
|
| 125 |
+
17,mlp.gate_proj,0.0000731819,0.01000,1.094
|
| 126 |
+
17,mlp.up_proj,0.0000730208,0.01000,1.101
|
| 127 |
+
17,mlp.down_proj,0.0000087921,0.01000,2.462
|
| 128 |
+
18,self_attn.q_proj,0.0000214385,0.01000,2.019
|
| 129 |
+
18,self_attn.v_proj,0.0000036513,0.01000,2.037
|
| 130 |
+
18,self_attn.k_proj,0.0000036734,0.01000,2.045
|
| 131 |
+
18,self_attn.o_proj,0.0000039668,0.01000,0.387
|
| 132 |
+
18,mlp.gate_proj,0.0000813083,0.01000,1.065
|
| 133 |
+
18,mlp.up_proj,0.0000805724,0.01000,1.064
|
| 134 |
+
18,mlp.down_proj,0.0000115615,0.01000,2.444
|
| 135 |
+
19,self_attn.q_proj,0.0000302223,0.01000,1.954
|
| 136 |
+
19,self_attn.v_proj,0.0000071573,0.01000,1.968
|
| 137 |
+
19,self_attn.k_proj,0.0000042741,0.01000,1.971
|
| 138 |
+
19,self_attn.o_proj,0.0000046974,0.01000,0.383
|
| 139 |
+
19,mlp.gate_proj,0.0000955085,0.01000,1.102
|
| 140 |
+
19,mlp.up_proj,0.0001015432,0.01000,1.104
|
| 141 |
+
19,mlp.down_proj,0.0000197997,0.01000,2.466
|
| 142 |
+
20,self_attn.q_proj,0.0000330843,0.01000,1.967
|
| 143 |
+
20,self_attn.k_proj,0.0000050683,0.01000,1.971
|
| 144 |
+
20,self_attn.v_proj,0.0000097376,0.01000,1.984
|
| 145 |
+
20,self_attn.o_proj,0.0000074887,0.01000,0.384
|
| 146 |
+
20,mlp.gate_proj,0.0001080088,0.01000,1.081
|
| 147 |
+
20,mlp.up_proj,0.0001105882,0.01000,1.086
|
| 148 |
+
20,mlp.down_proj,0.0000207131,0.01000,2.472
|
| 149 |
+
21,self_attn.q_proj,0.0000345654,0.01000,2.082
|
| 150 |
+
21,self_attn.v_proj,0.0000089766,0.01000,2.089
|
| 151 |
+
21,self_attn.k_proj,0.0000049212,0.01000,2.092
|
| 152 |
+
21,self_attn.o_proj,0.0000048552,0.01000,0.381
|
| 153 |
+
21,mlp.up_proj,0.0001557980,0.01000,1.093
|
| 154 |
+
21,mlp.gate_proj,0.0001560528,0.01000,1.102
|
| 155 |
+
21,mlp.down_proj,0.0000330124,0.01000,2.496
|
| 156 |
+
22,self_attn.q_proj,0.0000323338,0.01000,1.978
|
| 157 |
+
22,self_attn.k_proj,0.0000056593,0.01000,1.996
|
| 158 |
+
22,self_attn.v_proj,0.0000108677,0.01000,2.000
|
| 159 |
+
22,self_attn.o_proj,0.0000068152,0.01000,0.385
|
| 160 |
+
22,mlp.up_proj,0.0001801820,0.01000,1.102
|
| 161 |
+
22,mlp.gate_proj,0.0001827171,0.01000,1.113
|
| 162 |
+
22,mlp.down_proj,0.0000429365,0.01000,2.449
|
| 163 |
+
23,self_attn.q_proj,0.0000401502,0.01000,1.947
|
| 164 |
+
23,self_attn.k_proj,0.0000062219,0.01000,1.965
|
| 165 |
+
23,self_attn.v_proj,0.0000136050,0.01000,1.969
|
| 166 |
+
23,self_attn.o_proj,0.0000076198,0.01000,0.378
|
| 167 |
+
23,mlp.up_proj,0.0001958504,0.01000,1.111
|
| 168 |
+
23,mlp.gate_proj,0.0001888091,0.01000,1.117
|
| 169 |
+
23,mlp.down_proj,0.0000497401,0.01000,2.457
|
| 170 |
+
24,self_attn.q_proj,0.0000412810,0.01000,1.991
|
| 171 |
+
24,self_attn.v_proj,0.0000271538,0.01000,1.992
|
| 172 |
+
24,self_attn.k_proj,0.0000066874,0.01000,1.998
|
| 173 |
+
24,self_attn.o_proj,0.0000101747,0.01000,0.382
|
| 174 |
+
24,mlp.gate_proj,0.0001889496,0.01000,1.095
|
| 175 |
+
24,mlp.up_proj,0.0002034370,0.01000,1.104
|
| 176 |
+
24,mlp.down_proj,0.0000579189,0.01000,2.444
|
| 177 |
+
25,self_attn.k_proj,0.0000070681,0.01000,1.919
|
| 178 |
+
25,self_attn.q_proj,0.0000398281,0.01000,1.921
|
| 179 |
+
25,self_attn.v_proj,0.0000412860,0.01000,1.924
|
| 180 |
+
25,self_attn.o_proj,0.0000127847,0.01000,0.382
|
| 181 |
+
25,mlp.gate_proj,0.0001877584,0.01000,1.093
|
| 182 |
+
25,mlp.up_proj,0.0002150490,0.01000,1.094
|
| 183 |
+
25,mlp.down_proj,0.0000726970,0.01000,2.459
|
| 184 |
+
26,self_attn.q_proj,0.0000467536,0.01000,1.897
|
| 185 |
+
26,self_attn.v_proj,0.0000520437,0.01000,1.907
|
| 186 |
+
26,self_attn.k_proj,0.0000071411,0.01000,1.914
|
| 187 |
+
26,self_attn.o_proj,0.0000090498,0.01000,0.384
|
| 188 |
+
26,mlp.gate_proj,0.0001795689,0.01000,1.065
|
| 189 |
+
26,mlp.up_proj,0.0002137869,0.01000,1.066
|
| 190 |
+
26,mlp.down_proj,0.0001074763,0.01000,2.460
|
| 191 |
+
27,self_attn.q_proj,0.0000465483,0.01000,1.936
|
| 192 |
+
27,self_attn.k_proj,0.0000073802,0.01000,1.938
|
| 193 |
+
27,self_attn.v_proj,0.0000530093,0.01000,1.953
|
| 194 |
+
27,self_attn.o_proj,0.0000307262,0.01000,0.383
|
| 195 |
+
27,mlp.gate_proj,0.0002353672,0.01000,1.077
|
| 196 |
+
27,mlp.up_proj,0.0002453577,0.01000,1.079
|
| 197 |
+
27,mlp.down_proj,0.0001264414,0.01000,2.466
|
qwen25-1p5b__gptq__openhermes__n128__s2/quantize_config.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bits": 4,
|
| 3 |
+
"group_size": 128,
|
| 4 |
+
"desc_act": true,
|
| 5 |
+
"lm_head": false,
|
| 6 |
+
"method": "gptq",
|
| 7 |
+
"quant_method": "gptq",
|
| 8 |
+
"format": "gptq",
|
| 9 |
+
"checkpoint_format": "gptq",
|
| 10 |
+
"pack_dtype": "int32",
|
| 11 |
+
"meta": {
|
| 12 |
+
"quantizer": [
|
| 13 |
+
"gptqmodel:7.3.2"
|
| 14 |
+
],
|
| 15 |
+
"uri": "https://github.com/modelcloud/gptqmodel",
|
| 16 |
+
"damp_percent": 0.01,
|
| 17 |
+
"damp_auto_increment": 0.01,
|
| 18 |
+
"static_groups": false,
|
| 19 |
+
"true_sequential": true,
|
| 20 |
+
"mse": 0.0,
|
| 21 |
+
"gptaq": null,
|
| 22 |
+
"foem": null,
|
| 23 |
+
"act_group_aware": false,
|
| 24 |
+
"fallback": {
|
| 25 |
+
"strategy": "rtn",
|
| 26 |
+
"threshold": "0.5%",
|
| 27 |
+
"smooth": null
|
| 28 |
+
},
|
| 29 |
+
"offload_to_disk": true,
|
| 30 |
+
"offload_to_disk_path": "/tmp/gptqmodel_de9miqnr",
|
| 31 |
+
"pack_impl": "cpu",
|
| 32 |
+
"gc_mode": "interval",
|
| 33 |
+
"wait_for_submodule_finalizers": false,
|
| 34 |
+
"auto_forward_data_parallel": true,
|
| 35 |
+
"dense_vram_strategy": "exclusive",
|
| 36 |
+
"dense_vram_strategy_devices": null,
|
| 37 |
+
"moe_vram_strategy": "exclusive",
|
| 38 |
+
"moe_vram_strategy_devices": null,
|
| 39 |
+
"mock_quantization": false,
|
| 40 |
+
"hessian": {
|
| 41 |
+
"chunk_size": null,
|
| 42 |
+
"chunk_bytes": null,
|
| 43 |
+
"staging_dtype": "float32"
|
| 44 |
+
}
|
| 45 |
+
},
|
| 46 |
+
"sym": true
|
| 47 |
+
}
|
qwen25-1p5b__gptq__openhermes__n128__s2/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3fd169731d2cbde95e10bf356d66d5997fd885dd8dbb6fb4684da3f23b2585d8
|
| 3 |
+
size 11421892
|
qwen25-1p5b__gptq__openhermes__n128__s2/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 |
+
}
|