Kooten commited on
Commit
aaf98f1
1 Parent(s): cf7bdb7

Model Upload

Browse files
README.md ADDED
@@ -0,0 +1,117 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-nc-4.0
3
+ tags:
4
+ - not-for-all-audiences
5
+ - nsfw
6
+ ---
7
+
8
+ First :
9
+ ```shell
10
+ layer_slices:
11
+ - model: Undi95/MLewd-L2-Chat-13B
12
+ start: 0
13
+ end: 16
14
+ - model: Undi95/MLewd-ReMM-L2-Chat-20B-Part1
15
+ start: 8
16
+ end: 20
17
+ - model: Undi95/MLewd-L2-Chat-13B
18
+ start: 17
19
+ end: 32
20
+ - model: Undi95/MLewd-ReMM-L2-Chat-20B-Part1
21
+ start: 21
22
+ end: 40
23
+ ```
24
+
25
+ Inverted:
26
+ ```shell
27
+ layer_slices:
28
+ - model: Undi95/MLewd-ReMM-L2-Chat-20B-Part1
29
+ start: 0
30
+ end: 16
31
+ - model: Undi95/MLewd-L2-Chat-13B
32
+ start: 8
33
+ end: 20
34
+ - model: Undi95/MLewd-ReMM-L2-Chat-20B-Part1
35
+ start: 17
36
+ end: 32
37
+ - model: Undi95/MLewd-L2-Chat-13B
38
+ start: 21
39
+ end: 40
40
+ ```
41
+
42
+ Precise:
43
+ ```shell
44
+ layer_slices:
45
+ - model: Undi95/MLewd-L2-Chat-13B
46
+ start: 0
47
+ end: 8
48
+ - model: Undi95/MLewd-ReMM-L2-Chat-20B-Part1
49
+ start: 4
50
+ end: 12
51
+ - model: Undi95/MLewd-L2-Chat-13B
52
+ start: 9
53
+ end: 16
54
+ - model: Undi95/MLewd-ReMM-L2-Chat-20B-Part1
55
+ start: 13
56
+ end: 22
57
+ - model: Undi95/MLewd-L2-Chat-13B
58
+ start: 17
59
+ end: 24
60
+ - model: Undi95/MLewd-ReMM-L2-Chat-20B-Part1
61
+ start: 23
62
+ end: 32
63
+ - model: Undi95/MLewd-L2-Chat-13B
64
+ start: 25
65
+ end: 32
66
+ - model: Undi95/MLewd-ReMM-L2-Chat-20B-Part1
67
+ start: 33
68
+ end: 40
69
+ ```
70
+
71
+ PreciseInverted:
72
+ ```shell
73
+ layer_slices:
74
+ - model: Undi95/MLewd-ReMM-L2-Chat-20B-Part1
75
+ start: 0
76
+ end: 8
77
+ - model: Undi95/MLewd-L2-Chat-13B
78
+ start: 4
79
+ end: 12
80
+ - model: Undi95/MLewd-ReMM-L2-Chat-20B-Part1
81
+ start: 9
82
+ end: 16
83
+ - model: Undi95/MLewd-L2-Chat-13B
84
+ start: 13
85
+ end: 22
86
+ - model: Undi95/MLewd-ReMM-L2-Chat-20B-Part1
87
+ start: 17
88
+ end: 24
89
+ - model: Undi95/MLewd-L2-Chat-13B
90
+ start: 23
91
+ end: 32
92
+ - model: Undi95/MLewd-ReMM-L2-Chat-20B-Part1
93
+ start: 25
94
+ end: 32
95
+ - model: Undi95/MLewd-L2-Chat-13B
96
+ start: 33
97
+ end: 40
98
+ ```
99
+
100
+ Part1 = ReMM v2.1 merged /w MLewd low weight to keep consistency. I call this "dilution" and result show consistency and coherency without repeat/loop beside the small amount of duplicated datas.
101
+
102
+ The goal is to find the best way to interlace layers the best way possible to have a sweetspot between 13B and +30B.
103
+
104
+ Normal/Inverted is by chunk of 16 layers and Precise/PreciseInverted is by chunk of 8 layers.
105
+
106
+ All the models are made of 64(+1) layers. Need testing.
107
+
108
+ ## Prompt template: Alpaca
109
+
110
+ ```
111
+ Below is an instruction that describes a task. Write a response that completes the request.
112
+
113
+ ### Instruction:
114
+ {prompt}
115
+
116
+ ### Response:
117
+ ```
config.json ADDED
@@ -0,0 +1,26 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_name_or_path": "Undi95/MLewd-L2-Chat-13B",
3
+ "architectures": [
4
+ "LlamaForCausalLM"
5
+ ],
6
+ "bos_token_id": 1,
7
+ "eos_token_id": 2,
8
+ "hidden_act": "silu",
9
+ "hidden_size": 5120,
10
+ "initializer_range": 0.02,
11
+ "intermediate_size": 13824,
12
+ "max_position_embeddings": 4096,
13
+ "model_type": "llama",
14
+ "num_attention_heads": 40,
15
+ "num_hidden_layers": 62,
16
+ "num_key_value_heads": 40,
17
+ "pretraining_tp": 1,
18
+ "rms_norm_eps": 1e-05,
19
+ "rope_scaling": null,
20
+ "rope_theta": 10000.0,
21
+ "tie_word_embeddings": false,
22
+ "torch_dtype": "float16",
23
+ "transformers_version": "4.33.2",
24
+ "use_cache": true,
25
+ "vocab_size": 32000
26
+ }
output.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2d1fe765b914c13eea8392433d5ae9dcfbc8dcc90483842d3067d42818dc040a
3
+ size 7846525560
pytorch_model.bin.index.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {"metadata": {}, "weight_map": {"model.embed_tokens.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.0.input_layernorm.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.0.mlp.up_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.0.mlp.down_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.0.mlp.gate_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.0.post_attention_layernorm.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.0.self_attn.q_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.0.self_attn.k_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.0.self_attn.v_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.0.self_attn.o_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.1.input_layernorm.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.1.mlp.up_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.1.mlp.down_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.1.mlp.gate_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.1.post_attention_layernorm.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.1.self_attn.q_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.1.self_attn.k_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.1.self_attn.v_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.1.self_attn.o_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.2.input_layernorm.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.2.mlp.up_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.2.mlp.down_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.2.mlp.gate_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.2.post_attention_layernorm.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.2.self_attn.q_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.2.self_attn.k_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.2.self_attn.v_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.2.self_attn.o_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.3.input_layernorm.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.3.mlp.up_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.3.mlp.down_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.3.mlp.gate_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.3.post_attention_layernorm.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.3.self_attn.q_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.3.self_attn.k_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.3.self_attn.v_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.3.self_attn.o_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.4.input_layernorm.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.4.mlp.up_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.4.mlp.down_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.4.mlp.gate_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.4.post_attention_layernorm.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.4.self_attn.q_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.4.self_attn.k_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.4.self_attn.v_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.4.self_attn.o_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.5.input_layernorm.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.5.mlp.up_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.5.mlp.down_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.5.mlp.gate_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.5.post_attention_layernorm.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.5.self_attn.q_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.5.self_attn.k_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.5.self_attn.v_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.5.self_attn.o_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.6.input_layernorm.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.6.mlp.up_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.6.mlp.down_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.6.mlp.gate_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.6.post_attention_layernorm.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.6.self_attn.q_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.6.self_attn.k_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.6.self_attn.v_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.6.self_attn.o_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.7.input_layernorm.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.7.mlp.up_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.7.mlp.down_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.7.mlp.gate_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.7.post_attention_layernorm.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.7.self_attn.q_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.7.self_attn.k_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.7.self_attn.v_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.7.self_attn.o_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.8.input_layernorm.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.8.mlp.up_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.8.mlp.down_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.8.mlp.gate_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.8.post_attention_layernorm.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.8.self_attn.q_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.8.self_attn.k_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.8.self_attn.v_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.8.self_attn.o_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.9.input_layernorm.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.9.mlp.up_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.9.mlp.down_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.9.mlp.gate_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.9.post_attention_layernorm.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.9.self_attn.q_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.9.self_attn.k_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.9.self_attn.v_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.9.self_attn.o_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.10.input_layernorm.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.10.mlp.up_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.10.mlp.down_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.10.mlp.gate_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.10.post_attention_layernorm.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.10.self_attn.q_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.10.self_attn.k_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.10.self_attn.v_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.10.self_attn.o_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.11.input_layernorm.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.11.mlp.up_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.11.mlp.down_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.11.mlp.gate_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.11.post_attention_layernorm.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.11.self_attn.q_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.11.self_attn.k_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.11.self_attn.v_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.11.self_attn.o_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.12.input_layernorm.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.12.mlp.up_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.12.mlp.down_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.12.mlp.gate_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.12.post_attention_layernorm.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.12.self_attn.q_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.12.self_attn.k_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.12.self_attn.v_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.12.self_attn.o_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.13.input_layernorm.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.13.mlp.up_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.13.mlp.down_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.13.mlp.gate_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.13.post_attention_layernorm.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.13.self_attn.q_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.13.self_attn.k_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.13.self_attn.v_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.13.self_attn.o_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.14.input_layernorm.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.14.mlp.up_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.14.mlp.down_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.14.mlp.gate_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.14.post_attention_layernorm.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.14.self_attn.q_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.14.self_attn.k_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.14.self_attn.v_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.14.self_attn.o_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.15.input_layernorm.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.15.mlp.up_proj.weight": "pytorch_model-00001-of-00005.safetensors", "model.layers.15.mlp.down_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.15.mlp.gate_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.15.post_attention_layernorm.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.15.self_attn.q_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.15.self_attn.k_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.15.self_attn.v_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.15.self_attn.o_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.16.input_layernorm.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.16.mlp.up_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.16.mlp.down_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.16.mlp.gate_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.16.post_attention_layernorm.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.16.self_attn.q_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.16.self_attn.k_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.16.self_attn.v_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.16.self_attn.o_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.17.input_layernorm.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.17.mlp.up_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.17.mlp.down_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.17.mlp.gate_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.17.post_attention_layernorm.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.17.self_attn.q_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.17.self_attn.k_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.17.self_attn.v_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.17.self_attn.o_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.18.input_layernorm.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.18.mlp.up_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.18.mlp.down_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.18.mlp.gate_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.18.post_attention_layernorm.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.18.self_attn.q_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.18.self_attn.k_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.18.self_attn.v_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.18.self_attn.o_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.19.input_layernorm.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.19.mlp.up_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.19.mlp.down_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.19.mlp.gate_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.19.post_attention_layernorm.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.19.self_attn.q_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.19.self_attn.k_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.19.self_attn.v_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.19.self_attn.o_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.20.input_layernorm.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.20.mlp.up_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.20.mlp.down_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.20.mlp.gate_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.20.post_attention_layernorm.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.20.self_attn.q_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.20.self_attn.k_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.20.self_attn.v_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.20.self_attn.o_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.21.input_layernorm.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.21.mlp.up_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.21.mlp.down_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.21.mlp.gate_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.21.post_attention_layernorm.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.21.self_attn.q_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.21.self_attn.k_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.21.self_attn.v_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.21.self_attn.o_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.22.input_layernorm.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.22.mlp.up_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.22.mlp.down_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.22.mlp.gate_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.22.post_attention_layernorm.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.22.self_attn.q_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.22.self_attn.k_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.22.self_attn.v_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.22.self_attn.o_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.23.input_layernorm.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.23.mlp.up_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.23.mlp.down_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.23.mlp.gate_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.23.post_attention_layernorm.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.23.self_attn.q_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.23.self_attn.k_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.23.self_attn.v_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.23.self_attn.o_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.24.input_layernorm.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.24.mlp.up_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.24.mlp.down_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.24.mlp.gate_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.24.post_attention_layernorm.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.24.self_attn.q_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.24.self_attn.k_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.24.self_attn.v_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.24.self_attn.o_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.25.input_layernorm.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.25.mlp.up_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.25.mlp.down_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.25.mlp.gate_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.25.post_attention_layernorm.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.25.self_attn.q_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.25.self_attn.k_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.25.self_attn.v_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.25.self_attn.o_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.26.input_layernorm.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.26.mlp.up_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.26.mlp.down_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.26.mlp.gate_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.26.post_attention_layernorm.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.26.self_attn.q_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.26.self_attn.k_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.26.self_attn.v_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.26.self_attn.o_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.27.input_layernorm.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.27.mlp.up_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.27.mlp.down_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.27.mlp.gate_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.27.post_attention_layernorm.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.27.self_attn.q_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.27.self_attn.k_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.27.self_attn.v_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.27.self_attn.o_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.28.input_layernorm.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.28.mlp.up_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.28.mlp.down_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.28.mlp.gate_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.28.post_attention_layernorm.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.28.self_attn.q_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.28.self_attn.k_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.28.self_attn.v_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.28.self_attn.o_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.29.input_layernorm.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.29.mlp.up_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.29.mlp.down_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.29.mlp.gate_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.29.post_attention_layernorm.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.29.self_attn.q_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.29.self_attn.k_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.29.self_attn.v_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.29.self_attn.o_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.30.input_layernorm.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.30.mlp.up_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.30.mlp.down_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.30.mlp.gate_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.30.post_attention_layernorm.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.30.self_attn.q_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.30.self_attn.k_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.30.self_attn.v_proj.weight": "pytorch_model-00002-of-00005.safetensors", "model.layers.30.self_attn.o_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.31.input_layernorm.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.31.mlp.up_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.31.mlp.down_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.31.mlp.gate_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.31.post_attention_layernorm.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.31.self_attn.q_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.31.self_attn.k_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.31.self_attn.v_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.31.self_attn.o_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.32.input_layernorm.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.32.mlp.up_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.32.mlp.down_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.32.mlp.gate_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.32.post_attention_layernorm.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.32.self_attn.q_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.32.self_attn.k_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.32.self_attn.v_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.32.self_attn.o_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.33.input_layernorm.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.33.mlp.up_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.33.mlp.down_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.33.mlp.gate_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.33.post_attention_layernorm.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.33.self_attn.q_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.33.self_attn.k_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.33.self_attn.v_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.33.self_attn.o_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.34.input_layernorm.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.34.mlp.up_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.34.mlp.down_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.34.mlp.gate_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.34.post_attention_layernorm.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.34.self_attn.q_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.34.self_attn.k_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.34.self_attn.v_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.34.self_attn.o_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.35.input_layernorm.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.35.mlp.up_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.35.mlp.down_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.35.mlp.gate_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.35.post_attention_layernorm.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.35.self_attn.q_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.35.self_attn.k_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.35.self_attn.v_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.35.self_attn.o_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.36.input_layernorm.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.36.mlp.up_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.36.mlp.down_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.36.mlp.gate_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.36.post_attention_layernorm.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.36.self_attn.q_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.36.self_attn.k_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.36.self_attn.v_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.36.self_attn.o_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.37.input_layernorm.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.37.mlp.up_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.37.mlp.down_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.37.mlp.gate_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.37.post_attention_layernorm.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.37.self_attn.q_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.37.self_attn.k_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.37.self_attn.v_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.37.self_attn.o_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.38.input_layernorm.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.38.mlp.up_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.38.mlp.down_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.38.mlp.gate_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.38.post_attention_layernorm.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.38.self_attn.q_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.38.self_attn.k_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.38.self_attn.v_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.38.self_attn.o_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.39.input_layernorm.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.39.mlp.up_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.39.mlp.down_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.39.mlp.gate_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.39.post_attention_layernorm.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.39.self_attn.q_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.39.self_attn.k_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.39.self_attn.v_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.39.self_attn.o_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.40.input_layernorm.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.40.mlp.up_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.40.mlp.down_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.40.mlp.gate_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.40.post_attention_layernorm.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.40.self_attn.q_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.40.self_attn.k_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.40.self_attn.v_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.40.self_attn.o_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.41.input_layernorm.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.41.mlp.up_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.41.mlp.down_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.41.mlp.gate_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.41.post_attention_layernorm.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.41.self_attn.q_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.41.self_attn.k_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.41.self_attn.v_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.41.self_attn.o_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.42.input_layernorm.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.42.mlp.up_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.42.mlp.down_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.42.mlp.gate_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.42.post_attention_layernorm.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.42.self_attn.q_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.42.self_attn.k_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.42.self_attn.v_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.42.self_attn.o_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.43.input_layernorm.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.43.mlp.up_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.43.mlp.down_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.43.mlp.gate_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.43.post_attention_layernorm.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.43.self_attn.q_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.43.self_attn.k_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.43.self_attn.v_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.43.self_attn.o_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.44.input_layernorm.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.44.mlp.up_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.44.mlp.down_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.44.mlp.gate_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.44.post_attention_layernorm.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.44.self_attn.q_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.44.self_attn.k_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.44.self_attn.v_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.44.self_attn.o_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.45.input_layernorm.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.45.mlp.up_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.45.mlp.down_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.45.mlp.gate_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.45.post_attention_layernorm.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.45.self_attn.q_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.45.self_attn.k_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.45.self_attn.v_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.45.self_attn.o_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.46.input_layernorm.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.46.mlp.up_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.46.mlp.down_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.46.mlp.gate_proj.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.46.post_attention_layernorm.weight": "pytorch_model-00003-of-00005.safetensors", "model.layers.46.self_attn.q_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.46.self_attn.k_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.46.self_attn.v_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.46.self_attn.o_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.47.input_layernorm.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.47.mlp.up_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.47.mlp.down_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.47.mlp.gate_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.47.post_attention_layernorm.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.47.self_attn.q_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.47.self_attn.k_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.47.self_attn.v_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.47.self_attn.o_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.48.input_layernorm.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.48.mlp.up_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.48.mlp.down_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.48.mlp.gate_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.48.post_attention_layernorm.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.48.self_attn.q_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.48.self_attn.k_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.48.self_attn.v_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.48.self_attn.o_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.49.input_layernorm.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.49.mlp.up_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.49.mlp.down_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.49.mlp.gate_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.49.post_attention_layernorm.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.49.self_attn.q_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.49.self_attn.k_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.49.self_attn.v_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.49.self_attn.o_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.50.input_layernorm.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.50.mlp.up_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.50.mlp.down_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.50.mlp.gate_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.50.post_attention_layernorm.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.50.self_attn.q_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.50.self_attn.k_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.50.self_attn.v_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.50.self_attn.o_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.51.input_layernorm.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.51.mlp.up_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.51.mlp.down_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.51.mlp.gate_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.51.post_attention_layernorm.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.51.self_attn.q_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.51.self_attn.k_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.51.self_attn.v_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.51.self_attn.o_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.52.input_layernorm.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.52.mlp.up_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.52.mlp.down_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.52.mlp.gate_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.52.post_attention_layernorm.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.52.self_attn.q_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.52.self_attn.k_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.52.self_attn.v_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.52.self_attn.o_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.53.input_layernorm.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.53.mlp.up_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.53.mlp.down_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.53.mlp.gate_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.53.post_attention_layernorm.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.53.self_attn.q_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.53.self_attn.k_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.53.self_attn.v_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.53.self_attn.o_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.54.input_layernorm.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.54.mlp.up_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.54.mlp.down_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.54.mlp.gate_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.54.post_attention_layernorm.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.54.self_attn.q_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.54.self_attn.k_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.54.self_attn.v_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.54.self_attn.o_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.55.input_layernorm.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.55.mlp.up_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.55.mlp.down_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.55.mlp.gate_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.55.post_attention_layernorm.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.55.self_attn.q_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.55.self_attn.k_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.55.self_attn.v_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.55.self_attn.o_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.56.input_layernorm.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.56.mlp.up_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.56.mlp.down_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.56.mlp.gate_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.56.post_attention_layernorm.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.56.self_attn.q_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.56.self_attn.k_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.56.self_attn.v_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.56.self_attn.o_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.57.input_layernorm.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.57.mlp.up_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.57.mlp.down_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.57.mlp.gate_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.57.post_attention_layernorm.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.57.self_attn.q_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.57.self_attn.k_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.57.self_attn.v_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.57.self_attn.o_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.58.input_layernorm.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.58.mlp.up_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.58.mlp.down_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.58.mlp.gate_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.58.post_attention_layernorm.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.58.self_attn.q_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.58.self_attn.k_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.58.self_attn.v_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.58.self_attn.o_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.59.input_layernorm.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.59.mlp.up_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.59.mlp.down_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.59.mlp.gate_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.59.post_attention_layernorm.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.59.self_attn.q_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.59.self_attn.k_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.59.self_attn.v_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.59.self_attn.o_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.60.input_layernorm.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.60.mlp.up_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.60.mlp.down_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.60.mlp.gate_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.60.post_attention_layernorm.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.60.self_attn.q_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.60.self_attn.k_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.60.self_attn.v_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.60.self_attn.o_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.61.input_layernorm.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.61.mlp.up_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.61.mlp.down_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.61.mlp.gate_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.61.post_attention_layernorm.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.61.self_attn.q_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.61.self_attn.k_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.61.self_attn.v_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.layers.61.self_attn.o_proj.weight": "pytorch_model-00004-of-00005.safetensors", "model.norm.weight": "pytorch_model-00004-of-00005.safetensors", "lm_head.weight": "pytorch_model-00005-of-00005.safetensors"}}
special_tokens_map.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<s>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "</s>",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "unk_token": {
17
+ "content": "<unk>",
18
+ "lstrip": false,
19
+ "normalized": false,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ }
23
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9e556afd44213b6bd1be2b850ebbbd98f5481437a8021afaf58ee7fb1818d347
3
+ size 499723
tokenizer_config.json ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "__type": "AddedToken",
4
+ "content": "<s>",
5
+ "lstrip": false,
6
+ "normalized": false,
7
+ "rstrip": false,
8
+ "single_word": false
9
+ },
10
+ "clean_up_tokenization_spaces": false,
11
+ "eos_token": {
12
+ "__type": "AddedToken",
13
+ "content": "</s>",
14
+ "lstrip": false,
15
+ "normalized": false,
16
+ "rstrip": false,
17
+ "single_word": false
18
+ },
19
+ "legacy": false,
20
+ "model_max_length": 1000000000000000019884624838656,
21
+ "pad_token": null,
22
+ "padding_side": "right",
23
+ "sp_model_kwargs": {},
24
+ "tokenizer_class": "LlamaTokenizer",
25
+ "unk_token": {
26
+ "__type": "AddedToken",
27
+ "content": "<unk>",
28
+ "lstrip": false,
29
+ "normalized": false,
30
+ "rstrip": false,
31
+ "single_word": false
32
+ },
33
+ "use_default_system_prompt": true
34
+ }