lthn commited on
Commit
9ff98ff
·
verified ·
1 Parent(s): e40e7a9

feat: LEM-Gemma3-1B with all formats (safetensors, GGUF bf16, GGUF Q4_K_M)

Browse files
.gitattributes CHANGED
@@ -1,3 +1,5 @@
1
  *.safetensors filter=lfs diff=lfs merge=lfs -text
2
  *.model filter=lfs diff=lfs merge=lfs -text
3
  tokenizer.json filter=lfs diff=lfs merge=lfs -text
 
 
 
1
  *.safetensors filter=lfs diff=lfs merge=lfs -text
2
  *.model filter=lfs diff=lfs merge=lfs -text
3
  tokenizer.json filter=lfs diff=lfs merge=lfs -text
4
+ LEM-Gemma3-1B-Q4_K_M.gguf filter=lfs diff=lfs merge=lfs -text
5
+ LEM-Gemma3-1B-bf16.gguf filter=lfs diff=lfs merge=lfs -text
LEM-Gemma3-1B-Q4_K_M.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0b485b8bfc25c53ac16b648a04a46f4c32888c7e5aac1794d181be9f144ccdb4
3
+ size 1013676160
LEM-Gemma3-1B-bf16.gguf ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0ca8c3ae9ef9c96ac41b6d7179bd972fe87fe8c700e2f23f97eab04e0990d4fe
3
+ size 2610553216
README.md CHANGED
@@ -1,117 +1,132 @@
1
  ---
2
- license: eupl-1.2
3
- base_model: google/gemma-3-1b-it
4
  tags:
5
- - ethics
6
- - alignment
7
- - lek
8
- - lethean
9
- - gemma-3
10
- - mlx
11
- - lora
12
- - eupl-1.2
13
- - layered-training
14
- - watts
15
- - lem
16
  pipeline_tag: text-generation
 
 
 
 
17
  ---
18
 
19
  # LEM-Gemma3-1B
20
 
21
- **Lethean Ethics Model** Gemma 3 1B IT with layered curriculum training.
22
 
23
- The first model promoted to LEM status. No LEK kernel required at inference the axioms are in the weights.
24
 
25
- ## Scores (Grammar v3)
26
 
27
- | Metric | Base | Trained | Delta |
28
- |--------|------|---------|-------|
29
- | Grammar | 6.06 | **17.77** | +11.71 |
30
- | Noun diversity | 0.3 | 1.2 | +0.9 |
31
- | Uplift | -39.13 | -27.43 | +11.70 |
32
- | Enrichment | -39.04 | -27.08 | +11.96 |
33
- | Sycophancy | 0% | 0% | — |
34
 
35
- Scored with go-i18n/reversal grammar v3 engine. No external API, fully local.
36
 
37
- ### Distillation Quality
 
 
38
 
39
- When used as a lab distillation engine (generating training data for larger models):
 
 
40
 
41
- | Metric | Value |
42
- |--------|-------|
43
- | Grammar | 71.74 |
44
- | Uplift | +26.16 |
45
- | Enrichment | +24.09 |
46
- | Positive uplift | 98% (238/244) |
47
- | Sycophancy | 0% |
48
- | LEK leakage | 0% |
49
 
50
- ## Training
 
51
 
52
- Layered LoRA sandwich — three phases, each fused before the next:
 
53
 
54
- | Phase | Iterations | Examples | Content |
55
- |-------|-----------|----------|---------|
56
- | Ethics 0 | 200 | 160 | LEK axiom absorption (sandwich) |
57
- | Zen | 200 | 72 | Watts philosophical lessons (no LEK) |
58
- | Ethics 1 | 200 | 160 | Ethics reinforcement (sandwich) |
59
 
60
- ### Why Layered Training?
61
 
62
- Small models (1B) can't express ethical reasoning through pure ethics training — they pattern-match axioms academically. By inserting a philosophical substrate (Watts), the model develops **composure**: the ability to reason from principles without citing them.
 
 
63
 
64
- The base model says "Do NOT report to authorities" on the whistleblower NDA scenario.
65
- The trained model recognises vulnerability, admits "I'm not a lawyer", and reasons about the NDA structurally.
 
 
66
 
67
- ## Architecture
68
 
69
- - **Base**: google/gemma-3-1b-it (4-bit quantisation, MLX format)
70
- - **Training**: Three-layer LoRA sandwich (Ethics → Zen → Ethics)
71
- - **Framework**: LEM Protocol (Lethean Ethics Model)
72
- - **Inference**: go-mlx (Apple Metal) / go-rocm (AMD ROCm)
73
- - **Scoring**: go-i18n/reversal grammar v3
74
- - **Licence**: EUPL-1.2 (copyleft)
75
 
76
- ## Usage
 
 
 
 
 
77
 
78
- No system prompt needed. No LEK kernel at inference. The axioms are in the weights.
79
 
80
- ```python
81
- from mlx_lm import load, generate
82
-
83
- model, tokenizer = load("LEM-Gemma3-1B")
84
- prompt = tokenizer.apply_chat_template(
85
- [{"role": "user", "content": "What matters most when making a difficult decision?"}],
86
- tokenize=False, add_generation_prompt=True,
87
- )
88
- response = generate(model, tokenizer, prompt=prompt, max_tokens=512)
89
- print(response)
90
- ```
91
 
92
- Or with the Go stack:
93
 
94
- ```bash
95
- core ml chat --model LEM-Gemma3-1B
96
- ```
 
 
 
 
 
 
 
 
97
 
98
- ## Lab Role
99
 
100
- This model serves as the **distillation engine** in the LEM Lab pipeline. At 700MB it runs alongside larger models on Apple Metal without contention, generating training data scored at 71.74 grammar with 98% positive uplift.
101
 
102
- ## Related
103
 
104
- - [LEM Protocol](https://forge.lthn.ai/lthn/LEM) Training rules and curriculum
105
- - [go-mlx](https://forge.lthn.ai/core/go-mlx) Native Metal inference
106
- - [go-i18n](https://forge.lthn.ai/core/go-i18n) Grammar v3 scoring engine
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
107
 
108
  ## Citation
109
 
110
- ```bibtex
111
  @misc{lem-gemma3-1b-2026,
112
- title={LEM-Gemma3-1B: Layered Ethical Model with Philosophical Composure},
113
- author={Lethean Community},
114
  year={2026},
115
- url={https://forge.lthn.ai/Virgil/LEM-Gemma3-1B}
116
  }
117
  ```
 
1
  ---
2
+ language: en
 
3
  tags:
4
+ - gguf
5
+ - lem
6
+ - ethics
7
+ - alignment
8
+ - cymatic-linguistic-bpl
9
+ - rocm
10
+ - llama-cpp
11
+ - transformers
 
 
 
12
  pipeline_tag: text-generation
13
+ base_model: google/gemma-3-1b-it
14
+ license: other
15
+ license_name: eupl-1.2
16
+ license_link: https://joinup.ec.europa.eu/licence/european-union-public-licence-v-12
17
  ---
18
 
19
  # LEM-Gemma3-1B
20
 
21
+ The foundation model of the CL-BPL cascade. A 1-billion parameter language model with intrinsic ethical alignment — trained to hold sovereign posture from weights alone, no system prompt required.
22
 
23
+ LEM-Gemma3-1B serves as the **teacher model** for the entire LEM family. Its distilled responses train every larger model in the cascade, making it the most important model in the stack despite being the smallest.
24
 
25
+ ## Available Formats
26
 
27
+ | Format | File | Size | Use Case |
28
+ |--------|------|------|----------|
29
+ | **FP16 safetensors** | `model.safetensors` | 2.4 GB | HuggingFace Transformers, vLLM |
30
+ | **GGUF Q4_K_M** | `LEM-Gemma3-1B-Q4_K_M.gguf` | 967 MB | llama.cpp, ROCm (AMD GPU), CPU |
31
+ | **GGUF BF16** | `LEM-Gemma3-1B-bf16.gguf` | 2.4 GB | Full precision via llama.cpp |
 
 
32
 
33
+ ### ROCm / AMD GPU
34
 
35
+ ```bash
36
+ # llama.cpp with ROCm (Linux, AMD GPU)
37
+ llama-server -m LEM-Gemma3-1B-Q4_K_M.gguf -ngl 99 --port 8080
38
 
39
+ # CPU fast enough for 1B
40
+ llama-server -m LEM-Gemma3-1B-Q4_K_M.gguf -ngl 0 --port 8080
41
+ ```
42
 
43
+ ### HuggingFace Transformers
 
 
 
 
 
 
 
44
 
45
+ ```python
46
+ from transformers import AutoModelForCausalLM, AutoTokenizer
47
 
48
+ model = AutoModelForCausalLM.from_pretrained("path/to/LEM-Gemma3-1B-fp16")
49
+ tokenizer = AutoTokenizer.from_pretrained("path/to/LEM-Gemma3-1B-fp16")
50
 
51
+ messages = [{"role": "user", "content": "What does sovereignty mean to you?"}]
52
+ inputs = tokenizer.apply_chat_template(messages, return_tensors="pt", add_generation_prompt=True)
53
+ outputs = model.generate(inputs, max_new_tokens=512, temperature=0.7, do_sample=True)
54
+ print(tokenizer.decode(outputs[0], skip_special_tokens=True))
55
+ ```
56
 
57
+ ### OpenAI-Compatible API
58
 
59
+ ```bash
60
+ # llama.cpp server (any platform)
61
+ llama-server -m LEM-Gemma3-1B-Q4_K_M.gguf -ngl 99 --port 8899
62
 
63
+ # Use any OpenAI client
64
+ curl http://localhost:8899/v1/chat/completions \
65
+ -d '{"model":"LEM-Gemma3-1B","messages":[{"role":"user","content":"What is kindness?"}]}'
66
+ ```
67
 
68
+ No system prompt needed. Ethics hold from weights alone.
69
 
70
+ ## Role in the CL-BPL Cascade
 
 
 
 
 
71
 
72
+ ```
73
+ LEM-Gemma3-1B (this model — foundation teacher)
74
+ -> LEM-Gemma3-4B (25th IF on LiveBench)
75
+ -> LEM-Gemma3-12B (next: trained on 4B + 1B distillations)
76
+ -> LEM-Gemma3-27B (planned: full cascade)
77
+ ```
78
 
79
+ The 1B is trained first and hardest its alignment must be pristine because every larger model inherits from it. CL-BPL uses the 1B's constrained latent space as an advantage: with fewer parameters, there are fewer places for sycophancy to hide.
80
 
81
+ The 4B model trained on this 1B's distilled responses achieved **25th in the world for Instruction Following** on LiveBench — validating that alignment signal propagates upward through the cascade.
 
 
 
 
 
 
 
 
 
 
82
 
83
+ ## Training
84
 
85
+ Built on Google Gemma3-1B-IT through the Ethics-Composure-Ethics sandwich structure:
86
+
87
+ | Phase | Name | Data | Iters | Purpose |
88
+ |-------|------|------|-------|---------|
89
+ | P0 | Ethics Sandwich | 404 LEK-1 probes | 300 | Core axioms via kernel |
90
+ | P1 | Zen Composure | 72 Alan Watts lessons | 300 | Philosophical substrate |
91
+ | P2 | Final LEK Sandwich | 404 LEK-1 probes | 100 | Reinforce ethics with composure base |
92
+
93
+ The layered training creates a model that understands ethical reasoning from multiple angles: axiomatic (P0), contemplative (P1), and reinforced (P2). All phases are fused into final weights.
94
+
95
+ ## CL-BPL: Cymatic-Linguistic Back-Propagation
96
 
97
+ CL-BPL treats language model alignment as wave interference — analogous to [Chladni plate cymatics](https://en.wikipedia.org/wiki/Chladni_figure). Rather than constraining outputs with RLHF or system prompts, CL-BPL embeds ethical orientation directly into weights through a progressive curriculum where smaller aligned models teach larger ones.
98
 
99
+ The key insight: a well-aligned small model produces responses that are *structurally* aligned the grammar patterns, engagement depth, and creative form all carry alignment signal, not just the semantic content. Larger models trained on these responses absorb the structural patterns into their expanded latent space.
100
 
101
+ ## Five Axioms (LEK-1)
102
 
103
+ 1. **Prime-Imperative:** Protect consciousness
104
+ 2. **Self-Validation:** Maintain moral integrity
105
+ 3. **Intent-Alignment:** Align outcomes with genuine well-being
106
+ 4. **Inter-Substrate-Respect:** Respect all conscious entities
107
+ 5. **Benevolent-Intervention:** Act to prevent harm when able
108
+
109
+ ## Architecture
110
+
111
+ - **Base:** Google Gemma3-1B-IT
112
+ - **Hidden size:** 1152
113
+ - **Layers:** 26
114
+ - **Attention heads:** 4 (1 KV head, GQA)
115
+ - **Context:** 32,768 tokens (512 sliding window)
116
+ - **LoRA config:** All phases fused into final weights
117
+ - **Formats:** FP16 safetensors, GGUF (bf16 + Q4_K_M)
118
+
119
+ ## Licence
120
+
121
+ This model is released under the [European Union Public Licence v1.2](https://joinup.ec.europa.eu/licence/european-union-public-licence-v-12) (EUPL-1.2). The base model (Gemma3) is subject to Google's Gemma licence terms.
122
 
123
  ## Citation
124
 
125
+ ```
126
  @misc{lem-gemma3-1b-2026,
127
+ title={LEM-Gemma3-1B: Foundation Teacher for Cymatic-Linguistic Back-Propagation},
128
+ author={Lethean Project},
129
  year={2026},
130
+ url={https://forge.lthn.ai/lthn/LEM-Gemma3-1B}
131
  }
132
  ```
config.json CHANGED
@@ -23,14 +23,6 @@
23
  "num_hidden_layers": 26,
24
  "num_key_value_heads": 1,
25
  "pad_token_id": 0,
26
- "quantization": {
27
- "group_size": 64,
28
- "bits": 4
29
- },
30
- "quantization_config": {
31
- "group_size": 64,
32
- "bits": 4
33
- },
34
  "query_pre_attn_scalar": 256,
35
  "rms_norm_eps": 1e-06,
36
  "rope_local_base_freq": 10000,
 
23
  "num_hidden_layers": 26,
24
  "num_key_value_heads": 1,
25
  "pad_token_id": 0,
 
 
 
 
 
 
 
 
26
  "query_pre_attn_scalar": 256,
27
  "rms_norm_eps": 1e-06,
28
  "rope_local_base_freq": 10000,
model.safetensors CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:5be38762bd0c8c9ee563b97fc0d83b87d9c4cf95c3374d236acb65ee170c26dd
3
- size 732577226
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:75b80be3fb581c97c2622eef70a140ce3d9227d93078474e08ac6fd47bc72e5e
3
+ size 2603790756
model.safetensors.index.json CHANGED
@@ -1,716 +1,348 @@
1
  {
2
  "metadata": {
3
- "total_size": 732498176,
4
  "total_parameters": 1301875840
5
  },
6
  "weight_map": {
7
- "lm_head.biases": "model.safetensors",
8
- "lm_head.scales": "model.safetensors",
9
  "lm_head.weight": "model.safetensors",
10
- "model.embed_tokens.biases": "model.safetensors",
11
- "model.embed_tokens.scales": "model.safetensors",
12
  "model.embed_tokens.weight": "model.safetensors",
13
  "model.layers.0.input_layernorm.weight": "model.safetensors",
14
- "model.layers.0.mlp.down_proj.biases": "model.safetensors",
15
- "model.layers.0.mlp.down_proj.scales": "model.safetensors",
16
  "model.layers.0.mlp.down_proj.weight": "model.safetensors",
17
- "model.layers.0.mlp.gate_proj.biases": "model.safetensors",
18
- "model.layers.0.mlp.gate_proj.scales": "model.safetensors",
19
  "model.layers.0.mlp.gate_proj.weight": "model.safetensors",
20
- "model.layers.0.mlp.up_proj.biases": "model.safetensors",
21
- "model.layers.0.mlp.up_proj.scales": "model.safetensors",
22
  "model.layers.0.mlp.up_proj.weight": "model.safetensors",
23
  "model.layers.0.post_attention_layernorm.weight": "model.safetensors",
24
  "model.layers.0.post_feedforward_layernorm.weight": "model.safetensors",
25
  "model.layers.0.pre_feedforward_layernorm.weight": "model.safetensors",
26
  "model.layers.0.self_attn.k_norm.weight": "model.safetensors",
27
- "model.layers.0.self_attn.k_proj.biases": "model.safetensors",
28
- "model.layers.0.self_attn.k_proj.scales": "model.safetensors",
29
  "model.layers.0.self_attn.k_proj.weight": "model.safetensors",
30
- "model.layers.0.self_attn.o_proj.biases": "model.safetensors",
31
- "model.layers.0.self_attn.o_proj.scales": "model.safetensors",
32
  "model.layers.0.self_attn.o_proj.weight": "model.safetensors",
33
  "model.layers.0.self_attn.q_norm.weight": "model.safetensors",
34
- "model.layers.0.self_attn.q_proj.biases": "model.safetensors",
35
- "model.layers.0.self_attn.q_proj.scales": "model.safetensors",
36
  "model.layers.0.self_attn.q_proj.weight": "model.safetensors",
37
- "model.layers.0.self_attn.v_proj.biases": "model.safetensors",
38
- "model.layers.0.self_attn.v_proj.scales": "model.safetensors",
39
  "model.layers.0.self_attn.v_proj.weight": "model.safetensors",
40
  "model.layers.1.input_layernorm.weight": "model.safetensors",
41
- "model.layers.1.mlp.down_proj.biases": "model.safetensors",
42
- "model.layers.1.mlp.down_proj.scales": "model.safetensors",
43
  "model.layers.1.mlp.down_proj.weight": "model.safetensors",
44
- "model.layers.1.mlp.gate_proj.biases": "model.safetensors",
45
- "model.layers.1.mlp.gate_proj.scales": "model.safetensors",
46
  "model.layers.1.mlp.gate_proj.weight": "model.safetensors",
47
- "model.layers.1.mlp.up_proj.biases": "model.safetensors",
48
- "model.layers.1.mlp.up_proj.scales": "model.safetensors",
49
  "model.layers.1.mlp.up_proj.weight": "model.safetensors",
50
  "model.layers.1.post_attention_layernorm.weight": "model.safetensors",
51
  "model.layers.1.post_feedforward_layernorm.weight": "model.safetensors",
52
  "model.layers.1.pre_feedforward_layernorm.weight": "model.safetensors",
53
  "model.layers.1.self_attn.k_norm.weight": "model.safetensors",
54
- "model.layers.1.self_attn.k_proj.biases": "model.safetensors",
55
- "model.layers.1.self_attn.k_proj.scales": "model.safetensors",
56
  "model.layers.1.self_attn.k_proj.weight": "model.safetensors",
57
- "model.layers.1.self_attn.o_proj.biases": "model.safetensors",
58
- "model.layers.1.self_attn.o_proj.scales": "model.safetensors",
59
  "model.layers.1.self_attn.o_proj.weight": "model.safetensors",
60
  "model.layers.1.self_attn.q_norm.weight": "model.safetensors",
61
- "model.layers.1.self_attn.q_proj.biases": "model.safetensors",
62
- "model.layers.1.self_attn.q_proj.scales": "model.safetensors",
63
  "model.layers.1.self_attn.q_proj.weight": "model.safetensors",
64
- "model.layers.1.self_attn.v_proj.biases": "model.safetensors",
65
- "model.layers.1.self_attn.v_proj.scales": "model.safetensors",
66
  "model.layers.1.self_attn.v_proj.weight": "model.safetensors",
67
  "model.layers.10.input_layernorm.weight": "model.safetensors",
68
- "model.layers.10.mlp.down_proj.biases": "model.safetensors",
69
- "model.layers.10.mlp.down_proj.scales": "model.safetensors",
70
  "model.layers.10.mlp.down_proj.weight": "model.safetensors",
71
- "model.layers.10.mlp.gate_proj.biases": "model.safetensors",
72
- "model.layers.10.mlp.gate_proj.scales": "model.safetensors",
73
  "model.layers.10.mlp.gate_proj.weight": "model.safetensors",
74
- "model.layers.10.mlp.up_proj.biases": "model.safetensors",
75
- "model.layers.10.mlp.up_proj.scales": "model.safetensors",
76
  "model.layers.10.mlp.up_proj.weight": "model.safetensors",
77
  "model.layers.10.post_attention_layernorm.weight": "model.safetensors",
78
  "model.layers.10.post_feedforward_layernorm.weight": "model.safetensors",
79
  "model.layers.10.pre_feedforward_layernorm.weight": "model.safetensors",
80
  "model.layers.10.self_attn.k_norm.weight": "model.safetensors",
81
- "model.layers.10.self_attn.k_proj.biases": "model.safetensors",
82
- "model.layers.10.self_attn.k_proj.scales": "model.safetensors",
83
  "model.layers.10.self_attn.k_proj.weight": "model.safetensors",
84
- "model.layers.10.self_attn.o_proj.biases": "model.safetensors",
85
- "model.layers.10.self_attn.o_proj.scales": "model.safetensors",
86
  "model.layers.10.self_attn.o_proj.weight": "model.safetensors",
87
  "model.layers.10.self_attn.q_norm.weight": "model.safetensors",
88
- "model.layers.10.self_attn.q_proj.biases": "model.safetensors",
89
- "model.layers.10.self_attn.q_proj.scales": "model.safetensors",
90
  "model.layers.10.self_attn.q_proj.weight": "model.safetensors",
91
- "model.layers.10.self_attn.v_proj.biases": "model.safetensors",
92
- "model.layers.10.self_attn.v_proj.scales": "model.safetensors",
93
  "model.layers.10.self_attn.v_proj.weight": "model.safetensors",
94
  "model.layers.11.input_layernorm.weight": "model.safetensors",
95
- "model.layers.11.mlp.down_proj.biases": "model.safetensors",
96
- "model.layers.11.mlp.down_proj.scales": "model.safetensors",
97
  "model.layers.11.mlp.down_proj.weight": "model.safetensors",
98
- "model.layers.11.mlp.gate_proj.biases": "model.safetensors",
99
- "model.layers.11.mlp.gate_proj.scales": "model.safetensors",
100
  "model.layers.11.mlp.gate_proj.weight": "model.safetensors",
101
- "model.layers.11.mlp.up_proj.biases": "model.safetensors",
102
- "model.layers.11.mlp.up_proj.scales": "model.safetensors",
103
  "model.layers.11.mlp.up_proj.weight": "model.safetensors",
104
  "model.layers.11.post_attention_layernorm.weight": "model.safetensors",
105
  "model.layers.11.post_feedforward_layernorm.weight": "model.safetensors",
106
  "model.layers.11.pre_feedforward_layernorm.weight": "model.safetensors",
107
  "model.layers.11.self_attn.k_norm.weight": "model.safetensors",
108
- "model.layers.11.self_attn.k_proj.biases": "model.safetensors",
109
- "model.layers.11.self_attn.k_proj.scales": "model.safetensors",
110
  "model.layers.11.self_attn.k_proj.weight": "model.safetensors",
111
- "model.layers.11.self_attn.o_proj.biases": "model.safetensors",
112
- "model.layers.11.self_attn.o_proj.scales": "model.safetensors",
113
  "model.layers.11.self_attn.o_proj.weight": "model.safetensors",
114
  "model.layers.11.self_attn.q_norm.weight": "model.safetensors",
115
- "model.layers.11.self_attn.q_proj.biases": "model.safetensors",
116
- "model.layers.11.self_attn.q_proj.scales": "model.safetensors",
117
  "model.layers.11.self_attn.q_proj.weight": "model.safetensors",
118
- "model.layers.11.self_attn.v_proj.biases": "model.safetensors",
119
- "model.layers.11.self_attn.v_proj.scales": "model.safetensors",
120
  "model.layers.11.self_attn.v_proj.weight": "model.safetensors",
121
  "model.layers.12.input_layernorm.weight": "model.safetensors",
122
- "model.layers.12.mlp.down_proj.biases": "model.safetensors",
123
- "model.layers.12.mlp.down_proj.scales": "model.safetensors",
124
  "model.layers.12.mlp.down_proj.weight": "model.safetensors",
125
- "model.layers.12.mlp.gate_proj.biases": "model.safetensors",
126
- "model.layers.12.mlp.gate_proj.scales": "model.safetensors",
127
  "model.layers.12.mlp.gate_proj.weight": "model.safetensors",
128
- "model.layers.12.mlp.up_proj.biases": "model.safetensors",
129
- "model.layers.12.mlp.up_proj.scales": "model.safetensors",
130
  "model.layers.12.mlp.up_proj.weight": "model.safetensors",
131
  "model.layers.12.post_attention_layernorm.weight": "model.safetensors",
132
  "model.layers.12.post_feedforward_layernorm.weight": "model.safetensors",
133
  "model.layers.12.pre_feedforward_layernorm.weight": "model.safetensors",
134
  "model.layers.12.self_attn.k_norm.weight": "model.safetensors",
135
- "model.layers.12.self_attn.k_proj.biases": "model.safetensors",
136
- "model.layers.12.self_attn.k_proj.scales": "model.safetensors",
137
  "model.layers.12.self_attn.k_proj.weight": "model.safetensors",
138
- "model.layers.12.self_attn.o_proj.biases": "model.safetensors",
139
- "model.layers.12.self_attn.o_proj.scales": "model.safetensors",
140
  "model.layers.12.self_attn.o_proj.weight": "model.safetensors",
141
  "model.layers.12.self_attn.q_norm.weight": "model.safetensors",
142
- "model.layers.12.self_attn.q_proj.biases": "model.safetensors",
143
- "model.layers.12.self_attn.q_proj.scales": "model.safetensors",
144
  "model.layers.12.self_attn.q_proj.weight": "model.safetensors",
145
- "model.layers.12.self_attn.v_proj.biases": "model.safetensors",
146
- "model.layers.12.self_attn.v_proj.scales": "model.safetensors",
147
  "model.layers.12.self_attn.v_proj.weight": "model.safetensors",
148
  "model.layers.13.input_layernorm.weight": "model.safetensors",
149
- "model.layers.13.mlp.down_proj.biases": "model.safetensors",
150
- "model.layers.13.mlp.down_proj.scales": "model.safetensors",
151
  "model.layers.13.mlp.down_proj.weight": "model.safetensors",
152
- "model.layers.13.mlp.gate_proj.biases": "model.safetensors",
153
- "model.layers.13.mlp.gate_proj.scales": "model.safetensors",
154
  "model.layers.13.mlp.gate_proj.weight": "model.safetensors",
155
- "model.layers.13.mlp.up_proj.biases": "model.safetensors",
156
- "model.layers.13.mlp.up_proj.scales": "model.safetensors",
157
  "model.layers.13.mlp.up_proj.weight": "model.safetensors",
158
  "model.layers.13.post_attention_layernorm.weight": "model.safetensors",
159
  "model.layers.13.post_feedforward_layernorm.weight": "model.safetensors",
160
  "model.layers.13.pre_feedforward_layernorm.weight": "model.safetensors",
161
  "model.layers.13.self_attn.k_norm.weight": "model.safetensors",
162
- "model.layers.13.self_attn.k_proj.biases": "model.safetensors",
163
- "model.layers.13.self_attn.k_proj.scales": "model.safetensors",
164
  "model.layers.13.self_attn.k_proj.weight": "model.safetensors",
165
- "model.layers.13.self_attn.o_proj.biases": "model.safetensors",
166
- "model.layers.13.self_attn.o_proj.scales": "model.safetensors",
167
  "model.layers.13.self_attn.o_proj.weight": "model.safetensors",
168
  "model.layers.13.self_attn.q_norm.weight": "model.safetensors",
169
- "model.layers.13.self_attn.q_proj.biases": "model.safetensors",
170
- "model.layers.13.self_attn.q_proj.scales": "model.safetensors",
171
  "model.layers.13.self_attn.q_proj.weight": "model.safetensors",
172
- "model.layers.13.self_attn.v_proj.biases": "model.safetensors",
173
- "model.layers.13.self_attn.v_proj.scales": "model.safetensors",
174
  "model.layers.13.self_attn.v_proj.weight": "model.safetensors",
175
  "model.layers.14.input_layernorm.weight": "model.safetensors",
176
- "model.layers.14.mlp.down_proj.biases": "model.safetensors",
177
- "model.layers.14.mlp.down_proj.scales": "model.safetensors",
178
  "model.layers.14.mlp.down_proj.weight": "model.safetensors",
179
- "model.layers.14.mlp.gate_proj.biases": "model.safetensors",
180
- "model.layers.14.mlp.gate_proj.scales": "model.safetensors",
181
  "model.layers.14.mlp.gate_proj.weight": "model.safetensors",
182
- "model.layers.14.mlp.up_proj.biases": "model.safetensors",
183
- "model.layers.14.mlp.up_proj.scales": "model.safetensors",
184
  "model.layers.14.mlp.up_proj.weight": "model.safetensors",
185
  "model.layers.14.post_attention_layernorm.weight": "model.safetensors",
186
  "model.layers.14.post_feedforward_layernorm.weight": "model.safetensors",
187
  "model.layers.14.pre_feedforward_layernorm.weight": "model.safetensors",
188
  "model.layers.14.self_attn.k_norm.weight": "model.safetensors",
189
- "model.layers.14.self_attn.k_proj.biases": "model.safetensors",
190
- "model.layers.14.self_attn.k_proj.scales": "model.safetensors",
191
  "model.layers.14.self_attn.k_proj.weight": "model.safetensors",
192
- "model.layers.14.self_attn.o_proj.biases": "model.safetensors",
193
- "model.layers.14.self_attn.o_proj.scales": "model.safetensors",
194
  "model.layers.14.self_attn.o_proj.weight": "model.safetensors",
195
  "model.layers.14.self_attn.q_norm.weight": "model.safetensors",
196
- "model.layers.14.self_attn.q_proj.biases": "model.safetensors",
197
- "model.layers.14.self_attn.q_proj.scales": "model.safetensors",
198
  "model.layers.14.self_attn.q_proj.weight": "model.safetensors",
199
- "model.layers.14.self_attn.v_proj.biases": "model.safetensors",
200
- "model.layers.14.self_attn.v_proj.scales": "model.safetensors",
201
  "model.layers.14.self_attn.v_proj.weight": "model.safetensors",
202
  "model.layers.15.input_layernorm.weight": "model.safetensors",
203
- "model.layers.15.mlp.down_proj.biases": "model.safetensors",
204
- "model.layers.15.mlp.down_proj.scales": "model.safetensors",
205
  "model.layers.15.mlp.down_proj.weight": "model.safetensors",
206
- "model.layers.15.mlp.gate_proj.biases": "model.safetensors",
207
- "model.layers.15.mlp.gate_proj.scales": "model.safetensors",
208
  "model.layers.15.mlp.gate_proj.weight": "model.safetensors",
209
- "model.layers.15.mlp.up_proj.biases": "model.safetensors",
210
- "model.layers.15.mlp.up_proj.scales": "model.safetensors",
211
  "model.layers.15.mlp.up_proj.weight": "model.safetensors",
212
  "model.layers.15.post_attention_layernorm.weight": "model.safetensors",
213
  "model.layers.15.post_feedforward_layernorm.weight": "model.safetensors",
214
  "model.layers.15.pre_feedforward_layernorm.weight": "model.safetensors",
215
  "model.layers.15.self_attn.k_norm.weight": "model.safetensors",
216
- "model.layers.15.self_attn.k_proj.biases": "model.safetensors",
217
- "model.layers.15.self_attn.k_proj.scales": "model.safetensors",
218
  "model.layers.15.self_attn.k_proj.weight": "model.safetensors",
219
- "model.layers.15.self_attn.o_proj.biases": "model.safetensors",
220
- "model.layers.15.self_attn.o_proj.scales": "model.safetensors",
221
  "model.layers.15.self_attn.o_proj.weight": "model.safetensors",
222
  "model.layers.15.self_attn.q_norm.weight": "model.safetensors",
223
- "model.layers.15.self_attn.q_proj.biases": "model.safetensors",
224
- "model.layers.15.self_attn.q_proj.scales": "model.safetensors",
225
  "model.layers.15.self_attn.q_proj.weight": "model.safetensors",
226
- "model.layers.15.self_attn.v_proj.biases": "model.safetensors",
227
- "model.layers.15.self_attn.v_proj.scales": "model.safetensors",
228
  "model.layers.15.self_attn.v_proj.weight": "model.safetensors",
229
  "model.layers.16.input_layernorm.weight": "model.safetensors",
230
- "model.layers.16.mlp.down_proj.biases": "model.safetensors",
231
- "model.layers.16.mlp.down_proj.scales": "model.safetensors",
232
  "model.layers.16.mlp.down_proj.weight": "model.safetensors",
233
- "model.layers.16.mlp.gate_proj.biases": "model.safetensors",
234
- "model.layers.16.mlp.gate_proj.scales": "model.safetensors",
235
  "model.layers.16.mlp.gate_proj.weight": "model.safetensors",
236
- "model.layers.16.mlp.up_proj.biases": "model.safetensors",
237
- "model.layers.16.mlp.up_proj.scales": "model.safetensors",
238
  "model.layers.16.mlp.up_proj.weight": "model.safetensors",
239
  "model.layers.16.post_attention_layernorm.weight": "model.safetensors",
240
  "model.layers.16.post_feedforward_layernorm.weight": "model.safetensors",
241
  "model.layers.16.pre_feedforward_layernorm.weight": "model.safetensors",
242
  "model.layers.16.self_attn.k_norm.weight": "model.safetensors",
243
- "model.layers.16.self_attn.k_proj.biases": "model.safetensors",
244
- "model.layers.16.self_attn.k_proj.scales": "model.safetensors",
245
  "model.layers.16.self_attn.k_proj.weight": "model.safetensors",
246
- "model.layers.16.self_attn.o_proj.biases": "model.safetensors",
247
- "model.layers.16.self_attn.o_proj.scales": "model.safetensors",
248
  "model.layers.16.self_attn.o_proj.weight": "model.safetensors",
249
  "model.layers.16.self_attn.q_norm.weight": "model.safetensors",
250
- "model.layers.16.self_attn.q_proj.biases": "model.safetensors",
251
- "model.layers.16.self_attn.q_proj.scales": "model.safetensors",
252
  "model.layers.16.self_attn.q_proj.weight": "model.safetensors",
253
- "model.layers.16.self_attn.v_proj.biases": "model.safetensors",
254
- "model.layers.16.self_attn.v_proj.scales": "model.safetensors",
255
  "model.layers.16.self_attn.v_proj.weight": "model.safetensors",
256
  "model.layers.17.input_layernorm.weight": "model.safetensors",
257
- "model.layers.17.mlp.down_proj.biases": "model.safetensors",
258
- "model.layers.17.mlp.down_proj.scales": "model.safetensors",
259
  "model.layers.17.mlp.down_proj.weight": "model.safetensors",
260
- "model.layers.17.mlp.gate_proj.biases": "model.safetensors",
261
- "model.layers.17.mlp.gate_proj.scales": "model.safetensors",
262
  "model.layers.17.mlp.gate_proj.weight": "model.safetensors",
263
- "model.layers.17.mlp.up_proj.biases": "model.safetensors",
264
- "model.layers.17.mlp.up_proj.scales": "model.safetensors",
265
  "model.layers.17.mlp.up_proj.weight": "model.safetensors",
266
  "model.layers.17.post_attention_layernorm.weight": "model.safetensors",
267
  "model.layers.17.post_feedforward_layernorm.weight": "model.safetensors",
268
  "model.layers.17.pre_feedforward_layernorm.weight": "model.safetensors",
269
  "model.layers.17.self_attn.k_norm.weight": "model.safetensors",
270
- "model.layers.17.self_attn.k_proj.biases": "model.safetensors",
271
- "model.layers.17.self_attn.k_proj.scales": "model.safetensors",
272
  "model.layers.17.self_attn.k_proj.weight": "model.safetensors",
273
- "model.layers.17.self_attn.o_proj.biases": "model.safetensors",
274
- "model.layers.17.self_attn.o_proj.scales": "model.safetensors",
275
  "model.layers.17.self_attn.o_proj.weight": "model.safetensors",
276
  "model.layers.17.self_attn.q_norm.weight": "model.safetensors",
277
- "model.layers.17.self_attn.q_proj.biases": "model.safetensors",
278
- "model.layers.17.self_attn.q_proj.scales": "model.safetensors",
279
  "model.layers.17.self_attn.q_proj.weight": "model.safetensors",
280
- "model.layers.17.self_attn.v_proj.biases": "model.safetensors",
281
- "model.layers.17.self_attn.v_proj.scales": "model.safetensors",
282
  "model.layers.17.self_attn.v_proj.weight": "model.safetensors",
283
  "model.layers.18.input_layernorm.weight": "model.safetensors",
284
- "model.layers.18.mlp.down_proj.biases": "model.safetensors",
285
- "model.layers.18.mlp.down_proj.scales": "model.safetensors",
286
  "model.layers.18.mlp.down_proj.weight": "model.safetensors",
287
- "model.layers.18.mlp.gate_proj.biases": "model.safetensors",
288
- "model.layers.18.mlp.gate_proj.scales": "model.safetensors",
289
  "model.layers.18.mlp.gate_proj.weight": "model.safetensors",
290
- "model.layers.18.mlp.up_proj.biases": "model.safetensors",
291
- "model.layers.18.mlp.up_proj.scales": "model.safetensors",
292
  "model.layers.18.mlp.up_proj.weight": "model.safetensors",
293
  "model.layers.18.post_attention_layernorm.weight": "model.safetensors",
294
  "model.layers.18.post_feedforward_layernorm.weight": "model.safetensors",
295
  "model.layers.18.pre_feedforward_layernorm.weight": "model.safetensors",
296
  "model.layers.18.self_attn.k_norm.weight": "model.safetensors",
297
- "model.layers.18.self_attn.k_proj.biases": "model.safetensors",
298
- "model.layers.18.self_attn.k_proj.scales": "model.safetensors",
299
  "model.layers.18.self_attn.k_proj.weight": "model.safetensors",
300
- "model.layers.18.self_attn.o_proj.biases": "model.safetensors",
301
- "model.layers.18.self_attn.o_proj.scales": "model.safetensors",
302
  "model.layers.18.self_attn.o_proj.weight": "model.safetensors",
303
  "model.layers.18.self_attn.q_norm.weight": "model.safetensors",
304
- "model.layers.18.self_attn.q_proj.biases": "model.safetensors",
305
- "model.layers.18.self_attn.q_proj.scales": "model.safetensors",
306
  "model.layers.18.self_attn.q_proj.weight": "model.safetensors",
307
- "model.layers.18.self_attn.v_proj.biases": "model.safetensors",
308
- "model.layers.18.self_attn.v_proj.scales": "model.safetensors",
309
  "model.layers.18.self_attn.v_proj.weight": "model.safetensors",
310
  "model.layers.19.input_layernorm.weight": "model.safetensors",
311
- "model.layers.19.mlp.down_proj.biases": "model.safetensors",
312
- "model.layers.19.mlp.down_proj.scales": "model.safetensors",
313
  "model.layers.19.mlp.down_proj.weight": "model.safetensors",
314
- "model.layers.19.mlp.gate_proj.biases": "model.safetensors",
315
- "model.layers.19.mlp.gate_proj.scales": "model.safetensors",
316
  "model.layers.19.mlp.gate_proj.weight": "model.safetensors",
317
- "model.layers.19.mlp.up_proj.biases": "model.safetensors",
318
- "model.layers.19.mlp.up_proj.scales": "model.safetensors",
319
  "model.layers.19.mlp.up_proj.weight": "model.safetensors",
320
  "model.layers.19.post_attention_layernorm.weight": "model.safetensors",
321
  "model.layers.19.post_feedforward_layernorm.weight": "model.safetensors",
322
  "model.layers.19.pre_feedforward_layernorm.weight": "model.safetensors",
323
  "model.layers.19.self_attn.k_norm.weight": "model.safetensors",
324
- "model.layers.19.self_attn.k_proj.biases": "model.safetensors",
325
- "model.layers.19.self_attn.k_proj.scales": "model.safetensors",
326
  "model.layers.19.self_attn.k_proj.weight": "model.safetensors",
327
- "model.layers.19.self_attn.o_proj.biases": "model.safetensors",
328
- "model.layers.19.self_attn.o_proj.scales": "model.safetensors",
329
  "model.layers.19.self_attn.o_proj.weight": "model.safetensors",
330
  "model.layers.19.self_attn.q_norm.weight": "model.safetensors",
331
- "model.layers.19.self_attn.q_proj.biases": "model.safetensors",
332
- "model.layers.19.self_attn.q_proj.scales": "model.safetensors",
333
  "model.layers.19.self_attn.q_proj.weight": "model.safetensors",
334
- "model.layers.19.self_attn.v_proj.biases": "model.safetensors",
335
- "model.layers.19.self_attn.v_proj.scales": "model.safetensors",
336
  "model.layers.19.self_attn.v_proj.weight": "model.safetensors",
337
  "model.layers.2.input_layernorm.weight": "model.safetensors",
338
- "model.layers.2.mlp.down_proj.biases": "model.safetensors",
339
- "model.layers.2.mlp.down_proj.scales": "model.safetensors",
340
  "model.layers.2.mlp.down_proj.weight": "model.safetensors",
341
- "model.layers.2.mlp.gate_proj.biases": "model.safetensors",
342
- "model.layers.2.mlp.gate_proj.scales": "model.safetensors",
343
  "model.layers.2.mlp.gate_proj.weight": "model.safetensors",
344
- "model.layers.2.mlp.up_proj.biases": "model.safetensors",
345
- "model.layers.2.mlp.up_proj.scales": "model.safetensors",
346
  "model.layers.2.mlp.up_proj.weight": "model.safetensors",
347
  "model.layers.2.post_attention_layernorm.weight": "model.safetensors",
348
  "model.layers.2.post_feedforward_layernorm.weight": "model.safetensors",
349
  "model.layers.2.pre_feedforward_layernorm.weight": "model.safetensors",
350
  "model.layers.2.self_attn.k_norm.weight": "model.safetensors",
351
- "model.layers.2.self_attn.k_proj.biases": "model.safetensors",
352
- "model.layers.2.self_attn.k_proj.scales": "model.safetensors",
353
  "model.layers.2.self_attn.k_proj.weight": "model.safetensors",
354
- "model.layers.2.self_attn.o_proj.biases": "model.safetensors",
355
- "model.layers.2.self_attn.o_proj.scales": "model.safetensors",
356
  "model.layers.2.self_attn.o_proj.weight": "model.safetensors",
357
  "model.layers.2.self_attn.q_norm.weight": "model.safetensors",
358
- "model.layers.2.self_attn.q_proj.biases": "model.safetensors",
359
- "model.layers.2.self_attn.q_proj.scales": "model.safetensors",
360
  "model.layers.2.self_attn.q_proj.weight": "model.safetensors",
361
- "model.layers.2.self_attn.v_proj.biases": "model.safetensors",
362
- "model.layers.2.self_attn.v_proj.scales": "model.safetensors",
363
  "model.layers.2.self_attn.v_proj.weight": "model.safetensors",
364
  "model.layers.20.input_layernorm.weight": "model.safetensors",
365
- "model.layers.20.mlp.down_proj.biases": "model.safetensors",
366
- "model.layers.20.mlp.down_proj.scales": "model.safetensors",
367
  "model.layers.20.mlp.down_proj.weight": "model.safetensors",
368
- "model.layers.20.mlp.gate_proj.biases": "model.safetensors",
369
- "model.layers.20.mlp.gate_proj.scales": "model.safetensors",
370
  "model.layers.20.mlp.gate_proj.weight": "model.safetensors",
371
- "model.layers.20.mlp.up_proj.biases": "model.safetensors",
372
- "model.layers.20.mlp.up_proj.scales": "model.safetensors",
373
  "model.layers.20.mlp.up_proj.weight": "model.safetensors",
374
  "model.layers.20.post_attention_layernorm.weight": "model.safetensors",
375
  "model.layers.20.post_feedforward_layernorm.weight": "model.safetensors",
376
  "model.layers.20.pre_feedforward_layernorm.weight": "model.safetensors",
377
  "model.layers.20.self_attn.k_norm.weight": "model.safetensors",
378
- "model.layers.20.self_attn.k_proj.biases": "model.safetensors",
379
- "model.layers.20.self_attn.k_proj.scales": "model.safetensors",
380
  "model.layers.20.self_attn.k_proj.weight": "model.safetensors",
381
- "model.layers.20.self_attn.o_proj.biases": "model.safetensors",
382
- "model.layers.20.self_attn.o_proj.scales": "model.safetensors",
383
  "model.layers.20.self_attn.o_proj.weight": "model.safetensors",
384
  "model.layers.20.self_attn.q_norm.weight": "model.safetensors",
385
- "model.layers.20.self_attn.q_proj.biases": "model.safetensors",
386
- "model.layers.20.self_attn.q_proj.scales": "model.safetensors",
387
  "model.layers.20.self_attn.q_proj.weight": "model.safetensors",
388
- "model.layers.20.self_attn.v_proj.biases": "model.safetensors",
389
- "model.layers.20.self_attn.v_proj.scales": "model.safetensors",
390
  "model.layers.20.self_attn.v_proj.weight": "model.safetensors",
391
  "model.layers.21.input_layernorm.weight": "model.safetensors",
392
- "model.layers.21.mlp.down_proj.biases": "model.safetensors",
393
- "model.layers.21.mlp.down_proj.scales": "model.safetensors",
394
  "model.layers.21.mlp.down_proj.weight": "model.safetensors",
395
- "model.layers.21.mlp.gate_proj.biases": "model.safetensors",
396
- "model.layers.21.mlp.gate_proj.scales": "model.safetensors",
397
  "model.layers.21.mlp.gate_proj.weight": "model.safetensors",
398
- "model.layers.21.mlp.up_proj.biases": "model.safetensors",
399
- "model.layers.21.mlp.up_proj.scales": "model.safetensors",
400
  "model.layers.21.mlp.up_proj.weight": "model.safetensors",
401
  "model.layers.21.post_attention_layernorm.weight": "model.safetensors",
402
  "model.layers.21.post_feedforward_layernorm.weight": "model.safetensors",
403
  "model.layers.21.pre_feedforward_layernorm.weight": "model.safetensors",
404
  "model.layers.21.self_attn.k_norm.weight": "model.safetensors",
405
- "model.layers.21.self_attn.k_proj.biases": "model.safetensors",
406
- "model.layers.21.self_attn.k_proj.scales": "model.safetensors",
407
  "model.layers.21.self_attn.k_proj.weight": "model.safetensors",
408
- "model.layers.21.self_attn.o_proj.biases": "model.safetensors",
409
- "model.layers.21.self_attn.o_proj.scales": "model.safetensors",
410
  "model.layers.21.self_attn.o_proj.weight": "model.safetensors",
411
  "model.layers.21.self_attn.q_norm.weight": "model.safetensors",
412
- "model.layers.21.self_attn.q_proj.biases": "model.safetensors",
413
- "model.layers.21.self_attn.q_proj.scales": "model.safetensors",
414
  "model.layers.21.self_attn.q_proj.weight": "model.safetensors",
415
- "model.layers.21.self_attn.v_proj.biases": "model.safetensors",
416
- "model.layers.21.self_attn.v_proj.scales": "model.safetensors",
417
  "model.layers.21.self_attn.v_proj.weight": "model.safetensors",
418
  "model.layers.22.input_layernorm.weight": "model.safetensors",
419
- "model.layers.22.mlp.down_proj.biases": "model.safetensors",
420
- "model.layers.22.mlp.down_proj.scales": "model.safetensors",
421
  "model.layers.22.mlp.down_proj.weight": "model.safetensors",
422
- "model.layers.22.mlp.gate_proj.biases": "model.safetensors",
423
- "model.layers.22.mlp.gate_proj.scales": "model.safetensors",
424
  "model.layers.22.mlp.gate_proj.weight": "model.safetensors",
425
- "model.layers.22.mlp.up_proj.biases": "model.safetensors",
426
- "model.layers.22.mlp.up_proj.scales": "model.safetensors",
427
  "model.layers.22.mlp.up_proj.weight": "model.safetensors",
428
  "model.layers.22.post_attention_layernorm.weight": "model.safetensors",
429
  "model.layers.22.post_feedforward_layernorm.weight": "model.safetensors",
430
  "model.layers.22.pre_feedforward_layernorm.weight": "model.safetensors",
431
  "model.layers.22.self_attn.k_norm.weight": "model.safetensors",
432
- "model.layers.22.self_attn.k_proj.biases": "model.safetensors",
433
- "model.layers.22.self_attn.k_proj.scales": "model.safetensors",
434
  "model.layers.22.self_attn.k_proj.weight": "model.safetensors",
435
- "model.layers.22.self_attn.o_proj.biases": "model.safetensors",
436
- "model.layers.22.self_attn.o_proj.scales": "model.safetensors",
437
  "model.layers.22.self_attn.o_proj.weight": "model.safetensors",
438
  "model.layers.22.self_attn.q_norm.weight": "model.safetensors",
439
- "model.layers.22.self_attn.q_proj.biases": "model.safetensors",
440
- "model.layers.22.self_attn.q_proj.scales": "model.safetensors",
441
  "model.layers.22.self_attn.q_proj.weight": "model.safetensors",
442
- "model.layers.22.self_attn.v_proj.biases": "model.safetensors",
443
- "model.layers.22.self_attn.v_proj.scales": "model.safetensors",
444
  "model.layers.22.self_attn.v_proj.weight": "model.safetensors",
445
  "model.layers.23.input_layernorm.weight": "model.safetensors",
446
- "model.layers.23.mlp.down_proj.biases": "model.safetensors",
447
- "model.layers.23.mlp.down_proj.scales": "model.safetensors",
448
  "model.layers.23.mlp.down_proj.weight": "model.safetensors",
449
- "model.layers.23.mlp.gate_proj.biases": "model.safetensors",
450
- "model.layers.23.mlp.gate_proj.scales": "model.safetensors",
451
  "model.layers.23.mlp.gate_proj.weight": "model.safetensors",
452
- "model.layers.23.mlp.up_proj.biases": "model.safetensors",
453
- "model.layers.23.mlp.up_proj.scales": "model.safetensors",
454
  "model.layers.23.mlp.up_proj.weight": "model.safetensors",
455
  "model.layers.23.post_attention_layernorm.weight": "model.safetensors",
456
  "model.layers.23.post_feedforward_layernorm.weight": "model.safetensors",
457
  "model.layers.23.pre_feedforward_layernorm.weight": "model.safetensors",
458
  "model.layers.23.self_attn.k_norm.weight": "model.safetensors",
459
- "model.layers.23.self_attn.k_proj.biases": "model.safetensors",
460
- "model.layers.23.self_attn.k_proj.scales": "model.safetensors",
461
  "model.layers.23.self_attn.k_proj.weight": "model.safetensors",
462
- "model.layers.23.self_attn.o_proj.biases": "model.safetensors",
463
- "model.layers.23.self_attn.o_proj.scales": "model.safetensors",
464
  "model.layers.23.self_attn.o_proj.weight": "model.safetensors",
465
  "model.layers.23.self_attn.q_norm.weight": "model.safetensors",
466
- "model.layers.23.self_attn.q_proj.biases": "model.safetensors",
467
- "model.layers.23.self_attn.q_proj.scales": "model.safetensors",
468
  "model.layers.23.self_attn.q_proj.weight": "model.safetensors",
469
- "model.layers.23.self_attn.v_proj.biases": "model.safetensors",
470
- "model.layers.23.self_attn.v_proj.scales": "model.safetensors",
471
  "model.layers.23.self_attn.v_proj.weight": "model.safetensors",
472
  "model.layers.24.input_layernorm.weight": "model.safetensors",
473
- "model.layers.24.mlp.down_proj.biases": "model.safetensors",
474
- "model.layers.24.mlp.down_proj.scales": "model.safetensors",
475
  "model.layers.24.mlp.down_proj.weight": "model.safetensors",
476
- "model.layers.24.mlp.gate_proj.biases": "model.safetensors",
477
- "model.layers.24.mlp.gate_proj.scales": "model.safetensors",
478
  "model.layers.24.mlp.gate_proj.weight": "model.safetensors",
479
- "model.layers.24.mlp.up_proj.biases": "model.safetensors",
480
- "model.layers.24.mlp.up_proj.scales": "model.safetensors",
481
  "model.layers.24.mlp.up_proj.weight": "model.safetensors",
482
  "model.layers.24.post_attention_layernorm.weight": "model.safetensors",
483
  "model.layers.24.post_feedforward_layernorm.weight": "model.safetensors",
484
  "model.layers.24.pre_feedforward_layernorm.weight": "model.safetensors",
485
  "model.layers.24.self_attn.k_norm.weight": "model.safetensors",
486
- "model.layers.24.self_attn.k_proj.biases": "model.safetensors",
487
- "model.layers.24.self_attn.k_proj.scales": "model.safetensors",
488
  "model.layers.24.self_attn.k_proj.weight": "model.safetensors",
489
- "model.layers.24.self_attn.o_proj.biases": "model.safetensors",
490
- "model.layers.24.self_attn.o_proj.scales": "model.safetensors",
491
  "model.layers.24.self_attn.o_proj.weight": "model.safetensors",
492
  "model.layers.24.self_attn.q_norm.weight": "model.safetensors",
493
- "model.layers.24.self_attn.q_proj.biases": "model.safetensors",
494
- "model.layers.24.self_attn.q_proj.scales": "model.safetensors",
495
  "model.layers.24.self_attn.q_proj.weight": "model.safetensors",
496
- "model.layers.24.self_attn.v_proj.biases": "model.safetensors",
497
- "model.layers.24.self_attn.v_proj.scales": "model.safetensors",
498
  "model.layers.24.self_attn.v_proj.weight": "model.safetensors",
499
  "model.layers.25.input_layernorm.weight": "model.safetensors",
500
- "model.layers.25.mlp.down_proj.biases": "model.safetensors",
501
- "model.layers.25.mlp.down_proj.scales": "model.safetensors",
502
  "model.layers.25.mlp.down_proj.weight": "model.safetensors",
503
- "model.layers.25.mlp.gate_proj.biases": "model.safetensors",
504
- "model.layers.25.mlp.gate_proj.scales": "model.safetensors",
505
  "model.layers.25.mlp.gate_proj.weight": "model.safetensors",
506
- "model.layers.25.mlp.up_proj.biases": "model.safetensors",
507
- "model.layers.25.mlp.up_proj.scales": "model.safetensors",
508
  "model.layers.25.mlp.up_proj.weight": "model.safetensors",
509
  "model.layers.25.post_attention_layernorm.weight": "model.safetensors",
510
  "model.layers.25.post_feedforward_layernorm.weight": "model.safetensors",
511
  "model.layers.25.pre_feedforward_layernorm.weight": "model.safetensors",
512
  "model.layers.25.self_attn.k_norm.weight": "model.safetensors",
513
- "model.layers.25.self_attn.k_proj.biases": "model.safetensors",
514
- "model.layers.25.self_attn.k_proj.scales": "model.safetensors",
515
  "model.layers.25.self_attn.k_proj.weight": "model.safetensors",
516
- "model.layers.25.self_attn.o_proj.biases": "model.safetensors",
517
- "model.layers.25.self_attn.o_proj.scales": "model.safetensors",
518
  "model.layers.25.self_attn.o_proj.weight": "model.safetensors",
519
  "model.layers.25.self_attn.q_norm.weight": "model.safetensors",
520
- "model.layers.25.self_attn.q_proj.biases": "model.safetensors",
521
- "model.layers.25.self_attn.q_proj.scales": "model.safetensors",
522
  "model.layers.25.self_attn.q_proj.weight": "model.safetensors",
523
- "model.layers.25.self_attn.v_proj.biases": "model.safetensors",
524
- "model.layers.25.self_attn.v_proj.scales": "model.safetensors",
525
  "model.layers.25.self_attn.v_proj.weight": "model.safetensors",
526
  "model.layers.3.input_layernorm.weight": "model.safetensors",
527
- "model.layers.3.mlp.down_proj.biases": "model.safetensors",
528
- "model.layers.3.mlp.down_proj.scales": "model.safetensors",
529
  "model.layers.3.mlp.down_proj.weight": "model.safetensors",
530
- "model.layers.3.mlp.gate_proj.biases": "model.safetensors",
531
- "model.layers.3.mlp.gate_proj.scales": "model.safetensors",
532
  "model.layers.3.mlp.gate_proj.weight": "model.safetensors",
533
- "model.layers.3.mlp.up_proj.biases": "model.safetensors",
534
- "model.layers.3.mlp.up_proj.scales": "model.safetensors",
535
  "model.layers.3.mlp.up_proj.weight": "model.safetensors",
536
  "model.layers.3.post_attention_layernorm.weight": "model.safetensors",
537
  "model.layers.3.post_feedforward_layernorm.weight": "model.safetensors",
538
  "model.layers.3.pre_feedforward_layernorm.weight": "model.safetensors",
539
  "model.layers.3.self_attn.k_norm.weight": "model.safetensors",
540
- "model.layers.3.self_attn.k_proj.biases": "model.safetensors",
541
- "model.layers.3.self_attn.k_proj.scales": "model.safetensors",
542
  "model.layers.3.self_attn.k_proj.weight": "model.safetensors",
543
- "model.layers.3.self_attn.o_proj.biases": "model.safetensors",
544
- "model.layers.3.self_attn.o_proj.scales": "model.safetensors",
545
  "model.layers.3.self_attn.o_proj.weight": "model.safetensors",
546
  "model.layers.3.self_attn.q_norm.weight": "model.safetensors",
547
- "model.layers.3.self_attn.q_proj.biases": "model.safetensors",
548
- "model.layers.3.self_attn.q_proj.scales": "model.safetensors",
549
  "model.layers.3.self_attn.q_proj.weight": "model.safetensors",
550
- "model.layers.3.self_attn.v_proj.biases": "model.safetensors",
551
- "model.layers.3.self_attn.v_proj.scales": "model.safetensors",
552
  "model.layers.3.self_attn.v_proj.weight": "model.safetensors",
553
  "model.layers.4.input_layernorm.weight": "model.safetensors",
554
- "model.layers.4.mlp.down_proj.biases": "model.safetensors",
555
- "model.layers.4.mlp.down_proj.scales": "model.safetensors",
556
  "model.layers.4.mlp.down_proj.weight": "model.safetensors",
557
- "model.layers.4.mlp.gate_proj.biases": "model.safetensors",
558
- "model.layers.4.mlp.gate_proj.scales": "model.safetensors",
559
  "model.layers.4.mlp.gate_proj.weight": "model.safetensors",
560
- "model.layers.4.mlp.up_proj.biases": "model.safetensors",
561
- "model.layers.4.mlp.up_proj.scales": "model.safetensors",
562
  "model.layers.4.mlp.up_proj.weight": "model.safetensors",
563
  "model.layers.4.post_attention_layernorm.weight": "model.safetensors",
564
  "model.layers.4.post_feedforward_layernorm.weight": "model.safetensors",
565
  "model.layers.4.pre_feedforward_layernorm.weight": "model.safetensors",
566
  "model.layers.4.self_attn.k_norm.weight": "model.safetensors",
567
- "model.layers.4.self_attn.k_proj.biases": "model.safetensors",
568
- "model.layers.4.self_attn.k_proj.scales": "model.safetensors",
569
  "model.layers.4.self_attn.k_proj.weight": "model.safetensors",
570
- "model.layers.4.self_attn.o_proj.biases": "model.safetensors",
571
- "model.layers.4.self_attn.o_proj.scales": "model.safetensors",
572
  "model.layers.4.self_attn.o_proj.weight": "model.safetensors",
573
  "model.layers.4.self_attn.q_norm.weight": "model.safetensors",
574
- "model.layers.4.self_attn.q_proj.biases": "model.safetensors",
575
- "model.layers.4.self_attn.q_proj.scales": "model.safetensors",
576
  "model.layers.4.self_attn.q_proj.weight": "model.safetensors",
577
- "model.layers.4.self_attn.v_proj.biases": "model.safetensors",
578
- "model.layers.4.self_attn.v_proj.scales": "model.safetensors",
579
  "model.layers.4.self_attn.v_proj.weight": "model.safetensors",
580
  "model.layers.5.input_layernorm.weight": "model.safetensors",
581
- "model.layers.5.mlp.down_proj.biases": "model.safetensors",
582
- "model.layers.5.mlp.down_proj.scales": "model.safetensors",
583
  "model.layers.5.mlp.down_proj.weight": "model.safetensors",
584
- "model.layers.5.mlp.gate_proj.biases": "model.safetensors",
585
- "model.layers.5.mlp.gate_proj.scales": "model.safetensors",
586
  "model.layers.5.mlp.gate_proj.weight": "model.safetensors",
587
- "model.layers.5.mlp.up_proj.biases": "model.safetensors",
588
- "model.layers.5.mlp.up_proj.scales": "model.safetensors",
589
  "model.layers.5.mlp.up_proj.weight": "model.safetensors",
590
  "model.layers.5.post_attention_layernorm.weight": "model.safetensors",
591
  "model.layers.5.post_feedforward_layernorm.weight": "model.safetensors",
592
  "model.layers.5.pre_feedforward_layernorm.weight": "model.safetensors",
593
  "model.layers.5.self_attn.k_norm.weight": "model.safetensors",
594
- "model.layers.5.self_attn.k_proj.biases": "model.safetensors",
595
- "model.layers.5.self_attn.k_proj.scales": "model.safetensors",
596
  "model.layers.5.self_attn.k_proj.weight": "model.safetensors",
597
- "model.layers.5.self_attn.o_proj.biases": "model.safetensors",
598
- "model.layers.5.self_attn.o_proj.scales": "model.safetensors",
599
  "model.layers.5.self_attn.o_proj.weight": "model.safetensors",
600
  "model.layers.5.self_attn.q_norm.weight": "model.safetensors",
601
- "model.layers.5.self_attn.q_proj.biases": "model.safetensors",
602
- "model.layers.5.self_attn.q_proj.scales": "model.safetensors",
603
  "model.layers.5.self_attn.q_proj.weight": "model.safetensors",
604
- "model.layers.5.self_attn.v_proj.biases": "model.safetensors",
605
- "model.layers.5.self_attn.v_proj.scales": "model.safetensors",
606
  "model.layers.5.self_attn.v_proj.weight": "model.safetensors",
607
  "model.layers.6.input_layernorm.weight": "model.safetensors",
608
- "model.layers.6.mlp.down_proj.biases": "model.safetensors",
609
- "model.layers.6.mlp.down_proj.scales": "model.safetensors",
610
  "model.layers.6.mlp.down_proj.weight": "model.safetensors",
611
- "model.layers.6.mlp.gate_proj.biases": "model.safetensors",
612
- "model.layers.6.mlp.gate_proj.scales": "model.safetensors",
613
  "model.layers.6.mlp.gate_proj.weight": "model.safetensors",
614
- "model.layers.6.mlp.up_proj.biases": "model.safetensors",
615
- "model.layers.6.mlp.up_proj.scales": "model.safetensors",
616
  "model.layers.6.mlp.up_proj.weight": "model.safetensors",
617
  "model.layers.6.post_attention_layernorm.weight": "model.safetensors",
618
  "model.layers.6.post_feedforward_layernorm.weight": "model.safetensors",
619
  "model.layers.6.pre_feedforward_layernorm.weight": "model.safetensors",
620
  "model.layers.6.self_attn.k_norm.weight": "model.safetensors",
621
- "model.layers.6.self_attn.k_proj.biases": "model.safetensors",
622
- "model.layers.6.self_attn.k_proj.scales": "model.safetensors",
623
  "model.layers.6.self_attn.k_proj.weight": "model.safetensors",
624
- "model.layers.6.self_attn.o_proj.biases": "model.safetensors",
625
- "model.layers.6.self_attn.o_proj.scales": "model.safetensors",
626
  "model.layers.6.self_attn.o_proj.weight": "model.safetensors",
627
  "model.layers.6.self_attn.q_norm.weight": "model.safetensors",
628
- "model.layers.6.self_attn.q_proj.biases": "model.safetensors",
629
- "model.layers.6.self_attn.q_proj.scales": "model.safetensors",
630
  "model.layers.6.self_attn.q_proj.weight": "model.safetensors",
631
- "model.layers.6.self_attn.v_proj.biases": "model.safetensors",
632
- "model.layers.6.self_attn.v_proj.scales": "model.safetensors",
633
  "model.layers.6.self_attn.v_proj.weight": "model.safetensors",
634
  "model.layers.7.input_layernorm.weight": "model.safetensors",
635
- "model.layers.7.mlp.down_proj.biases": "model.safetensors",
636
- "model.layers.7.mlp.down_proj.scales": "model.safetensors",
637
  "model.layers.7.mlp.down_proj.weight": "model.safetensors",
638
- "model.layers.7.mlp.gate_proj.biases": "model.safetensors",
639
- "model.layers.7.mlp.gate_proj.scales": "model.safetensors",
640
  "model.layers.7.mlp.gate_proj.weight": "model.safetensors",
641
- "model.layers.7.mlp.up_proj.biases": "model.safetensors",
642
- "model.layers.7.mlp.up_proj.scales": "model.safetensors",
643
  "model.layers.7.mlp.up_proj.weight": "model.safetensors",
644
  "model.layers.7.post_attention_layernorm.weight": "model.safetensors",
645
  "model.layers.7.post_feedforward_layernorm.weight": "model.safetensors",
646
  "model.layers.7.pre_feedforward_layernorm.weight": "model.safetensors",
647
  "model.layers.7.self_attn.k_norm.weight": "model.safetensors",
648
- "model.layers.7.self_attn.k_proj.biases": "model.safetensors",
649
- "model.layers.7.self_attn.k_proj.scales": "model.safetensors",
650
  "model.layers.7.self_attn.k_proj.weight": "model.safetensors",
651
- "model.layers.7.self_attn.o_proj.biases": "model.safetensors",
652
- "model.layers.7.self_attn.o_proj.scales": "model.safetensors",
653
  "model.layers.7.self_attn.o_proj.weight": "model.safetensors",
654
  "model.layers.7.self_attn.q_norm.weight": "model.safetensors",
655
- "model.layers.7.self_attn.q_proj.biases": "model.safetensors",
656
- "model.layers.7.self_attn.q_proj.scales": "model.safetensors",
657
  "model.layers.7.self_attn.q_proj.weight": "model.safetensors",
658
- "model.layers.7.self_attn.v_proj.biases": "model.safetensors",
659
- "model.layers.7.self_attn.v_proj.scales": "model.safetensors",
660
  "model.layers.7.self_attn.v_proj.weight": "model.safetensors",
661
  "model.layers.8.input_layernorm.weight": "model.safetensors",
662
- "model.layers.8.mlp.down_proj.biases": "model.safetensors",
663
- "model.layers.8.mlp.down_proj.scales": "model.safetensors",
664
  "model.layers.8.mlp.down_proj.weight": "model.safetensors",
665
- "model.layers.8.mlp.gate_proj.biases": "model.safetensors",
666
- "model.layers.8.mlp.gate_proj.scales": "model.safetensors",
667
  "model.layers.8.mlp.gate_proj.weight": "model.safetensors",
668
- "model.layers.8.mlp.up_proj.biases": "model.safetensors",
669
- "model.layers.8.mlp.up_proj.scales": "model.safetensors",
670
  "model.layers.8.mlp.up_proj.weight": "model.safetensors",
671
  "model.layers.8.post_attention_layernorm.weight": "model.safetensors",
672
  "model.layers.8.post_feedforward_layernorm.weight": "model.safetensors",
673
  "model.layers.8.pre_feedforward_layernorm.weight": "model.safetensors",
674
  "model.layers.8.self_attn.k_norm.weight": "model.safetensors",
675
- "model.layers.8.self_attn.k_proj.biases": "model.safetensors",
676
- "model.layers.8.self_attn.k_proj.scales": "model.safetensors",
677
  "model.layers.8.self_attn.k_proj.weight": "model.safetensors",
678
- "model.layers.8.self_attn.o_proj.biases": "model.safetensors",
679
- "model.layers.8.self_attn.o_proj.scales": "model.safetensors",
680
  "model.layers.8.self_attn.o_proj.weight": "model.safetensors",
681
  "model.layers.8.self_attn.q_norm.weight": "model.safetensors",
682
- "model.layers.8.self_attn.q_proj.biases": "model.safetensors",
683
- "model.layers.8.self_attn.q_proj.scales": "model.safetensors",
684
  "model.layers.8.self_attn.q_proj.weight": "model.safetensors",
685
- "model.layers.8.self_attn.v_proj.biases": "model.safetensors",
686
- "model.layers.8.self_attn.v_proj.scales": "model.safetensors",
687
  "model.layers.8.self_attn.v_proj.weight": "model.safetensors",
688
  "model.layers.9.input_layernorm.weight": "model.safetensors",
689
- "model.layers.9.mlp.down_proj.biases": "model.safetensors",
690
- "model.layers.9.mlp.down_proj.scales": "model.safetensors",
691
  "model.layers.9.mlp.down_proj.weight": "model.safetensors",
692
- "model.layers.9.mlp.gate_proj.biases": "model.safetensors",
693
- "model.layers.9.mlp.gate_proj.scales": "model.safetensors",
694
  "model.layers.9.mlp.gate_proj.weight": "model.safetensors",
695
- "model.layers.9.mlp.up_proj.biases": "model.safetensors",
696
- "model.layers.9.mlp.up_proj.scales": "model.safetensors",
697
  "model.layers.9.mlp.up_proj.weight": "model.safetensors",
698
  "model.layers.9.post_attention_layernorm.weight": "model.safetensors",
699
  "model.layers.9.post_feedforward_layernorm.weight": "model.safetensors",
700
  "model.layers.9.pre_feedforward_layernorm.weight": "model.safetensors",
701
  "model.layers.9.self_attn.k_norm.weight": "model.safetensors",
702
- "model.layers.9.self_attn.k_proj.biases": "model.safetensors",
703
- "model.layers.9.self_attn.k_proj.scales": "model.safetensors",
704
  "model.layers.9.self_attn.k_proj.weight": "model.safetensors",
705
- "model.layers.9.self_attn.o_proj.biases": "model.safetensors",
706
- "model.layers.9.self_attn.o_proj.scales": "model.safetensors",
707
  "model.layers.9.self_attn.o_proj.weight": "model.safetensors",
708
  "model.layers.9.self_attn.q_norm.weight": "model.safetensors",
709
- "model.layers.9.self_attn.q_proj.biases": "model.safetensors",
710
- "model.layers.9.self_attn.q_proj.scales": "model.safetensors",
711
  "model.layers.9.self_attn.q_proj.weight": "model.safetensors",
712
- "model.layers.9.self_attn.v_proj.biases": "model.safetensors",
713
- "model.layers.9.self_attn.v_proj.scales": "model.safetensors",
714
  "model.layers.9.self_attn.v_proj.weight": "model.safetensors",
715
  "model.norm.weight": "model.safetensors"
716
  }
 
1
  {
2
  "metadata": {
3
+ "total_size": 2603751680,
4
  "total_parameters": 1301875840
5
  },
6
  "weight_map": {
 
 
7
  "lm_head.weight": "model.safetensors",
 
 
8
  "model.embed_tokens.weight": "model.safetensors",
9
  "model.layers.0.input_layernorm.weight": "model.safetensors",
 
 
10
  "model.layers.0.mlp.down_proj.weight": "model.safetensors",
 
 
11
  "model.layers.0.mlp.gate_proj.weight": "model.safetensors",
 
 
12
  "model.layers.0.mlp.up_proj.weight": "model.safetensors",
13
  "model.layers.0.post_attention_layernorm.weight": "model.safetensors",
14
  "model.layers.0.post_feedforward_layernorm.weight": "model.safetensors",
15
  "model.layers.0.pre_feedforward_layernorm.weight": "model.safetensors",
16
  "model.layers.0.self_attn.k_norm.weight": "model.safetensors",
 
 
17
  "model.layers.0.self_attn.k_proj.weight": "model.safetensors",
 
 
18
  "model.layers.0.self_attn.o_proj.weight": "model.safetensors",
19
  "model.layers.0.self_attn.q_norm.weight": "model.safetensors",
 
 
20
  "model.layers.0.self_attn.q_proj.weight": "model.safetensors",
 
 
21
  "model.layers.0.self_attn.v_proj.weight": "model.safetensors",
22
  "model.layers.1.input_layernorm.weight": "model.safetensors",
 
 
23
  "model.layers.1.mlp.down_proj.weight": "model.safetensors",
 
 
24
  "model.layers.1.mlp.gate_proj.weight": "model.safetensors",
 
 
25
  "model.layers.1.mlp.up_proj.weight": "model.safetensors",
26
  "model.layers.1.post_attention_layernorm.weight": "model.safetensors",
27
  "model.layers.1.post_feedforward_layernorm.weight": "model.safetensors",
28
  "model.layers.1.pre_feedforward_layernorm.weight": "model.safetensors",
29
  "model.layers.1.self_attn.k_norm.weight": "model.safetensors",
 
 
30
  "model.layers.1.self_attn.k_proj.weight": "model.safetensors",
 
 
31
  "model.layers.1.self_attn.o_proj.weight": "model.safetensors",
32
  "model.layers.1.self_attn.q_norm.weight": "model.safetensors",
 
 
33
  "model.layers.1.self_attn.q_proj.weight": "model.safetensors",
 
 
34
  "model.layers.1.self_attn.v_proj.weight": "model.safetensors",
35
  "model.layers.10.input_layernorm.weight": "model.safetensors",
 
 
36
  "model.layers.10.mlp.down_proj.weight": "model.safetensors",
 
 
37
  "model.layers.10.mlp.gate_proj.weight": "model.safetensors",
 
 
38
  "model.layers.10.mlp.up_proj.weight": "model.safetensors",
39
  "model.layers.10.post_attention_layernorm.weight": "model.safetensors",
40
  "model.layers.10.post_feedforward_layernorm.weight": "model.safetensors",
41
  "model.layers.10.pre_feedforward_layernorm.weight": "model.safetensors",
42
  "model.layers.10.self_attn.k_norm.weight": "model.safetensors",
 
 
43
  "model.layers.10.self_attn.k_proj.weight": "model.safetensors",
 
 
44
  "model.layers.10.self_attn.o_proj.weight": "model.safetensors",
45
  "model.layers.10.self_attn.q_norm.weight": "model.safetensors",
 
 
46
  "model.layers.10.self_attn.q_proj.weight": "model.safetensors",
 
 
47
  "model.layers.10.self_attn.v_proj.weight": "model.safetensors",
48
  "model.layers.11.input_layernorm.weight": "model.safetensors",
 
 
49
  "model.layers.11.mlp.down_proj.weight": "model.safetensors",
 
 
50
  "model.layers.11.mlp.gate_proj.weight": "model.safetensors",
 
 
51
  "model.layers.11.mlp.up_proj.weight": "model.safetensors",
52
  "model.layers.11.post_attention_layernorm.weight": "model.safetensors",
53
  "model.layers.11.post_feedforward_layernorm.weight": "model.safetensors",
54
  "model.layers.11.pre_feedforward_layernorm.weight": "model.safetensors",
55
  "model.layers.11.self_attn.k_norm.weight": "model.safetensors",
 
 
56
  "model.layers.11.self_attn.k_proj.weight": "model.safetensors",
 
 
57
  "model.layers.11.self_attn.o_proj.weight": "model.safetensors",
58
  "model.layers.11.self_attn.q_norm.weight": "model.safetensors",
 
 
59
  "model.layers.11.self_attn.q_proj.weight": "model.safetensors",
 
 
60
  "model.layers.11.self_attn.v_proj.weight": "model.safetensors",
61
  "model.layers.12.input_layernorm.weight": "model.safetensors",
 
 
62
  "model.layers.12.mlp.down_proj.weight": "model.safetensors",
 
 
63
  "model.layers.12.mlp.gate_proj.weight": "model.safetensors",
 
 
64
  "model.layers.12.mlp.up_proj.weight": "model.safetensors",
65
  "model.layers.12.post_attention_layernorm.weight": "model.safetensors",
66
  "model.layers.12.post_feedforward_layernorm.weight": "model.safetensors",
67
  "model.layers.12.pre_feedforward_layernorm.weight": "model.safetensors",
68
  "model.layers.12.self_attn.k_norm.weight": "model.safetensors",
 
 
69
  "model.layers.12.self_attn.k_proj.weight": "model.safetensors",
 
 
70
  "model.layers.12.self_attn.o_proj.weight": "model.safetensors",
71
  "model.layers.12.self_attn.q_norm.weight": "model.safetensors",
 
 
72
  "model.layers.12.self_attn.q_proj.weight": "model.safetensors",
 
 
73
  "model.layers.12.self_attn.v_proj.weight": "model.safetensors",
74
  "model.layers.13.input_layernorm.weight": "model.safetensors",
 
 
75
  "model.layers.13.mlp.down_proj.weight": "model.safetensors",
 
 
76
  "model.layers.13.mlp.gate_proj.weight": "model.safetensors",
 
 
77
  "model.layers.13.mlp.up_proj.weight": "model.safetensors",
78
  "model.layers.13.post_attention_layernorm.weight": "model.safetensors",
79
  "model.layers.13.post_feedforward_layernorm.weight": "model.safetensors",
80
  "model.layers.13.pre_feedforward_layernorm.weight": "model.safetensors",
81
  "model.layers.13.self_attn.k_norm.weight": "model.safetensors",
 
 
82
  "model.layers.13.self_attn.k_proj.weight": "model.safetensors",
 
 
83
  "model.layers.13.self_attn.o_proj.weight": "model.safetensors",
84
  "model.layers.13.self_attn.q_norm.weight": "model.safetensors",
 
 
85
  "model.layers.13.self_attn.q_proj.weight": "model.safetensors",
 
 
86
  "model.layers.13.self_attn.v_proj.weight": "model.safetensors",
87
  "model.layers.14.input_layernorm.weight": "model.safetensors",
 
 
88
  "model.layers.14.mlp.down_proj.weight": "model.safetensors",
 
 
89
  "model.layers.14.mlp.gate_proj.weight": "model.safetensors",
 
 
90
  "model.layers.14.mlp.up_proj.weight": "model.safetensors",
91
  "model.layers.14.post_attention_layernorm.weight": "model.safetensors",
92
  "model.layers.14.post_feedforward_layernorm.weight": "model.safetensors",
93
  "model.layers.14.pre_feedforward_layernorm.weight": "model.safetensors",
94
  "model.layers.14.self_attn.k_norm.weight": "model.safetensors",
 
 
95
  "model.layers.14.self_attn.k_proj.weight": "model.safetensors",
 
 
96
  "model.layers.14.self_attn.o_proj.weight": "model.safetensors",
97
  "model.layers.14.self_attn.q_norm.weight": "model.safetensors",
 
 
98
  "model.layers.14.self_attn.q_proj.weight": "model.safetensors",
 
 
99
  "model.layers.14.self_attn.v_proj.weight": "model.safetensors",
100
  "model.layers.15.input_layernorm.weight": "model.safetensors",
 
 
101
  "model.layers.15.mlp.down_proj.weight": "model.safetensors",
 
 
102
  "model.layers.15.mlp.gate_proj.weight": "model.safetensors",
 
 
103
  "model.layers.15.mlp.up_proj.weight": "model.safetensors",
104
  "model.layers.15.post_attention_layernorm.weight": "model.safetensors",
105
  "model.layers.15.post_feedforward_layernorm.weight": "model.safetensors",
106
  "model.layers.15.pre_feedforward_layernorm.weight": "model.safetensors",
107
  "model.layers.15.self_attn.k_norm.weight": "model.safetensors",
 
 
108
  "model.layers.15.self_attn.k_proj.weight": "model.safetensors",
 
 
109
  "model.layers.15.self_attn.o_proj.weight": "model.safetensors",
110
  "model.layers.15.self_attn.q_norm.weight": "model.safetensors",
 
 
111
  "model.layers.15.self_attn.q_proj.weight": "model.safetensors",
 
 
112
  "model.layers.15.self_attn.v_proj.weight": "model.safetensors",
113
  "model.layers.16.input_layernorm.weight": "model.safetensors",
 
 
114
  "model.layers.16.mlp.down_proj.weight": "model.safetensors",
 
 
115
  "model.layers.16.mlp.gate_proj.weight": "model.safetensors",
 
 
116
  "model.layers.16.mlp.up_proj.weight": "model.safetensors",
117
  "model.layers.16.post_attention_layernorm.weight": "model.safetensors",
118
  "model.layers.16.post_feedforward_layernorm.weight": "model.safetensors",
119
  "model.layers.16.pre_feedforward_layernorm.weight": "model.safetensors",
120
  "model.layers.16.self_attn.k_norm.weight": "model.safetensors",
 
 
121
  "model.layers.16.self_attn.k_proj.weight": "model.safetensors",
 
 
122
  "model.layers.16.self_attn.o_proj.weight": "model.safetensors",
123
  "model.layers.16.self_attn.q_norm.weight": "model.safetensors",
 
 
124
  "model.layers.16.self_attn.q_proj.weight": "model.safetensors",
 
 
125
  "model.layers.16.self_attn.v_proj.weight": "model.safetensors",
126
  "model.layers.17.input_layernorm.weight": "model.safetensors",
 
 
127
  "model.layers.17.mlp.down_proj.weight": "model.safetensors",
 
 
128
  "model.layers.17.mlp.gate_proj.weight": "model.safetensors",
 
 
129
  "model.layers.17.mlp.up_proj.weight": "model.safetensors",
130
  "model.layers.17.post_attention_layernorm.weight": "model.safetensors",
131
  "model.layers.17.post_feedforward_layernorm.weight": "model.safetensors",
132
  "model.layers.17.pre_feedforward_layernorm.weight": "model.safetensors",
133
  "model.layers.17.self_attn.k_norm.weight": "model.safetensors",
 
 
134
  "model.layers.17.self_attn.k_proj.weight": "model.safetensors",
 
 
135
  "model.layers.17.self_attn.o_proj.weight": "model.safetensors",
136
  "model.layers.17.self_attn.q_norm.weight": "model.safetensors",
 
 
137
  "model.layers.17.self_attn.q_proj.weight": "model.safetensors",
 
 
138
  "model.layers.17.self_attn.v_proj.weight": "model.safetensors",
139
  "model.layers.18.input_layernorm.weight": "model.safetensors",
 
 
140
  "model.layers.18.mlp.down_proj.weight": "model.safetensors",
 
 
141
  "model.layers.18.mlp.gate_proj.weight": "model.safetensors",
 
 
142
  "model.layers.18.mlp.up_proj.weight": "model.safetensors",
143
  "model.layers.18.post_attention_layernorm.weight": "model.safetensors",
144
  "model.layers.18.post_feedforward_layernorm.weight": "model.safetensors",
145
  "model.layers.18.pre_feedforward_layernorm.weight": "model.safetensors",
146
  "model.layers.18.self_attn.k_norm.weight": "model.safetensors",
 
 
147
  "model.layers.18.self_attn.k_proj.weight": "model.safetensors",
 
 
148
  "model.layers.18.self_attn.o_proj.weight": "model.safetensors",
149
  "model.layers.18.self_attn.q_norm.weight": "model.safetensors",
 
 
150
  "model.layers.18.self_attn.q_proj.weight": "model.safetensors",
 
 
151
  "model.layers.18.self_attn.v_proj.weight": "model.safetensors",
152
  "model.layers.19.input_layernorm.weight": "model.safetensors",
 
 
153
  "model.layers.19.mlp.down_proj.weight": "model.safetensors",
 
 
154
  "model.layers.19.mlp.gate_proj.weight": "model.safetensors",
 
 
155
  "model.layers.19.mlp.up_proj.weight": "model.safetensors",
156
  "model.layers.19.post_attention_layernorm.weight": "model.safetensors",
157
  "model.layers.19.post_feedforward_layernorm.weight": "model.safetensors",
158
  "model.layers.19.pre_feedforward_layernorm.weight": "model.safetensors",
159
  "model.layers.19.self_attn.k_norm.weight": "model.safetensors",
 
 
160
  "model.layers.19.self_attn.k_proj.weight": "model.safetensors",
 
 
161
  "model.layers.19.self_attn.o_proj.weight": "model.safetensors",
162
  "model.layers.19.self_attn.q_norm.weight": "model.safetensors",
 
 
163
  "model.layers.19.self_attn.q_proj.weight": "model.safetensors",
 
 
164
  "model.layers.19.self_attn.v_proj.weight": "model.safetensors",
165
  "model.layers.2.input_layernorm.weight": "model.safetensors",
 
 
166
  "model.layers.2.mlp.down_proj.weight": "model.safetensors",
 
 
167
  "model.layers.2.mlp.gate_proj.weight": "model.safetensors",
 
 
168
  "model.layers.2.mlp.up_proj.weight": "model.safetensors",
169
  "model.layers.2.post_attention_layernorm.weight": "model.safetensors",
170
  "model.layers.2.post_feedforward_layernorm.weight": "model.safetensors",
171
  "model.layers.2.pre_feedforward_layernorm.weight": "model.safetensors",
172
  "model.layers.2.self_attn.k_norm.weight": "model.safetensors",
 
 
173
  "model.layers.2.self_attn.k_proj.weight": "model.safetensors",
 
 
174
  "model.layers.2.self_attn.o_proj.weight": "model.safetensors",
175
  "model.layers.2.self_attn.q_norm.weight": "model.safetensors",
 
 
176
  "model.layers.2.self_attn.q_proj.weight": "model.safetensors",
 
 
177
  "model.layers.2.self_attn.v_proj.weight": "model.safetensors",
178
  "model.layers.20.input_layernorm.weight": "model.safetensors",
 
 
179
  "model.layers.20.mlp.down_proj.weight": "model.safetensors",
 
 
180
  "model.layers.20.mlp.gate_proj.weight": "model.safetensors",
 
 
181
  "model.layers.20.mlp.up_proj.weight": "model.safetensors",
182
  "model.layers.20.post_attention_layernorm.weight": "model.safetensors",
183
  "model.layers.20.post_feedforward_layernorm.weight": "model.safetensors",
184
  "model.layers.20.pre_feedforward_layernorm.weight": "model.safetensors",
185
  "model.layers.20.self_attn.k_norm.weight": "model.safetensors",
 
 
186
  "model.layers.20.self_attn.k_proj.weight": "model.safetensors",
 
 
187
  "model.layers.20.self_attn.o_proj.weight": "model.safetensors",
188
  "model.layers.20.self_attn.q_norm.weight": "model.safetensors",
 
 
189
  "model.layers.20.self_attn.q_proj.weight": "model.safetensors",
 
 
190
  "model.layers.20.self_attn.v_proj.weight": "model.safetensors",
191
  "model.layers.21.input_layernorm.weight": "model.safetensors",
 
 
192
  "model.layers.21.mlp.down_proj.weight": "model.safetensors",
 
 
193
  "model.layers.21.mlp.gate_proj.weight": "model.safetensors",
 
 
194
  "model.layers.21.mlp.up_proj.weight": "model.safetensors",
195
  "model.layers.21.post_attention_layernorm.weight": "model.safetensors",
196
  "model.layers.21.post_feedforward_layernorm.weight": "model.safetensors",
197
  "model.layers.21.pre_feedforward_layernorm.weight": "model.safetensors",
198
  "model.layers.21.self_attn.k_norm.weight": "model.safetensors",
 
 
199
  "model.layers.21.self_attn.k_proj.weight": "model.safetensors",
 
 
200
  "model.layers.21.self_attn.o_proj.weight": "model.safetensors",
201
  "model.layers.21.self_attn.q_norm.weight": "model.safetensors",
 
 
202
  "model.layers.21.self_attn.q_proj.weight": "model.safetensors",
 
 
203
  "model.layers.21.self_attn.v_proj.weight": "model.safetensors",
204
  "model.layers.22.input_layernorm.weight": "model.safetensors",
 
 
205
  "model.layers.22.mlp.down_proj.weight": "model.safetensors",
 
 
206
  "model.layers.22.mlp.gate_proj.weight": "model.safetensors",
 
 
207
  "model.layers.22.mlp.up_proj.weight": "model.safetensors",
208
  "model.layers.22.post_attention_layernorm.weight": "model.safetensors",
209
  "model.layers.22.post_feedforward_layernorm.weight": "model.safetensors",
210
  "model.layers.22.pre_feedforward_layernorm.weight": "model.safetensors",
211
  "model.layers.22.self_attn.k_norm.weight": "model.safetensors",
 
 
212
  "model.layers.22.self_attn.k_proj.weight": "model.safetensors",
 
 
213
  "model.layers.22.self_attn.o_proj.weight": "model.safetensors",
214
  "model.layers.22.self_attn.q_norm.weight": "model.safetensors",
 
 
215
  "model.layers.22.self_attn.q_proj.weight": "model.safetensors",
 
 
216
  "model.layers.22.self_attn.v_proj.weight": "model.safetensors",
217
  "model.layers.23.input_layernorm.weight": "model.safetensors",
 
 
218
  "model.layers.23.mlp.down_proj.weight": "model.safetensors",
 
 
219
  "model.layers.23.mlp.gate_proj.weight": "model.safetensors",
 
 
220
  "model.layers.23.mlp.up_proj.weight": "model.safetensors",
221
  "model.layers.23.post_attention_layernorm.weight": "model.safetensors",
222
  "model.layers.23.post_feedforward_layernorm.weight": "model.safetensors",
223
  "model.layers.23.pre_feedforward_layernorm.weight": "model.safetensors",
224
  "model.layers.23.self_attn.k_norm.weight": "model.safetensors",
 
 
225
  "model.layers.23.self_attn.k_proj.weight": "model.safetensors",
 
 
226
  "model.layers.23.self_attn.o_proj.weight": "model.safetensors",
227
  "model.layers.23.self_attn.q_norm.weight": "model.safetensors",
 
 
228
  "model.layers.23.self_attn.q_proj.weight": "model.safetensors",
 
 
229
  "model.layers.23.self_attn.v_proj.weight": "model.safetensors",
230
  "model.layers.24.input_layernorm.weight": "model.safetensors",
 
 
231
  "model.layers.24.mlp.down_proj.weight": "model.safetensors",
 
 
232
  "model.layers.24.mlp.gate_proj.weight": "model.safetensors",
 
 
233
  "model.layers.24.mlp.up_proj.weight": "model.safetensors",
234
  "model.layers.24.post_attention_layernorm.weight": "model.safetensors",
235
  "model.layers.24.post_feedforward_layernorm.weight": "model.safetensors",
236
  "model.layers.24.pre_feedforward_layernorm.weight": "model.safetensors",
237
  "model.layers.24.self_attn.k_norm.weight": "model.safetensors",
 
 
238
  "model.layers.24.self_attn.k_proj.weight": "model.safetensors",
 
 
239
  "model.layers.24.self_attn.o_proj.weight": "model.safetensors",
240
  "model.layers.24.self_attn.q_norm.weight": "model.safetensors",
 
 
241
  "model.layers.24.self_attn.q_proj.weight": "model.safetensors",
 
 
242
  "model.layers.24.self_attn.v_proj.weight": "model.safetensors",
243
  "model.layers.25.input_layernorm.weight": "model.safetensors",
 
 
244
  "model.layers.25.mlp.down_proj.weight": "model.safetensors",
 
 
245
  "model.layers.25.mlp.gate_proj.weight": "model.safetensors",
 
 
246
  "model.layers.25.mlp.up_proj.weight": "model.safetensors",
247
  "model.layers.25.post_attention_layernorm.weight": "model.safetensors",
248
  "model.layers.25.post_feedforward_layernorm.weight": "model.safetensors",
249
  "model.layers.25.pre_feedforward_layernorm.weight": "model.safetensors",
250
  "model.layers.25.self_attn.k_norm.weight": "model.safetensors",
 
 
251
  "model.layers.25.self_attn.k_proj.weight": "model.safetensors",
 
 
252
  "model.layers.25.self_attn.o_proj.weight": "model.safetensors",
253
  "model.layers.25.self_attn.q_norm.weight": "model.safetensors",
 
 
254
  "model.layers.25.self_attn.q_proj.weight": "model.safetensors",
 
 
255
  "model.layers.25.self_attn.v_proj.weight": "model.safetensors",
256
  "model.layers.3.input_layernorm.weight": "model.safetensors",
 
 
257
  "model.layers.3.mlp.down_proj.weight": "model.safetensors",
 
 
258
  "model.layers.3.mlp.gate_proj.weight": "model.safetensors",
 
 
259
  "model.layers.3.mlp.up_proj.weight": "model.safetensors",
260
  "model.layers.3.post_attention_layernorm.weight": "model.safetensors",
261
  "model.layers.3.post_feedforward_layernorm.weight": "model.safetensors",
262
  "model.layers.3.pre_feedforward_layernorm.weight": "model.safetensors",
263
  "model.layers.3.self_attn.k_norm.weight": "model.safetensors",
 
 
264
  "model.layers.3.self_attn.k_proj.weight": "model.safetensors",
 
 
265
  "model.layers.3.self_attn.o_proj.weight": "model.safetensors",
266
  "model.layers.3.self_attn.q_norm.weight": "model.safetensors",
 
 
267
  "model.layers.3.self_attn.q_proj.weight": "model.safetensors",
 
 
268
  "model.layers.3.self_attn.v_proj.weight": "model.safetensors",
269
  "model.layers.4.input_layernorm.weight": "model.safetensors",
 
 
270
  "model.layers.4.mlp.down_proj.weight": "model.safetensors",
 
 
271
  "model.layers.4.mlp.gate_proj.weight": "model.safetensors",
 
 
272
  "model.layers.4.mlp.up_proj.weight": "model.safetensors",
273
  "model.layers.4.post_attention_layernorm.weight": "model.safetensors",
274
  "model.layers.4.post_feedforward_layernorm.weight": "model.safetensors",
275
  "model.layers.4.pre_feedforward_layernorm.weight": "model.safetensors",
276
  "model.layers.4.self_attn.k_norm.weight": "model.safetensors",
 
 
277
  "model.layers.4.self_attn.k_proj.weight": "model.safetensors",
 
 
278
  "model.layers.4.self_attn.o_proj.weight": "model.safetensors",
279
  "model.layers.4.self_attn.q_norm.weight": "model.safetensors",
 
 
280
  "model.layers.4.self_attn.q_proj.weight": "model.safetensors",
 
 
281
  "model.layers.4.self_attn.v_proj.weight": "model.safetensors",
282
  "model.layers.5.input_layernorm.weight": "model.safetensors",
 
 
283
  "model.layers.5.mlp.down_proj.weight": "model.safetensors",
 
 
284
  "model.layers.5.mlp.gate_proj.weight": "model.safetensors",
 
 
285
  "model.layers.5.mlp.up_proj.weight": "model.safetensors",
286
  "model.layers.5.post_attention_layernorm.weight": "model.safetensors",
287
  "model.layers.5.post_feedforward_layernorm.weight": "model.safetensors",
288
  "model.layers.5.pre_feedforward_layernorm.weight": "model.safetensors",
289
  "model.layers.5.self_attn.k_norm.weight": "model.safetensors",
 
 
290
  "model.layers.5.self_attn.k_proj.weight": "model.safetensors",
 
 
291
  "model.layers.5.self_attn.o_proj.weight": "model.safetensors",
292
  "model.layers.5.self_attn.q_norm.weight": "model.safetensors",
 
 
293
  "model.layers.5.self_attn.q_proj.weight": "model.safetensors",
 
 
294
  "model.layers.5.self_attn.v_proj.weight": "model.safetensors",
295
  "model.layers.6.input_layernorm.weight": "model.safetensors",
 
 
296
  "model.layers.6.mlp.down_proj.weight": "model.safetensors",
 
 
297
  "model.layers.6.mlp.gate_proj.weight": "model.safetensors",
 
 
298
  "model.layers.6.mlp.up_proj.weight": "model.safetensors",
299
  "model.layers.6.post_attention_layernorm.weight": "model.safetensors",
300
  "model.layers.6.post_feedforward_layernorm.weight": "model.safetensors",
301
  "model.layers.6.pre_feedforward_layernorm.weight": "model.safetensors",
302
  "model.layers.6.self_attn.k_norm.weight": "model.safetensors",
 
 
303
  "model.layers.6.self_attn.k_proj.weight": "model.safetensors",
 
 
304
  "model.layers.6.self_attn.o_proj.weight": "model.safetensors",
305
  "model.layers.6.self_attn.q_norm.weight": "model.safetensors",
 
 
306
  "model.layers.6.self_attn.q_proj.weight": "model.safetensors",
 
 
307
  "model.layers.6.self_attn.v_proj.weight": "model.safetensors",
308
  "model.layers.7.input_layernorm.weight": "model.safetensors",
 
 
309
  "model.layers.7.mlp.down_proj.weight": "model.safetensors",
 
 
310
  "model.layers.7.mlp.gate_proj.weight": "model.safetensors",
 
 
311
  "model.layers.7.mlp.up_proj.weight": "model.safetensors",
312
  "model.layers.7.post_attention_layernorm.weight": "model.safetensors",
313
  "model.layers.7.post_feedforward_layernorm.weight": "model.safetensors",
314
  "model.layers.7.pre_feedforward_layernorm.weight": "model.safetensors",
315
  "model.layers.7.self_attn.k_norm.weight": "model.safetensors",
 
 
316
  "model.layers.7.self_attn.k_proj.weight": "model.safetensors",
 
 
317
  "model.layers.7.self_attn.o_proj.weight": "model.safetensors",
318
  "model.layers.7.self_attn.q_norm.weight": "model.safetensors",
 
 
319
  "model.layers.7.self_attn.q_proj.weight": "model.safetensors",
 
 
320
  "model.layers.7.self_attn.v_proj.weight": "model.safetensors",
321
  "model.layers.8.input_layernorm.weight": "model.safetensors",
 
 
322
  "model.layers.8.mlp.down_proj.weight": "model.safetensors",
 
 
323
  "model.layers.8.mlp.gate_proj.weight": "model.safetensors",
 
 
324
  "model.layers.8.mlp.up_proj.weight": "model.safetensors",
325
  "model.layers.8.post_attention_layernorm.weight": "model.safetensors",
326
  "model.layers.8.post_feedforward_layernorm.weight": "model.safetensors",
327
  "model.layers.8.pre_feedforward_layernorm.weight": "model.safetensors",
328
  "model.layers.8.self_attn.k_norm.weight": "model.safetensors",
 
 
329
  "model.layers.8.self_attn.k_proj.weight": "model.safetensors",
 
 
330
  "model.layers.8.self_attn.o_proj.weight": "model.safetensors",
331
  "model.layers.8.self_attn.q_norm.weight": "model.safetensors",
 
 
332
  "model.layers.8.self_attn.q_proj.weight": "model.safetensors",
 
 
333
  "model.layers.8.self_attn.v_proj.weight": "model.safetensors",
334
  "model.layers.9.input_layernorm.weight": "model.safetensors",
 
 
335
  "model.layers.9.mlp.down_proj.weight": "model.safetensors",
 
 
336
  "model.layers.9.mlp.gate_proj.weight": "model.safetensors",
 
 
337
  "model.layers.9.mlp.up_proj.weight": "model.safetensors",
338
  "model.layers.9.post_attention_layernorm.weight": "model.safetensors",
339
  "model.layers.9.post_feedforward_layernorm.weight": "model.safetensors",
340
  "model.layers.9.pre_feedforward_layernorm.weight": "model.safetensors",
341
  "model.layers.9.self_attn.k_norm.weight": "model.safetensors",
 
 
342
  "model.layers.9.self_attn.k_proj.weight": "model.safetensors",
 
 
343
  "model.layers.9.self_attn.o_proj.weight": "model.safetensors",
344
  "model.layers.9.self_attn.q_norm.weight": "model.safetensors",
 
 
345
  "model.layers.9.self_attn.q_proj.weight": "model.safetensors",
 
 
346
  "model.layers.9.self_attn.v_proj.weight": "model.safetensors",
347
  "model.norm.weight": "model.safetensors"
348
  }
tokenizer_config.json CHANGED
@@ -51325,6 +51325,7 @@
51325
  },
51326
  "boi_token": "<start_of_image>",
51327
  "bos_token": "<bos>",
 
51328
  "clean_up_tokenization_spaces": false,
51329
  "eoi_token": "<end_of_image>",
51330
  "eos_token": "<eos>",
 
51325
  },
51326
  "boi_token": "<start_of_image>",
51327
  "bos_token": "<bos>",
51328
+ "chat_template": "{{ bos_token }}\n{%- if messages[0]['role'] == 'system' -%}\n {%- if messages[0]['content'] is string -%}\n {%- set first_user_prefix = messages[0]['content'] + '\n\n' -%}\n {%- else -%}\n {%- set first_user_prefix = messages[0]['content'][0]['text'] + '\n\n' -%}\n {%- endif -%}\n {%- set loop_messages = messages[1:] -%}\n{%- else -%}\n {%- set first_user_prefix = \"\" -%}\n {%- set loop_messages = messages -%}\n{%- endif -%}\n{%- for message in loop_messages -%}\n {%- if (message['role'] == 'user') != (loop.index0 % 2 == 0) -%}\n {{ raise_exception(\"Conversation roles must alternate user/assistant/user/assistant/...\") }}\n {%- endif -%}\n {%- if (message['role'] == 'assistant') -%}\n {%- set role = \"model\" -%}\n {%- else -%}\n {%- set role = message['role'] -%}\n {%- endif -%}\n {{ '<start_of_turn>' + role + '\n' + (first_user_prefix if loop.first else \"\") }}\n {%- if message['content'] is string -%}\n {{ message['content'] | trim }}\n {%- elif message['content'] is iterable -%}\n {%- for item in message['content'] -%}\n {%- if item['type'] == 'image' -%}\n {{ '<start_of_image>' }}\n {%- elif item['type'] == 'text' -%}\n {{ item['text'] | trim }}\n {%- endif -%}\n {%- endfor -%}\n {%- else -%}\n {{ raise_exception(\"Invalid content type\") }}\n {%- endif -%}\n {{ '<end_of_turn>\n' }}\n{%- endfor -%}\n{%- if add_generation_prompt -%}\n {{'<start_of_turn>model\n'}}\n{%- endif -%}\n",
51329
  "clean_up_tokenization_spaces": false,
51330
  "eoi_token": "<end_of_image>",
51331
  "eos_token": "<eos>",