Upload folder using huggingface_hub
Browse files- README.md +100 -0
- config.json +32 -0
- generation_config.json +7 -0
- model-00001-of-00002.safetensors +3 -0
- model-00002-of-00002.safetensors +3 -0
- model.safetensors.index.json +369 -0
- special_tokens_map.json +51 -0
- tokenizer.json +0 -0
- tokenizer_config.json +187 -0
README.md
ADDED
@@ -0,0 +1,100 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
---
|
2 |
+
license: apache-2.0
|
3 |
+
library_name: transformers
|
4 |
+
tags:
|
5 |
+
- language
|
6 |
+
- granite-3.1
|
7 |
+
---
|
8 |
+
|
9 |
+
# Granite-3.1-2B-Base
|
10 |
+
|
11 |
+
**Model Summary:**
|
12 |
+
Granite-3.1-2B-Base extends the context length of Granite-3.0-2B-Base from 4K to 128K using a progressive training strategy by increasing the supported context length in increments while adjusting RoPE theta until the model has successfully adapted to desired length of 128K. This long-context pre-training stage was performed using approximately 500B tokens.
|
13 |
+
|
14 |
+
- **Developers:** Granite Team, IBM
|
15 |
+
- **GitHub Repository:** [ibm-granite/granite-3.1-language-models](https://github.com/ibm-granite/granite-3.1-language-models)
|
16 |
+
- **Website**: [Granite Docs](https://www.ibm.com/granite/docs/)
|
17 |
+
- **Paper:** [Granite 3.1 Language Models (coming soon)](https://huggingface.co/collections/ibm-granite/granite-31-language-models-6751dbbf2f3389bec5c6f02d)
|
18 |
+
- **Release Date**: December 18th, 2024
|
19 |
+
- **License:** [Apache 2.0](https://www.apache.org/licenses/LICENSE-2.0)
|
20 |
+
|
21 |
+
**Supported Languages:**
|
22 |
+
English, German, Spanish, French, Japanese, Portuguese, Arabic, Czech, Italian, Korean, Dutch, and Chinese. Users may finetune Granite 3.1 models for languages beyond these 12 languages.
|
23 |
+
|
24 |
+
**Intended Use:**
|
25 |
+
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.
|
26 |
+
|
27 |
+
**Generation:**
|
28 |
+
This is a simple example of how to use Granite-3.1-2B-Base model.
|
29 |
+
|
30 |
+
Install the following libraries:
|
31 |
+
|
32 |
+
```shell
|
33 |
+
pip install torch torchvision torchaudio
|
34 |
+
pip install accelerate
|
35 |
+
pip install transformers
|
36 |
+
```
|
37 |
+
Then, copy the code snippet below to run the example.
|
38 |
+
|
39 |
+
```python
|
40 |
+
from transformers import AutoModelForCausalLM, AutoTokenizer
|
41 |
+
device = "auto"
|
42 |
+
model_path = "ibm-granite/granite-3.1-2b-base"
|
43 |
+
tokenizer = AutoTokenizer.from_pretrained(model_path)
|
44 |
+
# drop device_map if running on CPU
|
45 |
+
model = AutoModelForCausalLM.from_pretrained(model_path, device_map=device)
|
46 |
+
model.eval()
|
47 |
+
# change input text as desired
|
48 |
+
input_text = "Where is the Thomas J. Watson Research Center located?"
|
49 |
+
# tokenize the text
|
50 |
+
input_tokens = tokenizer(input_text, return_tensors="pt").to(device)
|
51 |
+
# generate output tokens
|
52 |
+
output = model.generate(**input_tokens,
|
53 |
+
max_length=4000)
|
54 |
+
# decode output tokens into text
|
55 |
+
output = tokenizer.batch_decode(output)
|
56 |
+
# print output
|
57 |
+
print(output)
|
58 |
+
```
|
59 |
+
|
60 |
+
**Model Architecture:**
|
61 |
+
Granite-3.1-2B-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.
|
62 |
+
|
63 |
+
| Model | 2B Dense | 8B Dense | 1B MoE | 3B MoE |
|
64 |
+
| :-------- | :--------| :-------- | :------| :------|
|
65 |
+
| Embedding size | **2048** | 4096 | 1024 | 1536 |
|
66 |
+
| Number of layers | **40** | 40 | 24 | 32 |
|
67 |
+
| Attention head size | **64** | 128 | 64 | 64 |
|
68 |
+
| Number of attention heads | **32** | 32 | 16 | 24 |
|
69 |
+
| Number of KV heads | **8** | 8 | 8 | 8 |
|
70 |
+
| MLP hidden size | **8192** | 12800 | 512 | 512 |
|
71 |
+
| MLP activation | **SwiGLU** | SwiGLU | SwiGLU | SwiGLU |
|
72 |
+
| Number of experts | **—** | — | 32 | 40 |
|
73 |
+
| MoE TopK | **—** | — | 8 | 8 |
|
74 |
+
| Initialization std | **0.1** | 0.1 | 0.1 | 0.1 |
|
75 |
+
| Sequence length | **128K** | 128K | 128K | 128K |
|
76 |
+
| Position embedding | **RoPE** | RoPE | RoPE | RoPE |
|
77 |
+
| # Parameters | **2.5B** | 8.1B | 1.3B | 3.3B |
|
78 |
+
| # Active parameters | **2.5B** | 8.1B | 400M | 800M |
|
79 |
+
| # Training tokens | **12T** | 12T | 10T | 10T |
|
80 |
+
|
81 |
+
**Training Data:**
|
82 |
+
This model is trained on a mix of open source and proprietary data following a three-stage training strategy.
|
83 |
+
* Stage 1 data: The data for stage 1 is sourced from diverse domains, such as: web, code, academic sources, books, and math data.
|
84 |
+
* 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.
|
85 |
+
* 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
|
86 |
+
contains a recitation of the related paragraph before the answer.
|
87 |
+
|
88 |
+
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.1 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).
|
89 |
+
|
90 |
+
**Infrastructure:**
|
91 |
+
We train Granite 3.1 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.
|
92 |
+
|
93 |
+
**Ethical Considerations and Limitations:**
|
94 |
+
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.1-2B-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.1-2B-Base model with ethical intentions and in a responsible way.
|
95 |
+
|
96 |
+
**Resources**
|
97 |
+
- ⭐️ Learn about the latest updates with Granite: https://www.ibm.com/granite
|
98 |
+
- 📄 Get started with tutorials, best practices, and prompt engineering advice: https://www.ibm.com/granite/docs/
|
99 |
+
- 💡 Learn about the latest Granite learning resources: https://ibm.biz/granite-learning-resources
|
100 |
+
|
config.json
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architectures": [
|
3 |
+
"GraniteForCausalLM"
|
4 |
+
],
|
5 |
+
"attention_bias": false,
|
6 |
+
"attention_dropout": 0.1,
|
7 |
+
"attention_multiplier": 0.015625,
|
8 |
+
"bos_token_id": 0,
|
9 |
+
"embedding_multiplier": 12.0,
|
10 |
+
"eos_token_id": 0,
|
11 |
+
"hidden_act": "silu",
|
12 |
+
"hidden_size": 2048,
|
13 |
+
"initializer_range": 0.02,
|
14 |
+
"intermediate_size": 8192,
|
15 |
+
"logits_scaling": 8.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": 5000000.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-00002.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:05119750d897a3c8de44016252259f786eec376b7196df487f5dfd10da779a8d
|
3 |
+
size 4999971168
|
model-00002-of-00002.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:65de684bd4fe8b25f4a3426c456bb4875526ff70d24c989f3354a55b8b1b504d
|
3 |
+
size 67121712
|
model.safetensors.index.json
ADDED
@@ -0,0 +1,369 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"metadata": {
|
3 |
+
"total_size": 5067051008
|
4 |
+
},
|
5 |
+
"weight_map": {
|
6 |
+
"model.embed_tokens.weight": "model-00001-of-00002.safetensors",
|
7 |
+
"model.layers.0.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
8 |
+
"model.layers.0.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
9 |
+
"model.layers.0.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
10 |
+
"model.layers.0.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
11 |
+
"model.layers.0.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
12 |
+
"model.layers.0.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
13 |
+
"model.layers.0.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
14 |
+
"model.layers.0.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
15 |
+
"model.layers.0.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
16 |
+
"model.layers.1.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
17 |
+
"model.layers.1.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
18 |
+
"model.layers.1.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
19 |
+
"model.layers.1.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
20 |
+
"model.layers.1.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
21 |
+
"model.layers.1.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
22 |
+
"model.layers.1.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
23 |
+
"model.layers.1.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
24 |
+
"model.layers.1.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
25 |
+
"model.layers.10.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
26 |
+
"model.layers.10.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
27 |
+
"model.layers.10.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
28 |
+
"model.layers.10.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
29 |
+
"model.layers.10.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
30 |
+
"model.layers.10.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
31 |
+
"model.layers.10.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
32 |
+
"model.layers.10.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
33 |
+
"model.layers.10.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
34 |
+
"model.layers.11.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
35 |
+
"model.layers.11.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
36 |
+
"model.layers.11.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
37 |
+
"model.layers.11.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
38 |
+
"model.layers.11.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
39 |
+
"model.layers.11.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
40 |
+
"model.layers.11.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
41 |
+
"model.layers.11.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
42 |
+
"model.layers.11.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
43 |
+
"model.layers.12.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
44 |
+
"model.layers.12.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
45 |
+
"model.layers.12.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
46 |
+
"model.layers.12.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
47 |
+
"model.layers.12.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
48 |
+
"model.layers.12.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
49 |
+
"model.layers.12.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
50 |
+
"model.layers.12.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
51 |
+
"model.layers.12.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
52 |
+
"model.layers.13.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
53 |
+
"model.layers.13.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
54 |
+
"model.layers.13.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
55 |
+
"model.layers.13.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
56 |
+
"model.layers.13.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
57 |
+
"model.layers.13.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
58 |
+
"model.layers.13.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
59 |
+
"model.layers.13.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
60 |
+
"model.layers.13.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
61 |
+
"model.layers.14.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
62 |
+
"model.layers.14.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
63 |
+
"model.layers.14.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
64 |
+
"model.layers.14.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
65 |
+
"model.layers.14.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
66 |
+
"model.layers.14.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
67 |
+
"model.layers.14.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
68 |
+
"model.layers.14.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
69 |
+
"model.layers.14.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
70 |
+
"model.layers.15.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
71 |
+
"model.layers.15.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
72 |
+
"model.layers.15.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
73 |
+
"model.layers.15.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
74 |
+
"model.layers.15.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
75 |
+
"model.layers.15.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
76 |
+
"model.layers.15.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
77 |
+
"model.layers.15.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
78 |
+
"model.layers.15.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
79 |
+
"model.layers.16.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
80 |
+
"model.layers.16.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
81 |
+
"model.layers.16.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
82 |
+
"model.layers.16.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
83 |
+
"model.layers.16.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
84 |
+
"model.layers.16.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
85 |
+
"model.layers.16.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
86 |
+
"model.layers.16.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
87 |
+
"model.layers.16.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
88 |
+
"model.layers.17.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
89 |
+
"model.layers.17.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
90 |
+
"model.layers.17.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
91 |
+
"model.layers.17.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
92 |
+
"model.layers.17.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
93 |
+
"model.layers.17.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
94 |
+
"model.layers.17.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
95 |
+
"model.layers.17.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
96 |
+
"model.layers.17.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
97 |
+
"model.layers.18.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
98 |
+
"model.layers.18.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
99 |
+
"model.layers.18.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
100 |
+
"model.layers.18.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
101 |
+
"model.layers.18.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
102 |
+
"model.layers.18.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
103 |
+
"model.layers.18.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
104 |
+
"model.layers.18.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
105 |
+
"model.layers.18.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
106 |
+
"model.layers.19.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
107 |
+
"model.layers.19.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
108 |
+
"model.layers.19.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
109 |
+
"model.layers.19.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
110 |
+
"model.layers.19.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
111 |
+
"model.layers.19.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
112 |
+
"model.layers.19.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
113 |
+
"model.layers.19.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
114 |
+
"model.layers.19.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
115 |
+
"model.layers.2.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
116 |
+
"model.layers.2.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
117 |
+
"model.layers.2.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
118 |
+
"model.layers.2.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
119 |
+
"model.layers.2.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
120 |
+
"model.layers.2.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
121 |
+
"model.layers.2.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
122 |
+
"model.layers.2.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
123 |
+
"model.layers.2.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
124 |
+
"model.layers.20.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
125 |
+
"model.layers.20.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
126 |
+
"model.layers.20.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
127 |
+
"model.layers.20.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
128 |
+
"model.layers.20.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
129 |
+
"model.layers.20.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
130 |
+
"model.layers.20.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
131 |
+
"model.layers.20.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
132 |
+
"model.layers.20.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
133 |
+
"model.layers.21.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
134 |
+
"model.layers.21.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
135 |
+
"model.layers.21.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
136 |
+
"model.layers.21.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
137 |
+
"model.layers.21.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
138 |
+
"model.layers.21.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
139 |
+
"model.layers.21.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
140 |
+
"model.layers.21.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
141 |
+
"model.layers.21.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
142 |
+
"model.layers.22.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
143 |
+
"model.layers.22.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
144 |
+
"model.layers.22.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
145 |
+
"model.layers.22.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
146 |
+
"model.layers.22.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
147 |
+
"model.layers.22.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
148 |
+
"model.layers.22.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
149 |
+
"model.layers.22.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
150 |
+
"model.layers.22.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
151 |
+
"model.layers.23.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
152 |
+
"model.layers.23.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
153 |
+
"model.layers.23.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
154 |
+
"model.layers.23.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
155 |
+
"model.layers.23.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
156 |
+
"model.layers.23.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
157 |
+
"model.layers.23.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
158 |
+
"model.layers.23.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
159 |
+
"model.layers.23.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
160 |
+
"model.layers.24.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
161 |
+
"model.layers.24.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
162 |
+
"model.layers.24.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
163 |
+
"model.layers.24.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
164 |
+
"model.layers.24.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
165 |
+
"model.layers.24.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
166 |
+
"model.layers.24.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
167 |
+
"model.layers.24.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
168 |
+
"model.layers.24.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
169 |
+
"model.layers.25.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
170 |
+
"model.layers.25.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
171 |
+
"model.layers.25.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
172 |
+
"model.layers.25.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
173 |
+
"model.layers.25.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
174 |
+
"model.layers.25.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
175 |
+
"model.layers.25.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
176 |
+
"model.layers.25.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
177 |
+
"model.layers.25.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
178 |
+
"model.layers.26.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
179 |
+
"model.layers.26.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
180 |
+
"model.layers.26.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
181 |
+
"model.layers.26.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
182 |
+
"model.layers.26.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
183 |
+
"model.layers.26.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
184 |
+
"model.layers.26.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
185 |
+
"model.layers.26.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
186 |
+
"model.layers.26.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
187 |
+
"model.layers.27.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
188 |
+
"model.layers.27.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
189 |
+
"model.layers.27.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
190 |
+
"model.layers.27.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
191 |
+
"model.layers.27.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
192 |
+
"model.layers.27.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
193 |
+
"model.layers.27.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
194 |
+
"model.layers.27.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
195 |
+
"model.layers.27.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
196 |
+
"model.layers.28.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
197 |
+
"model.layers.28.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
198 |
+
"model.layers.28.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
199 |
+
"model.layers.28.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
200 |
+
"model.layers.28.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
201 |
+
"model.layers.28.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
202 |
+
"model.layers.28.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
203 |
+
"model.layers.28.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
204 |
+
"model.layers.28.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
205 |
+
"model.layers.29.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
206 |
+
"model.layers.29.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
207 |
+
"model.layers.29.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
208 |
+
"model.layers.29.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
209 |
+
"model.layers.29.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
210 |
+
"model.layers.29.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
211 |
+
"model.layers.29.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
212 |
+
"model.layers.29.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
213 |
+
"model.layers.29.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
214 |
+
"model.layers.3.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
215 |
+
"model.layers.3.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
216 |
+
"model.layers.3.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
217 |
+
"model.layers.3.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
218 |
+
"model.layers.3.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
219 |
+
"model.layers.3.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
220 |
+
"model.layers.3.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
221 |
+
"model.layers.3.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
222 |
+
"model.layers.3.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
223 |
+
"model.layers.30.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
224 |
+
"model.layers.30.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
225 |
+
"model.layers.30.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
226 |
+
"model.layers.30.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
227 |
+
"model.layers.30.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
228 |
+
"model.layers.30.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
229 |
+
"model.layers.30.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
230 |
+
"model.layers.30.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
231 |
+
"model.layers.30.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
232 |
+
"model.layers.31.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
233 |
+
"model.layers.31.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
234 |
+
"model.layers.31.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
235 |
+
"model.layers.31.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
236 |
+
"model.layers.31.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
237 |
+
"model.layers.31.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
238 |
+
"model.layers.31.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
239 |
+
"model.layers.31.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
240 |
+
"model.layers.31.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
241 |
+
"model.layers.32.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
242 |
+
"model.layers.32.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
243 |
+
"model.layers.32.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
244 |
+
"model.layers.32.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
245 |
+
"model.layers.32.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
246 |
+
"model.layers.32.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
247 |
+
"model.layers.32.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
248 |
+
"model.layers.32.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
249 |
+
"model.layers.32.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
250 |
+
"model.layers.33.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
251 |
+
"model.layers.33.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
252 |
+
"model.layers.33.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
253 |
+
"model.layers.33.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
254 |
+
"model.layers.33.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
255 |
+
"model.layers.33.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
256 |
+
"model.layers.33.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
257 |
+
"model.layers.33.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
258 |
+
"model.layers.33.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
259 |
+
"model.layers.34.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
260 |
+
"model.layers.34.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
261 |
+
"model.layers.34.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
262 |
+
"model.layers.34.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
263 |
+
"model.layers.34.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
264 |
+
"model.layers.34.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
265 |
+
"model.layers.34.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
266 |
+
"model.layers.34.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
267 |
+
"model.layers.34.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
268 |
+
"model.layers.35.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
269 |
+
"model.layers.35.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
270 |
+
"model.layers.35.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
271 |
+
"model.layers.35.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
272 |
+
"model.layers.35.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
273 |
+
"model.layers.35.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
274 |
+
"model.layers.35.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
275 |
+
"model.layers.35.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
276 |
+
"model.layers.35.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
277 |
+
"model.layers.36.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
278 |
+
"model.layers.36.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
279 |
+
"model.layers.36.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
280 |
+
"model.layers.36.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
281 |
+
"model.layers.36.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
282 |
+
"model.layers.36.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
283 |
+
"model.layers.36.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
284 |
+
"model.layers.36.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
285 |
+
"model.layers.36.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
286 |
+
"model.layers.37.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
287 |
+
"model.layers.37.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
288 |
+
"model.layers.37.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
289 |
+
"model.layers.37.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
290 |
+
"model.layers.37.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
291 |
+
"model.layers.37.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
292 |
+
"model.layers.37.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
293 |
+
"model.layers.37.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
294 |
+
"model.layers.37.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
295 |
+
"model.layers.38.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
296 |
+
"model.layers.38.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
297 |
+
"model.layers.38.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
298 |
+
"model.layers.38.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
299 |
+
"model.layers.38.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
300 |
+
"model.layers.38.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
301 |
+
"model.layers.38.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
302 |
+
"model.layers.38.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
303 |
+
"model.layers.38.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
304 |
+
"model.layers.39.input_layernorm.weight": "model-00002-of-00002.safetensors",
|
305 |
+
"model.layers.39.mlp.down_proj.weight": "model-00002-of-00002.safetensors",
|
306 |
+
"model.layers.39.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
307 |
+
"model.layers.39.mlp.up_proj.weight": "model-00002-of-00002.safetensors",
|
308 |
+
"model.layers.39.post_attention_layernorm.weight": "model-00002-of-00002.safetensors",
|
309 |
+
"model.layers.39.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
310 |
+
"model.layers.39.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
311 |
+
"model.layers.39.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
312 |
+
"model.layers.39.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
313 |
+
"model.layers.4.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
314 |
+
"model.layers.4.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
315 |
+
"model.layers.4.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
316 |
+
"model.layers.4.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
317 |
+
"model.layers.4.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
318 |
+
"model.layers.4.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
319 |
+
"model.layers.4.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
320 |
+
"model.layers.4.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
321 |
+
"model.layers.4.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
322 |
+
"model.layers.5.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
323 |
+
"model.layers.5.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
324 |
+
"model.layers.5.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
325 |
+
"model.layers.5.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
326 |
+
"model.layers.5.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
327 |
+
"model.layers.5.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
328 |
+
"model.layers.5.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
329 |
+
"model.layers.5.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
330 |
+
"model.layers.5.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
331 |
+
"model.layers.6.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
332 |
+
"model.layers.6.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
333 |
+
"model.layers.6.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
334 |
+
"model.layers.6.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
335 |
+
"model.layers.6.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
336 |
+
"model.layers.6.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
337 |
+
"model.layers.6.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
338 |
+
"model.layers.6.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
339 |
+
"model.layers.6.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
340 |
+
"model.layers.7.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
341 |
+
"model.layers.7.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
342 |
+
"model.layers.7.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
343 |
+
"model.layers.7.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
344 |
+
"model.layers.7.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
345 |
+
"model.layers.7.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
346 |
+
"model.layers.7.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
347 |
+
"model.layers.7.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
348 |
+
"model.layers.7.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
349 |
+
"model.layers.8.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
350 |
+
"model.layers.8.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
351 |
+
"model.layers.8.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
352 |
+
"model.layers.8.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
353 |
+
"model.layers.8.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
354 |
+
"model.layers.8.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
355 |
+
"model.layers.8.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
356 |
+
"model.layers.8.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
357 |
+
"model.layers.8.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
358 |
+
"model.layers.9.input_layernorm.weight": "model-00001-of-00002.safetensors",
|
359 |
+
"model.layers.9.mlp.down_proj.weight": "model-00001-of-00002.safetensors",
|
360 |
+
"model.layers.9.mlp.gate_proj.weight": "model-00001-of-00002.safetensors",
|
361 |
+
"model.layers.9.mlp.up_proj.weight": "model-00001-of-00002.safetensors",
|
362 |
+
"model.layers.9.post_attention_layernorm.weight": "model-00001-of-00002.safetensors",
|
363 |
+
"model.layers.9.self_attn.k_proj.weight": "model-00001-of-00002.safetensors",
|
364 |
+
"model.layers.9.self_attn.o_proj.weight": "model-00001-of-00002.safetensors",
|
365 |
+
"model.layers.9.self_attn.q_proj.weight": "model-00001-of-00002.safetensors",
|
366 |
+
"model.layers.9.self_attn.v_proj.weight": "model-00001-of-00002.safetensors",
|
367 |
+
"model.norm.weight": "model-00002-of-00002.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 |
+
}
|