Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- qwen25-1p5b__gptq__openhermes__n512__s2/BENCH_DONE +1 -0
- qwen25-1p5b__gptq__openhermes__n512__s2/chat_template.jinja +54 -0
- qwen25-1p5b__gptq__openhermes__n512__s2/config.json +108 -0
- qwen25-1p5b__gptq__openhermes__n512__s2/generation_config.json +14 -0
- qwen25-1p5b__gptq__openhermes__n512__s2/model.safetensors +3 -0
- qwen25-1p5b__gptq__openhermes__n512__s2/quant_log.csv +197 -0
- qwen25-1p5b__gptq__openhermes__n512__s2/quantize_config.json +47 -0
- qwen25-1p5b__gptq__openhermes__n512__s2/tokenizer.json +3 -0
- qwen25-1p5b__gptq__openhermes__n512__s2/tokenizer_config.json +30 -0
.gitattributes
CHANGED
|
@@ -60,3 +60,4 @@ qwen25-1p5b__gptq__openhermes__n32__s1/tokenizer.json filter=lfs diff=lfs merge=
|
|
| 60 |
qwen25-1p5b__gptq__openhermes__n32__s2/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 61 |
qwen25-1p5b__gptq__openhermes__n512__s0/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 62 |
qwen25-1p5b__gptq__openhermes__n512__s1/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 60 |
qwen25-1p5b__gptq__openhermes__n32__s2/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 61 |
qwen25-1p5b__gptq__openhermes__n512__s0/tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
| 62 |
qwen25-1p5b__gptq__openhermes__n512__s1/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
|
qwen25-1p5b__gptq__openhermes__n512__s2/BENCH_DONE
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
2026-07-30T21:05:04.474595+00:00
|
qwen25-1p5b__gptq__openhermes__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__openhermes__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_tumiwt6x",
|
| 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__openhermes__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__openhermes__n512__s2/model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:4683cfabffe52968c2e62853620da77ba56944cc486a7656fa72208826ba0eed
|
| 3 |
+
size 1149862904
|
qwen25-1p5b__gptq__openhermes__n512__s2/quant_log.csv
ADDED
|
@@ -0,0 +1,197 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
layer,module,loss,samples,damp,time
|
| 2 |
+
0,self_attn.v_proj,0.0000001357,0.01000,2.055
|
| 3 |
+
0,self_attn.k_proj,0.0000011500,0.01000,2.058
|
| 4 |
+
0,self_attn.q_proj,0.0000083572,0.01000,2.068
|
| 5 |
+
0,self_attn.o_proj,0.0000002990,0.01000,0.379
|
| 6 |
+
0,mlp.up_proj,0.0000023416,0.01000,1.100
|
| 7 |
+
0,mlp.gate_proj,0.0000034177,0.01000,1.107
|
| 8 |
+
0,mlp.down_proj,0.0000005354,0.01000,2.464
|
| 9 |
+
1,self_attn.v_proj,0.0000000840,0.01000,1.934
|
| 10 |
+
1,self_attn.k_proj,0.0000003779,0.01000,1.938
|
| 11 |
+
1,self_attn.q_proj,0.0000012688,0.01000,1.948
|
| 12 |
+
1,self_attn.o_proj,0.0000001206,0.01000,0.384
|
| 13 |
+
1,mlp.up_proj,0.0000774157,0.01000,1.056
|
| 14 |
+
1,mlp.gate_proj,0.0000953502,0.01000,1.065
|
| 15 |
+
1,mlp.down_proj,0.0000032128,0.01000,2.442
|
| 16 |
+
2,self_attn.v_proj,0.0000003494,0.01000,1.991
|
| 17 |
+
2,self_attn.q_proj,0.0000039287,0.01000,2.000
|
| 18 |
+
2,self_attn.k_proj,0.0000008547,0.01000,1.999
|
| 19 |
+
2,self_attn.o_proj,0.0000002459,0.01000,0.381
|
| 20 |
+
2,mlp.gate_proj,0.0000838052,0.01000,1.027
|
| 21 |
+
2,mlp.up_proj,0.0000519523,0.01000,1.034
|
| 22 |
+
2,mlp.down_proj,0.0000076335,0.01000,2.452
|
| 23 |
+
3,self_attn.k_proj,0.0000008600,0.01000,2.028
|
| 24 |
+
3,self_attn.q_proj,0.0000039696,0.01000,2.034
|
| 25 |
+
3,self_attn.v_proj,0.0000004509,0.01000,2.041
|
| 26 |
+
3,self_attn.o_proj,0.0000003491,0.01000,0.380
|
| 27 |
+
3,mlp.gate_proj,0.0000689681,0.01000,1.175
|
| 28 |
+
3,mlp.up_proj,0.0000361718,0.01000,1.178
|
| 29 |
+
3,mlp.down_proj,0.0000016566,0.01000,2.470
|
| 30 |
+
4,self_attn.k_proj,0.0000010541,0.01000,1.962
|
| 31 |
+
4,self_attn.q_proj,0.0000052028,0.01000,1.978
|
| 32 |
+
4,self_attn.v_proj,0.0000006443,0.01000,1.978
|
| 33 |
+
4,self_attn.o_proj,0.0000004100,0.01000,0.387
|
| 34 |
+
4,mlp.gate_proj,0.0000484046,0.01000,1.097
|
| 35 |
+
4,mlp.up_proj,0.0000287086,0.01000,1.101
|
| 36 |
+
4,mlp.down_proj,0.0000020212,0.01000,2.453
|
| 37 |
+
5,self_attn.k_proj,0.0000011636,0.01000,1.953
|
| 38 |
+
5,self_attn.q_proj,0.0000053671,0.01000,1.958
|
| 39 |
+
5,self_attn.v_proj,0.0000007875,0.01000,1.972
|
| 40 |
+
5,self_attn.o_proj,0.0000006265,0.01000,0.373
|
| 41 |
+
5,mlp.gate_proj,0.0000897115,0.01000,1.039
|
| 42 |
+
5,mlp.up_proj,0.0000576589,0.01000,1.043
|
| 43 |
+
5,mlp.down_proj,0.0000016259,0.01000,2.445
|
| 44 |
+
6,self_attn.q_proj,0.0000067517,0.01000,1.949
|
| 45 |
+
6,self_attn.v_proj,0.0000005261,0.01000,1.946
|
| 46 |
+
6,self_attn.k_proj,0.0000014861,0.01000,1.949
|
| 47 |
+
6,self_attn.o_proj,0.0000003167,0.01000,0.377
|
| 48 |
+
6,mlp.gate_proj,0.0000255282,0.01000,1.098
|
| 49 |
+
6,mlp.up_proj,0.0000209791,0.01000,1.099
|
| 50 |
+
6,mlp.down_proj,0.0000020015,0.01000,2.458
|
| 51 |
+
7,self_attn.k_proj,0.0000006259,0.01000,1.957
|
| 52 |
+
7,self_attn.q_proj,0.0000029878,0.01000,1.960
|
| 53 |
+
7,self_attn.v_proj,0.0000004453,0.01000,1.971
|
| 54 |
+
7,self_attn.o_proj,0.0000004340,0.01000,0.387
|
| 55 |
+
7,mlp.gate_proj,0.0000217184,0.01000,1.071
|
| 56 |
+
7,mlp.up_proj,0.0000203404,0.01000,1.072
|
| 57 |
+
7,mlp.down_proj,0.0000021308,0.01000,2.462
|
| 58 |
+
8,self_attn.v_proj,0.0000005944,0.01000,2.131
|
| 59 |
+
8,self_attn.q_proj,0.0000066846,0.01000,2.138
|
| 60 |
+
8,self_attn.k_proj,0.0000011701,0.01000,2.146
|
| 61 |
+
8,self_attn.o_proj,0.0000005490,0.01000,0.386
|
| 62 |
+
8,mlp.gate_proj,0.0000225093,0.01000,1.151
|
| 63 |
+
8,mlp.up_proj,0.0000204888,0.01000,1.155
|
| 64 |
+
8,mlp.down_proj,0.0000019721,0.01000,2.478
|
| 65 |
+
9,self_attn.v_proj,0.0000005366,0.01000,1.867
|
| 66 |
+
9,self_attn.q_proj,0.0000049412,0.01000,1.875
|
| 67 |
+
9,self_attn.k_proj,0.0000010675,0.01000,1.881
|
| 68 |
+
9,self_attn.o_proj,0.0000005296,0.01000,0.389
|
| 69 |
+
9,mlp.gate_proj,0.0000204874,0.01000,1.015
|
| 70 |
+
9,mlp.up_proj,0.0000196513,0.01000,1.015
|
| 71 |
+
9,mlp.down_proj,0.0000019309,0.01000,2.455
|
| 72 |
+
10,self_attn.q_proj,0.0000054192,0.01000,1.863
|
| 73 |
+
10,self_attn.k_proj,0.0000010889,0.01000,1.877
|
| 74 |
+
10,self_attn.v_proj,0.0000008506,0.01000,1.876
|
| 75 |
+
10,self_attn.o_proj,0.0000007948,0.01000,0.389
|
| 76 |
+
10,mlp.gate_proj,0.0000203503,0.01000,1.060
|
| 77 |
+
10,mlp.up_proj,0.0000191632,0.01000,1.058
|
| 78 |
+
10,mlp.down_proj,0.0000018531,0.01000,2.473
|
| 79 |
+
11,self_attn.q_proj,0.0000051875,0.01000,1.921
|
| 80 |
+
11,self_attn.k_proj,0.0000010387,0.01000,1.924
|
| 81 |
+
11,self_attn.v_proj,0.0000006815,0.01000,1.931
|
| 82 |
+
11,self_attn.o_proj,0.0000007435,0.01000,0.381
|
| 83 |
+
11,mlp.gate_proj,0.0000196355,0.01000,1.046
|
| 84 |
+
11,mlp.up_proj,0.0000172677,0.01000,1.052
|
| 85 |
+
11,mlp.down_proj,0.0000015551,0.01000,2.454
|
| 86 |
+
12,self_attn.q_proj,0.0000063423,0.01000,1.835
|
| 87 |
+
12,self_attn.k_proj,0.0000013658,0.01000,1.841
|
| 88 |
+
12,self_attn.v_proj,0.0000006520,0.01000,1.851
|
| 89 |
+
12,self_attn.o_proj,0.0000005855,0.01000,0.382
|
| 90 |
+
12,mlp.up_proj,0.0000169693,0.01000,1.050
|
| 91 |
+
12,mlp.gate_proj,0.0000183821,0.01000,1.059
|
| 92 |
+
12,mlp.down_proj,0.0000016567,0.01000,2.465
|
| 93 |
+
13,self_attn.q_proj,0.0000038360,0.01000,1.903
|
| 94 |
+
13,self_attn.k_proj,0.0000007807,0.01000,1.907
|
| 95 |
+
13,self_attn.v_proj,0.0000005112,0.01000,1.913
|
| 96 |
+
13,self_attn.o_proj,0.0000006059,0.01000,0.379
|
| 97 |
+
13,mlp.gate_proj,0.0000169439,0.01000,1.015
|
| 98 |
+
13,mlp.up_proj,0.0000162928,0.01000,1.019
|
| 99 |
+
13,mlp.down_proj,0.0000014140,0.01000,2.458
|
| 100 |
+
14,self_attn.q_proj,0.0000088318,0.01000,1.970
|
| 101 |
+
14,self_attn.v_proj,0.0000009109,0.01000,1.981
|
| 102 |
+
14,self_attn.k_proj,0.0000013579,0.01000,1.984
|
| 103 |
+
14,self_attn.o_proj,0.0000005381,0.01000,0.374
|
| 104 |
+
14,mlp.up_proj,0.0000184341,0.01000,1.094
|
| 105 |
+
14,mlp.gate_proj,0.0000179834,0.01000,1.102
|
| 106 |
+
14,mlp.down_proj,0.0000016729,0.01000,2.462
|
| 107 |
+
15,self_attn.v_proj,0.0000008579,0.01000,2.009
|
| 108 |
+
15,self_attn.q_proj,0.0000121671,0.01000,2.007
|
| 109 |
+
15,self_attn.k_proj,0.0000009824,0.01000,2.021
|
| 110 |
+
15,self_attn.o_proj,0.0000008882,0.01000,0.383
|
| 111 |
+
15,mlp.up_proj,0.0000155673,0.01000,1.049
|
| 112 |
+
15,mlp.gate_proj,0.0000163478,0.01000,1.055
|
| 113 |
+
15,mlp.down_proj,0.0000014788,0.01000,2.486
|
| 114 |
+
16,self_attn.q_proj,0.0000068865,0.01000,1.983
|
| 115 |
+
16,self_attn.k_proj,0.0000013063,0.01000,1.995
|
| 116 |
+
16,self_attn.v_proj,0.0000009619,0.01000,1.999
|
| 117 |
+
16,self_attn.o_proj,0.0000007198,0.01000,0.387
|
| 118 |
+
16,mlp.up_proj,0.0000180247,0.01000,1.104
|
| 119 |
+
16,mlp.gate_proj,0.0000184467,0.01000,1.111
|
| 120 |
+
16,mlp.down_proj,0.0000018679,0.01000,2.487
|
| 121 |
+
17,self_attn.q_proj,0.0000067134,0.01000,2.066
|
| 122 |
+
17,self_attn.v_proj,0.0000013136,0.01000,2.067
|
| 123 |
+
17,self_attn.k_proj,0.0000008133,0.01000,2.070
|
| 124 |
+
17,self_attn.o_proj,0.0000006762,0.01000,0.383
|
| 125 |
+
17,mlp.gate_proj,0.0000189996,0.01000,1.264
|
| 126 |
+
17,mlp.up_proj,0.0000189212,0.01000,1.270
|
| 127 |
+
17,mlp.down_proj,0.0000023529,0.01000,2.445
|
| 128 |
+
18,self_attn.q_proj,0.0000055875,0.01000,1.935
|
| 129 |
+
18,self_attn.k_proj,0.0000009592,0.01000,1.948
|
| 130 |
+
18,self_attn.v_proj,0.0000009516,0.01000,1.950
|
| 131 |
+
18,self_attn.o_proj,0.0000009959,0.01000,0.378
|
| 132 |
+
18,mlp.up_proj,0.0000208656,0.01000,1.036
|
| 133 |
+
18,mlp.gate_proj,0.0000211248,0.01000,1.038
|
| 134 |
+
18,mlp.down_proj,0.0000030797,0.01000,2.519
|
| 135 |
+
19,self_attn.k_proj,0.0000011236,0.01000,1.900
|
| 136 |
+
19,self_attn.q_proj,0.0000078805,0.01000,1.906
|
| 137 |
+
19,self_attn.v_proj,0.0000018650,0.01000,1.916
|
| 138 |
+
19,self_attn.o_proj,0.0000012117,0.01000,0.380
|
| 139 |
+
19,mlp.gate_proj,0.0000248130,0.01000,1.022
|
| 140 |
+
19,mlp.up_proj,0.0000262968,0.01000,1.026
|
| 141 |
+
19,mlp.down_proj,0.0000053145,0.01000,2.447
|
| 142 |
+
20,self_attn.k_proj,0.0000013334,0.01000,2.089
|
| 143 |
+
20,self_attn.v_proj,0.0000025328,0.01000,2.091
|
| 144 |
+
20,self_attn.q_proj,0.0000086186,0.01000,2.099
|
| 145 |
+
20,self_attn.o_proj,0.0000019196,0.01000,0.382
|
| 146 |
+
20,mlp.up_proj,0.0000287931,0.01000,1.094
|
| 147 |
+
20,mlp.gate_proj,0.0000281793,0.01000,1.096
|
| 148 |
+
20,mlp.down_proj,0.0000055514,0.01000,2.436
|
| 149 |
+
21,self_attn.q_proj,0.0000090283,0.01000,1.887
|
| 150 |
+
21,self_attn.v_proj,0.0000023488,0.01000,1.908
|
| 151 |
+
21,self_attn.k_proj,0.0000012907,0.01000,1.912
|
| 152 |
+
21,self_attn.o_proj,0.0000012837,0.01000,0.377
|
| 153 |
+
21,mlp.gate_proj,0.0000403068,0.01000,1.015
|
| 154 |
+
21,mlp.up_proj,0.0000402602,0.01000,1.020
|
| 155 |
+
21,mlp.down_proj,0.0000089025,0.01000,2.422
|
| 156 |
+
22,self_attn.q_proj,0.0000084084,0.01000,1.938
|
| 157 |
+
22,self_attn.k_proj,0.0000014701,0.01000,1.951
|
| 158 |
+
22,self_attn.v_proj,0.0000028296,0.01000,1.951
|
| 159 |
+
22,self_attn.o_proj,0.0000017236,0.01000,0.377
|
| 160 |
+
22,mlp.gate_proj,0.0000474020,0.01000,1.060
|
| 161 |
+
22,mlp.up_proj,0.0000465792,0.01000,1.061
|
| 162 |
+
22,mlp.down_proj,0.0000116087,0.01000,2.415
|
| 163 |
+
23,self_attn.q_proj,0.0000104538,0.01000,2.275
|
| 164 |
+
23,self_attn.v_proj,0.0000035433,0.01000,2.282
|
| 165 |
+
23,self_attn.k_proj,0.0000016242,0.01000,2.293
|
| 166 |
+
23,self_attn.o_proj,0.0000019176,0.01000,0.404
|
| 167 |
+
23,mlp.up_proj,0.0000508410,0.01000,1.070
|
| 168 |
+
23,mlp.gate_proj,0.0000491592,0.01000,1.079
|
| 169 |
+
23,mlp.down_proj,0.0000136699,0.01000,2.446
|
| 170 |
+
24,self_attn.k_proj,0.0000017392,0.01000,1.880
|
| 171 |
+
24,self_attn.q_proj,0.0000107215,0.01000,1.892
|
| 172 |
+
24,self_attn.v_proj,0.0000070691,0.01000,1.891
|
| 173 |
+
24,self_attn.o_proj,0.0000025481,0.01000,0.376
|
| 174 |
+
24,mlp.up_proj,0.0000530121,0.01000,1.051
|
| 175 |
+
24,mlp.gate_proj,0.0000493621,0.01000,1.057
|
| 176 |
+
24,mlp.down_proj,0.0000161085,0.01000,2.477
|
| 177 |
+
25,self_attn.q_proj,0.0000103566,0.01000,2.164
|
| 178 |
+
25,self_attn.v_proj,0.0000106650,0.01000,2.184
|
| 179 |
+
25,self_attn.k_proj,0.0000018334,0.01000,2.193
|
| 180 |
+
25,self_attn.o_proj,0.0000033180,0.01000,0.395
|
| 181 |
+
25,mlp.up_proj,0.0000559266,0.01000,1.207
|
| 182 |
+
25,mlp.gate_proj,0.0000488881,0.01000,1.231
|
| 183 |
+
25,mlp.down_proj,0.0000200887,0.01000,2.527
|
| 184 |
+
26,self_attn.q_proj,0.0000120920,0.01000,2.042
|
| 185 |
+
26,self_attn.v_proj,0.0000134207,0.01000,2.060
|
| 186 |
+
26,self_attn.k_proj,0.0000018492,0.01000,2.060
|
| 187 |
+
26,self_attn.o_proj,0.0000024180,0.01000,0.378
|
| 188 |
+
26,mlp.up_proj,0.0000555762,0.01000,1.209
|
| 189 |
+
26,mlp.gate_proj,0.0000466859,0.01000,1.223
|
| 190 |
+
26,mlp.down_proj,0.0000288948,0.01000,2.459
|
| 191 |
+
27,self_attn.k_proj,0.0000019184,0.01000,2.009
|
| 192 |
+
27,self_attn.v_proj,0.0000137570,0.01000,2.018
|
| 193 |
+
27,self_attn.q_proj,0.0000120771,0.01000,2.017
|
| 194 |
+
27,self_attn.o_proj,0.0000081001,0.01000,0.381
|
| 195 |
+
27,mlp.up_proj,0.0000640602,0.01000,1.089
|
| 196 |
+
27,mlp.gate_proj,0.0000614883,0.01000,1.090
|
| 197 |
+
27,mlp.down_proj,0.0000351033,0.01000,2.442
|
qwen25-1p5b__gptq__openhermes__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_tumiwt6x",
|
| 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__openhermes__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__openhermes__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 |
+
}
|