Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- qwen25-1p5b__gptq__wikitext2__n512__s2/BENCH_DONE +1 -0
- qwen25-1p5b__gptq__wikitext2__n512__s2/chat_template.jinja +54 -0
- qwen25-1p5b__gptq__wikitext2__n512__s2/config.json +108 -0
- qwen25-1p5b__gptq__wikitext2__n512__s2/generation_config.json +14 -0
- qwen25-1p5b__gptq__wikitext2__n512__s2/model.safetensors +3 -0
- qwen25-1p5b__gptq__wikitext2__n512__s2/quant_log.csv +197 -0
- qwen25-1p5b__gptq__wikitext2__n512__s2/quantize_config.json +47 -0
- qwen25-1p5b__gptq__wikitext2__n512__s2/tokenizer.json +3 -0
- qwen25-1p5b__gptq__wikitext2__n512__s2/tokenizer_config.json +30 -0
.gitattributes
CHANGED
|
@@ -68,3 +68,4 @@ qwen25-1p5b__gptq__wikitext2__n32__s1/tokenizer.json filter=lfs diff=lfs merge=l
|
|
| 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
|
|
|
|
|
|
| 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
|
| 71 |
+
qwen25-1p5b__gptq__wikitext2__n512__s2/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
qwen25-1p5b__gptq__wikitext2__n512__s2/BENCH_DONE
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
2026-07-30T19:41:31.099251+00:00
|
qwen25-1p5b__gptq__wikitext2__n512__s2/chat_template.jinja
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%- if tools %}
|
| 2 |
+
{{- '<|im_start|>system\n' }}
|
| 3 |
+
{%- if messages[0]['role'] == 'system' %}
|
| 4 |
+
{{- messages[0]['content'] }}
|
| 5 |
+
{%- else %}
|
| 6 |
+
{{- 'You are Qwen, created by Alibaba Cloud. You are a helpful assistant.' }}
|
| 7 |
+
{%- endif %}
|
| 8 |
+
{{- "\n\n# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
|
| 9 |
+
{%- for tool in tools %}
|
| 10 |
+
{{- "\n" }}
|
| 11 |
+
{{- tool | tojson }}
|
| 12 |
+
{%- endfor %}
|
| 13 |
+
{{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
|
| 14 |
+
{%- else %}
|
| 15 |
+
{%- if messages[0]['role'] == 'system' %}
|
| 16 |
+
{{- '<|im_start|>system\n' + messages[0]['content'] + '<|im_end|>\n' }}
|
| 17 |
+
{%- else %}
|
| 18 |
+
{{- '<|im_start|>system\nYou are Qwen, created by Alibaba Cloud. You are a helpful assistant.<|im_end|>\n' }}
|
| 19 |
+
{%- endif %}
|
| 20 |
+
{%- endif %}
|
| 21 |
+
{%- for message in messages %}
|
| 22 |
+
{%- if (message.role == "user") or (message.role == "system" and not loop.first) or (message.role == "assistant" and not message.tool_calls) %}
|
| 23 |
+
{{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
|
| 24 |
+
{%- elif message.role == "assistant" %}
|
| 25 |
+
{{- '<|im_start|>' + message.role }}
|
| 26 |
+
{%- if message.content %}
|
| 27 |
+
{{- '\n' + message.content }}
|
| 28 |
+
{%- endif %}
|
| 29 |
+
{%- for tool_call in message.tool_calls %}
|
| 30 |
+
{%- if tool_call.function is defined %}
|
| 31 |
+
{%- set tool_call = tool_call.function %}
|
| 32 |
+
{%- endif %}
|
| 33 |
+
{{- '\n<tool_call>\n{"name": "' }}
|
| 34 |
+
{{- tool_call.name }}
|
| 35 |
+
{{- '", "arguments": ' }}
|
| 36 |
+
{{- tool_call.arguments | tojson }}
|
| 37 |
+
{{- '}\n</tool_call>' }}
|
| 38 |
+
{%- endfor %}
|
| 39 |
+
{{- '<|im_end|>\n' }}
|
| 40 |
+
{%- elif message.role == "tool" %}
|
| 41 |
+
{%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != "tool") %}
|
| 42 |
+
{{- '<|im_start|>user' }}
|
| 43 |
+
{%- endif %}
|
| 44 |
+
{{- '\n<tool_response>\n' }}
|
| 45 |
+
{{- message.content }}
|
| 46 |
+
{{- '\n</tool_response>' }}
|
| 47 |
+
{%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
|
| 48 |
+
{{- '<|im_end|>\n' }}
|
| 49 |
+
{%- endif %}
|
| 50 |
+
{%- endif %}
|
| 51 |
+
{%- endfor %}
|
| 52 |
+
{%- if add_generation_prompt %}
|
| 53 |
+
{{- '<|im_start|>assistant\n' }}
|
| 54 |
+
{%- endif %}
|
qwen25-1p5b__gptq__wikitext2__n512__s2/config.json
ADDED
|
@@ -0,0 +1,108 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"Qwen2ForCausalLM"
|
| 4 |
+
],
|
| 5 |
+
"attention_dropout": 0.0,
|
| 6 |
+
"bos_token_id": 151643,
|
| 7 |
+
"dtype": "bfloat16",
|
| 8 |
+
"eos_token_id": 151645,
|
| 9 |
+
"hidden_act": "silu",
|
| 10 |
+
"hidden_size": 1536,
|
| 11 |
+
"initializer_range": 0.02,
|
| 12 |
+
"intermediate_size": 8960,
|
| 13 |
+
"layer_types": [
|
| 14 |
+
"full_attention",
|
| 15 |
+
"full_attention",
|
| 16 |
+
"full_attention",
|
| 17 |
+
"full_attention",
|
| 18 |
+
"full_attention",
|
| 19 |
+
"full_attention",
|
| 20 |
+
"full_attention",
|
| 21 |
+
"full_attention",
|
| 22 |
+
"full_attention",
|
| 23 |
+
"full_attention",
|
| 24 |
+
"full_attention",
|
| 25 |
+
"full_attention",
|
| 26 |
+
"full_attention",
|
| 27 |
+
"full_attention",
|
| 28 |
+
"full_attention",
|
| 29 |
+
"full_attention",
|
| 30 |
+
"full_attention",
|
| 31 |
+
"full_attention",
|
| 32 |
+
"full_attention",
|
| 33 |
+
"full_attention",
|
| 34 |
+
"full_attention",
|
| 35 |
+
"full_attention",
|
| 36 |
+
"full_attention",
|
| 37 |
+
"full_attention",
|
| 38 |
+
"full_attention",
|
| 39 |
+
"full_attention",
|
| 40 |
+
"full_attention",
|
| 41 |
+
"full_attention"
|
| 42 |
+
],
|
| 43 |
+
"max_position_embeddings": 32768,
|
| 44 |
+
"max_window_layers": 21,
|
| 45 |
+
"model_type": "qwen2",
|
| 46 |
+
"num_attention_heads": 12,
|
| 47 |
+
"num_hidden_layers": 28,
|
| 48 |
+
"num_key_value_heads": 2,
|
| 49 |
+
"pad_token_id": 151643,
|
| 50 |
+
"quantization_config": {
|
| 51 |
+
"bits": 4,
|
| 52 |
+
"checkpoint_format": "gptq",
|
| 53 |
+
"desc_act": true,
|
| 54 |
+
"format": "gptq",
|
| 55 |
+
"group_size": 128,
|
| 56 |
+
"lm_head": false,
|
| 57 |
+
"meta": {
|
| 58 |
+
"act_group_aware": false,
|
| 59 |
+
"auto_forward_data_parallel": true,
|
| 60 |
+
"damp_auto_increment": 0.01,
|
| 61 |
+
"damp_percent": 0.01,
|
| 62 |
+
"dense_vram_strategy": "exclusive",
|
| 63 |
+
"dense_vram_strategy_devices": null,
|
| 64 |
+
"fallback": {
|
| 65 |
+
"smooth": null,
|
| 66 |
+
"strategy": "rtn",
|
| 67 |
+
"threshold": "0.5%"
|
| 68 |
+
},
|
| 69 |
+
"foem": null,
|
| 70 |
+
"gc_mode": "interval",
|
| 71 |
+
"gptaq": null,
|
| 72 |
+
"hessian": {
|
| 73 |
+
"chunk_bytes": null,
|
| 74 |
+
"chunk_size": null,
|
| 75 |
+
"staging_dtype": "float32"
|
| 76 |
+
},
|
| 77 |
+
"mock_quantization": false,
|
| 78 |
+
"moe_vram_strategy": "exclusive",
|
| 79 |
+
"moe_vram_strategy_devices": null,
|
| 80 |
+
"mse": 0.0,
|
| 81 |
+
"offload_to_disk": true,
|
| 82 |
+
"offload_to_disk_path": "/tmp/gptqmodel_gcsd6lfi",
|
| 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__s2/generation_config.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token_id": 151643,
|
| 3 |
+
"do_sample": true,
|
| 4 |
+
"eos_token_id": [
|
| 5 |
+
151645,
|
| 6 |
+
151643
|
| 7 |
+
],
|
| 8 |
+
"pad_token_id": 151643,
|
| 9 |
+
"repetition_penalty": 1.1,
|
| 10 |
+
"temperature": 0.7,
|
| 11 |
+
"top_k": 20,
|
| 12 |
+
"top_p": 0.8,
|
| 13 |
+
"transformers_version": "5.14.1"
|
| 14 |
+
}
|
qwen25-1p5b__gptq__wikitext2__n512__s2/model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:9ce5381721754e4a6e87ba82ffdef99851e243a844ebab488a4006c7b5dd7f74
|
| 3 |
+
size 1149862904
|
qwen25-1p5b__gptq__wikitext2__n512__s2/quant_log.csv
ADDED
|
@@ -0,0 +1,197 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
layer,module,loss,samples,damp,time
|
| 2 |
+
0,self_attn.q_proj,0.0000077383,0.01000,4.029
|
| 3 |
+
0,self_attn.v_proj,0.0000001288,0.01000,4.042
|
| 4 |
+
0,self_attn.k_proj,0.0000010901,0.01000,4.063
|
| 5 |
+
0,self_attn.o_proj,0.0000002965,0.01000,0.533
|
| 6 |
+
0,mlp.gate_proj,0.0000033195,0.01000,2.085
|
| 7 |
+
0,mlp.up_proj,0.0000022780,0.01000,2.097
|
| 8 |
+
0,mlp.down_proj,0.0000005443,0.01000,3.291
|
| 9 |
+
1,self_attn.k_proj,0.0000003575,0.01000,4.189
|
| 10 |
+
1,self_attn.v_proj,0.0000000799,0.01000,4.221
|
| 11 |
+
1,self_attn.q_proj,0.0000011976,0.01000,4.237
|
| 12 |
+
1,self_attn.o_proj,0.0000001141,0.01000,0.534
|
| 13 |
+
1,mlp.up_proj,0.0000725166,0.01000,2.262
|
| 14 |
+
1,mlp.gate_proj,0.0000890598,0.01000,2.279
|
| 15 |
+
1,mlp.down_proj,0.0000031995,0.01000,3.303
|
| 16 |
+
2,self_attn.q_proj,0.0000036610,0.01000,3.999
|
| 17 |
+
2,self_attn.v_proj,0.0000003286,0.01000,4.049
|
| 18 |
+
2,self_attn.k_proj,0.0000007989,0.01000,4.072
|
| 19 |
+
2,self_attn.o_proj,0.0000002173,0.01000,0.536
|
| 20 |
+
2,mlp.gate_proj,0.0000775894,0.01000,2.184
|
| 21 |
+
2,mlp.up_proj,0.0000485700,0.01000,2.194
|
| 22 |
+
2,mlp.down_proj,0.0000080455,0.01000,3.285
|
| 23 |
+
3,self_attn.q_proj,0.0000037048,0.01000,4.209
|
| 24 |
+
3,self_attn.k_proj,0.0000008014,0.01000,4.236
|
| 25 |
+
3,self_attn.v_proj,0.0000004284,0.01000,4.255
|
| 26 |
+
3,self_attn.o_proj,0.0000003091,0.01000,0.554
|
| 27 |
+
3,mlp.gate_proj,0.0000648219,0.01000,2.267
|
| 28 |
+
3,mlp.up_proj,0.0000347107,0.01000,2.285
|
| 29 |
+
3,mlp.down_proj,0.0000019909,0.01000,3.330
|
| 30 |
+
4,self_attn.v_proj,0.0000006267,0.01000,4.144
|
| 31 |
+
4,self_attn.q_proj,0.0000049464,0.01000,4.162
|
| 32 |
+
4,self_attn.k_proj,0.0000009951,0.01000,4.177
|
| 33 |
+
4,self_attn.o_proj,0.0000004295,0.01000,0.540
|
| 34 |
+
4,mlp.gate_proj,0.0000461052,0.01000,2.287
|
| 35 |
+
4,mlp.up_proj,0.0000279992,0.01000,2.290
|
| 36 |
+
4,mlp.down_proj,0.0000025328,0.01000,3.266
|
| 37 |
+
5,self_attn.k_proj,0.0000010998,0.01000,3.981
|
| 38 |
+
5,self_attn.v_proj,0.0000007892,0.01000,4.008
|
| 39 |
+
5,self_attn.q_proj,0.0000051103,0.01000,4.026
|
| 40 |
+
5,self_attn.o_proj,0.0000006231,0.01000,0.539
|
| 41 |
+
5,mlp.up_proj,0.0000587618,0.01000,2.170
|
| 42 |
+
5,mlp.gate_proj,0.0000902568,0.01000,2.195
|
| 43 |
+
5,mlp.down_proj,0.0000021226,0.01000,3.294
|
| 44 |
+
6,self_attn.q_proj,0.0000066457,0.01000,4.369
|
| 45 |
+
6,self_attn.v_proj,0.0000005427,0.01000,4.430
|
| 46 |
+
6,self_attn.k_proj,0.0000014446,0.01000,4.435
|
| 47 |
+
6,self_attn.o_proj,0.0000003231,0.01000,0.536
|
| 48 |
+
6,mlp.gate_proj,0.0000274011,0.01000,2.068
|
| 49 |
+
6,mlp.up_proj,0.0000228213,0.01000,2.089
|
| 50 |
+
6,mlp.down_proj,0.0000023182,0.01000,3.273
|
| 51 |
+
7,self_attn.k_proj,0.0000006342,0.01000,3.814
|
| 52 |
+
7,self_attn.q_proj,0.0000030308,0.01000,3.844
|
| 53 |
+
7,self_attn.v_proj,0.0000004561,0.01000,3.874
|
| 54 |
+
7,self_attn.o_proj,0.0000004336,0.01000,0.541
|
| 55 |
+
7,mlp.up_proj,0.0000213224,0.01000,2.152
|
| 56 |
+
7,mlp.gate_proj,0.0000225900,0.01000,2.160
|
| 57 |
+
7,mlp.down_proj,0.0000023567,0.01000,3.263
|
| 58 |
+
8,self_attn.v_proj,0.0000005975,0.01000,4.168
|
| 59 |
+
8,self_attn.q_proj,0.0000065123,0.01000,4.183
|
| 60 |
+
8,self_attn.k_proj,0.0000011494,0.01000,4.193
|
| 61 |
+
8,self_attn.o_proj,0.0000006113,0.01000,0.546
|
| 62 |
+
8,mlp.gate_proj,0.0000224671,0.01000,2.214
|
| 63 |
+
8,mlp.up_proj,0.0000206533,0.01000,2.227
|
| 64 |
+
8,mlp.down_proj,0.0000021699,0.01000,3.293
|
| 65 |
+
9,self_attn.v_proj,0.0000005236,0.01000,3.983
|
| 66 |
+
9,self_attn.k_proj,0.0000010193,0.01000,3.989
|
| 67 |
+
9,self_attn.q_proj,0.0000047591,0.01000,4.018
|
| 68 |
+
9,self_attn.o_proj,0.0000005276,0.01000,0.532
|
| 69 |
+
9,mlp.up_proj,0.0000193804,0.01000,2.267
|
| 70 |
+
9,mlp.gate_proj,0.0000199914,0.01000,2.285
|
| 71 |
+
9,mlp.down_proj,0.0000020215,0.01000,3.307
|
| 72 |
+
10,self_attn.q_proj,0.0000050923,0.01000,3.929
|
| 73 |
+
10,self_attn.v_proj,0.0000008104,0.01000,3.953
|
| 74 |
+
10,self_attn.k_proj,0.0000010085,0.01000,3.986
|
| 75 |
+
10,self_attn.o_proj,0.0000008409,0.01000,0.535
|
| 76 |
+
10,mlp.gate_proj,0.0000190149,0.01000,2.182
|
| 77 |
+
10,mlp.up_proj,0.0000180016,0.01000,2.202
|
| 78 |
+
10,mlp.down_proj,0.0000017744,0.01000,3.280
|
| 79 |
+
11,self_attn.k_proj,0.0000009433,0.01000,3.864
|
| 80 |
+
11,self_attn.q_proj,0.0000047038,0.01000,3.875
|
| 81 |
+
11,self_attn.v_proj,0.0000006229,0.01000,3.919
|
| 82 |
+
11,self_attn.o_proj,0.0000007756,0.01000,0.541
|
| 83 |
+
11,mlp.gate_proj,0.0000180090,0.01000,2.167
|
| 84 |
+
11,mlp.up_proj,0.0000159714,0.01000,2.180
|
| 85 |
+
11,mlp.down_proj,0.0000014551,0.01000,3.293
|
| 86 |
+
12,self_attn.q_proj,0.0000058119,0.01000,3.910
|
| 87 |
+
12,self_attn.v_proj,0.0000006039,0.01000,3.930
|
| 88 |
+
12,self_attn.k_proj,0.0000012408,0.01000,3.943
|
| 89 |
+
12,self_attn.o_proj,0.0000006503,0.01000,0.531
|
| 90 |
+
12,mlp.up_proj,0.0000154956,0.01000,2.257
|
| 91 |
+
12,mlp.gate_proj,0.0000166721,0.01000,2.264
|
| 92 |
+
12,mlp.down_proj,0.0000015331,0.01000,3.290
|
| 93 |
+
13,self_attn.k_proj,0.0000007064,0.01000,4.080
|
| 94 |
+
13,self_attn.v_proj,0.0000004640,0.01000,4.113
|
| 95 |
+
13,self_attn.q_proj,0.0000034936,0.01000,4.129
|
| 96 |
+
13,self_attn.o_proj,0.0000007339,0.01000,0.531
|
| 97 |
+
13,mlp.up_proj,0.0000147718,0.01000,2.149
|
| 98 |
+
13,mlp.gate_proj,0.0000153392,0.01000,2.167
|
| 99 |
+
13,mlp.down_proj,0.0000013211,0.01000,3.288
|
| 100 |
+
14,self_attn.q_proj,0.0000079671,0.01000,4.098
|
| 101 |
+
14,self_attn.v_proj,0.0000008101,0.01000,4.135
|
| 102 |
+
14,self_attn.k_proj,0.0000012150,0.01000,4.165
|
| 103 |
+
14,self_attn.o_proj,0.0000006883,0.01000,0.539
|
| 104 |
+
14,mlp.gate_proj,0.0000163706,0.01000,2.166
|
| 105 |
+
14,mlp.up_proj,0.0000168279,0.01000,2.173
|
| 106 |
+
14,mlp.down_proj,0.0000016180,0.01000,3.296
|
| 107 |
+
15,self_attn.k_proj,0.0000009029,0.01000,4.312
|
| 108 |
+
15,self_attn.q_proj,0.0000107412,0.01000,4.316
|
| 109 |
+
15,self_attn.v_proj,0.0000007982,0.01000,4.345
|
| 110 |
+
15,self_attn.o_proj,0.0000009356,0.01000,0.545
|
| 111 |
+
15,mlp.up_proj,0.0000138340,0.01000,2.201
|
| 112 |
+
15,mlp.gate_proj,0.0000144428,0.01000,2.201
|
| 113 |
+
15,mlp.down_proj,0.0000012881,0.01000,3.278
|
| 114 |
+
16,self_attn.v_proj,0.0000008809,0.01000,4.073
|
| 115 |
+
16,self_attn.q_proj,0.0000062850,0.01000,4.112
|
| 116 |
+
16,self_attn.k_proj,0.0000011770,0.01000,4.125
|
| 117 |
+
16,self_attn.o_proj,0.0000007405,0.01000,0.539
|
| 118 |
+
16,mlp.up_proj,0.0000159258,0.01000,2.123
|
| 119 |
+
16,mlp.gate_proj,0.0000161285,0.01000,2.131
|
| 120 |
+
16,mlp.down_proj,0.0000015308,0.01000,3.263
|
| 121 |
+
17,self_attn.k_proj,0.0000007087,0.01000,4.057
|
| 122 |
+
17,self_attn.v_proj,0.0000011495,0.01000,4.073
|
| 123 |
+
17,self_attn.q_proj,0.0000058064,0.01000,4.100
|
| 124 |
+
17,self_attn.o_proj,0.0000006971,0.01000,0.528
|
| 125 |
+
17,mlp.up_proj,0.0000155857,0.01000,2.219
|
| 126 |
+
17,mlp.gate_proj,0.0000155507,0.01000,2.235
|
| 127 |
+
17,mlp.down_proj,0.0000017222,0.01000,3.290
|
| 128 |
+
18,self_attn.q_proj,0.0000045429,0.01000,3.974
|
| 129 |
+
18,self_attn.v_proj,0.0000007684,0.01000,4.032
|
| 130 |
+
18,self_attn.k_proj,0.0000007845,0.01000,4.059
|
| 131 |
+
18,self_attn.o_proj,0.0000009567,0.01000,0.548
|
| 132 |
+
18,mlp.gate_proj,0.0000165117,0.01000,2.205
|
| 133 |
+
18,mlp.up_proj,0.0000162928,0.01000,2.215
|
| 134 |
+
18,mlp.down_proj,0.0000021836,0.01000,3.318
|
| 135 |
+
19,self_attn.k_proj,0.0000008998,0.01000,3.923
|
| 136 |
+
19,self_attn.q_proj,0.0000063016,0.01000,3.963
|
| 137 |
+
19,self_attn.v_proj,0.0000015726,0.01000,3.978
|
| 138 |
+
19,self_attn.o_proj,0.0000009222,0.01000,0.538
|
| 139 |
+
19,mlp.up_proj,0.0000193820,0.01000,2.199
|
| 140 |
+
19,mlp.gate_proj,0.0000181270,0.01000,2.217
|
| 141 |
+
19,mlp.down_proj,0.0000038478,0.01000,3.260
|
| 142 |
+
20,self_attn.q_proj,0.0000067969,0.01000,3.927
|
| 143 |
+
20,self_attn.v_proj,0.0000021137,0.01000,3.942
|
| 144 |
+
20,self_attn.k_proj,0.0000010543,0.01000,3.961
|
| 145 |
+
20,self_attn.o_proj,0.0000016086,0.01000,0.532
|
| 146 |
+
20,mlp.gate_proj,0.0000211343,0.01000,2.045
|
| 147 |
+
20,mlp.up_proj,0.0000216527,0.01000,2.059
|
| 148 |
+
20,mlp.down_proj,0.0000038913,0.01000,3.260
|
| 149 |
+
21,self_attn.k_proj,0.0000010443,0.01000,3.877
|
| 150 |
+
21,self_attn.v_proj,0.0000019202,0.01000,3.909
|
| 151 |
+
21,self_attn.q_proj,0.0000072829,0.01000,3.935
|
| 152 |
+
21,self_attn.o_proj,0.0000011263,0.01000,0.532
|
| 153 |
+
21,mlp.up_proj,0.0000303155,0.01000,2.107
|
| 154 |
+
21,mlp.gate_proj,0.0000298167,0.01000,2.133
|
| 155 |
+
21,mlp.down_proj,0.0000068175,0.01000,3.297
|
| 156 |
+
22,self_attn.q_proj,0.0000069020,0.01000,4.124
|
| 157 |
+
22,self_attn.v_proj,0.0000024974,0.01000,4.173
|
| 158 |
+
22,self_attn.k_proj,0.0000012147,0.01000,4.200
|
| 159 |
+
22,self_attn.o_proj,0.0000016016,0.01000,0.548
|
| 160 |
+
22,mlp.gate_proj,0.0000358783,0.01000,2.124
|
| 161 |
+
22,mlp.up_proj,0.0000360159,0.01000,2.142
|
| 162 |
+
22,mlp.down_proj,0.0000097558,0.01000,3.267
|
| 163 |
+
23,self_attn.q_proj,0.0000091769,0.01000,4.106
|
| 164 |
+
23,self_attn.k_proj,0.0000014285,0.01000,4.130
|
| 165 |
+
23,self_attn.v_proj,0.0000033657,0.01000,4.157
|
| 166 |
+
23,self_attn.o_proj,0.0000015382,0.01000,0.530
|
| 167 |
+
23,mlp.up_proj,0.0000412258,0.01000,2.123
|
| 168 |
+
23,mlp.gate_proj,0.0000393036,0.01000,2.137
|
| 169 |
+
23,mlp.down_proj,0.0000138164,0.01000,3.294
|
| 170 |
+
24,self_attn.v_proj,0.0000070122,0.01000,4.097
|
| 171 |
+
24,self_attn.k_proj,0.0000016305,0.01000,4.119
|
| 172 |
+
24,self_attn.q_proj,0.0000099470,0.01000,4.127
|
| 173 |
+
24,self_attn.o_proj,0.0000021005,0.01000,0.534
|
| 174 |
+
24,mlp.gate_proj,0.0000438400,0.01000,2.283
|
| 175 |
+
24,mlp.up_proj,0.0000470848,0.01000,2.298
|
| 176 |
+
24,mlp.down_proj,0.0000170960,0.01000,3.320
|
| 177 |
+
25,self_attn.v_proj,0.0000115864,0.01000,4.101
|
| 178 |
+
25,self_attn.k_proj,0.0000018835,0.01000,4.126
|
| 179 |
+
25,self_attn.q_proj,0.0000106173,0.01000,4.148
|
| 180 |
+
25,self_attn.o_proj,0.0000047906,0.01000,0.532
|
| 181 |
+
25,mlp.gate_proj,0.0000449786,0.01000,2.256
|
| 182 |
+
25,mlp.up_proj,0.0000518355,0.01000,2.276
|
| 183 |
+
25,mlp.down_proj,0.0000230149,0.01000,3.315
|
| 184 |
+
26,self_attn.q_proj,0.0000117110,0.01000,4.176
|
| 185 |
+
26,self_attn.v_proj,0.0000136158,0.01000,4.210
|
| 186 |
+
26,self_attn.k_proj,0.0000018123,0.01000,4.231
|
| 187 |
+
26,self_attn.o_proj,0.0000025911,0.01000,0.554
|
| 188 |
+
26,mlp.gate_proj,0.0000446334,0.01000,2.287
|
| 189 |
+
26,mlp.up_proj,0.0000534109,0.01000,2.297
|
| 190 |
+
26,mlp.down_proj,0.0000338740,0.01000,3.305
|
| 191 |
+
27,self_attn.k_proj,0.0000019711,0.01000,4.213
|
| 192 |
+
27,self_attn.q_proj,0.0000122932,0.01000,4.222
|
| 193 |
+
27,self_attn.v_proj,0.0000144115,0.01000,4.254
|
| 194 |
+
27,self_attn.o_proj,0.0000095650,0.01000,0.538
|
| 195 |
+
27,mlp.up_proj,0.0000634301,0.01000,2.154
|
| 196 |
+
27,mlp.gate_proj,0.0000609378,0.01000,2.169
|
| 197 |
+
27,mlp.down_proj,0.0000453617,0.01000,3.287
|
qwen25-1p5b__gptq__wikitext2__n512__s2/quantize_config.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bits": 4,
|
| 3 |
+
"group_size": 128,
|
| 4 |
+
"desc_act": true,
|
| 5 |
+
"lm_head": false,
|
| 6 |
+
"method": "gptq",
|
| 7 |
+
"quant_method": "gptq",
|
| 8 |
+
"format": "gptq",
|
| 9 |
+
"checkpoint_format": "gptq",
|
| 10 |
+
"pack_dtype": "int32",
|
| 11 |
+
"meta": {
|
| 12 |
+
"quantizer": [
|
| 13 |
+
"gptqmodel:7.3.2"
|
| 14 |
+
],
|
| 15 |
+
"uri": "https://github.com/modelcloud/gptqmodel",
|
| 16 |
+
"damp_percent": 0.01,
|
| 17 |
+
"damp_auto_increment": 0.01,
|
| 18 |
+
"static_groups": false,
|
| 19 |
+
"true_sequential": true,
|
| 20 |
+
"mse": 0.0,
|
| 21 |
+
"gptaq": null,
|
| 22 |
+
"foem": null,
|
| 23 |
+
"act_group_aware": false,
|
| 24 |
+
"fallback": {
|
| 25 |
+
"strategy": "rtn",
|
| 26 |
+
"threshold": "0.5%",
|
| 27 |
+
"smooth": null
|
| 28 |
+
},
|
| 29 |
+
"offload_to_disk": true,
|
| 30 |
+
"offload_to_disk_path": "/tmp/gptqmodel_gcsd6lfi",
|
| 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__s2/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3fd169731d2cbde95e10bf356d66d5997fd885dd8dbb6fb4684da3f23b2585d8
|
| 3 |
+
size 11421892
|
qwen25-1p5b__gptq__wikitext2__n512__s2/tokenizer_config.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_prefix_space": false,
|
| 3 |
+
"backend": "tokenizers",
|
| 4 |
+
"bos_token": null,
|
| 5 |
+
"clean_up_tokenization_spaces": false,
|
| 6 |
+
"eos_token": "<|im_end|>",
|
| 7 |
+
"errors": "replace",
|
| 8 |
+
"extra_special_tokens": [
|
| 9 |
+
"<|im_start|>",
|
| 10 |
+
"<|im_end|>",
|
| 11 |
+
"<|object_ref_start|>",
|
| 12 |
+
"<|object_ref_end|>",
|
| 13 |
+
"<|box_start|>",
|
| 14 |
+
"<|box_end|>",
|
| 15 |
+
"<|quad_start|>",
|
| 16 |
+
"<|quad_end|>",
|
| 17 |
+
"<|vision_start|>",
|
| 18 |
+
"<|vision_end|>",
|
| 19 |
+
"<|vision_pad|>",
|
| 20 |
+
"<|image_pad|>",
|
| 21 |
+
"<|video_pad|>"
|
| 22 |
+
],
|
| 23 |
+
"is_local": false,
|
| 24 |
+
"local_files_only": false,
|
| 25 |
+
"model_max_length": 131072,
|
| 26 |
+
"pad_token": "<|endoftext|>",
|
| 27 |
+
"split_special_tokens": false,
|
| 28 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 29 |
+
"unk_token": null
|
| 30 |
+
}
|