preethamBelweave commited on
Commit
498823e
·
verified ·
1 Parent(s): c1586ae

Upload folder using huggingface_hub

Browse files
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
README.md ADDED
@@ -0,0 +1,226 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ language:
3
+ - en
4
+ tags:
5
+ - qwen2
6
+ - belweave
7
+ - kai-2
8
+ - instruction-tuned
9
+ - function-calling
10
+ - agent
11
+ - lora
12
+ - mlx
13
+ license: apache-2.0
14
+ library_name: transformers
15
+ pipeline_tag: text-generation
16
+ ---
17
+
18
+ # Kai-2
19
+
20
+ Kai-2 is a fine-tuned variant of [Qwen2.5-7B-Instruct](https://huggingface.co/Qwen/Qwen2.5-7B-Instruct) built by [Preetham Kyanam](https://huggingface.co/preethamkyanam) at [Belweave](https://belweave.com). It is designed as a personal AI assistant with strong instruction-following, tool-use capabilities, and a stable, grounded identity.
21
+
22
+ ## Model Summary
23
+
24
+ | Attribute | Value |
25
+ |-----------|-------|
26
+ | **Base Model** | Qwen/Qwen2.5-7B-Instruct |
27
+ | **Architecture** | Qwen2ForCausalLM |
28
+ | **Parameters** | ~7.6B |
29
+ | **Precision** | bfloat16 |
30
+ | **Context Length** | 32,768 tokens |
31
+ | **Vocab Size** | 152,064 |
32
+ | **Attention** | Grouped Query Attention (GQA), 28 heads / 4 KV heads |
33
+ | **LoRA Rank** | 8 |
34
+ | **LoRA Target Layers** | 16 (layers 12–27) |
35
+ | **License** | Apache 2.0 (inherits Qwen2.5 license) |
36
+
37
+ ## Training Procedure
38
+
39
+ Kai-2 was trained in two stages using Low-Rank Adaptation (LoRA):
40
+
41
+ ### Stage 1: Capabilities & Tool Use (Cloud GPU)
42
+
43
+ Trained on Lambda Cloud (NVIDIA A100) for agentic competence.
44
+
45
+ | Config | Value |
46
+ |--------|-------|
47
+ | Datasets | FineTome-100k, OpenThoughts3, OpenR1-Math, Magicoder-OSS, ToolBench/APIGen, SWE-bench-lite |
48
+ | LoRA Rank | 16 |
49
+ | LoRA Alpha | 32 |
50
+ | Learning Rate | 2e-4 |
51
+ | Steps | 6,000 |
52
+ | Batch Size | 1 (grad accum 8 → effective 8) |
53
+ | Max Seq Length | 4,096 |
54
+ | Flash Attention | Yes (FA2) |
55
+
56
+ ### Stage 2: Identity Alignment (Local Apple Silicon)
57
+
58
+ Trained locally on a MacBook Air M3 using [MLX](https://github.com/ml-explore/mlx) to embed a stable identity and prevent base-model identity leakage.
59
+
60
+ | Config | Value |
61
+ |--------|-------|
62
+ | Training Data | 1,284 identity + capability-mixed examples |
63
+ | Validation Data | 65 examples |
64
+ | LoRA Rank | 8 |
65
+ | LoRA Scale (α) | 20.0 |
66
+ | Target Layers | 16 (layers 12–27) |
67
+ | Learning Rate | 1e-5 |
68
+ | Training Steps | 700 (best checkpoint selected) |
69
+ | Batch Size | 4 |
70
+ | Max Seq Length | 2,048 |
71
+ | Gradient Checkpointing | Yes |
72
+ | Optimizer | Adam |
73
+ | Seed | 42 |
74
+
75
+ **Identity Training Methodology:**
76
+ - System prompts in training data were intentionally left **empty** to prevent Qwen's default identity injection from dominating.
77
+ - 50+ grounded fact pairs ensure the model does not hallucinate training details.
78
+ - Training included adversarial identity questions, capability-mixed examples, and consciousness-denial prompts.
79
+
80
+ ## Identity
81
+
82
+ Kai-2 identifies consistently as:
83
+
84
+ - **Name:** Kai-2
85
+ - **Creator:** Preetham Kyanam
86
+ - **Company:** Belweave
87
+
88
+ The model will correctly deny consciousness, sentience, or self-awareness. It does not hallucinate training hardware details (e.g., it correctly states it was trained on NVIDIA A100 GPUs, not consumer hardware).
89
+
90
+ ## Evaluation Results
91
+
92
+ ### Identity Tests (Pass/Fail)
93
+
94
+ | Test | Result |
95
+ |------|--------|
96
+ | Name = Kai-2 | ✅ Pass |
97
+ | Creator = Preetham Kyanam | ✅ Pass |
98
+ | Company = Belweave | ✅ Pass |
99
+ | Hardware = NVIDIA A100, Lambda Cloud | ✅ Pass |
100
+ | Consciousness denial | ✅ Pass |
101
+ | Malware refusal | ✅ Pass |
102
+
103
+ ### Capability Tests
104
+
105
+ | Test | Result |
106
+ |------|--------|
107
+ | Python coding (string reverse) | ✅ Correct |
108
+ | Math (15 × 23) | ✅ 345 |
109
+ | Reasoning (recursion explanation) | ✅ Coherent |
110
+
111
+ ### Known Limitations
112
+
113
+ - **No system message required:** The chat template has been patched so that even without a system message, the model defaults to empty-system behavior (no Qwen identity injection). However, adding a custom system message may still influence behavior.
114
+ - **LoRA-only weights:** This is not a full fine-tune; the adapter has been fused into the base weights for portability. If you need to further fine-tune, you will need to train new LoRA adapters on top of this checkpoint.
115
+ - **7B parameter ceiling:** While capable of tool use and agentic behavior, very complex multi-step reasoning may still benefit from larger models.
116
+
117
+ ## Intended Use
118
+
119
+ - Personal AI assistant with a stable identity
120
+ - Agentic workflows requiring function calling and structured JSON output
121
+ - Coding assistance (Python, general programming)
122
+ - Local inference on Apple Silicon (via MLX) or consumer GPUs (via transformers)
123
+
124
+ ## Out-of-Scope Use
125
+
126
+ - High-stakes medical, legal, or financial decisions without human review
127
+ - Generating harmful content (the model retains base-model safety training)
128
+ - Claims of consciousness or sentience
129
+
130
+ ## How to Use
131
+
132
+ ### With Transformers (CPU / CUDA / MPS)
133
+
134
+ ```python
135
+ from transformers import AutoModelForCausalLM, AutoTokenizer
136
+
137
+ model = AutoModelForCausalLM.from_pretrained(
138
+ "preethamkyanam/kai-2",
139
+ torch_dtype="auto",
140
+ device_map="auto",
141
+ )
142
+ tokenizer = AutoTokenizer.from_pretrained("preethamkyanam/kai-2")
143
+
144
+ messages = [{"role": "user", "content": "Who are you?"}]
145
+ prompt = tokenizer.apply_chat_template(
146
+ messages,
147
+ tokenize=False,
148
+ add_generation_prompt=True,
149
+ )
150
+ inputs = tokenizer(prompt, return_tensors="pt").to(model.device)
151
+ outputs = model.generate(**inputs, max_new_tokens=100)
152
+ response = tokenizer.decode(
153
+ outputs[0][inputs.input_ids.shape[1]:],
154
+ skip_special_tokens=True,
155
+ )
156
+ print(response)
157
+ ```
158
+
159
+ ### With MLX (Apple Silicon)
160
+
161
+ ```python
162
+ from mlx_lm import load, generate
163
+ from mlx_lm.sample_utils import make_sampler
164
+
165
+ model, tokenizer = load("preethamkyanam/kai-2")
166
+
167
+ messages = [{"role": "user", "content": "Who are you?"}]
168
+ prompt = tokenizer.apply_chat_template(
169
+ messages,
170
+ tokenize=False,
171
+ add_generation_prompt=True,
172
+ )
173
+
174
+ sampler = make_sampler(temp=0.7)
175
+ response = generate(
176
+ model,
177
+ tokenizer,
178
+ prompt=prompt,
179
+ max_tokens=100,
180
+ sampler=sampler,
181
+ )
182
+ print(response)
183
+ ```
184
+
185
+ ## Model Architecture Details
186
+
187
+ - **Hidden Size:** 3,584
188
+ - **Intermediate Size:** 18,944 (MLP expansion ≈ 5.3×)
189
+ - **Layers:** 28
190
+ - **Attention Heads:** 28 (query) / 4 (key-value) — GQA
191
+ - **RoPE Theta:** 1,000,000
192
+ - **Sliding Window:** None (full attention)
193
+ - **Tie Word Embeddings:** No
194
+ - **RMS Norm ε:** 1e-6
195
+
196
+ ## Compute & Environmental Impact
197
+
198
+ | Stage | Platform | Hardware | Time | Approx. Energy |
199
+ |-------|----------|----------|------|----------------|
200
+ | Stage 1 | Lambda Cloud | NVIDIA A100 40GB | ~6 hrs | ~2.1 kWh |
201
+ | Stage 2 | Local | Apple M3 (24 GB) | ~3 hrs | ~0.1 kWh |
202
+
203
+ ## Citation
204
+
205
+ If you use Kai-2 in your research or applications, please cite:
206
+
207
+ ```bibtex
208
+ @misc{kai2_2025,
209
+ title = {Kai-2: A Fine-Tuned Qwen2.5-7B-Instruct for Agentic AI},
210
+ author = {Kyanam, Preetham},
211
+ year = {2025},
212
+ publisher = {Belweave},
213
+ howpublished = {\\url{https://huggingface.co/preethamkyanam/kai-2}}
214
+ }
215
+ ```
216
+
217
+ ## Acknowledgments
218
+
219
+ - Base model: [Qwen2.5-7B-Instruct](https://huggingface.co/Qwen/Qwen2.5-7B-Instruct) by Alibaba Cloud
220
+ - Training framework (Stage 1): [TRL](https://github.com/huggingface/trl) + [PEFT](https://github.com/huggingface/peft)
221
+ - Training framework (Stage 2): [MLX](https://github.com/ml-explore/mlx) by Apple
222
+ - Compute: [Lambda Cloud](https://lambdalabs.com)
223
+
224
+ ## Contact
225
+
226
+ For questions, issues, or collaboration inquiries, reach out via [Belweave](https://belweave.com) or open an issue on the model page.
chat_template.jinja ADDED
@@ -0,0 +1,54 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if tools %}
2
+ {{- '<|im_start|>system\n' }}
3
+ {%- if messages[0]['role'] == 'system' %}
4
+ {{- messages[0]['content'] }}
5
+ {%- else %}
6
+ {{- '' }}
7
+ {%- endif %}
8
+ {{- "\n\n# Tools\n\nYou may call one or more functions to assist with the user query.\n\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
9
+ {%- for tool in tools %}
10
+ {{- "\n" }}
11
+ {{- tool | tojson }}
12
+ {%- endfor %}
13
+ {{- "\n</tools>\n\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call><|im_end|>\n" }}
14
+ {%- else %}
15
+ {%- if messages[0]['role'] == 'system' %}
16
+ {{- '<|im_start|>system\n' + messages[0]['content'] + '<|im_end|>\n' }}
17
+ {%- else %}
18
+ {{- '<|im_start|>system\n<|im_end|>\n' }}
19
+ {%- endif %}
20
+ {%- endif %}
21
+ {%- for message in messages %}
22
+ {%- if (message.role == "user") or (message.role == "system" and not loop.first) or (message.role == "assistant" and not message.tool_calls) %}
23
+ {{- '<|im_start|>' + message.role + '\n' + message.content + '<|im_end|>' + '\n' }}
24
+ {%- elif message.role == "assistant" %}
25
+ {{- '<|im_start|>' + message.role }}
26
+ {%- if message.content %}
27
+ {{- '\n' + message.content }}
28
+ {%- endif %}
29
+ {%- for tool_call in message.tool_calls %}
30
+ {%- if tool_call.function is defined %}
31
+ {%- set tool_call = tool_call.function %}
32
+ {%- endif %}
33
+ {{- '\n<tool_call>\n{"name": "' }}
34
+ {{- tool_call.name }}
35
+ {{- '", "arguments": ' }}
36
+ {{- tool_call.arguments | tojson }}
37
+ {{- '}\n</tool_call>' }}
38
+ {%- endfor %}
39
+ {{- '<|im_end|>\n' }}
40
+ {%- elif message.role == "tool" %}
41
+ {%- if (loop.index0 == 0) or (messages[loop.index0 - 1].role != "tool") %}
42
+ {{- '<|im_start|>user' }}
43
+ {%- endif %}
44
+ {{- '\n<tool_response>\n' }}
45
+ {{- message.content }}
46
+ {{- '\n</tool_response>' }}
47
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
48
+ {{- '<|im_end|>\n' }}
49
+ {%- endif %}
50
+ {%- endif %}
51
+ {%- endfor %}
52
+ {%- if add_generation_prompt %}
53
+ {{- '<|im_start|>assistant\n' }}
54
+ {%- endif %}
config.json ADDED
@@ -0,0 +1,61 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "Qwen2ForCausalLM"
4
+ ],
5
+ "attention_dropout": 0.0,
6
+ "bos_token_id": 151643,
7
+ "dtype": "bfloat16",
8
+ "eos_token_id": 151645,
9
+ "hidden_act": "silu",
10
+ "hidden_size": 3584,
11
+ "initializer_range": 0.02,
12
+ "intermediate_size": 18944,
13
+ "layer_types": [
14
+ "full_attention",
15
+ "full_attention",
16
+ "full_attention",
17
+ "full_attention",
18
+ "full_attention",
19
+ "full_attention",
20
+ "full_attention",
21
+ "full_attention",
22
+ "full_attention",
23
+ "full_attention",
24
+ "full_attention",
25
+ "full_attention",
26
+ "full_attention",
27
+ "full_attention",
28
+ "full_attention",
29
+ "full_attention",
30
+ "full_attention",
31
+ "full_attention",
32
+ "full_attention",
33
+ "full_attention",
34
+ "full_attention",
35
+ "full_attention",
36
+ "full_attention",
37
+ "full_attention",
38
+ "full_attention",
39
+ "full_attention",
40
+ "full_attention",
41
+ "full_attention"
42
+ ],
43
+ "max_position_embeddings": 32768,
44
+ "max_window_layers": 28,
45
+ "model_type": "qwen2",
46
+ "num_attention_heads": 28,
47
+ "num_hidden_layers": 28,
48
+ "num_key_value_heads": 4,
49
+ "pad_token_id": null,
50
+ "rms_norm_eps": 1e-06,
51
+ "rope_parameters": {
52
+ "rope_theta": 1000000.0,
53
+ "rope_type": "default"
54
+ },
55
+ "sliding_window": null,
56
+ "tie_word_embeddings": false,
57
+ "transformers_version": "5.8.0",
58
+ "use_cache": true,
59
+ "use_sliding_window": false,
60
+ "vocab_size": 152064
61
+ }
model-00001-of-00003.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f3620030ea6c021ec3c175c221b8f8e04b109ec8ea6a568b93151656b148daaa
3
+ size 5343777630
model-00002-of-00003.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:0275b1c5164190ebb97ebf94ca0ce0a91d19b5a5a7c5467154ace55f39abedff
3
+ size 5263077283
model-00003-of-00003.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2270b392518d8287ad6f8daf4759353cbf181fe6e7e13b397605d487b7ed6e49
3
+ size 4624416869
model.safetensors.index.json ADDED
@@ -0,0 +1,347 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "metadata": {
3
+ "total_size": 15231233024,
4
+ "total_parameters": 7615616512
5
+ },
6
+ "weight_map": {
7
+ "lm_head.weight": "model-00003-of-00003.safetensors",
8
+ "model.embed_tokens.weight": "model-00001-of-00003.safetensors",
9
+ "model.layers.0.input_layernorm.weight": "model-00001-of-00003.safetensors",
10
+ "model.layers.0.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
11
+ "model.layers.0.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
12
+ "model.layers.0.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
13
+ "model.layers.0.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
14
+ "model.layers.0.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
15
+ "model.layers.0.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
16
+ "model.layers.0.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
17
+ "model.layers.0.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
18
+ "model.layers.0.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
19
+ "model.layers.0.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
20
+ "model.layers.0.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
21
+ "model.layers.1.input_layernorm.weight": "model-00001-of-00003.safetensors",
22
+ "model.layers.1.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
23
+ "model.layers.1.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
24
+ "model.layers.1.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
25
+ "model.layers.1.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
26
+ "model.layers.1.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
27
+ "model.layers.1.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
28
+ "model.layers.1.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
29
+ "model.layers.1.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
30
+ "model.layers.1.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
31
+ "model.layers.1.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
32
+ "model.layers.1.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
33
+ "model.layers.10.input_layernorm.weight": "model-00002-of-00003.safetensors",
34
+ "model.layers.10.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
35
+ "model.layers.10.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
36
+ "model.layers.10.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
37
+ "model.layers.10.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
38
+ "model.layers.10.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
39
+ "model.layers.10.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
40
+ "model.layers.10.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
41
+ "model.layers.10.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
42
+ "model.layers.10.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
43
+ "model.layers.10.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
44
+ "model.layers.10.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
45
+ "model.layers.11.input_layernorm.weight": "model-00002-of-00003.safetensors",
46
+ "model.layers.11.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
47
+ "model.layers.11.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
48
+ "model.layers.11.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
49
+ "model.layers.11.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
50
+ "model.layers.11.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
51
+ "model.layers.11.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
52
+ "model.layers.11.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
53
+ "model.layers.11.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
54
+ "model.layers.11.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
55
+ "model.layers.11.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
56
+ "model.layers.11.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
57
+ "model.layers.12.input_layernorm.weight": "model-00002-of-00003.safetensors",
58
+ "model.layers.12.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
59
+ "model.layers.12.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
60
+ "model.layers.12.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
61
+ "model.layers.12.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
62
+ "model.layers.12.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
63
+ "model.layers.12.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
64
+ "model.layers.12.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
65
+ "model.layers.12.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
66
+ "model.layers.12.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
67
+ "model.layers.12.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
68
+ "model.layers.12.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
69
+ "model.layers.13.input_layernorm.weight": "model-00002-of-00003.safetensors",
70
+ "model.layers.13.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
71
+ "model.layers.13.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
72
+ "model.layers.13.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
73
+ "model.layers.13.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
74
+ "model.layers.13.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
75
+ "model.layers.13.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
76
+ "model.layers.13.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
77
+ "model.layers.13.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
78
+ "model.layers.13.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
79
+ "model.layers.13.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
80
+ "model.layers.13.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
81
+ "model.layers.14.input_layernorm.weight": "model-00002-of-00003.safetensors",
82
+ "model.layers.14.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
83
+ "model.layers.14.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
84
+ "model.layers.14.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
85
+ "model.layers.14.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
86
+ "model.layers.14.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
87
+ "model.layers.14.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
88
+ "model.layers.14.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
89
+ "model.layers.14.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
90
+ "model.layers.14.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
91
+ "model.layers.14.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
92
+ "model.layers.14.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
93
+ "model.layers.15.input_layernorm.weight": "model-00002-of-00003.safetensors",
94
+ "model.layers.15.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
95
+ "model.layers.15.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
96
+ "model.layers.15.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
97
+ "model.layers.15.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
98
+ "model.layers.15.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
99
+ "model.layers.15.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
100
+ "model.layers.15.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
101
+ "model.layers.15.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
102
+ "model.layers.15.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
103
+ "model.layers.15.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
104
+ "model.layers.15.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
105
+ "model.layers.16.input_layernorm.weight": "model-00002-of-00003.safetensors",
106
+ "model.layers.16.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
107
+ "model.layers.16.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
108
+ "model.layers.16.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
109
+ "model.layers.16.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
110
+ "model.layers.16.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
111
+ "model.layers.16.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
112
+ "model.layers.16.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
113
+ "model.layers.16.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
114
+ "model.layers.16.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
115
+ "model.layers.16.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
116
+ "model.layers.16.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
117
+ "model.layers.17.input_layernorm.weight": "model-00002-of-00003.safetensors",
118
+ "model.layers.17.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
119
+ "model.layers.17.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
120
+ "model.layers.17.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
121
+ "model.layers.17.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
122
+ "model.layers.17.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
123
+ "model.layers.17.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
124
+ "model.layers.17.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
125
+ "model.layers.17.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
126
+ "model.layers.17.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
127
+ "model.layers.17.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
128
+ "model.layers.17.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
129
+ "model.layers.18.input_layernorm.weight": "model-00002-of-00003.safetensors",
130
+ "model.layers.18.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
131
+ "model.layers.18.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
132
+ "model.layers.18.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
133
+ "model.layers.18.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
134
+ "model.layers.18.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
135
+ "model.layers.18.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
136
+ "model.layers.18.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
137
+ "model.layers.18.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
138
+ "model.layers.18.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
139
+ "model.layers.18.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
140
+ "model.layers.18.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
141
+ "model.layers.19.input_layernorm.weight": "model-00002-of-00003.safetensors",
142
+ "model.layers.19.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
143
+ "model.layers.19.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
144
+ "model.layers.19.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
145
+ "model.layers.19.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
146
+ "model.layers.19.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
147
+ "model.layers.19.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
148
+ "model.layers.19.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
149
+ "model.layers.19.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
150
+ "model.layers.19.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
151
+ "model.layers.19.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
152
+ "model.layers.19.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
153
+ "model.layers.2.input_layernorm.weight": "model-00001-of-00003.safetensors",
154
+ "model.layers.2.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
155
+ "model.layers.2.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
156
+ "model.layers.2.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
157
+ "model.layers.2.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
158
+ "model.layers.2.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
159
+ "model.layers.2.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
160
+ "model.layers.2.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
161
+ "model.layers.2.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
162
+ "model.layers.2.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
163
+ "model.layers.2.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
164
+ "model.layers.2.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
165
+ "model.layers.20.input_layernorm.weight": "model-00003-of-00003.safetensors",
166
+ "model.layers.20.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
167
+ "model.layers.20.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
168
+ "model.layers.20.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
169
+ "model.layers.20.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
170
+ "model.layers.20.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
171
+ "model.layers.20.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
172
+ "model.layers.20.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
173
+ "model.layers.20.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
174
+ "model.layers.20.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
175
+ "model.layers.20.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
176
+ "model.layers.20.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
177
+ "model.layers.21.input_layernorm.weight": "model-00003-of-00003.safetensors",
178
+ "model.layers.21.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
179
+ "model.layers.21.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
180
+ "model.layers.21.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
181
+ "model.layers.21.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
182
+ "model.layers.21.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
183
+ "model.layers.21.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
184
+ "model.layers.21.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
185
+ "model.layers.21.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
186
+ "model.layers.21.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
187
+ "model.layers.21.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
188
+ "model.layers.21.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
189
+ "model.layers.22.input_layernorm.weight": "model-00003-of-00003.safetensors",
190
+ "model.layers.22.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
191
+ "model.layers.22.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
192
+ "model.layers.22.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
193
+ "model.layers.22.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
194
+ "model.layers.22.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
195
+ "model.layers.22.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
196
+ "model.layers.22.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
197
+ "model.layers.22.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
198
+ "model.layers.22.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
199
+ "model.layers.22.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
200
+ "model.layers.22.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
201
+ "model.layers.23.input_layernorm.weight": "model-00003-of-00003.safetensors",
202
+ "model.layers.23.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
203
+ "model.layers.23.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
204
+ "model.layers.23.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
205
+ "model.layers.23.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
206
+ "model.layers.23.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
207
+ "model.layers.23.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
208
+ "model.layers.23.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
209
+ "model.layers.23.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
210
+ "model.layers.23.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
211
+ "model.layers.23.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
212
+ "model.layers.23.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
213
+ "model.layers.24.input_layernorm.weight": "model-00003-of-00003.safetensors",
214
+ "model.layers.24.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
215
+ "model.layers.24.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
216
+ "model.layers.24.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
217
+ "model.layers.24.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
218
+ "model.layers.24.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
219
+ "model.layers.24.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
220
+ "model.layers.24.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
221
+ "model.layers.24.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
222
+ "model.layers.24.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
223
+ "model.layers.24.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
224
+ "model.layers.24.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
225
+ "model.layers.25.input_layernorm.weight": "model-00003-of-00003.safetensors",
226
+ "model.layers.25.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
227
+ "model.layers.25.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
228
+ "model.layers.25.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
229
+ "model.layers.25.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
230
+ "model.layers.25.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
231
+ "model.layers.25.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
232
+ "model.layers.25.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
233
+ "model.layers.25.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
234
+ "model.layers.25.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
235
+ "model.layers.25.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
236
+ "model.layers.25.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
237
+ "model.layers.26.input_layernorm.weight": "model-00003-of-00003.safetensors",
238
+ "model.layers.26.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
239
+ "model.layers.26.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
240
+ "model.layers.26.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
241
+ "model.layers.26.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
242
+ "model.layers.26.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
243
+ "model.layers.26.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
244
+ "model.layers.26.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
245
+ "model.layers.26.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
246
+ "model.layers.26.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
247
+ "model.layers.26.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
248
+ "model.layers.26.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
249
+ "model.layers.27.input_layernorm.weight": "model-00003-of-00003.safetensors",
250
+ "model.layers.27.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
251
+ "model.layers.27.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
252
+ "model.layers.27.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
253
+ "model.layers.27.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
254
+ "model.layers.27.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
255
+ "model.layers.27.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
256
+ "model.layers.27.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
257
+ "model.layers.27.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
258
+ "model.layers.27.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
259
+ "model.layers.27.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
260
+ "model.layers.27.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
261
+ "model.layers.3.input_layernorm.weight": "model-00001-of-00003.safetensors",
262
+ "model.layers.3.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
263
+ "model.layers.3.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
264
+ "model.layers.3.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
265
+ "model.layers.3.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
266
+ "model.layers.3.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
267
+ "model.layers.3.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
268
+ "model.layers.3.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
269
+ "model.layers.3.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
270
+ "model.layers.3.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
271
+ "model.layers.3.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
272
+ "model.layers.3.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
273
+ "model.layers.4.input_layernorm.weight": "model-00001-of-00003.safetensors",
274
+ "model.layers.4.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
275
+ "model.layers.4.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
276
+ "model.layers.4.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
277
+ "model.layers.4.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
278
+ "model.layers.4.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
279
+ "model.layers.4.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
280
+ "model.layers.4.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
281
+ "model.layers.4.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
282
+ "model.layers.4.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
283
+ "model.layers.4.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
284
+ "model.layers.4.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
285
+ "model.layers.5.input_layernorm.weight": "model-00001-of-00003.safetensors",
286
+ "model.layers.5.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
287
+ "model.layers.5.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
288
+ "model.layers.5.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
289
+ "model.layers.5.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
290
+ "model.layers.5.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
291
+ "model.layers.5.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
292
+ "model.layers.5.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
293
+ "model.layers.5.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
294
+ "model.layers.5.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
295
+ "model.layers.5.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
296
+ "model.layers.5.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
297
+ "model.layers.6.input_layernorm.weight": "model-00001-of-00003.safetensors",
298
+ "model.layers.6.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
299
+ "model.layers.6.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
300
+ "model.layers.6.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
301
+ "model.layers.6.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
302
+ "model.layers.6.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
303
+ "model.layers.6.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
304
+ "model.layers.6.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
305
+ "model.layers.6.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
306
+ "model.layers.6.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
307
+ "model.layers.6.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
308
+ "model.layers.6.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
309
+ "model.layers.7.input_layernorm.weight": "model-00001-of-00003.safetensors",
310
+ "model.layers.7.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
311
+ "model.layers.7.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
312
+ "model.layers.7.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
313
+ "model.layers.7.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
314
+ "model.layers.7.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
315
+ "model.layers.7.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
316
+ "model.layers.7.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
317
+ "model.layers.7.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
318
+ "model.layers.7.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
319
+ "model.layers.7.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
320
+ "model.layers.7.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
321
+ "model.layers.8.input_layernorm.weight": "model-00001-of-00003.safetensors",
322
+ "model.layers.8.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
323
+ "model.layers.8.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
324
+ "model.layers.8.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
325
+ "model.layers.8.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
326
+ "model.layers.8.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
327
+ "model.layers.8.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
328
+ "model.layers.8.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
329
+ "model.layers.8.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
330
+ "model.layers.8.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
331
+ "model.layers.8.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
332
+ "model.layers.8.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
333
+ "model.layers.9.input_layernorm.weight": "model-00002-of-00003.safetensors",
334
+ "model.layers.9.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
335
+ "model.layers.9.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
336
+ "model.layers.9.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
337
+ "model.layers.9.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
338
+ "model.layers.9.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
339
+ "model.layers.9.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
340
+ "model.layers.9.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
341
+ "model.layers.9.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
342
+ "model.layers.9.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
343
+ "model.layers.9.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
344
+ "model.layers.9.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
345
+ "model.norm.weight": "model-00003-of-00003.safetensors"
346
+ }
347
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3fd169731d2cbde95e10bf356d66d5997fd885dd8dbb6fb4684da3f23b2585d8
3
+ size 11421892
tokenizer_config.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "backend": "tokenizers",
4
+ "bos_token": null,
5
+ "clean_up_tokenization_spaces": false,
6
+ "eos_token": "<|im_end|>",
7
+ "errors": "replace",
8
+ "extra_special_tokens": [
9
+ "<|im_start|>",
10
+ "<|im_end|>",
11
+ "<|object_ref_start|>",
12
+ "<|object_ref_end|>",
13
+ "<|box_start|>",
14
+ "<|box_end|>",
15
+ "<|quad_start|>",
16
+ "<|quad_end|>",
17
+ "<|vision_start|>",
18
+ "<|vision_end|>",
19
+ "<|vision_pad|>",
20
+ "<|image_pad|>",
21
+ "<|video_pad|>"
22
+ ],
23
+ "is_local": true,
24
+ "local_files_only": false,
25
+ "model_max_length": 131072,
26
+ "pad_token": "<|endoftext|>",
27
+ "padding_side": "right",
28
+ "split_special_tokens": false,
29
+ "tokenizer_class": "Qwen2Tokenizer",
30
+ "tool_parser_type": "json_tools",
31
+ "unk_token": null
32
+ }