Upload folder using huggingface_hub
Browse files- .gitattributes +1 -0
- qwen25-1p5b__gptq__openhermes__n512__s1/BENCH_DONE +1 -0
- qwen25-1p5b__gptq__openhermes__n512__s1/chat_template.jinja +54 -0
- qwen25-1p5b__gptq__openhermes__n512__s1/config.json +108 -0
- qwen25-1p5b__gptq__openhermes__n512__s1/generation_config.json +14 -0
- qwen25-1p5b__gptq__openhermes__n512__s1/model.safetensors +3 -0
- qwen25-1p5b__gptq__openhermes__n512__s1/quant_log.csv +197 -0
- qwen25-1p5b__gptq__openhermes__n512__s1/quantize_config.json +47 -0
- qwen25-1p5b__gptq__openhermes__n512__s1/tokenizer.json +3 -0
- qwen25-1p5b__gptq__openhermes__n512__s1/tokenizer_config.json +30 -0
.gitattributes
CHANGED
|
@@ -59,3 +59,4 @@ qwen25-1p5b__gptq__openhermes__n32__s0/tokenizer.json filter=lfs diff=lfs merge=
|
|
| 59 |
qwen25-1p5b__gptq__openhermes__n32__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
|
|
|
|
|
|
| 59 |
qwen25-1p5b__gptq__openhermes__n32__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
|
qwen25-1p5b__gptq__openhermes__n512__s1/BENCH_DONE
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
2026-07-30T20:50:24.801036+00:00
|
qwen25-1p5b__gptq__openhermes__n512__s1/chat_template.jinja
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{%- if tools %}
|
| 2 |
+
{{- '<|im_start|>system\n' }}
|
| 3 |
+
{%- if messages[0]['role'] == 'system' %}
|
| 4 |
+
{{- messages[0]['content'] }}
|
| 5 |
+
{%- else %}
|
| 6 |
+
{{- 'You are Qwen, created by Alibaba Cloud. You are a helpful assistant.' }}
|
| 7 |
+
{%- endif %}
|
| 8 |
+
{{- "\n\n# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
|
| 9 |
+
{%- for tool in tools %}
|
| 10 |
+
{{- "\n" }}
|
| 11 |
+
{{- tool | tojson }}
|
| 12 |
+
{%- endfor %}
|
| 13 |
+
{{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
|
| 14 |
+
{%- else %}
|
| 15 |
+
{%- if messages[0]['role'] == 'system' %}
|
| 16 |
+
{{- '<|im_start|>system\n' + messages[0]['content'] + '<|im_end|>\n' }}
|
| 17 |
+
{%- else %}
|
| 18 |
+
{{- '<|im_start|>system\nYou are Qwen, created by Alibaba Cloud. You are a helpful assistant.<|im_end|>\n' }}
|
| 19 |
+
{%- endif %}
|
| 20 |
+
{%- endif %}
|
| 21 |
+
{%- for message in messages %}
|
| 22 |
+
{%- if (message.role == "user") or (message.role == "system" and not loop.first) or (message.role == "assistant" and not message.tool_calls) %}
|
| 23 |
+
{{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
|
| 24 |
+
{%- elif message.role == "assistant" %}
|
| 25 |
+
{{- '<|im_start|>' + message.role }}
|
| 26 |
+
{%- if message.content %}
|
| 27 |
+
{{- '\n' + message.content }}
|
| 28 |
+
{%- endif %}
|
| 29 |
+
{%- for tool_call in message.tool_calls %}
|
| 30 |
+
{%- if tool_call.function is defined %}
|
| 31 |
+
{%- set tool_call = tool_call.function %}
|
| 32 |
+
{%- endif %}
|
| 33 |
+
{{- '\n<tool_call>\n{"name": "' }}
|
| 34 |
+
{{- tool_call.name }}
|
| 35 |
+
{{- '", "arguments": ' }}
|
| 36 |
+
{{- tool_call.arguments | tojson }}
|
| 37 |
+
{{- '}\n</tool_call>' }}
|
| 38 |
+
{%- endfor %}
|
| 39 |
+
{{- '<|im_end|>\n' }}
|
| 40 |
+
{%- elif message.role == "tool" %}
|
| 41 |
+
{%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != "tool") %}
|
| 42 |
+
{{- '<|im_start|>user' }}
|
| 43 |
+
{%- endif %}
|
| 44 |
+
{{- '\n<tool_response>\n' }}
|
| 45 |
+
{{- message.content }}
|
| 46 |
+
{{- '\n</tool_response>' }}
|
| 47 |
+
{%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
|
| 48 |
+
{{- '<|im_end|>\n' }}
|
| 49 |
+
{%- endif %}
|
| 50 |
+
{%- endif %}
|
| 51 |
+
{%- endfor %}
|
| 52 |
+
{%- if add_generation_prompt %}
|
| 53 |
+
{{- '<|im_start|>assistant\n' }}
|
| 54 |
+
{%- endif %}
|
qwen25-1p5b__gptq__openhermes__n512__s1/config.json
ADDED
|
@@ -0,0 +1,108 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"Qwen2ForCausalLM"
|
| 4 |
+
],
|
| 5 |
+
"attention_dropout": 0.0,
|
| 6 |
+
"bos_token_id": 151643,
|
| 7 |
+
"dtype": "bfloat16",
|
| 8 |
+
"eos_token_id": 151645,
|
| 9 |
+
"hidden_act": "silu",
|
| 10 |
+
"hidden_size": 1536,
|
| 11 |
+
"initializer_range": 0.02,
|
| 12 |
+
"intermediate_size": 8960,
|
| 13 |
+
"layer_types": [
|
| 14 |
+
"full_attention",
|
| 15 |
+
"full_attention",
|
| 16 |
+
"full_attention",
|
| 17 |
+
"full_attention",
|
| 18 |
+
"full_attention",
|
| 19 |
+
"full_attention",
|
| 20 |
+
"full_attention",
|
| 21 |
+
"full_attention",
|
| 22 |
+
"full_attention",
|
| 23 |
+
"full_attention",
|
| 24 |
+
"full_attention",
|
| 25 |
+
"full_attention",
|
| 26 |
+
"full_attention",
|
| 27 |
+
"full_attention",
|
| 28 |
+
"full_attention",
|
| 29 |
+
"full_attention",
|
| 30 |
+
"full_attention",
|
| 31 |
+
"full_attention",
|
| 32 |
+
"full_attention",
|
| 33 |
+
"full_attention",
|
| 34 |
+
"full_attention",
|
| 35 |
+
"full_attention",
|
| 36 |
+
"full_attention",
|
| 37 |
+
"full_attention",
|
| 38 |
+
"full_attention",
|
| 39 |
+
"full_attention",
|
| 40 |
+
"full_attention",
|
| 41 |
+
"full_attention"
|
| 42 |
+
],
|
| 43 |
+
"max_position_embeddings": 32768,
|
| 44 |
+
"max_window_layers": 21,
|
| 45 |
+
"model_type": "qwen2",
|
| 46 |
+
"num_attention_heads": 12,
|
| 47 |
+
"num_hidden_layers": 28,
|
| 48 |
+
"num_key_value_heads": 2,
|
| 49 |
+
"pad_token_id": 151643,
|
| 50 |
+
"quantization_config": {
|
| 51 |
+
"bits": 4,
|
| 52 |
+
"checkpoint_format": "gptq",
|
| 53 |
+
"desc_act": true,
|
| 54 |
+
"format": "gptq",
|
| 55 |
+
"group_size": 128,
|
| 56 |
+
"lm_head": false,
|
| 57 |
+
"meta": {
|
| 58 |
+
"act_group_aware": false,
|
| 59 |
+
"auto_forward_data_parallel": true,
|
| 60 |
+
"damp_auto_increment": 0.01,
|
| 61 |
+
"damp_percent": 0.01,
|
| 62 |
+
"dense_vram_strategy": "exclusive",
|
| 63 |
+
"dense_vram_strategy_devices": null,
|
| 64 |
+
"fallback": {
|
| 65 |
+
"smooth": null,
|
| 66 |
+
"strategy": "rtn",
|
| 67 |
+
"threshold": "0.5%"
|
| 68 |
+
},
|
| 69 |
+
"foem": null,
|
| 70 |
+
"gc_mode": "interval",
|
| 71 |
+
"gptaq": null,
|
| 72 |
+
"hessian": {
|
| 73 |
+
"chunk_bytes": null,
|
| 74 |
+
"chunk_size": null,
|
| 75 |
+
"staging_dtype": "float32"
|
| 76 |
+
},
|
| 77 |
+
"mock_quantization": false,
|
| 78 |
+
"moe_vram_strategy": "exclusive",
|
| 79 |
+
"moe_vram_strategy_devices": null,
|
| 80 |
+
"mse": 0.0,
|
| 81 |
+
"offload_to_disk": true,
|
| 82 |
+
"offload_to_disk_path": "/tmp/gptqmodel_jroj1e68",
|
| 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__s1/generation_config.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token_id": 151643,
|
| 3 |
+
"do_sample": true,
|
| 4 |
+
"eos_token_id": [
|
| 5 |
+
151645,
|
| 6 |
+
151643
|
| 7 |
+
],
|
| 8 |
+
"pad_token_id": 151643,
|
| 9 |
+
"repetition_penalty": 1.1,
|
| 10 |
+
"temperature": 0.7,
|
| 11 |
+
"top_k": 20,
|
| 12 |
+
"top_p": 0.8,
|
| 13 |
+
"transformers_version": "5.14.1"
|
| 14 |
+
}
|
qwen25-1p5b__gptq__openhermes__n512__s1/model.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:0ace7e5592b6f88c6f8d9be38fdab157ba17e35094ed76263e62b5f7c8e515e5
|
| 3 |
+
size 1149862904
|
qwen25-1p5b__gptq__openhermes__n512__s1/quant_log.csv
ADDED
|
@@ -0,0 +1,197 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
layer,module,loss,samples,damp,time
|
| 2 |
+
0,self_attn.q_proj,0.0000082516,0.01000,1.912
|
| 3 |
+
0,self_attn.k_proj,0.0000011370,0.01000,1.930
|
| 4 |
+
0,self_attn.v_proj,0.0000001346,0.01000,1.938
|
| 5 |
+
0,self_attn.o_proj,0.0000002973,0.01000,0.381
|
| 6 |
+
0,mlp.up_proj,0.0000023303,0.01000,1.097
|
| 7 |
+
0,mlp.gate_proj,0.0000034011,0.01000,1.099
|
| 8 |
+
0,mlp.down_proj,0.0000005314,0.01000,2.547
|
| 9 |
+
1,self_attn.q_proj,0.0000012603,0.01000,1.932
|
| 10 |
+
1,self_attn.k_proj,0.0000003756,0.01000,1.945
|
| 11 |
+
1,self_attn.v_proj,0.0000000836,0.01000,1.954
|
| 12 |
+
1,self_attn.o_proj,0.0000001195,0.01000,0.380
|
| 13 |
+
1,mlp.gate_proj,0.0000946160,0.01000,1.012
|
| 14 |
+
1,mlp.up_proj,0.0000768555,0.01000,1.014
|
| 15 |
+
1,mlp.down_proj,0.0000032451,0.01000,2.466
|
| 16 |
+
2,self_attn.q_proj,0.0000038909,0.01000,2.048
|
| 17 |
+
2,self_attn.v_proj,0.0000003460,0.01000,2.074
|
| 18 |
+
2,self_attn.k_proj,0.0000008458,0.01000,2.076
|
| 19 |
+
2,self_attn.o_proj,0.0000002450,0.01000,0.378
|
| 20 |
+
2,mlp.gate_proj,0.0000830534,0.01000,1.055
|
| 21 |
+
2,mlp.up_proj,0.0000515437,0.01000,1.059
|
| 22 |
+
2,mlp.down_proj,0.0000075941,0.01000,2.458
|
| 23 |
+
3,self_attn.q_proj,0.0000039351,0.01000,1.991
|
| 24 |
+
3,self_attn.v_proj,0.0000004461,0.01000,2.003
|
| 25 |
+
3,self_attn.k_proj,0.0000008533,0.01000,2.008
|
| 26 |
+
3,self_attn.o_proj,0.0000003463,0.01000,0.381
|
| 27 |
+
3,mlp.gate_proj,0.0000683078,0.01000,1.074
|
| 28 |
+
3,mlp.up_proj,0.0000358350,0.01000,1.073
|
| 29 |
+
3,mlp.down_proj,0.0000016330,0.01000,2.538
|
| 30 |
+
4,self_attn.q_proj,0.0000051513,0.01000,2.074
|
| 31 |
+
4,self_attn.v_proj,0.0000006371,0.01000,2.084
|
| 32 |
+
4,self_attn.k_proj,0.0000010412,0.01000,2.094
|
| 33 |
+
4,self_attn.o_proj,0.0000004100,0.01000,0.383
|
| 34 |
+
4,mlp.up_proj,0.0000284258,0.01000,1.278
|
| 35 |
+
4,mlp.gate_proj,0.0000478467,0.01000,1.283
|
| 36 |
+
4,mlp.down_proj,0.0000020034,0.01000,2.442
|
| 37 |
+
5,self_attn.k_proj,0.0000011500,0.01000,1.884
|
| 38 |
+
5,self_attn.q_proj,0.0000053111,0.01000,1.891
|
| 39 |
+
5,self_attn.v_proj,0.0000007801,0.01000,1.899
|
| 40 |
+
5,self_attn.o_proj,0.0000006178,0.01000,0.383
|
| 41 |
+
5,mlp.gate_proj,0.0000889978,0.01000,1.094
|
| 42 |
+
5,mlp.up_proj,0.0000572521,0.01000,1.099
|
| 43 |
+
5,mlp.down_proj,0.0000016240,0.01000,2.435
|
| 44 |
+
6,self_attn.q_proj,0.0000067000,0.01000,2.059
|
| 45 |
+
6,self_attn.k_proj,0.0000014730,0.01000,2.074
|
| 46 |
+
6,self_attn.v_proj,0.0000005180,0.01000,2.081
|
| 47 |
+
6,self_attn.o_proj,0.0000003222,0.01000,0.380
|
| 48 |
+
6,mlp.up_proj,0.0000207789,0.01000,1.074
|
| 49 |
+
6,mlp.gate_proj,0.0000252565,0.01000,1.080
|
| 50 |
+
6,mlp.down_proj,0.0000019693,0.01000,2.506
|
| 51 |
+
7,self_attn.q_proj,0.0000029496,0.01000,2.058
|
| 52 |
+
7,self_attn.v_proj,0.0000004394,0.01000,2.087
|
| 53 |
+
7,self_attn.k_proj,0.0000006181,0.01000,2.096
|
| 54 |
+
7,self_attn.o_proj,0.0000004266,0.01000,0.379
|
| 55 |
+
7,mlp.up_proj,0.0000200036,0.01000,1.081
|
| 56 |
+
7,mlp.gate_proj,0.0000213634,0.01000,1.085
|
| 57 |
+
7,mlp.down_proj,0.0000020892,0.01000,2.440
|
| 58 |
+
8,self_attn.q_proj,0.0000065875,0.01000,1.914
|
| 59 |
+
8,self_attn.v_proj,0.0000005858,0.01000,1.917
|
| 60 |
+
8,self_attn.k_proj,0.0000011536,0.01000,1.927
|
| 61 |
+
8,self_attn.o_proj,0.0000005385,0.01000,0.384
|
| 62 |
+
8,mlp.up_proj,0.0000201331,0.01000,1.168
|
| 63 |
+
8,mlp.gate_proj,0.0000221140,0.01000,1.177
|
| 64 |
+
8,mlp.down_proj,0.0000019394,0.01000,2.568
|
| 65 |
+
9,self_attn.q_proj,0.0000048605,0.01000,1.904
|
| 66 |
+
9,self_attn.k_proj,0.0000010520,0.01000,1.911
|
| 67 |
+
9,self_attn.v_proj,0.0000005259,0.01000,1.918
|
| 68 |
+
9,self_attn.o_proj,0.0000005207,0.01000,0.386
|
| 69 |
+
9,mlp.up_proj,0.0000193244,0.01000,1.032
|
| 70 |
+
9,mlp.gate_proj,0.0000201384,0.01000,1.033
|
| 71 |
+
9,mlp.down_proj,0.0000018933,0.01000,2.429
|
| 72 |
+
10,self_attn.q_proj,0.0000053218,0.01000,1.835
|
| 73 |
+
10,self_attn.k_proj,0.0000010701,0.01000,1.840
|
| 74 |
+
10,self_attn.v_proj,0.0000008351,0.01000,1.848
|
| 75 |
+
10,self_attn.o_proj,0.0000007859,0.01000,0.379
|
| 76 |
+
10,mlp.gate_proj,0.0000200097,0.01000,1.153
|
| 77 |
+
10,mlp.up_proj,0.0000188404,0.01000,1.151
|
| 78 |
+
10,mlp.down_proj,0.0000018230,0.01000,2.468
|
| 79 |
+
11,self_attn.q_proj,0.0000050982,0.01000,1.976
|
| 80 |
+
11,self_attn.k_proj,0.0000010215,0.01000,1.981
|
| 81 |
+
11,self_attn.v_proj,0.0000006690,0.01000,1.988
|
| 82 |
+
11,self_attn.o_proj,0.0000007414,0.01000,0.386
|
| 83 |
+
11,mlp.up_proj,0.0000169963,0.01000,1.146
|
| 84 |
+
11,mlp.gate_proj,0.0000193144,0.01000,1.147
|
| 85 |
+
11,mlp.down_proj,0.0000015271,0.01000,2.466
|
| 86 |
+
12,self_attn.q_proj,0.0000062308,0.01000,1.912
|
| 87 |
+
12,self_attn.k_proj,0.0000013407,0.01000,1.913
|
| 88 |
+
12,self_attn.v_proj,0.0000006404,0.01000,1.921
|
| 89 |
+
12,self_attn.o_proj,0.0000005752,0.01000,0.385
|
| 90 |
+
12,mlp.up_proj,0.0000167461,0.01000,1.098
|
| 91 |
+
12,mlp.gate_proj,0.0000181554,0.01000,1.104
|
| 92 |
+
12,mlp.down_proj,0.0000016335,0.01000,2.475
|
| 93 |
+
13,self_attn.q_proj,0.0000037831,0.01000,1.975
|
| 94 |
+
13,self_attn.v_proj,0.0000005025,0.01000,1.988
|
| 95 |
+
13,self_attn.k_proj,0.0000007700,0.01000,1.996
|
| 96 |
+
13,self_attn.o_proj,0.0000005947,0.01000,0.380
|
| 97 |
+
13,mlp.gate_proj,0.0000167268,0.01000,1.046
|
| 98 |
+
13,mlp.up_proj,0.0000161091,0.01000,1.053
|
| 99 |
+
13,mlp.down_proj,0.0000013971,0.01000,2.469
|
| 100 |
+
14,self_attn.q_proj,0.0000087182,0.01000,2.099
|
| 101 |
+
14,self_attn.k_proj,0.0000013332,0.01000,2.106
|
| 102 |
+
14,self_attn.v_proj,0.0000008985,0.01000,2.112
|
| 103 |
+
14,self_attn.o_proj,0.0000005290,0.01000,0.400
|
| 104 |
+
14,mlp.up_proj,0.0000182248,0.01000,1.092
|
| 105 |
+
14,mlp.gate_proj,0.0000177637,0.01000,1.099
|
| 106 |
+
14,mlp.down_proj,0.0000016534,0.01000,2.469
|
| 107 |
+
15,self_attn.k_proj,0.0000009710,0.01000,2.037
|
| 108 |
+
15,self_attn.q_proj,0.0000118860,0.01000,2.045
|
| 109 |
+
15,self_attn.v_proj,0.0000008449,0.01000,2.049
|
| 110 |
+
15,self_attn.o_proj,0.0000008841,0.01000,0.386
|
| 111 |
+
15,mlp.up_proj,0.0000154303,0.01000,1.138
|
| 112 |
+
15,mlp.gate_proj,0.0000161710,0.01000,1.146
|
| 113 |
+
15,mlp.down_proj,0.0000014617,0.01000,2.452
|
| 114 |
+
16,self_attn.q_proj,0.0000067836,0.01000,2.001
|
| 115 |
+
16,self_attn.k_proj,0.0000012824,0.01000,2.001
|
| 116 |
+
16,self_attn.v_proj,0.0000009479,0.01000,2.016
|
| 117 |
+
16,self_attn.o_proj,0.0000007124,0.01000,0.386
|
| 118 |
+
16,mlp.up_proj,0.0000178129,0.01000,1.108
|
| 119 |
+
16,mlp.gate_proj,0.0000182413,0.01000,1.116
|
| 120 |
+
16,mlp.down_proj,0.0000018446,0.01000,2.459
|
| 121 |
+
17,self_attn.q_proj,0.0000066279,0.01000,2.109
|
| 122 |
+
17,self_attn.k_proj,0.0000008046,0.01000,2.113
|
| 123 |
+
17,self_attn.v_proj,0.0000012968,0.01000,2.120
|
| 124 |
+
17,self_attn.o_proj,0.0000006579,0.01000,0.391
|
| 125 |
+
17,mlp.up_proj,0.0000187463,0.01000,1.139
|
| 126 |
+
17,mlp.gate_proj,0.0000188067,0.01000,1.143
|
| 127 |
+
17,mlp.down_proj,0.0000023257,0.01000,2.486
|
| 128 |
+
18,self_attn.q_proj,0.0000055175,0.01000,2.057
|
| 129 |
+
18,self_attn.v_proj,0.0000009383,0.01000,2.066
|
| 130 |
+
18,self_attn.k_proj,0.0000009448,0.01000,2.073
|
| 131 |
+
18,self_attn.o_proj,0.0000009947,0.01000,0.386
|
| 132 |
+
18,mlp.gate_proj,0.0000208386,0.01000,1.153
|
| 133 |
+
18,mlp.up_proj,0.0000206193,0.01000,1.158
|
| 134 |
+
18,mlp.down_proj,0.0000030336,0.01000,2.477
|
| 135 |
+
19,self_attn.k_proj,0.0000011033,0.01000,2.222
|
| 136 |
+
19,self_attn.q_proj,0.0000077657,0.01000,2.255
|
| 137 |
+
19,self_attn.v_proj,0.0000018394,0.01000,2.253
|
| 138 |
+
19,self_attn.o_proj,0.0000012042,0.01000,0.382
|
| 139 |
+
19,mlp.up_proj,0.0000260283,0.01000,1.095
|
| 140 |
+
19,mlp.gate_proj,0.0000245408,0.01000,1.103
|
| 141 |
+
19,mlp.down_proj,0.0000052236,0.01000,2.476
|
| 142 |
+
20,self_attn.q_proj,0.0000085239,0.01000,2.065
|
| 143 |
+
20,self_attn.k_proj,0.0000013086,0.01000,2.081
|
| 144 |
+
20,self_attn.v_proj,0.0000025065,0.01000,2.086
|
| 145 |
+
20,self_attn.o_proj,0.0000018854,0.01000,0.387
|
| 146 |
+
20,mlp.up_proj,0.0000283742,0.01000,1.249
|
| 147 |
+
20,mlp.gate_proj,0.0000277748,0.01000,1.254
|
| 148 |
+
20,mlp.down_proj,0.0000054476,0.01000,2.531
|
| 149 |
+
21,self_attn.q_proj,0.0000088975,0.01000,2.159
|
| 150 |
+
21,self_attn.v_proj,0.0000023113,0.01000,2.172
|
| 151 |
+
21,self_attn.k_proj,0.0000012737,0.01000,2.180
|
| 152 |
+
21,self_attn.o_proj,0.0000012581,0.01000,0.390
|
| 153 |
+
21,mlp.gate_proj,0.0000400014,0.01000,1.173
|
| 154 |
+
21,mlp.up_proj,0.0000399067,0.01000,1.175
|
| 155 |
+
21,mlp.down_proj,0.0000087915,0.01000,2.479
|
| 156 |
+
22,self_attn.q_proj,0.0000083049,0.01000,2.299
|
| 157 |
+
22,self_attn.k_proj,0.0000014548,0.01000,2.325
|
| 158 |
+
22,self_attn.v_proj,0.0000027888,0.01000,2.334
|
| 159 |
+
22,self_attn.o_proj,0.0000017411,0.01000,0.399
|
| 160 |
+
22,mlp.gate_proj,0.0000468470,0.01000,1.125
|
| 161 |
+
22,mlp.up_proj,0.0000460683,0.01000,1.128
|
| 162 |
+
22,mlp.down_proj,0.0000114153,0.01000,2.470
|
| 163 |
+
23,self_attn.k_proj,0.0000016009,0.01000,2.123
|
| 164 |
+
23,self_attn.q_proj,0.0000103127,0.01000,2.128
|
| 165 |
+
23,self_attn.v_proj,0.0000034764,0.01000,2.129
|
| 166 |
+
23,self_attn.o_proj,0.0000019099,0.01000,0.395
|
| 167 |
+
23,mlp.gate_proj,0.0000484040,0.01000,1.139
|
| 168 |
+
23,mlp.up_proj,0.0000501298,0.01000,1.145
|
| 169 |
+
23,mlp.down_proj,0.0000134606,0.01000,2.472
|
| 170 |
+
24,self_attn.q_proj,0.0000105908,0.01000,2.023
|
| 171 |
+
24,self_attn.v_proj,0.0000069596,0.01000,2.024
|
| 172 |
+
24,self_attn.k_proj,0.0000017168,0.01000,2.035
|
| 173 |
+
24,self_attn.o_proj,0.0000026153,0.01000,0.379
|
| 174 |
+
24,mlp.up_proj,0.0000521317,0.01000,1.107
|
| 175 |
+
24,mlp.gate_proj,0.0000484859,0.01000,1.113
|
| 176 |
+
24,mlp.down_proj,0.0000157147,0.01000,2.472
|
| 177 |
+
25,self_attn.q_proj,0.0000102121,0.01000,2.047
|
| 178 |
+
25,self_attn.v_proj,0.0000105608,0.01000,2.054
|
| 179 |
+
25,self_attn.k_proj,0.0000018095,0.01000,2.061
|
| 180 |
+
25,self_attn.o_proj,0.0000032361,0.01000,0.390
|
| 181 |
+
25,mlp.gate_proj,0.0000482270,0.01000,1.185
|
| 182 |
+
25,mlp.up_proj,0.0000552689,0.01000,1.191
|
| 183 |
+
25,mlp.down_proj,0.0000198174,0.01000,2.468
|
| 184 |
+
26,self_attn.q_proj,0.0000119943,0.01000,2.070
|
| 185 |
+
26,self_attn.k_proj,0.0000018338,0.01000,2.080
|
| 186 |
+
26,self_attn.v_proj,0.0000132851,0.01000,2.083
|
| 187 |
+
26,self_attn.o_proj,0.0000023455,0.01000,0.387
|
| 188 |
+
26,mlp.up_proj,0.0000551277,0.01000,1.129
|
| 189 |
+
26,mlp.gate_proj,0.0000463129,0.01000,1.142
|
| 190 |
+
26,mlp.down_proj,0.0000287738,0.01000,2.479
|
| 191 |
+
27,self_attn.k_proj,0.0000019003,0.01000,2.096
|
| 192 |
+
27,self_attn.q_proj,0.0000119898,0.01000,2.112
|
| 193 |
+
27,self_attn.v_proj,0.0000136474,0.01000,2.115
|
| 194 |
+
27,self_attn.o_proj,0.0000078715,0.01000,0.399
|
| 195 |
+
27,mlp.up_proj,0.0000636627,0.01000,1.240
|
| 196 |
+
27,mlp.gate_proj,0.0000610968,0.01000,1.241
|
| 197 |
+
27,mlp.down_proj,0.0000346708,0.01000,2.450
|
qwen25-1p5b__gptq__openhermes__n512__s1/quantize_config.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bits": 4,
|
| 3 |
+
"group_size": 128,
|
| 4 |
+
"desc_act": true,
|
| 5 |
+
"lm_head": false,
|
| 6 |
+
"method": "gptq",
|
| 7 |
+
"quant_method": "gptq",
|
| 8 |
+
"format": "gptq",
|
| 9 |
+
"checkpoint_format": "gptq",
|
| 10 |
+
"pack_dtype": "int32",
|
| 11 |
+
"meta": {
|
| 12 |
+
"quantizer": [
|
| 13 |
+
"gptqmodel:7.3.2"
|
| 14 |
+
],
|
| 15 |
+
"uri": "https://github.com/modelcloud/gptqmodel",
|
| 16 |
+
"damp_percent": 0.01,
|
| 17 |
+
"damp_auto_increment": 0.01,
|
| 18 |
+
"static_groups": false,
|
| 19 |
+
"true_sequential": true,
|
| 20 |
+
"mse": 0.0,
|
| 21 |
+
"gptaq": null,
|
| 22 |
+
"foem": null,
|
| 23 |
+
"act_group_aware": false,
|
| 24 |
+
"fallback": {
|
| 25 |
+
"strategy": "rtn",
|
| 26 |
+
"threshold": "0.5%",
|
| 27 |
+
"smooth": null
|
| 28 |
+
},
|
| 29 |
+
"offload_to_disk": true,
|
| 30 |
+
"offload_to_disk_path": "/tmp/gptqmodel_jroj1e68",
|
| 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__s1/tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:3fd169731d2cbde95e10bf356d66d5997fd885dd8dbb6fb4684da3f23b2585d8
|
| 3 |
+
size 11421892
|
qwen25-1p5b__gptq__openhermes__n512__s1/tokenizer_config.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"add_prefix_space": false,
|
| 3 |
+
"backend": "tokenizers",
|
| 4 |
+
"bos_token": null,
|
| 5 |
+
"clean_up_tokenization_spaces": false,
|
| 6 |
+
"eos_token": "<|im_end|>",
|
| 7 |
+
"errors": "replace",
|
| 8 |
+
"extra_special_tokens": [
|
| 9 |
+
"<|im_start|>",
|
| 10 |
+
"<|im_end|>",
|
| 11 |
+
"<|object_ref_start|>",
|
| 12 |
+
"<|object_ref_end|>",
|
| 13 |
+
"<|box_start|>",
|
| 14 |
+
"<|box_end|>",
|
| 15 |
+
"<|quad_start|>",
|
| 16 |
+
"<|quad_end|>",
|
| 17 |
+
"<|vision_start|>",
|
| 18 |
+
"<|vision_end|>",
|
| 19 |
+
"<|vision_pad|>",
|
| 20 |
+
"<|image_pad|>",
|
| 21 |
+
"<|video_pad|>"
|
| 22 |
+
],
|
| 23 |
+
"is_local": false,
|
| 24 |
+
"local_files_only": false,
|
| 25 |
+
"model_max_length": 131072,
|
| 26 |
+
"pad_token": "<|endoftext|>",
|
| 27 |
+
"split_special_tokens": false,
|
| 28 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
| 29 |
+
"unk_token": null
|
| 30 |
+
}
|