AnKhanh commited on
Commit
a24e316
·
verified ·
1 Parent(s): 4aaa41f

Upload ssgr_wanda_7B_sparse50

Browse files
.gitattributes CHANGED
@@ -42,3 +42,4 @@ c4_wanda_7B_sparse50/tokenizer.json filter=lfs diff=lfs merge=lfs -text
42
  ssgr_wanda_15B_sparse40/tokenizer.json filter=lfs diff=lfs merge=lfs -text
43
  ssgr_wanda_15B_sparse50/tokenizer.json filter=lfs diff=lfs merge=lfs -text
44
  ssgr_wanda_7B_sparse40/tokenizer.json filter=lfs diff=lfs merge=lfs -text
 
 
42
  ssgr_wanda_15B_sparse40/tokenizer.json filter=lfs diff=lfs merge=lfs -text
43
  ssgr_wanda_15B_sparse50/tokenizer.json filter=lfs diff=lfs merge=lfs -text
44
  ssgr_wanda_7B_sparse40/tokenizer.json filter=lfs diff=lfs merge=lfs -text
45
+ ssgr_wanda_7B_sparse50/tokenizer.json filter=lfs diff=lfs merge=lfs -text
ssgr_wanda_7B_sparse50/chat_template.jinja ADDED
@@ -0,0 +1 @@
 
 
1
+ {% if not add_generation_prompt is defined %}{% set add_generation_prompt = false %}{% endif %}{% set ns = namespace(is_first=false, is_tool=false, is_output_first=true, system_prompt='') %}{%- for message in messages %}{%- if message['role'] == 'system' %}{% set ns.system_prompt = message['content'] %}{%- endif %}{%- endfor %}{{bos_token}}{{ns.system_prompt}}{%- for message in messages %}{%- if message['role'] == 'user' %}{%- set ns.is_tool = false -%}{{'<|User|>' + message['content']}}{%- endif %}{%- if message['role'] == 'assistant' and message['content'] is none %}{%- set ns.is_tool = false -%}{%- for tool in message['tool_calls']%}{%- if not ns.is_first %}{{'<|Assistant|><|tool▁calls▁begin|><|tool▁call▁begin|>' + tool['type'] + '<|tool▁sep|>' + tool['function']['name'] + '\n' + '```json' + '\n' + tool['function']['arguments'] + '\n' + '```' + '<|tool▁call▁end|>'}}{%- set ns.is_first = true -%}{%- else %}{{'\n' + '<|tool▁call▁begin|>' + tool['type'] + '<|tool▁sep|>' + tool['function']['name'] + '\n' + '```json' + '\n' + tool['function']['arguments'] + '\n' + '```' + '<|tool▁call▁end|>'}}{{'<|tool▁calls▁end|><|end▁of▁sentence|>'}}{%- endif %}{%- endfor %}{%- endif %}{%- if message['role'] == 'assistant' and message['content'] is not none %}{%- if ns.is_tool %}{{'<|tool▁outputs▁end|>' + message['content'] + '<|end▁of▁sentence|>'}}{%- set ns.is_tool = false -%}{%- else %}{% set content = message['content'] %}{% if '</think>' in content %}{% set content = content.split('</think>')[-1] %}{% endif %}{{'<|Assistant|>' + content + '<|end▁of▁sentence|>'}}{%- endif %}{%- endif %}{%- if message['role'] == 'tool' %}{%- set ns.is_tool = true -%}{%- if ns.is_output_first %}{{'<|tool▁outputs▁begin|><|tool▁output▁begin|>' + message['content'] + '<|tool▁output▁end|>'}}{%- set ns.is_output_first = false %}{%- else %}{{'\n<|tool▁output▁begin|>' + message['content'] + '<|tool▁output▁end|>'}}{%- endif %}{%- endif %}{%- endfor -%}{% if ns.is_tool %}{{'<|tool▁outputs▁end|>'}}{% endif %}{% if add_generation_prompt and not ns.is_tool %}{{'<|Assistant|><think>\n'}}{% endif %}
ssgr_wanda_7B_sparse50/config.json ADDED
@@ -0,0 +1,59 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Qwen2ForCausalLM"
4
+ ],
5
+ "attention_dropout": 0.0,
6
+ "bos_token_id": 151643,
7
+ "dtype": "bfloat16",
8
+ "eos_token_id": 151643,
9
+ "hidden_act": "silu",
10
+ "hidden_size": 3584,
11
+ "initializer_range": 0.02,
12
+ "intermediate_size": 18944,
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": 131072,
44
+ "max_window_layers": 28,
45
+ "model_type": "qwen2",
46
+ "num_attention_heads": 28,
47
+ "num_hidden_layers": 28,
48
+ "num_key_value_heads": 4,
49
+ "rms_norm_eps": 1e-06,
50
+ "rope_scaling": null,
51
+ "rope_theta": 10000,
52
+ "sliding_window": null,
53
+ "tie_word_embeddings": false,
54
+ "transformers_version": "4.57.6",
55
+ "use_cache": true,
56
+ "use_mrope": false,
57
+ "use_sliding_window": false,
58
+ "vocab_size": 152064
59
+ }
ssgr_wanda_7B_sparse50/generation_config.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 151646,
4
+ "do_sample": true,
5
+ "eos_token_id": 151643,
6
+ "temperature": 0.6,
7
+ "top_p": 0.95,
8
+ "transformers_version": "4.57.6"
9
+ }
ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2416e388a891683f3cfcafc7dd97b65fda617acabd6143a72459dd87446cb6bd
3
+ size 4877660776
ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:bd6e6f931d19f8d4fbd0d549f0fb91b6914c1417a835b9454237c0574827b707
3
+ size 4932751008
ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f428c30387efadd84b79dd36f911b3033afb22fdd2818433c7b6605d2c5000df
3
+ size 4330865200
ssgr_wanda_7B_sparse50/model-00004-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:784693f9ab4fdb1922b97f1f63b376b4405d1c07abdee98fb6320929396ccc04
3
+ size 1089994880
ssgr_wanda_7B_sparse50/model.safetensors.index.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"metadata": {"total_parameters": 7615616512, "total_size": 15231233024}, "weight_map": {"lm_head.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00004-of-00004.safetensors", "model.embed_tokens.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.0.input_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.0.mlp.down_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.0.mlp.gate_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.0.mlp.up_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.0.post_attention_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.0.self_attn.k_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.0.self_attn.k_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.0.self_attn.o_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.0.self_attn.q_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.0.self_attn.q_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.0.self_attn.v_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.0.self_attn.v_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.1.input_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.1.mlp.down_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.1.mlp.gate_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.1.mlp.up_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.1.post_attention_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.1.self_attn.k_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.1.self_attn.k_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.1.self_attn.o_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.1.self_attn.q_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.1.self_attn.q_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.1.self_attn.v_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.1.self_attn.v_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.10.input_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.10.mlp.down_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.10.mlp.gate_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.10.mlp.up_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.10.post_attention_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.10.self_attn.k_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.10.self_attn.k_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.10.self_attn.o_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.10.self_attn.q_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.10.self_attn.q_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.10.self_attn.v_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.10.self_attn.v_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.11.input_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.11.mlp.down_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.11.mlp.gate_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.11.mlp.up_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.11.post_attention_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.11.self_attn.k_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.11.self_attn.k_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.11.self_attn.o_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.11.self_attn.q_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.11.self_attn.q_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.11.self_attn.v_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.11.self_attn.v_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.12.input_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.12.mlp.down_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.12.mlp.gate_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.12.mlp.up_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.12.post_attention_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.12.self_attn.k_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.12.self_attn.k_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.12.self_attn.o_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.12.self_attn.q_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.12.self_attn.q_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.12.self_attn.v_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.12.self_attn.v_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.13.input_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.13.mlp.down_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.13.mlp.gate_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.13.mlp.up_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.13.post_attention_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.13.self_attn.k_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.13.self_attn.k_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.13.self_attn.o_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.13.self_attn.q_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.13.self_attn.q_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.13.self_attn.v_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.13.self_attn.v_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.14.input_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.14.mlp.down_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.14.mlp.gate_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.14.mlp.up_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.14.post_attention_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.14.self_attn.k_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.14.self_attn.k_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.14.self_attn.o_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.14.self_attn.q_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.14.self_attn.q_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.14.self_attn.v_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.14.self_attn.v_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.15.input_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.15.mlp.down_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.15.mlp.gate_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.15.mlp.up_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.15.post_attention_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.15.self_attn.k_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.15.self_attn.k_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.15.self_attn.o_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.15.self_attn.q_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.15.self_attn.q_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.15.self_attn.v_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.15.self_attn.v_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.16.input_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.16.mlp.down_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.16.mlp.gate_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.16.mlp.up_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.16.post_attention_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.16.self_attn.k_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.16.self_attn.k_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.16.self_attn.o_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.16.self_attn.q_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.16.self_attn.q_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.16.self_attn.v_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.16.self_attn.v_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.17.input_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.17.mlp.down_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.17.mlp.gate_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.17.mlp.up_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.17.post_attention_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.17.self_attn.k_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.17.self_attn.k_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.17.self_attn.o_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.17.self_attn.q_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.17.self_attn.q_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.17.self_attn.v_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.17.self_attn.v_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.18.input_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.18.mlp.down_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.18.mlp.gate_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.18.mlp.up_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.18.post_attention_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.18.self_attn.k_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.18.self_attn.k_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.18.self_attn.o_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.18.self_attn.q_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.18.self_attn.q_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.18.self_attn.v_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.18.self_attn.v_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.19.input_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.19.mlp.down_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.19.mlp.gate_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.19.mlp.up_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.19.post_attention_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.19.self_attn.k_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.19.self_attn.k_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.19.self_attn.o_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.19.self_attn.q_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.19.self_attn.q_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.19.self_attn.v_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.19.self_attn.v_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.2.input_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.2.mlp.down_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.2.mlp.gate_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.2.mlp.up_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.2.post_attention_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.2.self_attn.k_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.2.self_attn.k_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.2.self_attn.o_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.2.self_attn.q_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.2.self_attn.q_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.2.self_attn.v_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.2.self_attn.v_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.20.input_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.20.mlp.down_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.20.mlp.gate_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.20.mlp.up_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.20.post_attention_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.20.self_attn.k_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.20.self_attn.k_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.20.self_attn.o_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.20.self_attn.q_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.20.self_attn.q_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.20.self_attn.v_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.20.self_attn.v_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.21.input_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.21.mlp.down_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.21.mlp.gate_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.21.mlp.up_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.21.post_attention_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.21.self_attn.k_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.21.self_attn.k_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.21.self_attn.o_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.21.self_attn.q_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.21.self_attn.q_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.21.self_attn.v_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.21.self_attn.v_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.22.input_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.22.mlp.down_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.22.mlp.gate_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.22.mlp.up_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.22.post_attention_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.22.self_attn.k_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.22.self_attn.k_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.22.self_attn.o_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.22.self_attn.q_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.22.self_attn.q_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.22.self_attn.v_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.22.self_attn.v_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.23.input_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.23.mlp.down_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.23.mlp.gate_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.23.mlp.up_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.23.post_attention_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.23.self_attn.k_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.23.self_attn.k_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.23.self_attn.o_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.23.self_attn.q_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.23.self_attn.q_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.23.self_attn.v_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.23.self_attn.v_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.24.input_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.24.mlp.down_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.24.mlp.gate_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.24.mlp.up_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.24.post_attention_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.24.self_attn.k_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.24.self_attn.k_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.24.self_attn.o_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.24.self_attn.q_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.24.self_attn.q_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.24.self_attn.v_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.24.self_attn.v_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.25.input_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.25.mlp.down_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.25.mlp.gate_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.25.mlp.up_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.25.post_attention_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.25.self_attn.k_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.25.self_attn.k_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.25.self_attn.o_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.25.self_attn.q_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.25.self_attn.q_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.25.self_attn.v_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.25.self_attn.v_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.26.input_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.26.mlp.down_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.26.mlp.gate_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.26.mlp.up_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.26.post_attention_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.26.self_attn.k_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.26.self_attn.k_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.26.self_attn.o_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.26.self_attn.q_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.26.self_attn.q_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.26.self_attn.v_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.26.self_attn.v_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.27.input_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.27.mlp.down_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.27.mlp.gate_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.27.mlp.up_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.27.post_attention_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.27.self_attn.k_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.27.self_attn.k_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.27.self_attn.o_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.27.self_attn.q_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.27.self_attn.q_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.27.self_attn.v_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.27.self_attn.v_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors", "model.layers.3.input_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.3.mlp.down_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.3.mlp.gate_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.3.mlp.up_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.3.post_attention_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.3.self_attn.k_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.3.self_attn.k_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.3.self_attn.o_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.3.self_attn.q_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.3.self_attn.q_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.3.self_attn.v_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.3.self_attn.v_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.4.input_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.4.mlp.down_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.4.mlp.gate_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.4.mlp.up_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.4.post_attention_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.4.self_attn.k_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.4.self_attn.k_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.4.self_attn.o_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.4.self_attn.q_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.4.self_attn.q_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.4.self_attn.v_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.4.self_attn.v_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.5.input_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.5.mlp.down_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.5.mlp.gate_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.5.mlp.up_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.5.post_attention_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.5.self_attn.k_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.5.self_attn.k_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.5.self_attn.o_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.5.self_attn.q_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.5.self_attn.q_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.5.self_attn.v_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.5.self_attn.v_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.6.input_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.6.mlp.down_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.6.mlp.gate_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.6.mlp.up_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.6.post_attention_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.6.self_attn.k_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.6.self_attn.k_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.6.self_attn.o_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.6.self_attn.q_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.6.self_attn.q_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.6.self_attn.v_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.6.self_attn.v_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.7.input_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.7.mlp.down_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.7.mlp.gate_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.7.mlp.up_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.7.post_attention_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.7.self_attn.k_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.7.self_attn.k_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.7.self_attn.o_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.7.self_attn.q_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.7.self_attn.q_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.7.self_attn.v_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.7.self_attn.v_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.8.input_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.8.mlp.down_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.8.mlp.gate_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.8.mlp.up_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.8.post_attention_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.8.self_attn.k_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.8.self_attn.k_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.8.self_attn.o_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.8.self_attn.q_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.8.self_attn.q_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.8.self_attn.v_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.8.self_attn.v_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00001-of-00004.safetensors", "model.layers.9.input_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.9.mlp.down_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.9.mlp.gate_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.9.mlp.up_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.9.post_attention_layernorm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.9.self_attn.k_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.9.self_attn.k_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.9.self_attn.o_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.9.self_attn.q_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.9.self_attn.q_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.9.self_attn.v_proj.bias": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.layers.9.self_attn.v_proj.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00002-of-00004.safetensors", "model.norm.weight": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/model-00003-of-00004.safetensors"}}
ssgr_wanda_7B_sparse50/pairs_annotated.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a268c870e9b23883c19e58cf7ad834b895359b3e2046cd3130895b484d7fcb07
3
+ size 12333855
ssgr_wanda_7B_sparse50/pairs_cache.pkl ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:58509f3203ff3b35fe2d149415b950807c97dfb4270994499e5e06be68a06cbe
3
+ size 12333855
ssgr_wanda_7B_sparse50/run_config.json ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_name": "deepseek-ai/DeepSeek-R1-Distill-Qwen-7B",
3
+ "dtype": "bfloat16",
4
+ "device": "cuda",
5
+ "dataset": "open-r1/OpenR1-Math-220k",
6
+ "dataset_config": null,
7
+ "dataset_split": "train",
8
+ "problem_col": "problem",
9
+ "answer_col": "answer",
10
+ "task_type": "math",
11
+ "max_problems": 2000,
12
+ "dataset_offset": 0,
13
+ "min_rating": null,
14
+ "max_rating": null,
15
+ "n_pairs": 32,
16
+ "n_rollouts": 16,
17
+ "temperature": 0.8,
18
+ "max_new_tokens": 32768,
19
+ "gen_batch_size": 4,
20
+ "difficulty_lo": 0.2,
21
+ "difficulty_hi": 0.8,
22
+ "near_miss_ratio": 0.5,
23
+ "max_resample": 2,
24
+ "beta": 2.0,
25
+ "gamma": 0.5,
26
+ "eps": 0.1,
27
+ "min_seg_tokens": 5,
28
+ "reweight_from_annotated": false,
29
+ "score_norm": "softmax",
30
+ "uniform_span_weights": false,
31
+ "ssgr_min_len_pct": 25.0,
32
+ "ssgr_max_len_pct": 75.0,
33
+ "sparsity": 0.5,
34
+ "scope": "all",
35
+ "memory_limit_gb": 35.0,
36
+ "prunen": 0,
37
+ "prunem": 0,
38
+ "backend": "wanda",
39
+ "alps_rho": 0.1,
40
+ "alps_max_iter": 300,
41
+ "condition": "ssgr",
42
+ "output_dir": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50",
43
+ "pairs_cache": "/mnt/data/vhoangth2/repos/OBC/models/ssgr_wanda_7B_sparse50/pairs_cache.pkl",
44
+ "annotated_cache": null,
45
+ "save_rollouts": false,
46
+ "store_stop_logits": false,
47
+ "verbose_rollouts": false
48
+ }
ssgr_wanda_7B_sparse50/special_tokens_map.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<|begin▁of▁sentence|>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "<|end▁of▁sentence|>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": {
17
+ "content": "<|end▁of▁sentence|>",
18
+ "lstrip": false,
19
+ "normalized": false,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ }
23
+ }
ssgr_wanda_7B_sparse50/summary.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "condition": "ssgr",
3
+ "sparsity_target": 0.5,
4
+ "sparsity_realised": 0.4641965699598504,
5
+ "n_pairs": 39,
6
+ "beta": 2.0,
7
+ "gamma": 0.5,
8
+ "model": "deepseek-ai/DeepSeek-R1-Distill-Qwen-7B"
9
+ }
ssgr_wanda_7B_sparse50/tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e20ddafc659ba90242154b55275402edeca0715e5dbb30f56815a4ce081f4893
3
+ size 11422778
ssgr_wanda_7B_sparse50/tokenizer_config.json ADDED
@@ -0,0 +1,194 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": true,
3
+ "add_eos_token": false,
4
+ "add_prefix_space": null,
5
+ "added_tokens_decoder": {
6
+ "151643": {
7
+ "content": "<|end▁of▁sentence|>",
8
+ "lstrip": false,
9
+ "normalized": false,
10
+ "rstrip": false,
11
+ "single_word": false,
12
+ "special": true
13
+ },
14
+ "151644": {
15
+ "content": "<|User|>",
16
+ "lstrip": false,
17
+ "normalized": false,
18
+ "rstrip": false,
19
+ "single_word": false,
20
+ "special": false
21
+ },
22
+ "151645": {
23
+ "content": "<|Assistant|>",
24
+ "lstrip": false,
25
+ "normalized": false,
26
+ "rstrip": false,
27
+ "single_word": false,
28
+ "special": false
29
+ },
30
+ "151646": {
31
+ "content": "<|begin▁of▁sentence|>",
32
+ "lstrip": false,
33
+ "normalized": false,
34
+ "rstrip": false,
35
+ "single_word": false,
36
+ "special": true
37
+ },
38
+ "151647": {
39
+ "content": "<|EOT|>",
40
+ "lstrip": false,
41
+ "normalized": false,
42
+ "rstrip": false,
43
+ "single_word": false,
44
+ "special": false
45
+ },
46
+ "151648": {
47
+ "content": "<think>",
48
+ "lstrip": false,
49
+ "normalized": false,
50
+ "rstrip": false,
51
+ "single_word": false,
52
+ "special": false
53
+ },
54
+ "151649": {
55
+ "content": "</think>",
56
+ "lstrip": false,
57
+ "normalized": false,
58
+ "rstrip": false,
59
+ "single_word": false,
60
+ "special": false
61
+ },
62
+ "151650": {
63
+ "content": "<|quad_start|>",
64
+ "lstrip": false,
65
+ "normalized": false,
66
+ "rstrip": false,
67
+ "single_word": false,
68
+ "special": true
69
+ },
70
+ "151651": {
71
+ "content": "<|quad_end|>",
72
+ "lstrip": false,
73
+ "normalized": false,
74
+ "rstrip": false,
75
+ "single_word": false,
76
+ "special": true
77
+ },
78
+ "151652": {
79
+ "content": "<|vision_start|>",
80
+ "lstrip": false,
81
+ "normalized": false,
82
+ "rstrip": false,
83
+ "single_word": false,
84
+ "special": true
85
+ },
86
+ "151653": {
87
+ "content": "<|vision_end|>",
88
+ "lstrip": false,
89
+ "normalized": false,
90
+ "rstrip": false,
91
+ "single_word": false,
92
+ "special": true
93
+ },
94
+ "151654": {
95
+ "content": "<|vision_pad|>",
96
+ "lstrip": false,
97
+ "normalized": false,
98
+ "rstrip": false,
99
+ "single_word": false,
100
+ "special": true
101
+ },
102
+ "151655": {
103
+ "content": "<|image_pad|>",
104
+ "lstrip": false,
105
+ "normalized": false,
106
+ "rstrip": false,
107
+ "single_word": false,
108
+ "special": true
109
+ },
110
+ "151656": {
111
+ "content": "<|video_pad|>",
112
+ "lstrip": false,
113
+ "normalized": false,
114
+ "rstrip": false,
115
+ "single_word": false,
116
+ "special": true
117
+ },
118
+ "151657": {
119
+ "content": "<tool_call>",
120
+ "lstrip": false,
121
+ "normalized": false,
122
+ "rstrip": false,
123
+ "single_word": false,
124
+ "special": false
125
+ },
126
+ "151658": {
127
+ "content": "</tool_call>",
128
+ "lstrip": false,
129
+ "normalized": false,
130
+ "rstrip": false,
131
+ "single_word": false,
132
+ "special": false
133
+ },
134
+ "151659": {
135
+ "content": "<|fim_prefix|>",
136
+ "lstrip": false,
137
+ "normalized": false,
138
+ "rstrip": false,
139
+ "single_word": false,
140
+ "special": false
141
+ },
142
+ "151660": {
143
+ "content": "<|fim_middle|>",
144
+ "lstrip": false,
145
+ "normalized": false,
146
+ "rstrip": false,
147
+ "single_word": false,
148
+ "special": false
149
+ },
150
+ "151661": {
151
+ "content": "<|fim_suffix|>",
152
+ "lstrip": false,
153
+ "normalized": false,
154
+ "rstrip": false,
155
+ "single_word": false,
156
+ "special": false
157
+ },
158
+ "151662": {
159
+ "content": "<|fim_pad|>",
160
+ "lstrip": false,
161
+ "normalized": false,
162
+ "rstrip": false,
163
+ "single_word": false,
164
+ "special": false
165
+ },
166
+ "151663": {
167
+ "content": "<|repo_name|>",
168
+ "lstrip": false,
169
+ "normalized": false,
170
+ "rstrip": false,
171
+ "single_word": false,
172
+ "special": false
173
+ },
174
+ "151664": {
175
+ "content": "<|file_sep|>",
176
+ "lstrip": false,
177
+ "normalized": false,
178
+ "rstrip": false,
179
+ "single_word": false,
180
+ "special": false
181
+ }
182
+ },
183
+ "bos_token": "<|begin▁of▁sentence|>",
184
+ "clean_up_tokenization_spaces": false,
185
+ "eos_token": "<|end▁of▁sentence|>",
186
+ "extra_special_tokens": {},
187
+ "legacy": true,
188
+ "model_max_length": 16384,
189
+ "pad_token": "<|end▁of▁sentence|>",
190
+ "sp_model_kwargs": {},
191
+ "tokenizer_class": "LlamaTokenizerFast",
192
+ "unk_token": null,
193
+ "use_default_system_prompt": false
194
+ }