Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- qwen25-1p5b__gptq__wikitext2__n512__s0/BENCH_DONE +1 -0
- qwen25-1p5b__gptq__wikitext2__n512__s0/chat_template.jinja +54 -0
- qwen25-1p5b__gptq__wikitext2__n512__s0/config.json +108 -0
- qwen25-1p5b__gptq__wikitext2__n512__s0/generation_config.json +14 -0
- qwen25-1p5b__gptq__wikitext2__n512__s0/model.safetensors +3 -0
- qwen25-1p5b__gptq__wikitext2__n512__s0/quant_log.csv +197 -0
- qwen25-1p5b__gptq__wikitext2__n512__s0/quantize_config.json +47 -0
- qwen25-1p5b__gptq__wikitext2__n512__s0/tokenizer.json +3 -0
- qwen25-1p5b__gptq__wikitext2__n512__s0/tokenizer_config.json +30 -0
.gitattributes
CHANGED
|
@@ -66,3 +66,4 @@ qwen25-1p5b__gptq__wikitext2__n128__s2/tokenizer.json filter=lfs diff=lfs merge=
|
|
| 66 |
qwen25-1p5b__gptq__wikitext2__n32__s0/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 67 |
qwen25-1p5b__gptq__wikitext2__n32__s1/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 68 |
qwen25-1p5b__gptq__wikitext2__n32__s2/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 66 |
qwen25-1p5b__gptq__wikitext2__n32__s0/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 67 |
qwen25-1p5b__gptq__wikitext2__n32__s1/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 68 |
qwen25-1p5b__gptq__wikitext2__n32__s2/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 69 |
+
qwen25-1p5b__gptq__wikitext2__n512__s0/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
qwen25-1p5b__gptq__wikitext2__n512__s0/BENCH_DONE
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
2026-07-30T19:09:27.318479+00:00
|
qwen25-1p5b__gptq__wikitext2__n512__s0/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__n512__s0/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_w2wiwa_x",
|
| 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__n512__s0/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__n512__s0/model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:c87ca4195cd1f2e48fb6ec8367f774d689cbeae8c8550765e88b0752b9aec7dc
|
| 3 |
+
size 1149862904
|
qwen25-1p5b__gptq__wikitext2__n512__s0/quant_log.csv
ADDED
|
@@ -0,0 +1,197 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
layer,module,loss,samples,damp,time
|
| 2 |
+
0,self_attn.v_proj,0.0000001272,0.01000,3.989
|
| 3 |
+
0,self_attn.k_proj,0.0000010815,0.01000,4.030
|
| 4 |
+
0,self_attn.q_proj,0.0000076344,0.01000,4.030
|
| 5 |
+
0,self_attn.o_proj,0.0000002946,0.01000,0.547
|
| 6 |
+
0,mlp.up_proj,0.0000022634,0.01000,2.192
|
| 7 |
+
0,mlp.gate_proj,0.0000033025,0.01000,2.193
|
| 8 |
+
0,mlp.down_proj,0.0000005370,0.01000,3.305
|
| 9 |
+
1,self_attn.v_proj,0.0000000789,0.01000,4.079
|
| 10 |
+
1,self_attn.k_proj,0.0000003524,0.01000,4.094
|
| 11 |
+
1,self_attn.q_proj,0.0000011828,0.01000,4.131
|
| 12 |
+
1,self_attn.o_proj,0.0000001131,0.01000,0.539
|
| 13 |
+
1,mlp.up_proj,0.0000718576,0.01000,2.174
|
| 14 |
+
1,mlp.gate_proj,0.0000881906,0.01000,2.192
|
| 15 |
+
1,mlp.down_proj,0.0000031474,0.01000,3.292
|
| 16 |
+
2,self_attn.q_proj,0.0000036245,0.01000,4.130
|
| 17 |
+
2,self_attn.v_proj,0.0000003264,0.01000,4.173
|
| 18 |
+
2,self_attn.k_proj,0.0000007918,0.01000,4.199
|
| 19 |
+
2,self_attn.o_proj,0.0000002151,0.01000,0.549
|
| 20 |
+
2,mlp.gate_proj,0.0000768213,0.01000,2.238
|
| 21 |
+
2,mlp.up_proj,0.0000481170,0.01000,2.252
|
| 22 |
+
2,mlp.down_proj,0.0000066660,0.01000,3.312
|
| 23 |
+
3,self_attn.k_proj,0.0000007951,0.01000,4.312
|
| 24 |
+
3,self_attn.q_proj,0.0000036700,0.01000,4.343
|
| 25 |
+
3,self_attn.v_proj,0.0000004250,0.01000,4.367
|
| 26 |
+
3,self_attn.o_proj,0.0000003105,0.01000,0.552
|
| 27 |
+
3,mlp.up_proj,0.0000343232,0.01000,2.173
|
| 28 |
+
3,mlp.gate_proj,0.0000641425,0.01000,2.187
|
| 29 |
+
3,mlp.down_proj,0.0000019663,0.01000,3.369
|
| 30 |
+
4,self_attn.v_proj,0.0000006193,0.01000,4.237
|
| 31 |
+
4,self_attn.q_proj,0.0000048855,0.01000,4.267
|
| 32 |
+
4,self_attn.k_proj,0.0000009843,0.01000,4.274
|
| 33 |
+
4,self_attn.o_proj,0.0000004305,0.01000,0.549
|
| 34 |
+
4,mlp.up_proj,0.0000277065,0.01000,2.240
|
| 35 |
+
4,mlp.gate_proj,0.0000455615,0.01000,2.265
|
| 36 |
+
4,mlp.down_proj,0.0000025023,0.01000,3.362
|
| 37 |
+
5,self_attn.k_proj,0.0000010942,0.01000,4.115
|
| 38 |
+
5,self_attn.v_proj,0.0000007814,0.01000,4.150
|
| 39 |
+
5,self_attn.q_proj,0.0000050587,0.01000,4.163
|
| 40 |
+
5,self_attn.o_proj,0.0000006090,0.01000,0.546
|
| 41 |
+
5,mlp.up_proj,0.0000584863,0.01000,2.367
|
| 42 |
+
5,mlp.gate_proj,0.0000897836,0.01000,2.371
|
| 43 |
+
5,mlp.down_proj,0.0000021273,0.01000,3.354
|
| 44 |
+
6,self_attn.q_proj,0.0000065766,0.01000,3.932
|
| 45 |
+
6,self_attn.v_proj,0.0000005397,0.01000,3.970
|
| 46 |
+
6,self_attn.k_proj,0.0000014319,0.01000,3.990
|
| 47 |
+
6,self_attn.o_proj,0.0000003242,0.01000,0.546
|
| 48 |
+
6,mlp.gate_proj,0.0000272239,0.01000,2.027
|
| 49 |
+
6,mlp.up_proj,0.0000227060,0.01000,2.051
|
| 50 |
+
6,mlp.down_proj,0.0000023103,0.01000,3.303
|
| 51 |
+
7,self_attn.k_proj,0.0000006292,0.01000,3.867
|
| 52 |
+
7,self_attn.q_proj,0.0000030063,0.01000,3.890
|
| 53 |
+
7,self_attn.v_proj,0.0000004539,0.01000,3.919
|
| 54 |
+
7,self_attn.o_proj,0.0000004336,0.01000,0.538
|
| 55 |
+
7,mlp.up_proj,0.0000211794,0.01000,2.086
|
| 56 |
+
7,mlp.gate_proj,0.0000224219,0.01000,2.103
|
| 57 |
+
7,mlp.down_proj,0.0000023369,0.01000,3.297
|
| 58 |
+
8,self_attn.q_proj,0.0000064466,0.01000,3.932
|
| 59 |
+
8,self_attn.v_proj,0.0000005901,0.01000,3.936
|
| 60 |
+
8,self_attn.k_proj,0.0000011386,0.01000,3.962
|
| 61 |
+
8,self_attn.o_proj,0.0000006114,0.01000,0.545
|
| 62 |
+
8,mlp.gate_proj,0.0000222755,0.01000,2.149
|
| 63 |
+
8,mlp.up_proj,0.0000205008,0.01000,2.157
|
| 64 |
+
8,mlp.down_proj,0.0000021529,0.01000,3.253
|
| 65 |
+
9,self_attn.k_proj,0.0000010093,0.01000,3.765
|
| 66 |
+
9,self_attn.v_proj,0.0000005183,0.01000,3.783
|
| 67 |
+
9,self_attn.q_proj,0.0000047171,0.01000,3.817
|
| 68 |
+
9,self_attn.o_proj,0.0000005201,0.01000,0.539
|
| 69 |
+
9,mlp.up_proj,0.0000192128,0.01000,2.072
|
| 70 |
+
9,mlp.gate_proj,0.0000198379,0.01000,2.092
|
| 71 |
+
9,mlp.down_proj,0.0000020157,0.01000,3.263
|
| 72 |
+
10,self_attn.q_proj,0.0000050587,0.01000,4.066
|
| 73 |
+
10,self_attn.v_proj,0.0000008029,0.01000,4.085
|
| 74 |
+
10,self_attn.k_proj,0.0000009985,0.01000,4.118
|
| 75 |
+
10,self_attn.o_proj,0.0000008393,0.01000,0.544
|
| 76 |
+
10,mlp.gate_proj,0.0000189391,0.01000,2.159
|
| 77 |
+
10,mlp.up_proj,0.0000179393,0.01000,2.175
|
| 78 |
+
10,mlp.down_proj,0.0000017862,0.01000,3.304
|
| 79 |
+
11,self_attn.k_proj,0.0000009333,0.01000,3.929
|
| 80 |
+
11,self_attn.q_proj,0.0000046809,0.01000,3.961
|
| 81 |
+
11,self_attn.v_proj,0.0000006185,0.01000,3.983
|
| 82 |
+
11,self_attn.o_proj,0.0000007824,0.01000,0.542
|
| 83 |
+
11,mlp.gate_proj,0.0000179151,0.01000,2.011
|
| 84 |
+
11,mlp.up_proj,0.0000158885,0.01000,2.012
|
| 85 |
+
11,mlp.down_proj,0.0000014542,0.01000,3.291
|
| 86 |
+
12,self_attn.q_proj,0.0000057844,0.01000,4.067
|
| 87 |
+
12,self_attn.v_proj,0.0000006004,0.01000,4.078
|
| 88 |
+
12,self_attn.k_proj,0.0000012317,0.01000,4.093
|
| 89 |
+
12,self_attn.o_proj,0.0000006439,0.01000,0.537
|
| 90 |
+
12,mlp.up_proj,0.0000153956,0.01000,2.167
|
| 91 |
+
12,mlp.gate_proj,0.0000165507,0.01000,2.184
|
| 92 |
+
12,mlp.down_proj,0.0000015221,0.01000,3.302
|
| 93 |
+
13,self_attn.v_proj,0.0000004613,0.01000,4.063
|
| 94 |
+
13,self_attn.k_proj,0.0000007029,0.01000,4.085
|
| 95 |
+
13,self_attn.q_proj,0.0000034679,0.01000,4.120
|
| 96 |
+
13,self_attn.o_proj,0.0000007312,0.01000,0.539
|
| 97 |
+
13,mlp.up_proj,0.0000147119,0.01000,2.039
|
| 98 |
+
13,mlp.gate_proj,0.0000152733,0.01000,2.060
|
| 99 |
+
13,mlp.down_proj,0.0000013222,0.01000,3.308
|
| 100 |
+
14,self_attn.q_proj,0.0000079364,0.01000,3.956
|
| 101 |
+
14,self_attn.v_proj,0.0000008057,0.01000,3.993
|
| 102 |
+
14,self_attn.k_proj,0.0000012070,0.01000,4.018
|
| 103 |
+
14,self_attn.o_proj,0.0000006814,0.01000,0.539
|
| 104 |
+
14,mlp.gate_proj,0.0000163372,0.01000,2.182
|
| 105 |
+
14,mlp.up_proj,0.0000167822,0.01000,2.194
|
| 106 |
+
14,mlp.down_proj,0.0000016158,0.01000,3.308
|
| 107 |
+
15,self_attn.k_proj,0.0000008962,0.01000,3.915
|
| 108 |
+
15,self_attn.q_proj,0.0000106373,0.01000,3.946
|
| 109 |
+
15,self_attn.v_proj,0.0000007927,0.01000,3.977
|
| 110 |
+
15,self_attn.o_proj,0.0000009254,0.01000,0.551
|
| 111 |
+
15,mlp.up_proj,0.0000137522,0.01000,2.153
|
| 112 |
+
15,mlp.gate_proj,0.0000143460,0.01000,2.166
|
| 113 |
+
15,mlp.down_proj,0.0000012871,0.01000,3.308
|
| 114 |
+
16,self_attn.q_proj,0.0000062335,0.01000,3.657
|
| 115 |
+
16,self_attn.v_proj,0.0000008745,0.01000,3.702
|
| 116 |
+
16,self_attn.k_proj,0.0000011693,0.01000,3.723
|
| 117 |
+
16,self_attn.o_proj,0.0000007305,0.01000,0.539
|
| 118 |
+
16,mlp.gate_proj,0.0000160598,0.01000,2.112
|
| 119 |
+
16,mlp.up_proj,0.0000158524,0.01000,2.126
|
| 120 |
+
16,mlp.down_proj,0.0000015308,0.01000,3.285
|
| 121 |
+
17,self_attn.k_proj,0.0000007039,0.01000,3.992
|
| 122 |
+
17,self_attn.v_proj,0.0000011453,0.01000,4.014
|
| 123 |
+
17,self_attn.q_proj,0.0000057653,0.01000,4.043
|
| 124 |
+
17,self_attn.o_proj,0.0000006811,0.01000,0.539
|
| 125 |
+
17,mlp.up_proj,0.0000155102,0.01000,2.178
|
| 126 |
+
17,mlp.gate_proj,0.0000154619,0.01000,2.197
|
| 127 |
+
17,mlp.down_proj,0.0000017177,0.01000,3.315
|
| 128 |
+
18,self_attn.q_proj,0.0000045186,0.01000,3.911
|
| 129 |
+
18,self_attn.v_proj,0.0000007608,0.01000,3.930
|
| 130 |
+
18,self_attn.k_proj,0.0000007757,0.01000,3.964
|
| 131 |
+
18,self_attn.o_proj,0.0000009497,0.01000,0.536
|
| 132 |
+
18,mlp.gate_proj,0.0000164451,0.01000,2.048
|
| 133 |
+
18,mlp.up_proj,0.0000162225,0.01000,2.060
|
| 134 |
+
18,mlp.down_proj,0.0000021789,0.01000,3.256
|
| 135 |
+
19,self_attn.k_proj,0.0000008929,0.01000,4.089
|
| 136 |
+
19,self_attn.q_proj,0.0000062639,0.01000,4.122
|
| 137 |
+
19,self_attn.v_proj,0.0000015669,0.01000,4.156
|
| 138 |
+
19,self_attn.o_proj,0.0000009140,0.01000,0.542
|
| 139 |
+
19,mlp.gate_proj,0.0000180733,0.01000,2.211
|
| 140 |
+
19,mlp.up_proj,0.0000193259,0.01000,2.227
|
| 141 |
+
19,mlp.down_proj,0.0000038294,0.01000,3.292
|
| 142 |
+
20,self_attn.v_proj,0.0000020885,0.01000,3.874
|
| 143 |
+
20,self_attn.q_proj,0.0000067573,0.01000,3.889
|
| 144 |
+
20,self_attn.k_proj,0.0000010518,0.01000,3.895
|
| 145 |
+
20,self_attn.o_proj,0.0000016170,0.01000,0.539
|
| 146 |
+
20,mlp.gate_proj,0.0000211241,0.01000,2.101
|
| 147 |
+
20,mlp.up_proj,0.0000216224,0.01000,2.112
|
| 148 |
+
20,mlp.down_proj,0.0000039224,0.01000,3.292
|
| 149 |
+
21,self_attn.k_proj,0.0000010394,0.01000,3.971
|
| 150 |
+
21,self_attn.v_proj,0.0000019186,0.01000,4.003
|
| 151 |
+
21,self_attn.q_proj,0.0000072737,0.01000,4.034
|
| 152 |
+
21,self_attn.o_proj,0.0000011303,0.01000,0.540
|
| 153 |
+
21,mlp.up_proj,0.0000303373,0.01000,2.276
|
| 154 |
+
21,mlp.gate_proj,0.0000298728,0.01000,2.291
|
| 155 |
+
21,mlp.down_proj,0.0000068184,0.01000,3.296
|
| 156 |
+
22,self_attn.q_proj,0.0000068818,0.01000,4.071
|
| 157 |
+
22,self_attn.v_proj,0.0000024914,0.01000,4.117
|
| 158 |
+
22,self_attn.k_proj,0.0000012079,0.01000,4.140
|
| 159 |
+
22,self_attn.o_proj,0.0000016173,0.01000,0.556
|
| 160 |
+
22,mlp.gate_proj,0.0000357949,0.01000,2.197
|
| 161 |
+
22,mlp.up_proj,0.0000359676,0.01000,2.219
|
| 162 |
+
22,mlp.down_proj,0.0000097453,0.01000,3.316
|
| 163 |
+
23,self_attn.k_proj,0.0000014222,0.01000,3.961
|
| 164 |
+
23,self_attn.q_proj,0.0000091424,0.01000,3.974
|
| 165 |
+
23,self_attn.v_proj,0.0000033446,0.01000,4.011
|
| 166 |
+
23,self_attn.o_proj,0.0000015222,0.01000,0.546
|
| 167 |
+
23,mlp.up_proj,0.0000412226,0.01000,2.259
|
| 168 |
+
23,mlp.gate_proj,0.0000392644,0.01000,2.266
|
| 169 |
+
23,mlp.down_proj,0.0000139138,0.01000,3.295
|
| 170 |
+
24,self_attn.q_proj,0.0000099276,0.01000,4.143
|
| 171 |
+
24,self_attn.v_proj,0.0000069792,0.01000,4.145
|
| 172 |
+
24,self_attn.k_proj,0.0000016226,0.01000,4.169
|
| 173 |
+
24,self_attn.o_proj,0.0000020327,0.01000,0.537
|
| 174 |
+
24,mlp.up_proj,0.0000472949,0.01000,2.239
|
| 175 |
+
24,mlp.gate_proj,0.0000439540,0.01000,2.255
|
| 176 |
+
24,mlp.down_proj,0.0000173756,0.01000,3.309
|
| 177 |
+
25,self_attn.k_proj,0.0000018730,0.01000,4.356
|
| 178 |
+
25,self_attn.v_proj,0.0000115226,0.01000,4.389
|
| 179 |
+
25,self_attn.q_proj,0.0000106342,0.01000,4.417
|
| 180 |
+
25,self_attn.o_proj,0.0000046987,0.01000,0.544
|
| 181 |
+
25,mlp.up_proj,0.0000522371,0.01000,2.187
|
| 182 |
+
25,mlp.gate_proj,0.0000453025,0.01000,2.204
|
| 183 |
+
25,mlp.down_proj,0.0000233605,0.01000,3.283
|
| 184 |
+
26,self_attn.q_proj,0.0000116414,0.01000,4.152
|
| 185 |
+
26,self_attn.v_proj,0.0000135399,0.01000,4.187
|
| 186 |
+
26,self_attn.k_proj,0.0000018033,0.01000,4.216
|
| 187 |
+
26,self_attn.o_proj,0.0000025553,0.01000,0.544
|
| 188 |
+
26,mlp.gate_proj,0.0000448625,0.01000,2.135
|
| 189 |
+
26,mlp.up_proj,0.0000537578,0.01000,2.155
|
| 190 |
+
26,mlp.down_proj,0.0000342447,0.01000,3.289
|
| 191 |
+
27,self_attn.k_proj,0.0000019664,0.01000,3.982
|
| 192 |
+
27,self_attn.q_proj,0.0000122309,0.01000,4.005
|
| 193 |
+
27,self_attn.v_proj,0.0000143711,0.01000,4.036
|
| 194 |
+
27,self_attn.o_proj,0.0000095344,0.01000,0.550
|
| 195 |
+
27,mlp.gate_proj,0.0000611924,0.01000,2.201
|
| 196 |
+
27,mlp.up_proj,0.0000637404,0.01000,2.210
|
| 197 |
+
27,mlp.down_proj,0.0000455953,0.01000,3.323
|
qwen25-1p5b__gptq__wikitext2__n512__s0/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_w2wiwa_x",
|
| 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__n512__s0/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__n512__s0/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 |
+
}
|