Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- qwen25-1p5b__gptq__openhermes__n32__s1/BENCH_DONE +1 -0
- qwen25-1p5b__gptq__openhermes__n32__s1/chat_template.jinja +54 -0
- qwen25-1p5b__gptq__openhermes__n32__s1/config.json +108 -0
- qwen25-1p5b__gptq__openhermes__n32__s1/generation_config.json +14 -0
- qwen25-1p5b__gptq__openhermes__n32__s1/model.safetensors +3 -0
- qwen25-1p5b__gptq__openhermes__n32__s1/quant_log.csv +197 -0
- qwen25-1p5b__gptq__openhermes__n32__s1/quantize_config.json +47 -0
- qwen25-1p5b__gptq__openhermes__n32__s1/tokenizer.json +3 -0
- qwen25-1p5b__gptq__openhermes__n32__s1/tokenizer_config.json +30 -0
.gitattributes
CHANGED
|
@@ -56,3 +56,4 @@ qwen25-1p5b__gptq__openhermes__n128__s0/tokenizer.json filter=lfs diff=lfs merge
|
|
| 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
|
| 58 |
qwen25-1p5b__gptq__openhermes__n32__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
|
| 58 |
qwen25-1p5b__gptq__openhermes__n32__s0/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 59 |
+
qwen25-1p5b__gptq__openhermes__n32__s1/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
qwen25-1p5b__gptq__openhermes__n32__s1/BENCH_DONE
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
2026-07-30T19:54:34.423356+00:00
|
qwen25-1p5b__gptq__openhermes__n32__s1/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__n32__s1/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_3h4zwuvm",
|
| 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__n32__s1/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__n32__s1/model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:de7b8e36fb48d3c86f568a2e88a54559287b560bd5d7719c772d56852a10b918
|
| 3 |
+
size 1149862904
|
qwen25-1p5b__gptq__openhermes__n32__s1/quant_log.csv
ADDED
|
@@ -0,0 +1,197 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
layer,module,loss,samples,damp,time
|
| 2 |
+
0,self_attn.q_proj,0.0001213437,0.01000,1.871
|
| 3 |
+
0,self_attn.v_proj,0.0000019975,0.01000,1.875
|
| 4 |
+
0,self_attn.k_proj,0.0000169272,0.01000,1.881
|
| 5 |
+
0,self_attn.o_proj,0.0000046327,0.01000,0.374
|
| 6 |
+
0,mlp.up_proj,0.0000362972,0.01000,0.992
|
| 7 |
+
0,mlp.gate_proj,0.0000529442,0.01000,0.993
|
| 8 |
+
0,mlp.down_proj,0.0000069456,0.01000,2.459
|
| 9 |
+
1,self_attn.k_proj,0.0000057712,0.01000,1.897
|
| 10 |
+
1,self_attn.q_proj,0.0000194772,0.01000,1.903
|
| 11 |
+
1,self_attn.v_proj,0.0000012887,0.01000,1.910
|
| 12 |
+
1,self_attn.o_proj,0.0000018317,0.01000,0.372
|
| 13 |
+
1,mlp.up_proj,0.0011917753,0.01000,0.990
|
| 14 |
+
1,mlp.gate_proj,0.0014642454,0.01000,0.997
|
| 15 |
+
1,mlp.down_proj,0.0000450234,0.01000,2.402
|
| 16 |
+
2,self_attn.q_proj,0.0000593901,0.01000,1.792
|
| 17 |
+
2,self_attn.v_proj,0.0000053220,0.01000,1.801
|
| 18 |
+
2,self_attn.k_proj,0.0000129909,0.01000,1.801
|
| 19 |
+
2,self_attn.o_proj,0.0000036363,0.01000,0.367
|
| 20 |
+
2,mlp.gate_proj,0.0012723301,0.01000,0.988
|
| 21 |
+
2,mlp.up_proj,0.0007934332,0.01000,0.994
|
| 22 |
+
2,mlp.down_proj,0.0000992175,0.01000,2.406
|
| 23 |
+
3,self_attn.q_proj,0.0000598471,0.01000,1.853
|
| 24 |
+
3,self_attn.v_proj,0.0000068012,0.01000,1.852
|
| 25 |
+
3,self_attn.k_proj,0.0000129376,0.01000,1.857
|
| 26 |
+
3,self_attn.o_proj,0.0000052380,0.01000,0.378
|
| 27 |
+
3,mlp.gate_proj,0.0010377485,0.01000,1.000
|
| 28 |
+
3,mlp.up_proj,0.0005485014,0.01000,1.001
|
| 29 |
+
3,mlp.down_proj,0.0000201480,0.01000,2.444
|
| 30 |
+
4,self_attn.q_proj,0.0000778170,0.01000,1.796
|
| 31 |
+
4,self_attn.v_proj,0.0000096834,0.01000,1.794
|
| 32 |
+
4,self_attn.k_proj,0.0000156830,0.01000,1.800
|
| 33 |
+
4,self_attn.o_proj,0.0000060492,0.01000,0.367
|
| 34 |
+
4,mlp.gate_proj,0.0007233016,0.01000,1.019
|
| 35 |
+
4,mlp.up_proj,0.0004329276,0.01000,1.028
|
| 36 |
+
4,mlp.down_proj,0.0000258323,0.01000,2.404
|
| 37 |
+
5,self_attn.k_proj,0.0000172384,0.01000,1.801
|
| 38 |
+
5,self_attn.v_proj,0.0000119149,0.01000,1.815
|
| 39 |
+
5,self_attn.q_proj,0.0000800007,0.01000,1.820
|
| 40 |
+
5,self_attn.o_proj,0.0000093903,0.01000,0.372
|
| 41 |
+
5,mlp.gate_proj,0.0013453305,0.01000,0.970
|
| 42 |
+
5,mlp.up_proj,0.0008695218,0.01000,0.971
|
| 43 |
+
5,mlp.down_proj,0.0000196609,0.01000,2.412
|
| 44 |
+
6,self_attn.q_proj,0.0000996261,0.01000,1.830
|
| 45 |
+
6,self_attn.k_proj,0.0000219471,0.01000,1.836
|
| 46 |
+
6,self_attn.v_proj,0.0000077410,0.01000,1.840
|
| 47 |
+
6,self_attn.o_proj,0.0000046449,0.01000,0.374
|
| 48 |
+
6,mlp.gate_proj,0.0003783513,0.01000,0.989
|
| 49 |
+
6,mlp.up_proj,0.0003121544,0.01000,0.992
|
| 50 |
+
6,mlp.down_proj,0.0000248240,0.01000,2.406
|
| 51 |
+
7,self_attn.q_proj,0.0000436570,0.01000,1.787
|
| 52 |
+
7,self_attn.k_proj,0.0000090998,0.01000,1.792
|
| 53 |
+
7,self_attn.v_proj,0.0000065307,0.01000,1.797
|
| 54 |
+
7,self_attn.o_proj,0.0000059975,0.01000,0.375
|
| 55 |
+
7,mlp.up_proj,0.0002978103,0.01000,0.967
|
| 56 |
+
7,mlp.gate_proj,0.0003175125,0.01000,0.971
|
| 57 |
+
7,mlp.down_proj,0.0000267619,0.01000,2.403
|
| 58 |
+
8,self_attn.q_proj,0.0000966416,0.01000,1.854
|
| 59 |
+
8,self_attn.v_proj,0.0000087171,0.01000,1.860
|
| 60 |
+
8,self_attn.k_proj,0.0000169522,0.01000,1.867
|
| 61 |
+
8,self_attn.o_proj,0.0000079720,0.01000,0.371
|
| 62 |
+
8,mlp.up_proj,0.0003011833,0.01000,0.980
|
| 63 |
+
8,mlp.gate_proj,0.0003292711,0.01000,0.984
|
| 64 |
+
8,mlp.down_proj,0.0000249626,0.01000,2.389
|
| 65 |
+
9,self_attn.k_proj,0.0000155297,0.01000,1.781
|
| 66 |
+
9,self_attn.q_proj,0.0000720094,0.01000,1.788
|
| 67 |
+
9,self_attn.v_proj,0.0000078755,0.01000,1.786
|
| 68 |
+
9,self_attn.o_proj,0.0000077620,0.01000,0.373
|
| 69 |
+
9,mlp.gate_proj,0.0003006531,0.01000,1.023
|
| 70 |
+
9,mlp.up_proj,0.0002892284,0.01000,1.026
|
| 71 |
+
9,mlp.down_proj,0.0000248564,0.01000,2.397
|
| 72 |
+
10,self_attn.q_proj,0.0000788407,0.01000,1.888
|
| 73 |
+
10,self_attn.v_proj,0.0000124208,0.01000,1.892
|
| 74 |
+
10,self_attn.k_proj,0.0000158162,0.01000,1.894
|
| 75 |
+
10,self_attn.o_proj,0.0000113198,0.01000,0.370
|
| 76 |
+
10,mlp.gate_proj,0.0002974950,0.01000,0.987
|
| 77 |
+
10,mlp.up_proj,0.0002807911,0.01000,0.992
|
| 78 |
+
10,mlp.down_proj,0.0000237724,0.01000,2.411
|
| 79 |
+
11,self_attn.k_proj,0.0000150672,0.01000,1.830
|
| 80 |
+
11,self_attn.v_proj,0.0000099482,0.01000,1.837
|
| 81 |
+
11,self_attn.q_proj,0.0000752388,0.01000,1.839
|
| 82 |
+
11,self_attn.o_proj,0.0000105029,0.01000,0.370
|
| 83 |
+
11,mlp.up_proj,0.0002509114,0.01000,0.972
|
| 84 |
+
11,mlp.gate_proj,0.0002843786,0.01000,0.979
|
| 85 |
+
11,mlp.down_proj,0.0000194994,0.01000,2.409
|
| 86 |
+
12,self_attn.v_proj,0.0000094491,0.01000,1.872
|
| 87 |
+
12,self_attn.k_proj,0.0000194515,0.01000,1.891
|
| 88 |
+
12,self_attn.q_proj,0.0000912025,0.01000,1.896
|
| 89 |
+
12,self_attn.o_proj,0.0000082008,0.01000,0.372
|
| 90 |
+
12,mlp.up_proj,0.0002494369,0.01000,1.003
|
| 91 |
+
12,mlp.gate_proj,0.0002703103,0.01000,1.003
|
| 92 |
+
12,mlp.down_proj,0.0000218429,0.01000,2.407
|
| 93 |
+
13,self_attn.q_proj,0.0000566200,0.01000,1.811
|
| 94 |
+
13,self_attn.k_proj,0.0000115322,0.01000,1.815
|
| 95 |
+
13,self_attn.v_proj,0.0000075212,0.01000,1.825
|
| 96 |
+
13,self_attn.o_proj,0.0000090066,0.01000,0.374
|
| 97 |
+
13,mlp.gate_proj,0.0002513697,0.01000,1.110
|
| 98 |
+
13,mlp.up_proj,0.0002422466,0.01000,1.115
|
| 99 |
+
13,mlp.down_proj,0.0000191333,0.01000,2.399
|
| 100 |
+
14,self_attn.q_proj,0.0001295984,0.01000,1.847
|
| 101 |
+
14,self_attn.v_proj,0.0000134017,0.01000,1.864
|
| 102 |
+
14,self_attn.k_proj,0.0000197907,0.01000,1.868
|
| 103 |
+
14,self_attn.o_proj,0.0000078179,0.01000,0.368
|
| 104 |
+
14,mlp.up_proj,0.0002753537,0.01000,1.015
|
| 105 |
+
14,mlp.gate_proj,0.0002683711,0.01000,1.019
|
| 106 |
+
14,mlp.down_proj,0.0000227412,0.01000,2.404
|
| 107 |
+
15,self_attn.q_proj,0.0001739811,0.01000,1.797
|
| 108 |
+
15,self_attn.k_proj,0.0000143892,0.01000,1.807
|
| 109 |
+
15,self_attn.v_proj,0.0000126285,0.01000,1.812
|
| 110 |
+
15,self_attn.o_proj,0.0000131131,0.01000,0.371
|
| 111 |
+
15,mlp.gate_proj,0.0002399719,0.01000,1.028
|
| 112 |
+
15,mlp.up_proj,0.0002292688,0.01000,1.032
|
| 113 |
+
15,mlp.down_proj,0.0000190099,0.01000,2.438
|
| 114 |
+
16,self_attn.k_proj,0.0000186240,0.01000,1.858
|
| 115 |
+
16,self_attn.v_proj,0.0000139961,0.01000,1.856
|
| 116 |
+
16,self_attn.q_proj,0.0001000046,0.01000,1.871
|
| 117 |
+
16,self_attn.o_proj,0.0000097801,0.01000,0.367
|
| 118 |
+
16,mlp.up_proj,0.0002657080,0.01000,1.030
|
| 119 |
+
16,mlp.gate_proj,0.0002705322,0.01000,1.032
|
| 120 |
+
16,mlp.down_proj,0.0000245061,0.01000,2.393
|
| 121 |
+
17,self_attn.q_proj,0.0000979493,0.01000,1.846
|
| 122 |
+
17,self_attn.k_proj,0.0000118552,0.01000,1.857
|
| 123 |
+
17,self_attn.v_proj,0.0000193658,0.01000,1.861
|
| 124 |
+
17,self_attn.o_proj,0.0000094563,0.01000,0.369
|
| 125 |
+
17,mlp.up_proj,0.0002812643,0.01000,0.973
|
| 126 |
+
17,mlp.gate_proj,0.0002813556,0.01000,0.981
|
| 127 |
+
17,mlp.down_proj,0.0000314421,0.01000,2.415
|
| 128 |
+
18,self_attn.k_proj,0.0000140003,0.01000,1.832
|
| 129 |
+
18,self_attn.q_proj,0.0000815372,0.01000,1.836
|
| 130 |
+
18,self_attn.v_proj,0.0000139691,0.01000,1.842
|
| 131 |
+
18,self_attn.o_proj,0.0000150970,0.01000,0.372
|
| 132 |
+
18,mlp.up_proj,0.0003115625,0.01000,0.964
|
| 133 |
+
18,mlp.gate_proj,0.0003135508,0.01000,0.971
|
| 134 |
+
18,mlp.down_proj,0.0000418756,0.01000,2.397
|
| 135 |
+
19,self_attn.k_proj,0.0000163900,0.01000,1.799
|
| 136 |
+
19,self_attn.q_proj,0.0001160703,0.01000,1.801
|
| 137 |
+
19,self_attn.v_proj,0.0000277413,0.01000,1.805
|
| 138 |
+
19,self_attn.o_proj,0.0000181930,0.01000,0.374
|
| 139 |
+
19,mlp.up_proj,0.0003931882,0.01000,1.177
|
| 140 |
+
19,mlp.gate_proj,0.0003686559,0.01000,1.207
|
| 141 |
+
19,mlp.down_proj,0.0000710458,0.01000,2.502
|
| 142 |
+
20,self_attn.q_proj,0.0001274588,0.01000,2.955
|
| 143 |
+
20,self_attn.v_proj,0.0000374789,0.01000,2.984
|
| 144 |
+
20,self_attn.k_proj,0.0000192962,0.01000,3.003
|
| 145 |
+
20,self_attn.o_proj,0.0000274514,0.01000,0.407
|
| 146 |
+
20,mlp.up_proj,0.0004241691,0.01000,1.256
|
| 147 |
+
20,mlp.gate_proj,0.0004136471,0.01000,1.310
|
| 148 |
+
20,mlp.down_proj,0.0000713145,0.01000,2.422
|
| 149 |
+
21,self_attn.v_proj,0.0000340118,0.01000,1.775
|
| 150 |
+
21,self_attn.k_proj,0.0000183913,0.01000,1.781
|
| 151 |
+
21,self_attn.q_proj,0.0001303894,0.01000,1.789
|
| 152 |
+
21,self_attn.o_proj,0.0000176822,0.01000,0.367
|
| 153 |
+
21,mlp.gate_proj,0.0005914783,0.01000,0.974
|
| 154 |
+
21,mlp.up_proj,0.0005930968,0.01000,0.975
|
| 155 |
+
21,mlp.down_proj,0.0001136571,0.01000,2.411
|
| 156 |
+
22,self_attn.v_proj,0.0000408799,0.01000,2.045
|
| 157 |
+
22,self_attn.q_proj,0.0001220694,0.01000,2.073
|
| 158 |
+
22,self_attn.k_proj,0.0000211820,0.01000,2.081
|
| 159 |
+
22,self_attn.o_proj,0.0000248855,0.01000,0.388
|
| 160 |
+
22,mlp.up_proj,0.0006832507,0.01000,1.125
|
| 161 |
+
22,mlp.gate_proj,0.0006878619,0.01000,1.134
|
| 162 |
+
22,mlp.down_proj,0.0001456856,0.01000,2.405
|
| 163 |
+
23,self_attn.q_proj,0.0001517066,0.01000,1.799
|
| 164 |
+
23,self_attn.v_proj,0.0000516067,0.01000,1.805
|
| 165 |
+
23,self_attn.k_proj,0.0000233489,0.01000,1.811
|
| 166 |
+
23,self_attn.o_proj,0.0000279227,0.01000,0.369
|
| 167 |
+
23,mlp.up_proj,0.0007397549,0.01000,1.055
|
| 168 |
+
23,mlp.gate_proj,0.0007097526,0.01000,1.060
|
| 169 |
+
23,mlp.down_proj,0.0001613011,0.01000,2.413
|
| 170 |
+
24,self_attn.v_proj,0.0001028710,0.01000,1.815
|
| 171 |
+
24,self_attn.q_proj,0.0001558718,0.01000,1.825
|
| 172 |
+
24,self_attn.k_proj,0.0000250866,0.01000,1.830
|
| 173 |
+
24,self_attn.o_proj,0.0000369221,0.01000,0.374
|
| 174 |
+
24,mlp.gate_proj,0.0007145264,0.01000,0.979
|
| 175 |
+
24,mlp.up_proj,0.0007692280,0.01000,0.980
|
| 176 |
+
24,mlp.down_proj,0.0001897003,0.01000,2.386
|
| 177 |
+
25,self_attn.k_proj,0.0000269931,0.01000,1.791
|
| 178 |
+
25,self_attn.v_proj,0.0001586075,0.01000,1.799
|
| 179 |
+
25,self_attn.q_proj,0.0001529976,0.01000,1.806
|
| 180 |
+
25,self_attn.o_proj,0.0000472357,0.01000,0.371
|
| 181 |
+
25,mlp.up_proj,0.0008159271,0.01000,0.979
|
| 182 |
+
25,mlp.gate_proj,0.0007110998,0.01000,0.982
|
| 183 |
+
25,mlp.down_proj,0.0002410873,0.01000,2.408
|
| 184 |
+
26,self_attn.k_proj,0.0000272479,0.01000,1.843
|
| 185 |
+
26,self_attn.v_proj,0.0001991075,0.01000,1.842
|
| 186 |
+
26,self_attn.q_proj,0.0001772100,0.01000,1.849
|
| 187 |
+
26,self_attn.o_proj,0.0000302291,0.01000,0.376
|
| 188 |
+
26,mlp.up_proj,0.0008131132,0.01000,0.977
|
| 189 |
+
26,mlp.gate_proj,0.0006811060,0.01000,0.983
|
| 190 |
+
26,mlp.down_proj,0.0003805794,0.01000,2.416
|
| 191 |
+
27,self_attn.k_proj,0.0000279460,0.01000,1.789
|
| 192 |
+
27,self_attn.v_proj,0.0002027446,0.01000,1.796
|
| 193 |
+
27,self_attn.q_proj,0.0001764442,0.01000,1.805
|
| 194 |
+
27,self_attn.o_proj,0.0001056461,0.01000,0.374
|
| 195 |
+
27,mlp.up_proj,0.0009410910,0.01000,1.037
|
| 196 |
+
27,mlp.gate_proj,0.0009029990,0.01000,1.043
|
| 197 |
+
27,mlp.down_proj,0.0004197340,0.01000,2.412
|
qwen25-1p5b__gptq__openhermes__n32__s1/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_3h4zwuvm",
|
| 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__n32__s1/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__n32__s1/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 |
+
}
|