Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- qwen25-1p5b__gptq__wikitext2__n128__s2/BENCH_DONE +1 -0
- qwen25-1p5b__gptq__wikitext2__n128__s2/chat_template.jinja +54 -0
- qwen25-1p5b__gptq__wikitext2__n128__s2/config.json +108 -0
- qwen25-1p5b__gptq__wikitext2__n128__s2/generation_config.json +14 -0
- qwen25-1p5b__gptq__wikitext2__n128__s2/model.safetensors +3 -0
- qwen25-1p5b__gptq__wikitext2__n128__s2/quant_log.csv +197 -0
- qwen25-1p5b__gptq__wikitext2__n128__s2/quantize_config.json +47 -0
- qwen25-1p5b__gptq__wikitext2__n128__s2/tokenizer.json +3 -0
- qwen25-1p5b__gptq__wikitext2__n128__s2/tokenizer_config.json +30 -0
.gitattributes
CHANGED
|
@@ -62,3 +62,4 @@ qwen25-1p5b__gptq__openhermes__n512__s0/tokenizer.json filter=lfs diff=lfs merge
|
|
| 62 |
qwen25-1p5b__gptq__openhermes__n512__s1/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 63 |
qwen25-1p5b__gptq__openhermes__n512__s2/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 64 |
qwen25-1p5b__gptq__wikitext2__n128__s1/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 62 |
qwen25-1p5b__gptq__openhermes__n512__s1/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 63 |
qwen25-1p5b__gptq__openhermes__n512__s2/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 64 |
qwen25-1p5b__gptq__wikitext2__n128__s1/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 65 |
+
qwen25-1p5b__gptq__wikitext2__n128__s2/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
qwen25-1p5b__gptq__wikitext2__n128__s2/BENCH_DONE
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
2026-07-30T18:53:26.174764+00:00
|
qwen25-1p5b__gptq__wikitext2__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__wikitext2__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_iz40g1x9",
|
| 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__wikitext2__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__wikitext2__n128__s2/model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:e4badf22c12351e47db49cdb87cb216ce8d181544d8d166275c3b6a4022037a2
|
| 3 |
+
size 1149862904
|
qwen25-1p5b__gptq__wikitext2__n128__s2/quant_log.csv
ADDED
|
@@ -0,0 +1,197 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
layer,module,loss,samples,damp,time
|
| 2 |
+
0,self_attn.v_proj,0.0000004981,0.01000,4.145
|
| 3 |
+
0,self_attn.q_proj,0.0000298573,0.01000,4.157
|
| 4 |
+
0,self_attn.k_proj,0.0000042270,0.01000,4.173
|
| 5 |
+
0,self_attn.o_proj,0.0000011636,0.01000,0.536
|
| 6 |
+
0,mlp.gate_proj,0.0000131068,0.01000,2.295
|
| 7 |
+
0,mlp.up_proj,0.0000089822,0.01000,2.307
|
| 8 |
+
0,mlp.down_proj,0.0000020434,0.01000,3.305
|
| 9 |
+
1,self_attn.k_proj,0.0000014026,0.01000,4.318
|
| 10 |
+
1,self_attn.q_proj,0.0000046963,0.01000,4.350
|
| 11 |
+
1,self_attn.v_proj,0.0000003134,0.01000,4.347
|
| 12 |
+
1,self_attn.o_proj,0.0000004487,0.01000,0.542
|
| 13 |
+
1,mlp.up_proj,0.0002852730,0.01000,2.366
|
| 14 |
+
1,mlp.gate_proj,0.0003501339,0.01000,2.378
|
| 15 |
+
1,mlp.down_proj,0.0000123004,0.01000,3.333
|
| 16 |
+
2,self_attn.q_proj,0.0000143533,0.01000,4.470
|
| 17 |
+
2,self_attn.k_proj,0.0000031341,0.01000,4.542
|
| 18 |
+
2,self_attn.v_proj,0.0000012906,0.01000,4.545
|
| 19 |
+
2,self_attn.o_proj,0.0000008440,0.01000,0.552
|
| 20 |
+
2,mlp.gate_proj,0.0003043249,0.01000,2.309
|
| 21 |
+
2,mlp.up_proj,0.0001909173,0.01000,2.337
|
| 22 |
+
2,mlp.down_proj,0.0000317416,0.01000,3.353
|
| 23 |
+
3,self_attn.k_proj,0.0000031279,0.01000,4.404
|
| 24 |
+
3,self_attn.q_proj,0.0000144715,0.01000,4.428
|
| 25 |
+
3,self_attn.v_proj,0.0000016724,0.01000,4.424
|
| 26 |
+
3,self_attn.o_proj,0.0000012538,0.01000,0.544
|
| 27 |
+
3,mlp.gate_proj,0.0002528620,0.01000,2.388
|
| 28 |
+
3,mlp.up_proj,0.0001356809,0.01000,2.385
|
| 29 |
+
3,mlp.down_proj,0.0000074641,0.01000,3.344
|
| 30 |
+
4,self_attn.q_proj,0.0000193357,0.01000,4.472
|
| 31 |
+
4,self_attn.k_proj,0.0000038883,0.01000,4.473
|
| 32 |
+
4,self_attn.v_proj,0.0000024538,0.01000,4.480
|
| 33 |
+
4,self_attn.o_proj,0.0000015982,0.01000,0.535
|
| 34 |
+
4,mlp.up_proj,0.0001098662,0.01000,2.342
|
| 35 |
+
4,mlp.gate_proj,0.0001805611,0.01000,2.356
|
| 36 |
+
4,mlp.down_proj,0.0000093950,0.01000,3.289
|
| 37 |
+
5,self_attn.k_proj,0.0000042987,0.01000,4.247
|
| 38 |
+
5,self_attn.v_proj,0.0000030784,0.01000,4.288
|
| 39 |
+
5,self_attn.q_proj,0.0000199220,0.01000,4.307
|
| 40 |
+
5,self_attn.o_proj,0.0000023912,0.01000,0.551
|
| 41 |
+
5,mlp.up_proj,0.0002314192,0.01000,2.304
|
| 42 |
+
5,mlp.gate_proj,0.0003550911,0.01000,2.321
|
| 43 |
+
5,mlp.down_proj,0.0000080654,0.01000,3.315
|
| 44 |
+
6,self_attn.q_proj,0.0000258464,0.01000,4.283
|
| 45 |
+
6,self_attn.v_proj,0.0000021261,0.01000,4.316
|
| 46 |
+
6,self_attn.k_proj,0.0000056151,0.01000,4.332
|
| 47 |
+
6,self_attn.o_proj,0.0000012407,0.01000,0.547
|
| 48 |
+
6,mlp.up_proj,0.0000897951,0.01000,2.361
|
| 49 |
+
6,mlp.gate_proj,0.0001075854,0.01000,2.372
|
| 50 |
+
6,mlp.down_proj,0.0000088174,0.01000,3.313
|
| 51 |
+
7,self_attn.q_proj,0.0000118383,0.01000,4.482
|
| 52 |
+
7,self_attn.k_proj,0.0000024726,0.01000,4.512
|
| 53 |
+
7,self_attn.v_proj,0.0000017876,0.01000,4.510
|
| 54 |
+
7,self_attn.o_proj,0.0000017164,0.01000,0.546
|
| 55 |
+
7,mlp.up_proj,0.0000836660,0.01000,2.344
|
| 56 |
+
7,mlp.gate_proj,0.0000883657,0.01000,2.350
|
| 57 |
+
7,mlp.down_proj,0.0000089362,0.01000,3.284
|
| 58 |
+
8,self_attn.q_proj,0.0000253838,0.01000,4.277
|
| 59 |
+
8,self_attn.v_proj,0.0000023319,0.01000,4.296
|
| 60 |
+
8,self_attn.k_proj,0.0000044788,0.01000,4.316
|
| 61 |
+
8,self_attn.o_proj,0.0000023788,0.01000,0.545
|
| 62 |
+
8,mlp.gate_proj,0.0000882580,0.01000,2.339
|
| 63 |
+
8,mlp.up_proj,0.0000811948,0.01000,2.352
|
| 64 |
+
8,mlp.down_proj,0.0000082430,0.01000,3.307
|
| 65 |
+
9,self_attn.k_proj,0.0000039779,0.01000,4.418
|
| 66 |
+
9,self_attn.q_proj,0.0000186251,0.01000,4.423
|
| 67 |
+
9,self_attn.v_proj,0.0000020524,0.01000,4.436
|
| 68 |
+
9,self_attn.o_proj,0.0000020282,0.01000,0.542
|
| 69 |
+
9,mlp.up_proj,0.0000763025,0.01000,2.345
|
| 70 |
+
9,mlp.gate_proj,0.0000786601,0.01000,2.348
|
| 71 |
+
9,mlp.down_proj,0.0000078499,0.01000,3.313
|
| 72 |
+
10,self_attn.q_proj,0.0000200244,0.01000,4.472
|
| 73 |
+
10,self_attn.v_proj,0.0000032090,0.01000,4.506
|
| 74 |
+
10,self_attn.k_proj,0.0000039560,0.01000,4.510
|
| 75 |
+
10,self_attn.o_proj,0.0000032987,0.01000,0.557
|
| 76 |
+
10,mlp.up_proj,0.0000711971,0.01000,2.357
|
| 77 |
+
10,mlp.gate_proj,0.0000751373,0.01000,2.365
|
| 78 |
+
10,mlp.down_proj,0.0000069655,0.01000,3.306
|
| 79 |
+
11,self_attn.q_proj,0.0000185073,0.01000,4.388
|
| 80 |
+
11,self_attn.k_proj,0.0000036776,0.01000,4.405
|
| 81 |
+
11,self_attn.v_proj,0.0000024440,0.01000,4.412
|
| 82 |
+
11,self_attn.o_proj,0.0000030892,0.01000,0.535
|
| 83 |
+
11,mlp.gate_proj,0.0000711098,0.01000,2.348
|
| 84 |
+
11,mlp.up_proj,0.0000631271,0.01000,2.350
|
| 85 |
+
11,mlp.down_proj,0.0000056081,0.01000,3.301
|
| 86 |
+
12,self_attn.q_proj,0.0000228144,0.01000,4.349
|
| 87 |
+
12,self_attn.v_proj,0.0000023832,0.01000,4.388
|
| 88 |
+
12,self_attn.k_proj,0.0000048670,0.01000,4.388
|
| 89 |
+
12,self_attn.o_proj,0.0000024755,0.01000,0.538
|
| 90 |
+
12,mlp.gate_proj,0.0000657909,0.01000,2.302
|
| 91 |
+
12,mlp.up_proj,0.0000612288,0.01000,2.311
|
| 92 |
+
12,mlp.down_proj,0.0000059455,0.01000,3.302
|
| 93 |
+
13,self_attn.v_proj,0.0000018356,0.01000,4.256
|
| 94 |
+
13,self_attn.q_proj,0.0000138097,0.01000,4.262
|
| 95 |
+
13,self_attn.k_proj,0.0000028020,0.01000,4.276
|
| 96 |
+
13,self_attn.o_proj,0.0000028769,0.01000,0.536
|
| 97 |
+
13,mlp.gate_proj,0.0000610501,0.01000,2.302
|
| 98 |
+
13,mlp.up_proj,0.0000588356,0.01000,2.316
|
| 99 |
+
13,mlp.down_proj,0.0000051917,0.01000,3.321
|
| 100 |
+
14,self_attn.q_proj,0.0000314814,0.01000,4.263
|
| 101 |
+
14,self_attn.k_proj,0.0000048088,0.01000,4.279
|
| 102 |
+
14,self_attn.v_proj,0.0000032079,0.01000,4.287
|
| 103 |
+
14,self_attn.o_proj,0.0000026274,0.01000,0.540
|
| 104 |
+
14,mlp.up_proj,0.0000671807,0.01000,2.314
|
| 105 |
+
14,mlp.gate_proj,0.0000653831,0.01000,2.328
|
| 106 |
+
14,mlp.down_proj,0.0000063804,0.01000,3.282
|
| 107 |
+
15,self_attn.q_proj,0.0000419127,0.01000,4.216
|
| 108 |
+
15,self_attn.k_proj,0.0000035704,0.01000,4.277
|
| 109 |
+
15,self_attn.v_proj,0.0000031669,0.01000,4.283
|
| 110 |
+
15,self_attn.o_proj,0.0000037156,0.01000,0.547
|
| 111 |
+
15,mlp.gate_proj,0.0000573770,0.01000,2.359
|
| 112 |
+
15,mlp.up_proj,0.0000551630,0.01000,2.370
|
| 113 |
+
15,mlp.down_proj,0.0000050383,0.01000,3.277
|
| 114 |
+
16,self_attn.q_proj,0.0000248484,0.01000,4.308
|
| 115 |
+
16,self_attn.k_proj,0.0000046485,0.01000,4.339
|
| 116 |
+
16,self_attn.v_proj,0.0000034968,0.01000,4.347
|
| 117 |
+
16,self_attn.o_proj,0.0000028846,0.01000,0.536
|
| 118 |
+
16,mlp.up_proj,0.0000633835,0.01000,2.353
|
| 119 |
+
16,mlp.gate_proj,0.0000640739,0.01000,2.372
|
| 120 |
+
16,mlp.down_proj,0.0000059960,0.01000,3.295
|
| 121 |
+
17,self_attn.v_proj,0.0000045602,0.01000,4.281
|
| 122 |
+
17,self_attn.k_proj,0.0000027827,0.01000,4.304
|
| 123 |
+
17,self_attn.q_proj,0.0000229154,0.01000,4.321
|
| 124 |
+
17,self_attn.o_proj,0.0000026632,0.01000,0.541
|
| 125 |
+
17,mlp.up_proj,0.0000619624,0.01000,2.263
|
| 126 |
+
17,mlp.gate_proj,0.0000617136,0.01000,2.282
|
| 127 |
+
17,mlp.down_proj,0.0000067396,0.01000,3.347
|
| 128 |
+
18,self_attn.q_proj,0.0000180023,0.01000,4.310
|
| 129 |
+
18,self_attn.v_proj,0.0000030239,0.01000,4.324
|
| 130 |
+
18,self_attn.k_proj,0.0000030804,0.01000,4.343
|
| 131 |
+
18,self_attn.o_proj,0.0000037993,0.01000,0.547
|
| 132 |
+
18,mlp.gate_proj,0.0000655076,0.01000,2.243
|
| 133 |
+
18,mlp.up_proj,0.0000648117,0.01000,2.263
|
| 134 |
+
18,mlp.down_proj,0.0000085318,0.01000,3.360
|
| 135 |
+
19,self_attn.k_proj,0.0000035608,0.01000,4.246
|
| 136 |
+
19,self_attn.q_proj,0.0000249501,0.01000,4.262
|
| 137 |
+
19,self_attn.v_proj,0.0000062126,0.01000,4.291
|
| 138 |
+
19,self_attn.o_proj,0.0000036369,0.01000,0.544
|
| 139 |
+
19,mlp.up_proj,0.0000767578,0.01000,2.335
|
| 140 |
+
19,mlp.gate_proj,0.0000716194,0.01000,2.348
|
| 141 |
+
19,mlp.down_proj,0.0000148985,0.01000,3.327
|
| 142 |
+
20,self_attn.v_proj,0.0000082651,0.01000,4.172
|
| 143 |
+
20,self_attn.q_proj,0.0000268460,0.01000,4.222
|
| 144 |
+
20,self_attn.k_proj,0.0000041337,0.01000,4.239
|
| 145 |
+
20,self_attn.o_proj,0.0000064470,0.01000,0.555
|
| 146 |
+
20,mlp.up_proj,0.0000856933,0.01000,2.221
|
| 147 |
+
20,mlp.gate_proj,0.0000835763,0.01000,2.231
|
| 148 |
+
20,mlp.down_proj,0.0000151029,0.01000,3.344
|
| 149 |
+
21,self_attn.k_proj,0.0000040809,0.01000,4.179
|
| 150 |
+
21,self_attn.v_proj,0.0000075748,0.01000,4.201
|
| 151 |
+
21,self_attn.q_proj,0.0000287211,0.01000,4.221
|
| 152 |
+
21,self_attn.o_proj,0.0000043775,0.01000,0.541
|
| 153 |
+
21,mlp.up_proj,0.0001197178,0.01000,2.279
|
| 154 |
+
21,mlp.gate_proj,0.0001174506,0.01000,2.297
|
| 155 |
+
21,mlp.down_proj,0.0000260825,0.01000,3.305
|
| 156 |
+
22,self_attn.q_proj,0.0000269875,0.01000,4.200
|
| 157 |
+
22,self_attn.v_proj,0.0000097490,0.01000,4.244
|
| 158 |
+
22,self_attn.k_proj,0.0000047460,0.01000,4.259
|
| 159 |
+
22,self_attn.o_proj,0.0000063245,0.01000,0.555
|
| 160 |
+
22,mlp.gate_proj,0.0001409212,0.01000,2.244
|
| 161 |
+
22,mlp.up_proj,0.0001417933,0.01000,2.262
|
| 162 |
+
22,mlp.down_proj,0.0000369983,0.01000,3.340
|
| 163 |
+
23,self_attn.q_proj,0.0000357684,0.01000,4.041
|
| 164 |
+
23,self_attn.k_proj,0.0000055682,0.01000,4.054
|
| 165 |
+
23,self_attn.v_proj,0.0000130947,0.01000,4.086
|
| 166 |
+
23,self_attn.o_proj,0.0000059521,0.01000,0.553
|
| 167 |
+
23,mlp.up_proj,0.0001628146,0.01000,2.163
|
| 168 |
+
23,mlp.gate_proj,0.0001548556,0.01000,2.189
|
| 169 |
+
23,mlp.down_proj,0.0000520813,0.01000,3.319
|
| 170 |
+
24,self_attn.q_proj,0.0000388998,0.01000,4.205
|
| 171 |
+
24,self_attn.v_proj,0.0000273622,0.01000,4.235
|
| 172 |
+
24,self_attn.k_proj,0.0000063280,0.01000,4.245
|
| 173 |
+
24,self_attn.o_proj,0.0000080088,0.01000,0.553
|
| 174 |
+
24,mlp.up_proj,0.0001850207,0.01000,2.170
|
| 175 |
+
24,mlp.gate_proj,0.0001719786,0.01000,2.176
|
| 176 |
+
24,mlp.down_proj,0.0000647621,0.01000,3.320
|
| 177 |
+
25,self_attn.k_proj,0.0000072995,0.01000,4.195
|
| 178 |
+
25,self_attn.v_proj,0.0000450367,0.01000,4.221
|
| 179 |
+
25,self_attn.q_proj,0.0000414084,0.01000,4.245
|
| 180 |
+
25,self_attn.o_proj,0.0000182372,0.01000,0.540
|
| 181 |
+
25,mlp.up_proj,0.0002051835,0.01000,2.191
|
| 182 |
+
25,mlp.gate_proj,0.0001776770,0.01000,2.214
|
| 183 |
+
25,mlp.down_proj,0.0000878944,0.01000,3.312
|
| 184 |
+
26,self_attn.q_proj,0.0000454261,0.01000,4.018
|
| 185 |
+
26,self_attn.v_proj,0.0000527841,0.01000,4.032
|
| 186 |
+
26,self_attn.k_proj,0.0000070298,0.01000,4.067
|
| 187 |
+
26,self_attn.o_proj,0.0000093331,0.01000,0.539
|
| 188 |
+
26,mlp.gate_proj,0.0001749531,0.01000,2.183
|
| 189 |
+
26,mlp.up_proj,0.0002100867,0.01000,2.201
|
| 190 |
+
26,mlp.down_proj,0.0001301046,0.01000,3.305
|
| 191 |
+
27,self_attn.k_proj,0.0000076731,0.01000,4.093
|
| 192 |
+
27,self_attn.q_proj,0.0000476585,0.01000,4.125
|
| 193 |
+
27,self_attn.v_proj,0.0000559430,0.01000,4.149
|
| 194 |
+
27,self_attn.o_proj,0.0000353431,0.01000,0.541
|
| 195 |
+
27,mlp.up_proj,0.0002494651,0.01000,2.068
|
| 196 |
+
27,mlp.gate_proj,0.0002388708,0.01000,2.082
|
| 197 |
+
27,mlp.down_proj,0.0001699130,0.01000,3.293
|
qwen25-1p5b__gptq__wikitext2__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_iz40g1x9",
|
| 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__wikitext2__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__wikitext2__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 |
+
}
|