Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- qwen25-1p5b__gptq__wikitext2__n32__s0/BENCH_DONE +1 -0
- qwen25-1p5b__gptq__wikitext2__n32__s0/chat_template.jinja +54 -0
- qwen25-1p5b__gptq__wikitext2__n32__s0/config.json +108 -0
- qwen25-1p5b__gptq__wikitext2__n32__s0/generation_config.json +14 -0
- qwen25-1p5b__gptq__wikitext2__n32__s0/model.safetensors +3 -0
- qwen25-1p5b__gptq__wikitext2__n32__s0/quant_log.csv +197 -0
- qwen25-1p5b__gptq__wikitext2__n32__s0/quantize_config.json +47 -0
- qwen25-1p5b__gptq__wikitext2__n32__s0/tokenizer.json +3 -0
- qwen25-1p5b__gptq__wikitext2__n32__s0/tokenizer_config.json +30 -0
.gitattributes
CHANGED
|
@@ -63,3 +63,4 @@ qwen25-1p5b__gptq__openhermes__n512__s1/tokenizer.json filter=lfs diff=lfs merge
|
|
| 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
|
|
|
|
|
|
| 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
|
| 66 |
+
qwen25-1p5b__gptq__wikitext2__n32__s0/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
qwen25-1p5b__gptq__wikitext2__n32__s0/BENCH_DONE
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
2026-07-30T18:09:18.277386+00:00
|
qwen25-1p5b__gptq__wikitext2__n32__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__n32__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_ju9ly8db",
|
| 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__n32__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__n32__s0/model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:6526201dbcc21834ec15be8418f00abc4ec60e985564553001de53225e9dba51
|
| 3 |
+
size 1149862904
|
qwen25-1p5b__gptq__wikitext2__n32__s0/quant_log.csv
ADDED
|
@@ -0,0 +1,197 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
layer,module,loss,samples,damp,time
|
| 2 |
+
0,self_attn.v_proj,0.0000019342,0.01000,3.674
|
| 3 |
+
0,self_attn.k_proj,0.0000164271,0.01000,3.774
|
| 4 |
+
0,self_attn.q_proj,0.0001147251,0.01000,4.146
|
| 5 |
+
0,self_attn.o_proj,0.0000046329,0.01000,0.507
|
| 6 |
+
0,mlp.up_proj,0.0000355683,0.01000,1.974
|
| 7 |
+
0,mlp.gate_proj,0.0000519084,0.01000,1.992
|
| 8 |
+
0,mlp.down_proj,0.0000071184,0.01000,3.188
|
| 9 |
+
1,self_attn.v_proj,0.0000012361,0.01000,4.848
|
| 10 |
+
1,self_attn.k_proj,0.0000055295,0.01000,4.853
|
| 11 |
+
1,self_attn.q_proj,0.0000185897,0.01000,4.885
|
| 12 |
+
1,self_attn.o_proj,0.0000017794,0.01000,0.511
|
| 13 |
+
1,mlp.up_proj,0.0011307314,0.01000,2.749
|
| 14 |
+
1,mlp.gate_proj,0.0013872794,0.01000,2.787
|
| 15 |
+
1,mlp.down_proj,0.0000472508,0.01000,3.198
|
| 16 |
+
2,self_attn.v_proj,0.0000050955,0.01000,3.837
|
| 17 |
+
2,self_attn.q_proj,0.0000564199,0.01000,3.868
|
| 18 |
+
2,self_attn.k_proj,0.0000123972,0.01000,3.891
|
| 19 |
+
2,self_attn.o_proj,0.0000033651,0.01000,0.522
|
| 20 |
+
2,mlp.gate_proj,0.0011960608,0.01000,2.260
|
| 21 |
+
2,mlp.up_proj,0.0007519902,0.01000,2.281
|
| 22 |
+
2,mlp.down_proj,0.0001024352,0.01000,3.203
|
| 23 |
+
3,self_attn.q_proj,0.0000569727,0.01000,3.828
|
| 24 |
+
3,self_attn.k_proj,0.0000123051,0.01000,3.830
|
| 25 |
+
3,self_attn.v_proj,0.0000065804,0.01000,3.873
|
| 26 |
+
3,self_attn.o_proj,0.0000047664,0.01000,0.524
|
| 27 |
+
3,mlp.up_proj,0.0005349428,0.01000,2.058
|
| 28 |
+
3,mlp.gate_proj,0.0009934762,0.01000,2.070
|
| 29 |
+
3,mlp.down_proj,0.0000239868,0.01000,3.197
|
| 30 |
+
4,self_attn.v_proj,0.0000096106,0.01000,3.840
|
| 31 |
+
4,self_attn.k_proj,0.0000152209,0.01000,3.852
|
| 32 |
+
4,self_attn.q_proj,0.0000755985,0.01000,3.873
|
| 33 |
+
4,self_attn.o_proj,0.0000062767,0.01000,0.530
|
| 34 |
+
4,mlp.gate_proj,0.0007045234,0.01000,2.143
|
| 35 |
+
4,mlp.up_proj,0.0004306053,0.01000,2.148
|
| 36 |
+
4,mlp.down_proj,0.0000318418,0.01000,3.179
|
| 37 |
+
5,self_attn.v_proj,0.0000120225,0.01000,3.873
|
| 38 |
+
5,self_attn.k_proj,0.0000166947,0.01000,3.902
|
| 39 |
+
5,self_attn.q_proj,0.0000777669,0.01000,3.919
|
| 40 |
+
5,self_attn.o_proj,0.0000093316,0.01000,0.523
|
| 41 |
+
5,mlp.up_proj,0.0009004481,0.01000,2.103
|
| 42 |
+
5,mlp.gate_proj,0.0013804892,0.01000,2.118
|
| 43 |
+
5,mlp.down_proj,0.0000262128,0.01000,3.203
|
| 44 |
+
6,self_attn.q_proj,0.0000997411,0.01000,3.978
|
| 45 |
+
6,self_attn.v_proj,0.0000081930,0.01000,4.013
|
| 46 |
+
6,self_attn.k_proj,0.0000215895,0.01000,4.030
|
| 47 |
+
6,self_attn.o_proj,0.0000047831,0.01000,0.526
|
| 48 |
+
6,mlp.gate_proj,0.0004120299,0.01000,2.135
|
| 49 |
+
6,mlp.up_proj,0.0003444570,0.01000,2.154
|
| 50 |
+
6,mlp.down_proj,0.0000296694,0.01000,3.201
|
| 51 |
+
7,self_attn.k_proj,0.0000094747,0.01000,3.994
|
| 52 |
+
7,self_attn.q_proj,0.0000453682,0.01000,4.025
|
| 53 |
+
7,self_attn.v_proj,0.0000068652,0.01000,4.036
|
| 54 |
+
7,self_attn.o_proj,0.0000064341,0.01000,0.534
|
| 55 |
+
7,mlp.gate_proj,0.0003386944,0.01000,2.157
|
| 56 |
+
7,mlp.up_proj,0.0003204946,0.01000,2.171
|
| 57 |
+
7,mlp.down_proj,0.0000306689,0.01000,3.180
|
| 58 |
+
8,self_attn.q_proj,0.0000975980,0.01000,4.055
|
| 59 |
+
8,self_attn.k_proj,0.0000171185,0.01000,4.079
|
| 60 |
+
8,self_attn.v_proj,0.0000089554,0.01000,4.082
|
| 61 |
+
8,self_attn.o_proj,0.0000091898,0.01000,0.518
|
| 62 |
+
8,mlp.up_proj,0.0003109178,0.01000,2.172
|
| 63 |
+
8,mlp.gate_proj,0.0003373864,0.01000,2.194
|
| 64 |
+
8,mlp.down_proj,0.0000282005,0.01000,3.202
|
| 65 |
+
9,self_attn.k_proj,0.0000152093,0.01000,4.013
|
| 66 |
+
9,self_attn.v_proj,0.0000078665,0.01000,4.037
|
| 67 |
+
9,self_attn.q_proj,0.0000712139,0.01000,4.061
|
| 68 |
+
9,self_attn.o_proj,0.0000077402,0.01000,0.526
|
| 69 |
+
9,mlp.gate_proj,0.0003006670,0.01000,2.203
|
| 70 |
+
9,mlp.up_proj,0.0002914813,0.01000,2.215
|
| 71 |
+
9,mlp.down_proj,0.0000269406,0.01000,3.195
|
| 72 |
+
10,self_attn.v_proj,0.0000122656,0.01000,4.445
|
| 73 |
+
10,self_attn.q_proj,0.0000767830,0.01000,4.465
|
| 74 |
+
10,self_attn.k_proj,0.0000151630,0.01000,4.466
|
| 75 |
+
10,self_attn.o_proj,0.0000127585,0.01000,0.525
|
| 76 |
+
10,mlp.gate_proj,0.0002860500,0.01000,2.161
|
| 77 |
+
10,mlp.up_proj,0.0002715630,0.01000,2.170
|
| 78 |
+
10,mlp.down_proj,0.0000238348,0.01000,3.218
|
| 79 |
+
11,self_attn.k_proj,0.0000141979,0.01000,4.104
|
| 80 |
+
11,self_attn.q_proj,0.0000709284,0.01000,4.131
|
| 81 |
+
11,self_attn.v_proj,0.0000094011,0.01000,4.152
|
| 82 |
+
11,self_attn.o_proj,0.0000115804,0.01000,0.515
|
| 83 |
+
11,mlp.up_proj,0.0002399410,0.01000,2.111
|
| 84 |
+
11,mlp.gate_proj,0.0002696267,0.01000,2.118
|
| 85 |
+
11,mlp.down_proj,0.0000191793,0.01000,3.173
|
| 86 |
+
12,self_attn.v_proj,0.0000091440,0.01000,4.016
|
| 87 |
+
12,self_attn.k_proj,0.0000185371,0.01000,4.027
|
| 88 |
+
12,self_attn.q_proj,0.0000872645,0.01000,4.041
|
| 89 |
+
12,self_attn.o_proj,0.0000098156,0.01000,0.521
|
| 90 |
+
12,mlp.up_proj,0.0002341574,0.01000,2.192
|
| 91 |
+
12,mlp.gate_proj,0.0002522004,0.01000,2.201
|
| 92 |
+
12,mlp.down_proj,0.0000209151,0.01000,3.217
|
| 93 |
+
13,self_attn.v_proj,0.0000070881,0.01000,4.097
|
| 94 |
+
13,self_attn.k_proj,0.0000108037,0.01000,4.116
|
| 95 |
+
13,self_attn.q_proj,0.0000532102,0.01000,4.134
|
| 96 |
+
13,self_attn.o_proj,0.0000111549,0.01000,0.528
|
| 97 |
+
13,mlp.gate_proj,0.0002333046,0.01000,2.268
|
| 98 |
+
13,mlp.up_proj,0.0002246042,0.01000,2.270
|
| 99 |
+
13,mlp.down_proj,0.0000183048,0.01000,3.223
|
| 100 |
+
14,self_attn.q_proj,0.0001213649,0.01000,4.056
|
| 101 |
+
14,self_attn.v_proj,0.0000124703,0.01000,4.070
|
| 102 |
+
14,self_attn.k_proj,0.0000184719,0.01000,4.092
|
| 103 |
+
14,self_attn.o_proj,0.0000104451,0.01000,0.525
|
| 104 |
+
14,mlp.gate_proj,0.0002496725,0.01000,2.223
|
| 105 |
+
14,mlp.up_proj,0.0002567085,0.01000,2.239
|
| 106 |
+
14,mlp.down_proj,0.0000224990,0.01000,3.217
|
| 107 |
+
15,self_attn.v_proj,0.0000121300,0.01000,4.285
|
| 108 |
+
15,self_attn.q_proj,0.0001598735,0.01000,4.316
|
| 109 |
+
15,self_attn.k_proj,0.0000138054,0.01000,4.313
|
| 110 |
+
15,self_attn.o_proj,0.0000142134,0.01000,0.519
|
| 111 |
+
15,mlp.up_proj,0.0002091968,0.01000,2.164
|
| 112 |
+
15,mlp.gate_proj,0.0002175755,0.01000,2.180
|
| 113 |
+
15,mlp.down_proj,0.0000174174,0.01000,3.177
|
| 114 |
+
16,self_attn.v_proj,0.0000133343,0.01000,4.080
|
| 115 |
+
16,self_attn.q_proj,0.0000948552,0.01000,4.112
|
| 116 |
+
16,self_attn.k_proj,0.0000176523,0.01000,4.121
|
| 117 |
+
16,self_attn.o_proj,0.0000107418,0.01000,0.514
|
| 118 |
+
16,mlp.gate_proj,0.0002441193,0.01000,2.216
|
| 119 |
+
16,mlp.up_proj,0.0002420020,0.01000,2.232
|
| 120 |
+
16,mlp.down_proj,0.0000209046,0.01000,3.202
|
| 121 |
+
17,self_attn.k_proj,0.0000106545,0.01000,4.721
|
| 122 |
+
17,self_attn.v_proj,0.0000174375,0.01000,4.770
|
| 123 |
+
17,self_attn.q_proj,0.0000876165,0.01000,4.777
|
| 124 |
+
17,self_attn.o_proj,0.0000100938,0.01000,0.557
|
| 125 |
+
17,mlp.up_proj,0.0002374281,0.01000,2.085
|
| 126 |
+
17,mlp.gate_proj,0.0002358815,0.01000,2.100
|
| 127 |
+
17,mlp.down_proj,0.0000239344,0.01000,3.251
|
| 128 |
+
18,self_attn.v_proj,0.0000115695,0.01000,3.946
|
| 129 |
+
18,self_attn.q_proj,0.0000683989,0.01000,3.980
|
| 130 |
+
18,self_attn.k_proj,0.0000117309,0.01000,3.990
|
| 131 |
+
18,self_attn.o_proj,0.0000145658,0.01000,0.530
|
| 132 |
+
18,mlp.gate_proj,0.0002511730,0.01000,2.065
|
| 133 |
+
18,mlp.up_proj,0.0002487783,0.01000,2.079
|
| 134 |
+
18,mlp.down_proj,0.0000302643,0.01000,3.252
|
| 135 |
+
19,self_attn.k_proj,0.0000136190,0.01000,3.718
|
| 136 |
+
19,self_attn.q_proj,0.0000958817,0.01000,3.754
|
| 137 |
+
19,self_attn.v_proj,0.0000240136,0.01000,3.775
|
| 138 |
+
19,self_attn.o_proj,0.0000142048,0.01000,0.522
|
| 139 |
+
19,mlp.up_proj,0.0002968083,0.01000,1.998
|
| 140 |
+
19,mlp.gate_proj,0.0002764180,0.01000,2.014
|
| 141 |
+
19,mlp.down_proj,0.0000528821,0.01000,3.195
|
| 142 |
+
20,self_attn.k_proj,0.0000158426,0.01000,4.033
|
| 143 |
+
20,self_attn.v_proj,0.0000319307,0.01000,4.059
|
| 144 |
+
20,self_attn.q_proj,0.0001033415,0.01000,4.065
|
| 145 |
+
20,self_attn.o_proj,0.0000233880,0.01000,0.527
|
| 146 |
+
20,mlp.gate_proj,0.0003184055,0.01000,2.033
|
| 147 |
+
20,mlp.up_proj,0.0003276202,0.01000,2.044
|
| 148 |
+
20,mlp.down_proj,0.0000513446,0.01000,3.257
|
| 149 |
+
21,self_attn.k_proj,0.0000153072,0.01000,4.252
|
| 150 |
+
21,self_attn.v_proj,0.0000287305,0.01000,4.271
|
| 151 |
+
21,self_attn.q_proj,0.0001082291,0.01000,4.298
|
| 152 |
+
21,self_attn.o_proj,0.0000156118,0.01000,0.525
|
| 153 |
+
21,mlp.up_proj,0.0004525308,0.01000,2.103
|
| 154 |
+
21,mlp.gate_proj,0.0004433999,0.01000,2.110
|
| 155 |
+
21,mlp.down_proj,0.0000885168,0.01000,3.236
|
| 156 |
+
22,self_attn.q_proj,0.0001016993,0.01000,4.133
|
| 157 |
+
22,self_attn.v_proj,0.0000368748,0.01000,4.150
|
| 158 |
+
22,self_attn.k_proj,0.0000178028,0.01000,4.178
|
| 159 |
+
22,self_attn.o_proj,0.0000237580,0.01000,0.527
|
| 160 |
+
22,mlp.gate_proj,0.0005231457,0.01000,2.072
|
| 161 |
+
22,mlp.up_proj,0.0005282286,0.01000,2.103
|
| 162 |
+
22,mlp.down_proj,0.0001215818,0.01000,3.211
|
| 163 |
+
23,self_attn.q_proj,0.0001335094,0.01000,4.344
|
| 164 |
+
23,self_attn.k_proj,0.0000207278,0.01000,4.366
|
| 165 |
+
23,self_attn.v_proj,0.0000498450,0.01000,4.381
|
| 166 |
+
23,self_attn.o_proj,0.0000223149,0.01000,0.537
|
| 167 |
+
23,mlp.gate_proj,0.0005702716,0.01000,2.197
|
| 168 |
+
23,mlp.up_proj,0.0006009719,0.01000,2.212
|
| 169 |
+
23,mlp.down_proj,0.0001567543,0.01000,3.218
|
| 170 |
+
24,self_attn.v_proj,0.0001028863,0.01000,4.407
|
| 171 |
+
24,self_attn.q_proj,0.0001446288,0.01000,4.426
|
| 172 |
+
24,self_attn.k_proj,0.0000236073,0.01000,4.422
|
| 173 |
+
24,self_attn.o_proj,0.0000294283,0.01000,0.532
|
| 174 |
+
24,mlp.gate_proj,0.0006296801,0.01000,2.155
|
| 175 |
+
24,mlp.up_proj,0.0006763355,0.01000,2.175
|
| 176 |
+
24,mlp.down_proj,0.0001902210,0.01000,3.234
|
| 177 |
+
25,self_attn.v_proj,0.0001720013,0.01000,3.921
|
| 178 |
+
25,self_attn.k_proj,0.0000277073,0.01000,3.939
|
| 179 |
+
25,self_attn.q_proj,0.0001559415,0.01000,3.958
|
| 180 |
+
25,self_attn.o_proj,0.0000675173,0.01000,0.523
|
| 181 |
+
25,mlp.up_proj,0.0007389511,0.01000,2.089
|
| 182 |
+
25,mlp.gate_proj,0.0006392358,0.01000,2.108
|
| 183 |
+
25,mlp.down_proj,0.0002571768,0.01000,3.190
|
| 184 |
+
26,self_attn.q_proj,0.0001713704,0.01000,3.633
|
| 185 |
+
26,self_attn.v_proj,0.0002023745,0.01000,3.644
|
| 186 |
+
26,self_attn.k_proj,0.0000266073,0.01000,3.682
|
| 187 |
+
26,self_attn.o_proj,0.0000304375,0.01000,0.521
|
| 188 |
+
26,mlp.gate_proj,0.0006336162,0.01000,1.928
|
| 189 |
+
26,mlp.up_proj,0.0007597964,0.01000,1.947
|
| 190 |
+
26,mlp.down_proj,0.0004217229,0.01000,3.178
|
| 191 |
+
27,self_attn.k_proj,0.0000286929,0.01000,3.605
|
| 192 |
+
27,self_attn.q_proj,0.0001791518,0.01000,3.645
|
| 193 |
+
27,self_attn.v_proj,0.0002113884,0.01000,3.662
|
| 194 |
+
27,self_attn.o_proj,0.0001239076,0.01000,0.526
|
| 195 |
+
27,mlp.up_proj,0.0009051765,0.01000,1.981
|
| 196 |
+
27,mlp.gate_proj,0.0008717191,0.01000,1.998
|
| 197 |
+
27,mlp.down_proj,0.0005235551,0.01000,3.206
|
qwen25-1p5b__gptq__wikitext2__n32__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_ju9ly8db",
|
| 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__n32__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__n32__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 |
+
}
|