Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- qwen25-1p5b__gptq__wikitext2__n128__s0/BENCH_DONE +1 -0
- qwen25-1p5b__gptq__wikitext2__n128__s0/chat_template.jinja +54 -0
- qwen25-1p5b__gptq__wikitext2__n128__s0/config.json +108 -0
- qwen25-1p5b__gptq__wikitext2__n128__s0/generation_config.json +14 -0
- qwen25-1p5b__gptq__wikitext2__n128__s0/model.safetensors +3 -0
- qwen25-1p5b__gptq__wikitext2__n128__s0/quant_log.csv +197 -0
- qwen25-1p5b__gptq__wikitext2__n128__s0/quantize_config.json +47 -0
- qwen25-1p5b__gptq__wikitext2__n128__s0/tokenizer.json +3 -0
- qwen25-1p5b__gptq__wikitext2__n128__s0/tokenizer_config.json +30 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
qwen25-1p5b__gptq__wikitext2__n128__s0/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
qwen25-1p5b__gptq__wikitext2__n128__s0/BENCH_DONE
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
2026-07-30T18:34:52.012267+00:00
|
qwen25-1p5b__gptq__wikitext2__n128__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__n128__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_a3xw7k9g",
|
| 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__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__n128__s0/model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3195eef842b327b55dc158684833312a88f82ec00881543b76bf0847e82b12b2
|
| 3 |
+
size 1149862904
|
qwen25-1p5b__gptq__wikitext2__n128__s0/quant_log.csv
ADDED
|
@@ -0,0 +1,197 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
layer,module,loss,samples,damp,time
|
| 2 |
+
0,self_attn.v_proj,0.0000005048,0.01000,4.197
|
| 3 |
+
0,self_attn.q_proj,0.0000302414,0.01000,4.219
|
| 4 |
+
0,self_attn.k_proj,0.0000042791,0.01000,4.237
|
| 5 |
+
0,self_attn.o_proj,0.0000011696,0.01000,0.541
|
| 6 |
+
0,mlp.up_proj,0.0000089902,0.01000,2.162
|
| 7 |
+
0,mlp.gate_proj,0.0000130986,0.01000,2.170
|
| 8 |
+
0,mlp.down_proj,0.0000020602,0.01000,3.269
|
| 9 |
+
1,self_attn.v_proj,0.0000003135,0.01000,3.951
|
| 10 |
+
1,self_attn.k_proj,0.0000014038,0.01000,3.976
|
| 11 |
+
1,self_attn.q_proj,0.0000047105,0.01000,4.000
|
| 12 |
+
1,self_attn.o_proj,0.0000004493,0.01000,0.537
|
| 13 |
+
1,mlp.up_proj,0.0002857425,0.01000,2.281
|
| 14 |
+
1,mlp.gate_proj,0.0003506964,0.01000,2.298
|
| 15 |
+
1,mlp.down_proj,0.0000121036,0.01000,3.287
|
| 16 |
+
2,self_attn.q_proj,0.0000143989,0.01000,4.078
|
| 17 |
+
2,self_attn.v_proj,0.0000012891,0.01000,4.095
|
| 18 |
+
2,self_attn.k_proj,0.0000031456,0.01000,4.122
|
| 19 |
+
2,self_attn.o_proj,0.0000008583,0.01000,0.538
|
| 20 |
+
2,mlp.gate_proj,0.0003053018,0.01000,2.216
|
| 21 |
+
2,mlp.up_proj,0.0001912828,0.01000,2.238
|
| 22 |
+
2,mlp.down_proj,0.0000312745,0.01000,3.289
|
| 23 |
+
3,self_attn.k_proj,0.0000031436,0.01000,3.972
|
| 24 |
+
3,self_attn.q_proj,0.0000145189,0.01000,3.994
|
| 25 |
+
3,self_attn.v_proj,0.0000016809,0.01000,4.016
|
| 26 |
+
3,self_attn.o_proj,0.0000012219,0.01000,0.541
|
| 27 |
+
3,mlp.gate_proj,0.0002536784,0.01000,2.182
|
| 28 |
+
3,mlp.up_proj,0.0001361068,0.01000,2.203
|
| 29 |
+
3,mlp.down_proj,0.0000074360,0.01000,3.277
|
| 30 |
+
4,self_attn.v_proj,0.0000024572,0.01000,3.934
|
| 31 |
+
4,self_attn.q_proj,0.0000193480,0.01000,3.964
|
| 32 |
+
4,self_attn.k_proj,0.0000039088,0.01000,3.968
|
| 33 |
+
4,self_attn.o_proj,0.0000016648,0.01000,0.541
|
| 34 |
+
4,mlp.gate_proj,0.0001808272,0.01000,2.312
|
| 35 |
+
4,mlp.up_proj,0.0001100733,0.01000,2.325
|
| 36 |
+
4,mlp.down_proj,0.0000095498,0.01000,3.276
|
| 37 |
+
5,self_attn.v_proj,0.0000030925,0.01000,3.974
|
| 38 |
+
5,self_attn.k_proj,0.0000043079,0.01000,3.981
|
| 39 |
+
5,self_attn.q_proj,0.0000200109,0.01000,4.009
|
| 40 |
+
5,self_attn.o_proj,0.0000024274,0.01000,0.544
|
| 41 |
+
5,mlp.up_proj,0.0002315631,0.01000,2.192
|
| 42 |
+
5,mlp.gate_proj,0.0003557568,0.01000,2.207
|
| 43 |
+
5,mlp.down_proj,0.0000080346,0.01000,3.295
|
| 44 |
+
6,self_attn.q_proj,0.0000259538,0.01000,4.203
|
| 45 |
+
6,self_attn.v_proj,0.0000021249,0.01000,4.218
|
| 46 |
+
6,self_attn.k_proj,0.0000056403,0.01000,4.240
|
| 47 |
+
6,self_attn.o_proj,0.0000012716,0.01000,0.539
|
| 48 |
+
6,mlp.gate_proj,0.0001074975,0.01000,2.315
|
| 49 |
+
6,mlp.up_proj,0.0000896866,0.01000,2.327
|
| 50 |
+
6,mlp.down_proj,0.0000088057,0.01000,3.317
|
| 51 |
+
7,self_attn.k_proj,0.0000024730,0.01000,4.317
|
| 52 |
+
7,self_attn.q_proj,0.0000118609,0.01000,4.343
|
| 53 |
+
7,self_attn.v_proj,0.0000017796,0.01000,4.351
|
| 54 |
+
7,self_attn.o_proj,0.0000016849,0.01000,0.542
|
| 55 |
+
7,mlp.up_proj,0.0000838073,0.01000,2.254
|
| 56 |
+
7,mlp.gate_proj,0.0000886841,0.01000,2.272
|
| 57 |
+
7,mlp.down_proj,0.0000090611,0.01000,3.279
|
| 58 |
+
8,self_attn.q_proj,0.0000254749,0.01000,4.092
|
| 59 |
+
8,self_attn.v_proj,0.0000023462,0.01000,4.091
|
| 60 |
+
8,self_attn.k_proj,0.0000044966,0.01000,4.117
|
| 61 |
+
8,self_attn.o_proj,0.0000024067,0.01000,0.542
|
| 62 |
+
8,mlp.gate_proj,0.0000885383,0.01000,2.271
|
| 63 |
+
8,mlp.up_proj,0.0000814453,0.01000,2.280
|
| 64 |
+
8,mlp.down_proj,0.0000083484,0.01000,3.279
|
| 65 |
+
9,self_attn.k_proj,0.0000039825,0.01000,4.233
|
| 66 |
+
9,self_attn.v_proj,0.0000020639,0.01000,4.262
|
| 67 |
+
9,self_attn.q_proj,0.0000187050,0.01000,4.284
|
| 68 |
+
9,self_attn.o_proj,0.0000020573,0.01000,0.531
|
| 69 |
+
9,mlp.up_proj,0.0000764715,0.01000,2.247
|
| 70 |
+
9,mlp.gate_proj,0.0000788467,0.01000,2.256
|
| 71 |
+
9,mlp.down_proj,0.0000078403,0.01000,3.286
|
| 72 |
+
10,self_attn.q_proj,0.0000200452,0.01000,3.983
|
| 73 |
+
10,self_attn.v_proj,0.0000032104,0.01000,4.007
|
| 74 |
+
10,self_attn.k_proj,0.0000039616,0.01000,4.034
|
| 75 |
+
10,self_attn.o_proj,0.0000033142,0.01000,0.542
|
| 76 |
+
10,mlp.gate_proj,0.0000750982,0.01000,2.223
|
| 77 |
+
10,mlp.up_proj,0.0000712619,0.01000,2.236
|
| 78 |
+
10,mlp.down_proj,0.0000069640,0.01000,3.289
|
| 79 |
+
11,self_attn.k_proj,0.0000037042,0.01000,4.032
|
| 80 |
+
11,self_attn.q_proj,0.0000184960,0.01000,4.048
|
| 81 |
+
11,self_attn.v_proj,0.0000024469,0.01000,4.074
|
| 82 |
+
11,self_attn.o_proj,0.0000030599,0.01000,0.543
|
| 83 |
+
11,mlp.up_proj,0.0000631246,0.01000,2.238
|
| 84 |
+
11,mlp.gate_proj,0.0000711062,0.01000,2.252
|
| 85 |
+
11,mlp.down_proj,0.0000056197,0.01000,3.270
|
| 86 |
+
12,self_attn.v_proj,0.0000023730,0.01000,3.925
|
| 87 |
+
12,self_attn.q_proj,0.0000228401,0.01000,3.959
|
| 88 |
+
12,self_attn.k_proj,0.0000048660,0.01000,3.963
|
| 89 |
+
12,self_attn.o_proj,0.0000024677,0.01000,0.537
|
| 90 |
+
12,mlp.gate_proj,0.0000658389,0.01000,2.225
|
| 91 |
+
12,mlp.up_proj,0.0000612760,0.01000,2.237
|
| 92 |
+
12,mlp.down_proj,0.0000059337,0.01000,3.291
|
| 93 |
+
13,self_attn.k_proj,0.0000028074,0.01000,4.202
|
| 94 |
+
13,self_attn.v_proj,0.0000018265,0.01000,4.232
|
| 95 |
+
13,self_attn.q_proj,0.0000137718,0.01000,4.253
|
| 96 |
+
13,self_attn.o_proj,0.0000028907,0.01000,0.546
|
| 97 |
+
13,mlp.up_proj,0.0000586098,0.01000,2.258
|
| 98 |
+
13,mlp.gate_proj,0.0000608662,0.01000,2.280
|
| 99 |
+
13,mlp.down_proj,0.0000051772,0.01000,3.292
|
| 100 |
+
14,self_attn.q_proj,0.0000314766,0.01000,4.183
|
| 101 |
+
14,self_attn.v_proj,0.0000032024,0.01000,4.206
|
| 102 |
+
14,self_attn.k_proj,0.0000047942,0.01000,4.230
|
| 103 |
+
14,self_attn.o_proj,0.0000026679,0.01000,0.535
|
| 104 |
+
14,mlp.gate_proj,0.0000649211,0.01000,2.306
|
| 105 |
+
14,mlp.up_proj,0.0000665875,0.01000,2.317
|
| 106 |
+
14,mlp.down_proj,0.0000062580,0.01000,3.298
|
| 107 |
+
15,self_attn.k_proj,0.0000035639,0.01000,4.134
|
| 108 |
+
15,self_attn.q_proj,0.0000418681,0.01000,4.174
|
| 109 |
+
15,self_attn.v_proj,0.0000031223,0.01000,4.195
|
| 110 |
+
15,self_attn.o_proj,0.0000036279,0.01000,0.542
|
| 111 |
+
15,mlp.gate_proj,0.0000567642,0.01000,2.251
|
| 112 |
+
15,mlp.up_proj,0.0000544475,0.01000,2.264
|
| 113 |
+
15,mlp.down_proj,0.0000049219,0.01000,3.295
|
| 114 |
+
16,self_attn.v_proj,0.0000034406,0.01000,4.238
|
| 115 |
+
16,self_attn.q_proj,0.0000245993,0.01000,4.269
|
| 116 |
+
16,self_attn.k_proj,0.0000045895,0.01000,4.277
|
| 117 |
+
16,self_attn.o_proj,0.0000028234,0.01000,0.543
|
| 118 |
+
16,mlp.gate_proj,0.0000633520,0.01000,2.370
|
| 119 |
+
16,mlp.up_proj,0.0000625608,0.01000,2.384
|
| 120 |
+
16,mlp.down_proj,0.0000058829,0.01000,3.300
|
| 121 |
+
17,self_attn.k_proj,0.0000027661,0.01000,4.404
|
| 122 |
+
17,self_attn.v_proj,0.0000045039,0.01000,4.436
|
| 123 |
+
17,self_attn.q_proj,0.0000227042,0.01000,4.453
|
| 124 |
+
17,self_attn.o_proj,0.0000026341,0.01000,0.539
|
| 125 |
+
17,mlp.up_proj,0.0000614819,0.01000,2.333
|
| 126 |
+
17,mlp.gate_proj,0.0000612637,0.01000,2.351
|
| 127 |
+
17,mlp.down_proj,0.0000067094,0.01000,3.304
|
| 128 |
+
18,self_attn.q_proj,0.0000178366,0.01000,4.302
|
| 129 |
+
18,self_attn.v_proj,0.0000030099,0.01000,4.341
|
| 130 |
+
18,self_attn.k_proj,0.0000030695,0.01000,4.360
|
| 131 |
+
18,self_attn.o_proj,0.0000037842,0.01000,0.549
|
| 132 |
+
18,mlp.gate_proj,0.0000649023,0.01000,2.304
|
| 133 |
+
18,mlp.up_proj,0.0000642143,0.01000,2.322
|
| 134 |
+
18,mlp.down_proj,0.0000084549,0.01000,3.319
|
| 135 |
+
19,self_attn.q_proj,0.0000247891,0.01000,4.431
|
| 136 |
+
19,self_attn.k_proj,0.0000035176,0.01000,4.452
|
| 137 |
+
19,self_attn.v_proj,0.0000061693,0.01000,4.464
|
| 138 |
+
19,self_attn.o_proj,0.0000035418,0.01000,0.545
|
| 139 |
+
19,mlp.gate_proj,0.0000710459,0.01000,2.294
|
| 140 |
+
19,mlp.up_proj,0.0000760288,0.01000,2.309
|
| 141 |
+
19,mlp.down_proj,0.0000147377,0.01000,3.306
|
| 142 |
+
20,self_attn.k_proj,0.0000040951,0.01000,4.313
|
| 143 |
+
20,self_attn.q_proj,0.0000265484,0.01000,4.315
|
| 144 |
+
20,self_attn.v_proj,0.0000082249,0.01000,4.324
|
| 145 |
+
20,self_attn.o_proj,0.0000063014,0.01000,0.547
|
| 146 |
+
20,mlp.gate_proj,0.0000828688,0.01000,2.334
|
| 147 |
+
20,mlp.up_proj,0.0000848949,0.01000,2.340
|
| 148 |
+
20,mlp.down_proj,0.0000148916,0.01000,3.292
|
| 149 |
+
21,self_attn.v_proj,0.0000075221,0.01000,4.269
|
| 150 |
+
21,self_attn.k_proj,0.0000040561,0.01000,4.302
|
| 151 |
+
21,self_attn.q_proj,0.0000284343,0.01000,4.315
|
| 152 |
+
21,self_attn.o_proj,0.0000043363,0.01000,0.538
|
| 153 |
+
21,mlp.gate_proj,0.0001168702,0.01000,2.328
|
| 154 |
+
21,mlp.up_proj,0.0001189386,0.01000,2.341
|
| 155 |
+
21,mlp.down_proj,0.0000259512,0.01000,3.287
|
| 156 |
+
22,self_attn.v_proj,0.0000097632,0.01000,4.242
|
| 157 |
+
22,self_attn.q_proj,0.0000269040,0.01000,4.269
|
| 158 |
+
22,self_attn.k_proj,0.0000047263,0.01000,4.272
|
| 159 |
+
22,self_attn.o_proj,0.0000065070,0.01000,0.539
|
| 160 |
+
22,mlp.gate_proj,0.0001393751,0.01000,2.401
|
| 161 |
+
22,mlp.up_proj,0.0001401735,0.01000,2.414
|
| 162 |
+
22,mlp.down_proj,0.0000366042,0.01000,3.298
|
| 163 |
+
23,self_attn.q_proj,0.0000356564,0.01000,4.249
|
| 164 |
+
23,self_attn.k_proj,0.0000055640,0.01000,4.269
|
| 165 |
+
23,self_attn.v_proj,0.0000130584,0.01000,4.282
|
| 166 |
+
23,self_attn.o_proj,0.0000059179,0.01000,0.536
|
| 167 |
+
23,mlp.up_proj,0.0001613576,0.01000,2.339
|
| 168 |
+
23,mlp.gate_proj,0.0001535601,0.01000,2.350
|
| 169 |
+
23,mlp.down_proj,0.0000515026,0.01000,3.306
|
| 170 |
+
24,self_attn.q_proj,0.0000388233,0.01000,4.145
|
| 171 |
+
24,self_attn.k_proj,0.0000063121,0.01000,4.165
|
| 172 |
+
24,self_attn.v_proj,0.0000271794,0.01000,4.172
|
| 173 |
+
24,self_attn.o_proj,0.0000077751,0.01000,0.545
|
| 174 |
+
24,mlp.up_proj,0.0001838824,0.01000,2.374
|
| 175 |
+
24,mlp.gate_proj,0.0001709558,0.01000,2.375
|
| 176 |
+
24,mlp.down_proj,0.0000637439,0.01000,3.284
|
| 177 |
+
25,self_attn.k_proj,0.0000073203,0.01000,4.194
|
| 178 |
+
25,self_attn.v_proj,0.0000451391,0.01000,4.209
|
| 179 |
+
25,self_attn.q_proj,0.0000414386,0.01000,4.230
|
| 180 |
+
25,self_attn.o_proj,0.0000181948,0.01000,0.536
|
| 181 |
+
25,mlp.up_proj,0.0002035578,0.01000,2.238
|
| 182 |
+
25,mlp.gate_proj,0.0001762586,0.01000,2.259
|
| 183 |
+
25,mlp.down_proj,0.0000863165,0.01000,3.292
|
| 184 |
+
26,self_attn.q_proj,0.0000455629,0.01000,4.062
|
| 185 |
+
26,self_attn.v_proj,0.0000531516,0.01000,4.090
|
| 186 |
+
26,self_attn.k_proj,0.0000070541,0.01000,4.119
|
| 187 |
+
26,self_attn.o_proj,0.0000091481,0.01000,0.541
|
| 188 |
+
26,mlp.gate_proj,0.0001737509,0.01000,2.254
|
| 189 |
+
26,mlp.up_proj,0.0002083511,0.01000,2.267
|
| 190 |
+
26,mlp.down_proj,0.0001279024,0.01000,3.300
|
| 191 |
+
27,self_attn.k_proj,0.0000076360,0.01000,4.088
|
| 192 |
+
27,self_attn.q_proj,0.0000476925,0.01000,4.122
|
| 193 |
+
27,self_attn.v_proj,0.0000559478,0.01000,4.140
|
| 194 |
+
27,self_attn.o_proj,0.0000342311,0.01000,0.552
|
| 195 |
+
27,mlp.up_proj,0.0002477017,0.01000,2.311
|
| 196 |
+
27,mlp.gate_proj,0.0002377383,0.01000,2.339
|
| 197 |
+
27,mlp.down_proj,0.0001689918,0.01000,3.277
|
qwen25-1p5b__gptq__wikitext2__n128__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_a3xw7k9g",
|
| 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__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__n128__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 |
+
}
|