kostakoff rpand002 commited on
Commit
222f573
·
0 Parent(s):

Duplicate from ibm-granite/granite-3.3-8b-base

Browse files

Co-authored-by: Rameswar Panda <rpand002@users.noreply.huggingface.co>

.gitattributes ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ *.7z filter=lfs diff=lfs merge=lfs -text
2
+ *.arrow filter=lfs diff=lfs merge=lfs -text
3
+ *.bin filter=lfs diff=lfs merge=lfs -text
4
+ *.bz2 filter=lfs diff=lfs merge=lfs -text
5
+ *.ckpt filter=lfs diff=lfs merge=lfs -text
6
+ *.ftz filter=lfs diff=lfs merge=lfs -text
7
+ *.gz filter=lfs diff=lfs merge=lfs -text
8
+ *.h5 filter=lfs diff=lfs merge=lfs -text
9
+ *.joblib filter=lfs diff=lfs merge=lfs -text
10
+ *.lfs.* filter=lfs diff=lfs merge=lfs -text
11
+ *.mlmodel filter=lfs diff=lfs merge=lfs -text
12
+ *.model filter=lfs diff=lfs merge=lfs -text
13
+ *.msgpack filter=lfs diff=lfs merge=lfs -text
14
+ *.npy filter=lfs diff=lfs merge=lfs -text
15
+ *.npz filter=lfs diff=lfs merge=lfs -text
16
+ *.onnx filter=lfs diff=lfs merge=lfs -text
17
+ *.ot filter=lfs diff=lfs merge=lfs -text
18
+ *.parquet filter=lfs diff=lfs merge=lfs -text
19
+ *.pb filter=lfs diff=lfs merge=lfs -text
20
+ *.pickle filter=lfs diff=lfs merge=lfs -text
21
+ *.pkl filter=lfs diff=lfs merge=lfs -text
22
+ *.pt filter=lfs diff=lfs merge=lfs -text
23
+ *.pth filter=lfs diff=lfs merge=lfs -text
24
+ *.rar filter=lfs diff=lfs merge=lfs -text
25
+ *.safetensors filter=lfs diff=lfs merge=lfs -text
26
+ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
27
+ *.tar.* filter=lfs diff=lfs merge=lfs -text
28
+ *.tar filter=lfs diff=lfs merge=lfs -text
29
+ *.tflite filter=lfs diff=lfs merge=lfs -text
30
+ *.tgz filter=lfs diff=lfs merge=lfs -text
31
+ *.wasm filter=lfs diff=lfs merge=lfs -text
32
+ *.xz 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
README.md ADDED
@@ -0,0 +1,239 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ library_name: transformers
4
+ tags:
5
+ - language
6
+ - granite-3.3
7
+ ---
8
+
9
+ # Granite-3.3-8B-Base
10
+
11
+ **Model Summary:**
12
+
13
+
14
+ Granite-3.3-8B-Base is a decoder-only language model with a 128K token context window. It improves upon Granite-3.1-8B-Base by adding support for Fill-in-the-Middle (FIM) using specialized tokens, enabling the model to generate content conditioned on both prefix and suffix. This makes it well-suited for code completion tasks.
15
+
16
+
17
+
18
+ - **Developers:** Granite Team, IBM
19
+ - **GitHub Repository:** [ibm-granite/granite-3.3-language-models](https://github.com/ibm-granite/granite-3.3-language-models)
20
+ - **Website**: [Granite Docs](https://www.ibm.com/granite/docs/)
21
+ - **Release Date**: April 16th, 2025
22
+ - **License:** [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0)
23
+
24
+ **Supported Languages:**
25
+ English, German, Spanish, French, Japanese, Portuguese, Arabic, Czech, Italian, Korean, Dutch, and Chinese. Users may finetune Granite 3.3 models for languages beyond these 12 languages.
26
+
27
+ **Intended Use:**
28
+ Prominent use cases of LLMs in text-to-text generation include summarization, text classification, extraction, question-answering, and other long-context tasks. All Granite Base models are able to handle these tasks as they were trained on a large amount of data from various domains. Moreover, they can serve as baseline to create specialized models for specific application scenarios.
29
+
30
+ **Generation:**
31
+ This is a simple example of how to use Granite-3.3-8B-Base model.
32
+
33
+ Install the following libraries:
34
+
35
+ ```shell
36
+ pip install torch torchvision torchaudio
37
+ pip install accelerate
38
+ pip install transformers
39
+ ```
40
+ Then, copy the code snippet below to run the example.
41
+
42
+ ```python
43
+ from transformers import AutoModelForCausalLM, AutoTokenizer
44
+ device = "auto"
45
+ model_path = "ibm-granite/granite-3.3-8b-base"
46
+ tokenizer = AutoTokenizer.from_pretrained(model_path)
47
+ # drop device_map if running on CPU
48
+ model = AutoModelForCausalLM.from_pretrained(model_path, device_map=device)
49
+ model.eval()
50
+ # change input text as desired
51
+ input_text = "Where is the Thomas J. Watson Research Center located?"
52
+ # tokenize the text
53
+ input_tokens = tokenizer(input_text, return_tensors="pt").to(device)
54
+ # generate output tokens
55
+ output = model.generate(**input_tokens,
56
+ max_length=4000)
57
+ # decode output tokens into text
58
+ output = tokenizer.batch_decode(output)
59
+ # print output
60
+ print(output)
61
+ ```
62
+
63
+ **Evaluation Results:**
64
+
65
+ <table>
66
+ <caption><b>Comparison with 3.1 Base models</b><sup id="fnref1"><a href="#fn1">1</a></caption>
67
+ <thead>
68
+ <tr>
69
+ <th style="text-align:left; background-color: #001d6c; color: white;">Models</th>
70
+ <th style="text-align:center; background-color: #001d6c; color: white;">ARC-Challenge</th>
71
+ <th style="text-align:center; background-color: #001d6c; color: white;">Hellaswag</th>
72
+ <th style="text-align:center; background-color: #001d6c; color: white;">MMLU</th>
73
+ <th style="text-align:center; background-color: #001d6c; color: white;">TruthfulQA</th>
74
+ <th style="text-align:center; background-color: #001d6c; color: white;">Winogrande</th>
75
+ <th style="text-align:center; background-color: #001d6c; color: white;">GSM8K</th>
76
+ <th style="text-align:center; background-color: #001d6c; color: white;">DROP</th>
77
+ <th style="text-align:center; background-color: #001d6c; color: white;">NQ</th>
78
+ <th style="text-align:center; background-color: #001d6c; color: white;">AGIEval</th>
79
+ <th style="text-align:center; background-color: #001d6c; color: white;">TriviaQA</th>
80
+ <th style="text-align:center; background-color: #001d6c; color: white;">Avg</th>
81
+ </tr></thead>
82
+ <tbody>
83
+ <tr>
84
+ <td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">Granite-3.1-2B-Base</td>
85
+ <td style="text-align:center; background-color: #FFFFFF; color: #2D2D2D;">46.83</td>
86
+ <td style="text-align:center; background-color: #FFFFFF; color: #2D2D2D;">74.9</td>
87
+ <td style="text-align:center; background-color: #FFFFFF; color: #2D2D2D;">54.87</td>
88
+ <td style="text-align:center; background-color: #FFFFFF; color: #2D2D2D;">38.93</td>
89
+ <td style="text-align:center; background-color: #FFFFFF; color: #2D2D2D;">71.8</td>
90
+ <td style="text-align:center; background-color: #FFFFFF; color: #2D2D2D;">53.0</td>
91
+ <td style="text-align:center; background-color: #FFFFFF; color: #2D2D2D;">30.08</td>
92
+ <td style="text-align:center; background-color: #FFFFFF; color: #2D2D2D;">24.46</td>
93
+ <td style="text-align:center; background-color: #FFFFFF; color: #2D2D2D;">38.24</td>
94
+ <td style="text-align:center; background-color: #FFFFFF; color: #2D2D2D;">63.18</td>
95
+ <td style="text-align:center; background-color: #FFFFFF; color: #2D2D2D;">49.63</td>
96
+ </tr>
97
+ <tr>
98
+ <td style="text-align:left; background-color: #DAE8FF; color: black;"><b>Granite-3.3-2B-Base</b></td>
99
+ <td style="text-align:center; background-color: #DAE8FF; color: black;"> 47.49 </td>
100
+ <td style="text-align:center; background-color: #DAE8FF; color: black;"> 73.2 </td>
101
+ <td style="text-align:center; background-color: #DAE8FF; color: black;"> 54.33 </td>
102
+ <td style="text-align:center; background-color: #DAE8FF; color: black;"> 40.83 </td>
103
+ <td style="text-align:center; background-color: #DAE8FF; color: black;"> 70.4 </td>
104
+ <td style="text-align:center; background-color: #DAE8FF; color: black;"> 50.0 </td>
105
+ <td style="text-align:center; background-color: #DAE8FF; color: black;"> 32.552 </td>
106
+ <td style="text-align:center; background-color: #DAE8FF; color: black;">24.36</td>
107
+ <td style="text-align:center; background-color: #DAE8FF; color: black;">38.78</td>
108
+ <td style="text-align:center; background-color: #DAE8FF; color: black;">63.22</td>
109
+ <td style="text-align:center; background-color: #DAE8FF; color: black;">49.52</td>
110
+ </tr>
111
+ <tr>
112
+ <td style="text-align:left; background-color: #FFFFFF; color: #2D2D2D;">Granite-3.1-8B-Base</td>
113
+ <td style="text-align:center; background-color: #FFFFFF; color: #2D2D2D;">53.51</td>
114
+ <td style="text-align:center; background-color: #FFFFFF; color: #2D2D2D;">81.4</td>
115
+ <td style="text-align:center; background-color: #FFFFFF; color: #2D2D2D;">64.28</td>
116
+ <td style="text-align:center; background-color: #FFFFFF; color: #2D2D2D;">51.27</td>
117
+ <td style="text-align:center; background-color: #FFFFFF; color: #2D2D2D;">76.2</td>
118
+ <td style="text-align:center; background-color: #FFFFFF; color: #2D2D2D;">70.5</td>
119
+ <td style="text-align:center; background-color: #FFFFFF; color: #2D2D2D;">45.87</td>
120
+ <td style="text-align:center; background-color: #FFFFFF; color: #2D2D2D;">35.97</td>
121
+ <td style="text-align:center; background-color: #FFFFFF; color: #2D2D2D;">48.99</td>
122
+ <td style="text-align:center; background-color: #FFFFFF; color: #2D2D2D;">78.33</td>
123
+ <td style="text-align:center; background-color: #FFFFFF; color: #2D2D2D;">60.63</td>
124
+ </tr>
125
+
126
+ <tr>
127
+ <td style="text-align:left; background-color: #DAE8FF; color: black;"><b>Granite-3.3-8B-Base</b></td>
128
+ <td style="text-align:center; background-color: #DAE8FF; color: black;">50.84</td>
129
+ <td style="text-align:center; background-color: #DAE8FF; color: black;">80.1</td>
130
+ <td style="text-align:center; background-color: #DAE8FF; color: black;">63.89</td>
131
+ <td style="text-align:center; background-color: #DAE8FF; color: black;">52.15</td>
132
+ <td style="text-align:center; background-color: #DAE8FF; color: black;">74.4</td>
133
+ <td style="text-align:center; background-color: #DAE8FF; color: black;">59.0</td>
134
+ <td style="text-align:center; background-color: #DAE8FF; color: black;">36.14</td>
135
+ <td style="text-align:center; background-color: #DAE8FF; color: black;">36.5</td>
136
+ <td style="text-align:center; background-color: #DAE8FF; color: black;">49.3</td>
137
+ <td style="text-align:center; background-color: #DAE8FF; color: black;">78.18</td>
138
+ <td style="text-align:center; background-color: #DAE8FF; color: black;">58.05</td>
139
+ </tr>
140
+ </tbody></table>
141
+
142
+ **Model Architecture:**
143
+ Granite-3.3-8B-Base is based on a decoder-only dense transformer architecture. Core components of this architecture are: GQA and RoPE, MLP with SwiGLU, RMSNorm, and shared input/output embeddings.
144
+ <table>
145
+ <thead>
146
+ <tr>
147
+ <th style="text-align:left; background-color: #001d6c; color: white;">Model</th>
148
+ <th style="text-align:center; background-color: #001d6c; color: white;">2B Dense</th>
149
+ <th style="text-align:center; background-color: #001d6c; color: white;">8B Dense</th>
150
+ </tr></thead>
151
+ <tbody>
152
+ <tr>
153
+ <td style="text-align:left; background-color: #FFFFFF; color: black;">Embedding size</td>
154
+ <td style="text-align:center; background-color: #FFFFFF; color: black;">2048</td>
155
+ <td style="text-align:center; background-color: #DAE8FF; color: black;">4096</td>
156
+ </tr>
157
+ <tr>
158
+ <td style="text-align:left; background-color: #FFFFFF; color: black;">Number of layers</td>
159
+ <td style="text-align:center; background-color: #FFFFFF; color: black;">40</td>
160
+ <td style="text-align:center; background-color: #DAE8FF; color: black;">40</td>
161
+ </tr>
162
+ <tr>
163
+ <td style="text-align:left; background-color: #FFFFFF; color: black;">Attention head size</td>
164
+ <td style="text-align:center; background-color: #FFFFFF; color: black;">64</td>
165
+ <td style="text-align:center; background-color: #DAE8FF; color: black;">128</td>
166
+ </tr>
167
+ <tr>
168
+ <td style="text-align:left; background-color: #FFFFFF; color: black;">Number of attention heads</td>
169
+ <td style="text-align:center; background-color: #FFFFFF; color: black;">32</td>
170
+ <td style="text-align:center; background-color: #DAE8FF; color: black;">32</td>
171
+ </tr>
172
+ <tr>
173
+ <td style="text-align:left; background-color: #FFFFFF; color: black;">Number of KV heads</td>
174
+ <td style="text-align:center; background-color: #FFFFFF; color: black;">8</td>
175
+ <td style="text-align:center; background-color: #DAE8FF; color: black;">8</td>
176
+ </tr>
177
+ <tr>
178
+ <td style="text-align:left; background-color: #FFFFFF; color: black;">MLP hidden size</td>
179
+ <td style="text-align:center; background-color: #FFFFFF; color: black;">8192</td>
180
+ <td style="text-align:center; background-color: #DAE8FF; color: black;">12800</td>
181
+ </tr>
182
+ <tr>
183
+ <td style="text-align:left; background-color: #FFFFFF; color: black;">MLP activation</td>
184
+ <td style="text-align:center; background-color: #FFFFFF; color: black;">SwiGLU</td>
185
+ <td style="text-align:center; background-color: #DAE8FF; color: black;">SwiGLU</td>
186
+ </tr>
187
+ <tr>
188
+ <td style="text-align:left; background-color: #FFFFFF; color: black;">Initialization std</td>
189
+ <td style="text-align:center; background-color: #FFFFFF; color: black;">0.1</td>
190
+ <td style="text-align:center; background-color: #DAE8FF; color: black;">0.1</td>
191
+ </tr>
192
+ <tr>
193
+ <td style="text-align:left; background-color: #FFFFFF; color: black;">Sequence length</td>
194
+ <td style="text-align:center; background-color: #FFFFFF; color: black;">128K</td>
195
+ <td style="text-align:center; background-color: #DAE8FF; color: black;">128K</td>
196
+ </tr>
197
+ <tr>
198
+ <td style="text-align:left; background-color: #FFFFFF; color: black;">Position embedding</td>
199
+ <td style="text-align:center; background-color: #FFFFFF; color: black;">RoPE</td>
200
+ <td style="text-align:center; background-color: #DAE8FF; color: black;">RoPE</td>
201
+ </tr>
202
+ <tr>
203
+ <td style="text-align:left; background-color: #FFFFFF; color: black;"># Parameters</td>
204
+ <td style="text-align:center; background-color: #FFFFFF; color: black;">2.5B</td>
205
+ <td style="text-align:center; background-color: #DAE8FF; color: black;">8.1B</td>
206
+ </tr>
207
+ <tr>
208
+ <td style="text-align:left; background-color: #FFFFFF; color: black;"># Active parameters</td>
209
+ <td style="text-align:center; background-color: #FFFFFF; color: black;">2.5B</td>
210
+ <td style="text-align:center; background-color: #DAE8FF; color: black;">8.1B</td>
211
+ </tr>
212
+ <tr>
213
+ <td style="text-align:left; background-color: #FFFFFF; color: black;"># Training tokens</td>
214
+ <td style="text-align:center; background-color: #FFFFFF; color: black;">12T</td>
215
+ <td style="text-align:center; background-color: #DAE8FF; color: black;">12T</td>
216
+ </tr>
217
+ </tbody></table>
218
+
219
+ **Training Data:**
220
+ This model is trained on a mix of open source and proprietary data following a three-stage training strategy.
221
+ * Stage 1 data: The data for stage 1 is sourced from diverse domains, such as: web, code, academic sources, books, and math data.
222
+ * Stage 2 data: The data for stage 2 comprises a curated mix of high-quality data from the same domains, plus multilingual and instruction data. The goal of this second training phase is to enhance the model’s performance on specific tasks.
223
+ * Stage 3 data: The data for stage 3 consists of original stage-2 pretraining data with additional synthetic long-context data in form of QA/summary pairs where the answer
224
+ contains a recitation of the related paragraph before the answer.
225
+
226
+ <!-- A detailed attribution of datasets can be found in the [Granite 3.0 Technical Report](https://github.com/ibm-granite/granite-3.0-language-models/blob/main/paper.pdf), [Granite 3.3 Technical Report (coming soon)](https://huggingface.co/collections/ibm-granite/granite-31-language-models-6751dbbf2f3389bec5c6f02d), and [Accompanying Author List](https://github.com/ibm-granite/granite-3.0-language-models/blob/main/author-ack.pdf). -->
227
+
228
+ **Infrastructure:**
229
+ We train Granite 3.3 Language Models using IBM's super computing cluster, Blue Vela, which is outfitted with NVIDIA H100 GPUs. This cluster provides a scalable and efficient infrastructure for training our models over thousands of GPUs.
230
+
231
+ **Ethical Considerations and Limitations:**
232
+ The use of Large Language Models involves risks and ethical considerations people must be aware of, including but not limited to: bias and fairness, misinformation, and autonomous decision-making. Granite-3.3-8B-Base model is not the exception in this regard. Even though this model is suited for multiple generative AI tasks, it has not undergone any safety alignment, there it may produce problematic outputs. Additionally, it remains uncertain whether smaller models might exhibit increased susceptibility to hallucination in generation scenarios by copying text verbatim from the training dataset due to their reduced sizes and memorization capacities. This aspect is currently an active area of research, and we anticipate more rigorous exploration, comprehension, and mitigations in this domain. Regarding ethics, a latent risk associated with all Large Language Models is their malicious utilization. We urge the community to use Granite-3.3-8B-Base model with ethical intentions and in a responsible way.
233
+
234
+ **Resources**
235
+ - ⭐️ Learn about the latest updates with Granite: https://www.ibm.com/granite
236
+ - 📄 Get started with tutorials, best practices, and prompt engineering advice: https://www.ibm.com/granite/docs/
237
+ - 💡 Learn about the latest Granite learning resources: https://github.com/ibm-granite-community/
238
+
239
+ <p><a href="#fnref1" title="Jump back to reference">[1]</a> Evaluated using <a href="https://github.com/allenai/olmes">OLMES</a></p>
config.json ADDED
@@ -0,0 +1,32 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "GraniteForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0,
7
+ "attention_multiplier": 0.0078125,
8
+ "bos_token_id": 0,
9
+ "embedding_multiplier": 12.0,
10
+ "eos_token_id": 0,
11
+ "hidden_act": "silu",
12
+ "hidden_size": 4096,
13
+ "initializer_range": 0.02,
14
+ "intermediate_size": 12800,
15
+ "logits_scaling": 16.0,
16
+ "max_position_embeddings": 131072,
17
+ "mlp_bias": false,
18
+ "model_type": "granite",
19
+ "num_attention_heads": 32,
20
+ "num_hidden_layers": 40,
21
+ "num_key_value_heads": 8,
22
+ "pad_token_id": 0,
23
+ "residual_multiplier": 0.22,
24
+ "rms_norm_eps": 1e-05,
25
+ "rope_scaling": null,
26
+ "rope_theta": 10000000.0,
27
+ "tie_word_embeddings": true,
28
+ "torch_dtype": "bfloat16",
29
+ "transformers_version": "4.46.0",
30
+ "use_cache": true,
31
+ "vocab_size": 49152
32
+ }
generation_config.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 0,
4
+ "eos_token_id": 0,
5
+ "pad_token_id": 0,
6
+ "transformers_version": "4.46.0"
7
+ }
model-00001-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:aff0e1694b27512191400f7ac3edfae91d172e486d67f5cdd1f5894ffa6057fa
3
+ size 4974636944
model-00002-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ffc98a2c6764ae439803155c8a599b79c7748cb268bb2767b77a4015ed015977
3
+ size 4991447808
model-00003-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:14e623cc9b28bce73dbd134d47042b39635af9b202ba87417deed55eeeec894d
3
+ size 4970460032
model-00004-of-00004.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6919e320e61a62f7548e0d3672cfa1cd3d1565403803d0f70caf2e90dfc47630
3
+ size 1405169256
model.safetensors.index.json ADDED
@@ -0,0 +1,369 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "metadata": {
3
+ "total_size": 16341671936
4
+ },
5
+ "weight_map": {
6
+ "model.embed_tokens.weight": "model-00001-of-00004.safetensors",
7
+ "model.layers.0.input_layernorm.weight": "model-00001-of-00004.safetensors",
8
+ "model.layers.0.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
9
+ "model.layers.0.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
10
+ "model.layers.0.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
11
+ "model.layers.0.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
12
+ "model.layers.0.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
13
+ "model.layers.0.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
14
+ "model.layers.0.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
15
+ "model.layers.0.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
16
+ "model.layers.1.input_layernorm.weight": "model-00001-of-00004.safetensors",
17
+ "model.layers.1.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
18
+ "model.layers.1.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
19
+ "model.layers.1.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
20
+ "model.layers.1.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
21
+ "model.layers.1.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
22
+ "model.layers.1.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
23
+ "model.layers.1.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
24
+ "model.layers.1.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
25
+ "model.layers.10.input_layernorm.weight": "model-00001-of-00004.safetensors",
26
+ "model.layers.10.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
27
+ "model.layers.10.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
28
+ "model.layers.10.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
29
+ "model.layers.10.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
30
+ "model.layers.10.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
31
+ "model.layers.10.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
32
+ "model.layers.10.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
33
+ "model.layers.10.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
34
+ "model.layers.11.input_layernorm.weight": "model-00002-of-00004.safetensors",
35
+ "model.layers.11.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
36
+ "model.layers.11.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
37
+ "model.layers.11.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
38
+ "model.layers.11.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
39
+ "model.layers.11.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
40
+ "model.layers.11.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
41
+ "model.layers.11.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
42
+ "model.layers.11.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
43
+ "model.layers.12.input_layernorm.weight": "model-00002-of-00004.safetensors",
44
+ "model.layers.12.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
45
+ "model.layers.12.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
46
+ "model.layers.12.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
47
+ "model.layers.12.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
48
+ "model.layers.12.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
49
+ "model.layers.12.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
50
+ "model.layers.12.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
51
+ "model.layers.12.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
52
+ "model.layers.13.input_layernorm.weight": "model-00002-of-00004.safetensors",
53
+ "model.layers.13.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
54
+ "model.layers.13.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
55
+ "model.layers.13.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
56
+ "model.layers.13.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
57
+ "model.layers.13.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
58
+ "model.layers.13.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
59
+ "model.layers.13.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
60
+ "model.layers.13.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
61
+ "model.layers.14.input_layernorm.weight": "model-00002-of-00004.safetensors",
62
+ "model.layers.14.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
63
+ "model.layers.14.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
64
+ "model.layers.14.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
65
+ "model.layers.14.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
66
+ "model.layers.14.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
67
+ "model.layers.14.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
68
+ "model.layers.14.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
69
+ "model.layers.14.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
70
+ "model.layers.15.input_layernorm.weight": "model-00002-of-00004.safetensors",
71
+ "model.layers.15.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
72
+ "model.layers.15.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
73
+ "model.layers.15.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
74
+ "model.layers.15.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
75
+ "model.layers.15.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
76
+ "model.layers.15.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
77
+ "model.layers.15.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
78
+ "model.layers.15.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
79
+ "model.layers.16.input_layernorm.weight": "model-00002-of-00004.safetensors",
80
+ "model.layers.16.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
81
+ "model.layers.16.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
82
+ "model.layers.16.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
83
+ "model.layers.16.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
84
+ "model.layers.16.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
85
+ "model.layers.16.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
86
+ "model.layers.16.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
87
+ "model.layers.16.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
88
+ "model.layers.17.input_layernorm.weight": "model-00002-of-00004.safetensors",
89
+ "model.layers.17.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
90
+ "model.layers.17.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
91
+ "model.layers.17.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
92
+ "model.layers.17.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
93
+ "model.layers.17.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
94
+ "model.layers.17.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
95
+ "model.layers.17.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
96
+ "model.layers.17.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
97
+ "model.layers.18.input_layernorm.weight": "model-00002-of-00004.safetensors",
98
+ "model.layers.18.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
99
+ "model.layers.18.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
100
+ "model.layers.18.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
101
+ "model.layers.18.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
102
+ "model.layers.18.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
103
+ "model.layers.18.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
104
+ "model.layers.18.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
105
+ "model.layers.18.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
106
+ "model.layers.19.input_layernorm.weight": "model-00002-of-00004.safetensors",
107
+ "model.layers.19.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
108
+ "model.layers.19.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
109
+ "model.layers.19.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
110
+ "model.layers.19.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
111
+ "model.layers.19.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
112
+ "model.layers.19.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
113
+ "model.layers.19.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
114
+ "model.layers.19.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
115
+ "model.layers.2.input_layernorm.weight": "model-00001-of-00004.safetensors",
116
+ "model.layers.2.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
117
+ "model.layers.2.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
118
+ "model.layers.2.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
119
+ "model.layers.2.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
120
+ "model.layers.2.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
121
+ "model.layers.2.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
122
+ "model.layers.2.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
123
+ "model.layers.2.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
124
+ "model.layers.20.input_layernorm.weight": "model-00002-of-00004.safetensors",
125
+ "model.layers.20.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
126
+ "model.layers.20.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
127
+ "model.layers.20.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
128
+ "model.layers.20.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
129
+ "model.layers.20.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
130
+ "model.layers.20.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
131
+ "model.layers.20.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
132
+ "model.layers.20.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
133
+ "model.layers.21.input_layernorm.weight": "model-00002-of-00004.safetensors",
134
+ "model.layers.21.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
135
+ "model.layers.21.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
136
+ "model.layers.21.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
137
+ "model.layers.21.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
138
+ "model.layers.21.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
139
+ "model.layers.21.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
140
+ "model.layers.21.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
141
+ "model.layers.21.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
142
+ "model.layers.22.input_layernorm.weight": "model-00002-of-00004.safetensors",
143
+ "model.layers.22.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
144
+ "model.layers.22.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
145
+ "model.layers.22.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
146
+ "model.layers.22.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
147
+ "model.layers.22.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
148
+ "model.layers.22.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
149
+ "model.layers.22.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
150
+ "model.layers.22.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
151
+ "model.layers.23.input_layernorm.weight": "model-00002-of-00004.safetensors",
152
+ "model.layers.23.mlp.down_proj.weight": "model-00002-of-00004.safetensors",
153
+ "model.layers.23.mlp.gate_proj.weight": "model-00002-of-00004.safetensors",
154
+ "model.layers.23.mlp.up_proj.weight": "model-00002-of-00004.safetensors",
155
+ "model.layers.23.post_attention_layernorm.weight": "model-00002-of-00004.safetensors",
156
+ "model.layers.23.self_attn.k_proj.weight": "model-00002-of-00004.safetensors",
157
+ "model.layers.23.self_attn.o_proj.weight": "model-00002-of-00004.safetensors",
158
+ "model.layers.23.self_attn.q_proj.weight": "model-00002-of-00004.safetensors",
159
+ "model.layers.23.self_attn.v_proj.weight": "model-00002-of-00004.safetensors",
160
+ "model.layers.24.input_layernorm.weight": "model-00003-of-00004.safetensors",
161
+ "model.layers.24.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
162
+ "model.layers.24.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
163
+ "model.layers.24.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
164
+ "model.layers.24.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
165
+ "model.layers.24.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
166
+ "model.layers.24.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
167
+ "model.layers.24.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
168
+ "model.layers.24.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
169
+ "model.layers.25.input_layernorm.weight": "model-00003-of-00004.safetensors",
170
+ "model.layers.25.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
171
+ "model.layers.25.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
172
+ "model.layers.25.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
173
+ "model.layers.25.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
174
+ "model.layers.25.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
175
+ "model.layers.25.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
176
+ "model.layers.25.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
177
+ "model.layers.25.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
178
+ "model.layers.26.input_layernorm.weight": "model-00003-of-00004.safetensors",
179
+ "model.layers.26.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
180
+ "model.layers.26.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
181
+ "model.layers.26.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
182
+ "model.layers.26.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
183
+ "model.layers.26.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
184
+ "model.layers.26.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
185
+ "model.layers.26.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
186
+ "model.layers.26.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
187
+ "model.layers.27.input_layernorm.weight": "model-00003-of-00004.safetensors",
188
+ "model.layers.27.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
189
+ "model.layers.27.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
190
+ "model.layers.27.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
191
+ "model.layers.27.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
192
+ "model.layers.27.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
193
+ "model.layers.27.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
194
+ "model.layers.27.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
195
+ "model.layers.27.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
196
+ "model.layers.28.input_layernorm.weight": "model-00003-of-00004.safetensors",
197
+ "model.layers.28.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
198
+ "model.layers.28.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
199
+ "model.layers.28.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
200
+ "model.layers.28.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
201
+ "model.layers.28.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
202
+ "model.layers.28.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
203
+ "model.layers.28.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
204
+ "model.layers.28.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
205
+ "model.layers.29.input_layernorm.weight": "model-00003-of-00004.safetensors",
206
+ "model.layers.29.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
207
+ "model.layers.29.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
208
+ "model.layers.29.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
209
+ "model.layers.29.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
210
+ "model.layers.29.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
211
+ "model.layers.29.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
212
+ "model.layers.29.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
213
+ "model.layers.29.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
214
+ "model.layers.3.input_layernorm.weight": "model-00001-of-00004.safetensors",
215
+ "model.layers.3.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
216
+ "model.layers.3.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
217
+ "model.layers.3.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
218
+ "model.layers.3.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
219
+ "model.layers.3.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
220
+ "model.layers.3.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
221
+ "model.layers.3.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
222
+ "model.layers.3.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
223
+ "model.layers.30.input_layernorm.weight": "model-00003-of-00004.safetensors",
224
+ "model.layers.30.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
225
+ "model.layers.30.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
226
+ "model.layers.30.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
227
+ "model.layers.30.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
228
+ "model.layers.30.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
229
+ "model.layers.30.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
230
+ "model.layers.30.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
231
+ "model.layers.30.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
232
+ "model.layers.31.input_layernorm.weight": "model-00003-of-00004.safetensors",
233
+ "model.layers.31.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
234
+ "model.layers.31.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
235
+ "model.layers.31.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
236
+ "model.layers.31.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
237
+ "model.layers.31.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
238
+ "model.layers.31.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
239
+ "model.layers.31.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
240
+ "model.layers.31.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
241
+ "model.layers.32.input_layernorm.weight": "model-00003-of-00004.safetensors",
242
+ "model.layers.32.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
243
+ "model.layers.32.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
244
+ "model.layers.32.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
245
+ "model.layers.32.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
246
+ "model.layers.32.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
247
+ "model.layers.32.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
248
+ "model.layers.32.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
249
+ "model.layers.32.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
250
+ "model.layers.33.input_layernorm.weight": "model-00003-of-00004.safetensors",
251
+ "model.layers.33.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
252
+ "model.layers.33.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
253
+ "model.layers.33.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
254
+ "model.layers.33.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
255
+ "model.layers.33.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
256
+ "model.layers.33.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
257
+ "model.layers.33.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
258
+ "model.layers.33.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
259
+ "model.layers.34.input_layernorm.weight": "model-00003-of-00004.safetensors",
260
+ "model.layers.34.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
261
+ "model.layers.34.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
262
+ "model.layers.34.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
263
+ "model.layers.34.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
264
+ "model.layers.34.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
265
+ "model.layers.34.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
266
+ "model.layers.34.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
267
+ "model.layers.34.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
268
+ "model.layers.35.input_layernorm.weight": "model-00003-of-00004.safetensors",
269
+ "model.layers.35.mlp.down_proj.weight": "model-00003-of-00004.safetensors",
270
+ "model.layers.35.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
271
+ "model.layers.35.mlp.up_proj.weight": "model-00003-of-00004.safetensors",
272
+ "model.layers.35.post_attention_layernorm.weight": "model-00003-of-00004.safetensors",
273
+ "model.layers.35.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
274
+ "model.layers.35.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
275
+ "model.layers.35.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
276
+ "model.layers.35.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
277
+ "model.layers.36.input_layernorm.weight": "model-00004-of-00004.safetensors",
278
+ "model.layers.36.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
279
+ "model.layers.36.mlp.gate_proj.weight": "model-00003-of-00004.safetensors",
280
+ "model.layers.36.mlp.up_proj.weight": "model-00004-of-00004.safetensors",
281
+ "model.layers.36.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
282
+ "model.layers.36.self_attn.k_proj.weight": "model-00003-of-00004.safetensors",
283
+ "model.layers.36.self_attn.o_proj.weight": "model-00003-of-00004.safetensors",
284
+ "model.layers.36.self_attn.q_proj.weight": "model-00003-of-00004.safetensors",
285
+ "model.layers.36.self_attn.v_proj.weight": "model-00003-of-00004.safetensors",
286
+ "model.layers.37.input_layernorm.weight": "model-00004-of-00004.safetensors",
287
+ "model.layers.37.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
288
+ "model.layers.37.mlp.gate_proj.weight": "model-00004-of-00004.safetensors",
289
+ "model.layers.37.mlp.up_proj.weight": "model-00004-of-00004.safetensors",
290
+ "model.layers.37.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
291
+ "model.layers.37.self_attn.k_proj.weight": "model-00004-of-00004.safetensors",
292
+ "model.layers.37.self_attn.o_proj.weight": "model-00004-of-00004.safetensors",
293
+ "model.layers.37.self_attn.q_proj.weight": "model-00004-of-00004.safetensors",
294
+ "model.layers.37.self_attn.v_proj.weight": "model-00004-of-00004.safetensors",
295
+ "model.layers.38.input_layernorm.weight": "model-00004-of-00004.safetensors",
296
+ "model.layers.38.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
297
+ "model.layers.38.mlp.gate_proj.weight": "model-00004-of-00004.safetensors",
298
+ "model.layers.38.mlp.up_proj.weight": "model-00004-of-00004.safetensors",
299
+ "model.layers.38.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
300
+ "model.layers.38.self_attn.k_proj.weight": "model-00004-of-00004.safetensors",
301
+ "model.layers.38.self_attn.o_proj.weight": "model-00004-of-00004.safetensors",
302
+ "model.layers.38.self_attn.q_proj.weight": "model-00004-of-00004.safetensors",
303
+ "model.layers.38.self_attn.v_proj.weight": "model-00004-of-00004.safetensors",
304
+ "model.layers.39.input_layernorm.weight": "model-00004-of-00004.safetensors",
305
+ "model.layers.39.mlp.down_proj.weight": "model-00004-of-00004.safetensors",
306
+ "model.layers.39.mlp.gate_proj.weight": "model-00004-of-00004.safetensors",
307
+ "model.layers.39.mlp.up_proj.weight": "model-00004-of-00004.safetensors",
308
+ "model.layers.39.post_attention_layernorm.weight": "model-00004-of-00004.safetensors",
309
+ "model.layers.39.self_attn.k_proj.weight": "model-00004-of-00004.safetensors",
310
+ "model.layers.39.self_attn.o_proj.weight": "model-00004-of-00004.safetensors",
311
+ "model.layers.39.self_attn.q_proj.weight": "model-00004-of-00004.safetensors",
312
+ "model.layers.39.self_attn.v_proj.weight": "model-00004-of-00004.safetensors",
313
+ "model.layers.4.input_layernorm.weight": "model-00001-of-00004.safetensors",
314
+ "model.layers.4.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
315
+ "model.layers.4.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
316
+ "model.layers.4.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
317
+ "model.layers.4.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
318
+ "model.layers.4.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
319
+ "model.layers.4.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
320
+ "model.layers.4.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
321
+ "model.layers.4.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
322
+ "model.layers.5.input_layernorm.weight": "model-00001-of-00004.safetensors",
323
+ "model.layers.5.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
324
+ "model.layers.5.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
325
+ "model.layers.5.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
326
+ "model.layers.5.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
327
+ "model.layers.5.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
328
+ "model.layers.5.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
329
+ "model.layers.5.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
330
+ "model.layers.5.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
331
+ "model.layers.6.input_layernorm.weight": "model-00001-of-00004.safetensors",
332
+ "model.layers.6.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
333
+ "model.layers.6.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
334
+ "model.layers.6.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
335
+ "model.layers.6.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
336
+ "model.layers.6.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
337
+ "model.layers.6.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
338
+ "model.layers.6.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
339
+ "model.layers.6.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
340
+ "model.layers.7.input_layernorm.weight": "model-00001-of-00004.safetensors",
341
+ "model.layers.7.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
342
+ "model.layers.7.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
343
+ "model.layers.7.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
344
+ "model.layers.7.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
345
+ "model.layers.7.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
346
+ "model.layers.7.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
347
+ "model.layers.7.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
348
+ "model.layers.7.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
349
+ "model.layers.8.input_layernorm.weight": "model-00001-of-00004.safetensors",
350
+ "model.layers.8.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
351
+ "model.layers.8.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
352
+ "model.layers.8.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
353
+ "model.layers.8.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
354
+ "model.layers.8.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
355
+ "model.layers.8.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
356
+ "model.layers.8.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
357
+ "model.layers.8.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
358
+ "model.layers.9.input_layernorm.weight": "model-00001-of-00004.safetensors",
359
+ "model.layers.9.mlp.down_proj.weight": "model-00001-of-00004.safetensors",
360
+ "model.layers.9.mlp.gate_proj.weight": "model-00001-of-00004.safetensors",
361
+ "model.layers.9.mlp.up_proj.weight": "model-00001-of-00004.safetensors",
362
+ "model.layers.9.post_attention_layernorm.weight": "model-00001-of-00004.safetensors",
363
+ "model.layers.9.self_attn.k_proj.weight": "model-00001-of-00004.safetensors",
364
+ "model.layers.9.self_attn.o_proj.weight": "model-00001-of-00004.safetensors",
365
+ "model.layers.9.self_attn.q_proj.weight": "model-00001-of-00004.safetensors",
366
+ "model.layers.9.self_attn.v_proj.weight": "model-00001-of-00004.safetensors",
367
+ "model.norm.weight": "model-00004-of-00004.safetensors"
368
+ }
369
+ }
special_tokens_map.json ADDED
@@ -0,0 +1,51 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "additional_special_tokens": [
3
+ "<|endoftext|>",
4
+ "<fim_prefix>",
5
+ "<fim_middle>",
6
+ "<fim_suffix>",
7
+ "<fim_pad>",
8
+ "<filename>",
9
+ "<gh_stars>",
10
+ "<issue_start>",
11
+ "<issue_comment>",
12
+ "<issue_closed>",
13
+ "<jupyter_start>",
14
+ "<jupyter_text>",
15
+ "<jupyter_code>",
16
+ "<jupyter_output>",
17
+ "<empty_output>",
18
+ "<commit_before>",
19
+ "<commit_msg>",
20
+ "<commit_after>",
21
+ "<reponame>"
22
+ ],
23
+ "bos_token": {
24
+ "content": "<|endoftext|>",
25
+ "lstrip": false,
26
+ "normalized": false,
27
+ "rstrip": false,
28
+ "single_word": false
29
+ },
30
+ "eos_token": {
31
+ "content": "<|endoftext|>",
32
+ "lstrip": false,
33
+ "normalized": false,
34
+ "rstrip": false,
35
+ "single_word": false
36
+ },
37
+ "pad_token": {
38
+ "content": "<|endoftext|>",
39
+ "lstrip": false,
40
+ "normalized": false,
41
+ "rstrip": false,
42
+ "single_word": false
43
+ },
44
+ "unk_token": {
45
+ "content": "<|endoftext|>",
46
+ "lstrip": false,
47
+ "normalized": false,
48
+ "rstrip": false,
49
+ "single_word": false
50
+ }
51
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,187 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_prefix_space": false,
3
+ "added_tokens_decoder": {
4
+ "0": {
5
+ "content": "<|endoftext|>",
6
+ "lstrip": false,
7
+ "normalized": false,
8
+ "rstrip": false,
9
+ "single_word": false,
10
+ "special": true
11
+ },
12
+ "1": {
13
+ "content": "<fim_prefix>",
14
+ "lstrip": false,
15
+ "normalized": false,
16
+ "rstrip": false,
17
+ "single_word": false,
18
+ "special": true
19
+ },
20
+ "2": {
21
+ "content": "<fim_middle>",
22
+ "lstrip": false,
23
+ "normalized": false,
24
+ "rstrip": false,
25
+ "single_word": false,
26
+ "special": true
27
+ },
28
+ "3": {
29
+ "content": "<fim_suffix>",
30
+ "lstrip": false,
31
+ "normalized": false,
32
+ "rstrip": false,
33
+ "single_word": false,
34
+ "special": true
35
+ },
36
+ "4": {
37
+ "content": "<fim_pad>",
38
+ "lstrip": false,
39
+ "normalized": false,
40
+ "rstrip": false,
41
+ "single_word": false,
42
+ "special": true
43
+ },
44
+ "5": {
45
+ "content": "<filename>",
46
+ "lstrip": false,
47
+ "normalized": false,
48
+ "rstrip": false,
49
+ "single_word": false,
50
+ "special": true
51
+ },
52
+ "6": {
53
+ "content": "<gh_stars>",
54
+ "lstrip": false,
55
+ "normalized": false,
56
+ "rstrip": false,
57
+ "single_word": false,
58
+ "special": true
59
+ },
60
+ "7": {
61
+ "content": "<issue_start>",
62
+ "lstrip": false,
63
+ "normalized": false,
64
+ "rstrip": false,
65
+ "single_word": false,
66
+ "special": true
67
+ },
68
+ "8": {
69
+ "content": "<issue_comment>",
70
+ "lstrip": false,
71
+ "normalized": false,
72
+ "rstrip": false,
73
+ "single_word": false,
74
+ "special": true
75
+ },
76
+ "9": {
77
+ "content": "<issue_closed>",
78
+ "lstrip": false,
79
+ "normalized": false,
80
+ "rstrip": false,
81
+ "single_word": false,
82
+ "special": true
83
+ },
84
+ "10": {
85
+ "content": "<jupyter_start>",
86
+ "lstrip": false,
87
+ "normalized": false,
88
+ "rstrip": false,
89
+ "single_word": false,
90
+ "special": true
91
+ },
92
+ "11": {
93
+ "content": "<jupyter_text>",
94
+ "lstrip": false,
95
+ "normalized": false,
96
+ "rstrip": false,
97
+ "single_word": false,
98
+ "special": true
99
+ },
100
+ "12": {
101
+ "content": "<jupyter_code>",
102
+ "lstrip": false,
103
+ "normalized": false,
104
+ "rstrip": false,
105
+ "single_word": false,
106
+ "special": true
107
+ },
108
+ "13": {
109
+ "content": "<jupyter_output>",
110
+ "lstrip": false,
111
+ "normalized": false,
112
+ "rstrip": false,
113
+ "single_word": false,
114
+ "special": true
115
+ },
116
+ "14": {
117
+ "content": "<empty_output>",
118
+ "lstrip": false,
119
+ "normalized": false,
120
+ "rstrip": false,
121
+ "single_word": false,
122
+ "special": true
123
+ },
124
+ "15": {
125
+ "content": "<commit_before>",
126
+ "lstrip": false,
127
+ "normalized": false,
128
+ "rstrip": false,
129
+ "single_word": false,
130
+ "special": true
131
+ },
132
+ "16": {
133
+ "content": "<commit_msg>",
134
+ "lstrip": false,
135
+ "normalized": false,
136
+ "rstrip": false,
137
+ "single_word": false,
138
+ "special": true
139
+ },
140
+ "17": {
141
+ "content": "<commit_after>",
142
+ "lstrip": false,
143
+ "normalized": false,
144
+ "rstrip": false,
145
+ "single_word": false,
146
+ "special": true
147
+ },
148
+ "18": {
149
+ "content": "<reponame>",
150
+ "lstrip": false,
151
+ "normalized": false,
152
+ "rstrip": false,
153
+ "single_word": false,
154
+ "special": true
155
+ }
156
+ },
157
+ "additional_special_tokens": [
158
+ "<|endoftext|>",
159
+ "<fim_prefix>",
160
+ "<fim_middle>",
161
+ "<fim_suffix>",
162
+ "<fim_pad>",
163
+ "<filename>",
164
+ "<gh_stars>",
165
+ "<issue_start>",
166
+ "<issue_comment>",
167
+ "<issue_closed>",
168
+ "<jupyter_start>",
169
+ "<jupyter_text>",
170
+ "<jupyter_code>",
171
+ "<jupyter_output>",
172
+ "<empty_output>",
173
+ "<commit_before>",
174
+ "<commit_msg>",
175
+ "<commit_after>",
176
+ "<reponame>"
177
+ ],
178
+ "bos_token": "<|endoftext|>",
179
+ "clean_up_tokenization_spaces": true,
180
+ "eos_token": "<|endoftext|>",
181
+ "model_max_length": 9223372036854775807,
182
+ "pad_token": "<|endoftext|>",
183
+ "padding_side": "left",
184
+ "tokenizer_class": "GPT2Tokenizer",
185
+ "unk_token": "<|endoftext|>",
186
+ "vocab_size": 49152
187
+ }