Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- qwen25-1p5b__gptq__wikitext2__n512__s1/BENCH_DONE +1 -0
- qwen25-1p5b__gptq__wikitext2__n512__s1/chat_template.jinja +54 -0
- qwen25-1p5b__gptq__wikitext2__n512__s1/config.json +108 -0
- qwen25-1p5b__gptq__wikitext2__n512__s1/generation_config.json +14 -0
- qwen25-1p5b__gptq__wikitext2__n512__s1/model.safetensors +3 -0
- qwen25-1p5b__gptq__wikitext2__n512__s1/quant_log.csv +197 -0
- qwen25-1p5b__gptq__wikitext2__n512__s1/quantize_config.json +47 -0
- qwen25-1p5b__gptq__wikitext2__n512__s1/tokenizer.json +3 -0
- qwen25-1p5b__gptq__wikitext2__n512__s1/tokenizer_config.json +30 -0
.gitattributes
CHANGED
|
@@ -67,3 +67,4 @@ qwen25-1p5b__gptq__wikitext2__n32__s0/tokenizer.json filter=lfs diff=lfs merge=l
|
|
| 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
|
|
|
|
|
|
| 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
|
| 70 |
+
qwen25-1p5b__gptq__wikitext2__n512__s1/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
qwen25-1p5b__gptq__wikitext2__n512__s1/BENCH_DONE
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
2026-07-30T19:25:29.499151+00:00
|
qwen25-1p5b__gptq__wikitext2__n512__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__wikitext2__n512__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_60jao5c8",
|
| 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__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__wikitext2__n512__s1/model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:68e5fbdf1d6222c7f1a798626cd17c6a592839e9fc35315d9a7562234c7b885a
|
| 3 |
+
size 1149862904
|
qwen25-1p5b__gptq__wikitext2__n512__s1/quant_log.csv
ADDED
|
@@ -0,0 +1,197 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
layer,module,loss,samples,damp,time
|
| 2 |
+
0,self_attn.q_proj,0.0000077330,0.01000,4.028
|
| 3 |
+
0,self_attn.v_proj,0.0000001288,0.01000,4.053
|
| 4 |
+
0,self_attn.k_proj,0.0000010927,0.01000,4.064
|
| 5 |
+
0,self_attn.o_proj,0.0000002962,0.01000,0.536
|
| 6 |
+
0,mlp.gate_proj,0.0000033171,0.01000,2.139
|
| 7 |
+
0,mlp.up_proj,0.0000022771,0.01000,2.153
|
| 8 |
+
0,mlp.down_proj,0.0000005440,0.01000,3.277
|
| 9 |
+
1,self_attn.k_proj,0.0000003561,0.01000,3.972
|
| 10 |
+
1,self_attn.v_proj,0.0000000795,0.01000,3.975
|
| 11 |
+
1,self_attn.q_proj,0.0000011958,0.01000,4.019
|
| 12 |
+
1,self_attn.o_proj,0.0000001136,0.01000,0.548
|
| 13 |
+
1,mlp.up_proj,0.0000724101,0.01000,2.248
|
| 14 |
+
1,mlp.gate_proj,0.0000889673,0.01000,2.262
|
| 15 |
+
1,mlp.down_proj,0.0000031968,0.01000,3.329
|
| 16 |
+
2,self_attn.q_proj,0.0000036540,0.01000,3.975
|
| 17 |
+
2,self_attn.v_proj,0.0000003290,0.01000,4.043
|
| 18 |
+
2,self_attn.k_proj,0.0000007985,0.01000,4.069
|
| 19 |
+
2,self_attn.o_proj,0.0000002166,0.01000,0.553
|
| 20 |
+
2,mlp.gate_proj,0.0000775064,0.01000,2.269
|
| 21 |
+
2,mlp.up_proj,0.0000484661,0.01000,2.290
|
| 22 |
+
2,mlp.down_proj,0.0000068192,0.01000,3.299
|
| 23 |
+
3,self_attn.k_proj,0.0000007992,0.01000,4.067
|
| 24 |
+
3,self_attn.q_proj,0.0000037043,0.01000,4.098
|
| 25 |
+
3,self_attn.v_proj,0.0000004271,0.01000,4.123
|
| 26 |
+
3,self_attn.o_proj,0.0000003124,0.01000,0.546
|
| 27 |
+
3,mlp.gate_proj,0.0000647282,0.01000,2.265
|
| 28 |
+
3,mlp.up_proj,0.0000346400,0.01000,2.275
|
| 29 |
+
3,mlp.down_proj,0.0000019870,0.01000,3.311
|
| 30 |
+
4,self_attn.v_proj,0.0000006253,0.01000,3.949
|
| 31 |
+
4,self_attn.q_proj,0.0000049324,0.01000,3.955
|
| 32 |
+
4,self_attn.k_proj,0.0000009949,0.01000,3.975
|
| 33 |
+
4,self_attn.o_proj,0.0000004293,0.01000,0.538
|
| 34 |
+
4,mlp.gate_proj,0.0000460337,0.01000,2.154
|
| 35 |
+
4,mlp.up_proj,0.0000279316,0.01000,2.171
|
| 36 |
+
4,mlp.down_proj,0.0000025262,0.01000,3.278
|
| 37 |
+
5,self_attn.k_proj,0.0000011045,0.01000,4.218
|
| 38 |
+
5,self_attn.v_proj,0.0000007890,0.01000,4.249
|
| 39 |
+
5,self_attn.q_proj,0.0000051092,0.01000,4.272
|
| 40 |
+
5,self_attn.o_proj,0.0000006089,0.01000,0.543
|
| 41 |
+
5,mlp.up_proj,0.0000590043,0.01000,2.360
|
| 42 |
+
5,mlp.gate_proj,0.0000906238,0.01000,2.364
|
| 43 |
+
5,mlp.down_proj,0.0000021864,0.01000,3.287
|
| 44 |
+
6,self_attn.q_proj,0.0000066512,0.01000,4.162
|
| 45 |
+
6,self_attn.v_proj,0.0000005430,0.01000,4.210
|
| 46 |
+
6,self_attn.k_proj,0.0000014485,0.01000,4.222
|
| 47 |
+
6,self_attn.o_proj,0.0000003226,0.01000,0.549
|
| 48 |
+
6,mlp.up_proj,0.0000229353,0.01000,2.249
|
| 49 |
+
6,mlp.gate_proj,0.0000275070,0.01000,2.264
|
| 50 |
+
6,mlp.down_proj,0.0000023494,0.01000,3.308
|
| 51 |
+
7,self_attn.k_proj,0.0000006360,0.01000,4.191
|
| 52 |
+
7,self_attn.q_proj,0.0000030438,0.01000,4.217
|
| 53 |
+
7,self_attn.v_proj,0.0000004572,0.01000,4.231
|
| 54 |
+
7,self_attn.o_proj,0.0000004418,0.01000,0.548
|
| 55 |
+
7,mlp.gate_proj,0.0000226755,0.01000,2.297
|
| 56 |
+
7,mlp.up_proj,0.0000214142,0.01000,2.316
|
| 57 |
+
7,mlp.down_proj,0.0000023737,0.01000,3.321
|
| 58 |
+
8,self_attn.v_proj,0.0000005984,0.01000,4.136
|
| 59 |
+
8,self_attn.q_proj,0.0000065265,0.01000,4.162
|
| 60 |
+
8,self_attn.k_proj,0.0000011549,0.01000,4.169
|
| 61 |
+
8,self_attn.o_proj,0.0000006129,0.01000,0.540
|
| 62 |
+
8,mlp.up_proj,0.0000207475,0.01000,2.359
|
| 63 |
+
8,mlp.gate_proj,0.0000225745,0.01000,2.368
|
| 64 |
+
8,mlp.down_proj,0.0000021815,0.01000,3.298
|
| 65 |
+
9,self_attn.k_proj,0.0000010223,0.01000,4.134
|
| 66 |
+
9,self_attn.v_proj,0.0000005248,0.01000,4.145
|
| 67 |
+
9,self_attn.q_proj,0.0000047674,0.01000,4.176
|
| 68 |
+
9,self_attn.o_proj,0.0000005235,0.01000,0.543
|
| 69 |
+
9,mlp.up_proj,0.0000194149,0.01000,2.169
|
| 70 |
+
9,mlp.gate_proj,0.0000200467,0.01000,2.195
|
| 71 |
+
9,mlp.down_proj,0.0000020366,0.01000,3.314
|
| 72 |
+
10,self_attn.q_proj,0.0000051017,0.01000,4.160
|
| 73 |
+
10,self_attn.v_proj,0.0000008157,0.01000,4.201
|
| 74 |
+
10,self_attn.k_proj,0.0000010125,0.01000,4.218
|
| 75 |
+
10,self_attn.o_proj,0.0000008479,0.01000,0.547
|
| 76 |
+
10,mlp.gate_proj,0.0000190881,0.01000,2.326
|
| 77 |
+
10,mlp.up_proj,0.0000180675,0.01000,2.328
|
| 78 |
+
10,mlp.down_proj,0.0000017886,0.01000,3.334
|
| 79 |
+
11,self_attn.q_proj,0.0000047119,0.01000,4.073
|
| 80 |
+
11,self_attn.k_proj,0.0000009423,0.01000,4.095
|
| 81 |
+
11,self_attn.v_proj,0.0000006212,0.01000,4.121
|
| 82 |
+
11,self_attn.o_proj,0.0000007774,0.01000,0.540
|
| 83 |
+
11,mlp.up_proj,0.0000160563,0.01000,2.219
|
| 84 |
+
11,mlp.gate_proj,0.0000181036,0.01000,2.220
|
| 85 |
+
11,mlp.down_proj,0.0000014661,0.01000,3.341
|
| 86 |
+
12,self_attn.v_proj,0.0000006052,0.01000,4.036
|
| 87 |
+
12,self_attn.q_proj,0.0000058220,0.01000,4.069
|
| 88 |
+
12,self_attn.k_proj,0.0000012392,0.01000,4.079
|
| 89 |
+
12,self_attn.o_proj,0.0000006438,0.01000,0.553
|
| 90 |
+
12,mlp.gate_proj,0.0000167377,0.01000,2.299
|
| 91 |
+
12,mlp.up_proj,0.0000155442,0.01000,2.314
|
| 92 |
+
12,mlp.down_proj,0.0000015434,0.01000,3.339
|
| 93 |
+
13,self_attn.q_proj,0.0000035037,0.01000,4.482
|
| 94 |
+
13,self_attn.v_proj,0.0000004650,0.01000,4.509
|
| 95 |
+
13,self_attn.k_proj,0.0000007093,0.01000,4.512
|
| 96 |
+
13,self_attn.o_proj,0.0000007359,0.01000,0.544
|
| 97 |
+
13,mlp.up_proj,0.0000148619,0.01000,2.314
|
| 98 |
+
13,mlp.gate_proj,0.0000154341,0.01000,2.330
|
| 99 |
+
13,mlp.down_proj,0.0000013372,0.01000,3.293
|
| 100 |
+
14,self_attn.q_proj,0.0000080075,0.01000,4.058
|
| 101 |
+
14,self_attn.v_proj,0.0000008156,0.01000,4.098
|
| 102 |
+
14,self_attn.k_proj,0.0000012209,0.01000,4.121
|
| 103 |
+
14,self_attn.o_proj,0.0000006872,0.01000,0.538
|
| 104 |
+
14,mlp.gate_proj,0.0000164441,0.01000,2.302
|
| 105 |
+
14,mlp.up_proj,0.0000168972,0.01000,2.310
|
| 106 |
+
14,mlp.down_proj,0.0000016339,0.01000,3.304
|
| 107 |
+
15,self_attn.q_proj,0.0000107706,0.01000,4.222
|
| 108 |
+
15,self_attn.k_proj,0.0000009130,0.01000,4.253
|
| 109 |
+
15,self_attn.v_proj,0.0000008004,0.01000,4.269
|
| 110 |
+
15,self_attn.o_proj,0.0000009365,0.01000,0.543
|
| 111 |
+
15,mlp.gate_proj,0.0000145138,0.01000,2.261
|
| 112 |
+
15,mlp.up_proj,0.0000139205,0.01000,2.279
|
| 113 |
+
15,mlp.down_proj,0.0000013035,0.01000,3.276
|
| 114 |
+
16,self_attn.v_proj,0.0000008812,0.01000,3.889
|
| 115 |
+
16,self_attn.q_proj,0.0000062962,0.01000,3.923
|
| 116 |
+
16,self_attn.k_proj,0.0000011722,0.01000,3.931
|
| 117 |
+
16,self_attn.o_proj,0.0000007443,0.01000,0.542
|
| 118 |
+
16,mlp.gate_proj,0.0000162058,0.01000,2.212
|
| 119 |
+
16,mlp.up_proj,0.0000160050,0.01000,2.223
|
| 120 |
+
16,mlp.down_proj,0.0000015431,0.01000,3.276
|
| 121 |
+
17,self_attn.k_proj,0.0000007092,0.01000,4.211
|
| 122 |
+
17,self_attn.v_proj,0.0000011527,0.01000,4.216
|
| 123 |
+
17,self_attn.q_proj,0.0000058229,0.01000,4.249
|
| 124 |
+
17,self_attn.o_proj,0.0000006843,0.01000,0.542
|
| 125 |
+
17,mlp.gate_proj,0.0000156584,0.01000,2.218
|
| 126 |
+
17,mlp.up_proj,0.0000156905,0.01000,2.230
|
| 127 |
+
17,mlp.down_proj,0.0000017380,0.01000,3.321
|
| 128 |
+
18,self_attn.q_proj,0.0000045721,0.01000,4.072
|
| 129 |
+
18,self_attn.v_proj,0.0000007688,0.01000,4.088
|
| 130 |
+
18,self_attn.k_proj,0.0000007872,0.01000,4.117
|
| 131 |
+
18,self_attn.o_proj,0.0000009582,0.01000,0.547
|
| 132 |
+
18,mlp.gate_proj,0.0000166070,0.01000,2.233
|
| 133 |
+
18,mlp.up_proj,0.0000163980,0.01000,2.250
|
| 134 |
+
18,mlp.down_proj,0.0000021996,0.01000,3.306
|
| 135 |
+
19,self_attn.k_proj,0.0000009033,0.01000,4.089
|
| 136 |
+
19,self_attn.q_proj,0.0000063382,0.01000,4.118
|
| 137 |
+
19,self_attn.v_proj,0.0000015799,0.01000,4.137
|
| 138 |
+
19,self_attn.o_proj,0.0000009348,0.01000,0.540
|
| 139 |
+
19,mlp.up_proj,0.0000194921,0.01000,2.271
|
| 140 |
+
19,mlp.gate_proj,0.0000182135,0.01000,2.288
|
| 141 |
+
19,mlp.down_proj,0.0000038680,0.01000,3.304
|
| 142 |
+
20,self_attn.v_proj,0.0000021120,0.01000,3.751
|
| 143 |
+
20,self_attn.q_proj,0.0000068275,0.01000,3.791
|
| 144 |
+
20,self_attn.k_proj,0.0000010585,0.01000,3.800
|
| 145 |
+
20,self_attn.o_proj,0.0000016201,0.01000,0.538
|
| 146 |
+
20,mlp.gate_proj,0.0000212923,0.01000,2.134
|
| 147 |
+
20,mlp.up_proj,0.0000218030,0.01000,2.141
|
| 148 |
+
20,mlp.down_proj,0.0000039311,0.01000,3.300
|
| 149 |
+
21,self_attn.v_proj,0.0000019285,0.01000,3.892
|
| 150 |
+
21,self_attn.k_proj,0.0000010491,0.01000,3.906
|
| 151 |
+
21,self_attn.q_proj,0.0000073233,0.01000,3.946
|
| 152 |
+
21,self_attn.o_proj,0.0000011466,0.01000,0.553
|
| 153 |
+
21,mlp.up_proj,0.0000305160,0.01000,2.096
|
| 154 |
+
21,mlp.gate_proj,0.0000300531,0.01000,2.112
|
| 155 |
+
21,mlp.down_proj,0.0000068656,0.01000,3.277
|
| 156 |
+
22,self_attn.q_proj,0.0000069531,0.01000,4.081
|
| 157 |
+
22,self_attn.v_proj,0.0000025244,0.01000,4.130
|
| 158 |
+
22,self_attn.k_proj,0.0000012271,0.01000,4.158
|
| 159 |
+
22,self_attn.o_proj,0.0000016307,0.01000,0.544
|
| 160 |
+
22,mlp.up_proj,0.0000363417,0.01000,2.336
|
| 161 |
+
22,mlp.gate_proj,0.0000361885,0.01000,2.340
|
| 162 |
+
22,mlp.down_proj,0.0000098906,0.01000,3.308
|
| 163 |
+
23,self_attn.q_proj,0.0000092536,0.01000,4.183
|
| 164 |
+
23,self_attn.k_proj,0.0000014433,0.01000,4.210
|
| 165 |
+
23,self_attn.v_proj,0.0000033882,0.01000,4.231
|
| 166 |
+
23,self_attn.o_proj,0.0000015257,0.01000,0.547
|
| 167 |
+
23,mlp.up_proj,0.0000416835,0.01000,2.169
|
| 168 |
+
23,mlp.gate_proj,0.0000397292,0.01000,2.184
|
| 169 |
+
23,mlp.down_proj,0.0000141283,0.01000,3.290
|
| 170 |
+
24,self_attn.q_proj,0.0000100452,0.01000,4.317
|
| 171 |
+
24,self_attn.k_proj,0.0000016384,0.01000,4.341
|
| 172 |
+
24,self_attn.v_proj,0.0000070202,0.01000,4.347
|
| 173 |
+
24,self_attn.o_proj,0.0000020350,0.01000,0.545
|
| 174 |
+
24,mlp.gate_proj,0.0000443096,0.01000,2.359
|
| 175 |
+
24,mlp.up_proj,0.0000476014,0.01000,2.373
|
| 176 |
+
24,mlp.down_proj,0.0000175060,0.01000,3.280
|
| 177 |
+
25,self_attn.k_proj,0.0000018915,0.01000,3.976
|
| 178 |
+
25,self_attn.v_proj,0.0000116649,0.01000,3.995
|
| 179 |
+
25,self_attn.q_proj,0.0000106701,0.01000,4.021
|
| 180 |
+
25,self_attn.o_proj,0.0000047635,0.01000,0.535
|
| 181 |
+
25,mlp.up_proj,0.0000524923,0.01000,2.175
|
| 182 |
+
25,mlp.gate_proj,0.0000455820,0.01000,2.191
|
| 183 |
+
25,mlp.down_proj,0.0000234537,0.01000,3.305
|
| 184 |
+
26,self_attn.q_proj,0.0000117508,0.01000,4.033
|
| 185 |
+
26,self_attn.v_proj,0.0000137001,0.01000,4.061
|
| 186 |
+
26,self_attn.k_proj,0.0000018237,0.01000,4.088
|
| 187 |
+
26,self_attn.o_proj,0.0000025624,0.01000,0.552
|
| 188 |
+
26,mlp.gate_proj,0.0000453298,0.01000,2.094
|
| 189 |
+
26,mlp.up_proj,0.0000543044,0.01000,2.112
|
| 190 |
+
26,mlp.down_proj,0.0000345982,0.01000,3.283
|
| 191 |
+
27,self_attn.q_proj,0.0000123822,0.01000,3.914
|
| 192 |
+
27,self_attn.k_proj,0.0000019889,0.01000,3.914
|
| 193 |
+
27,self_attn.v_proj,0.0000145450,0.01000,3.948
|
| 194 |
+
27,self_attn.o_proj,0.0000095030,0.01000,0.546
|
| 195 |
+
27,mlp.up_proj,0.0000644787,0.01000,2.214
|
| 196 |
+
27,mlp.gate_proj,0.0000618511,0.01000,2.227
|
| 197 |
+
27,mlp.down_proj,0.0000463635,0.01000,3.294
|
qwen25-1p5b__gptq__wikitext2__n512__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_60jao5c8",
|
| 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__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__wikitext2__n512__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 |
+
}
|