Upload 4 files
Browse files- config.json +33 -0
- configuration_internlm.py +121 -0
- generation_config.json +7 -0
- model.safetensors.index.json +458 -0
config.json
ADDED
@@ -0,0 +1,33 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "model/new_internlm-7b",
|
3 |
+
"architectures": [
|
4 |
+
"InternLMForCausalLM"
|
5 |
+
],
|
6 |
+
"auto_map": {
|
7 |
+
"AutoConfig": "configuration_internlm.InternLMConfig",
|
8 |
+
"AutoModel": "modeling_internlm.InternLMForCausalLM",
|
9 |
+
"AutoModelForCausalLM": "modeling_internlm.InternLMForCausalLM"
|
10 |
+
},
|
11 |
+
"bias": true,
|
12 |
+
"bos_token_id": 1,
|
13 |
+
"eos_token_id": 2,
|
14 |
+
"hidden_act": "silu",
|
15 |
+
"hidden_size": 4096,
|
16 |
+
"initializer_range": 0.02,
|
17 |
+
"intermediate_size": 11008,
|
18 |
+
"max_position_embeddings": 2048,
|
19 |
+
"model_type": "internlm",
|
20 |
+
"num_attention_heads": 32,
|
21 |
+
"num_hidden_layers": 32,
|
22 |
+
"pad_token_id": 2,
|
23 |
+
"rms_norm_eps": 1e-06,
|
24 |
+
"rotary": {
|
25 |
+
"base": 10000,
|
26 |
+
"type": "dynamic"
|
27 |
+
},
|
28 |
+
"tie_word_embeddings": false,
|
29 |
+
"torch_dtype": "float16",
|
30 |
+
"transformers_version": "4.36.2",
|
31 |
+
"use_cache": true,
|
32 |
+
"vocab_size": 103168
|
33 |
+
}
|
configuration_internlm.py
ADDED
@@ -0,0 +1,121 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# coding=utf-8
|
2 |
+
# Copyright 2022 EleutherAI and the HuggingFace Inc. team. All rights reserved.
|
3 |
+
#
|
4 |
+
# This code is based on EleutherAI's GPT-NeoX library and the GPT-NeoX
|
5 |
+
# and OPT implementations in this library. It has been modified from its
|
6 |
+
# original forms to accommodate minor architectural differences compared
|
7 |
+
# to GPT-NeoX and OPT used by the Meta AI team that trained the model.
|
8 |
+
#
|
9 |
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
10 |
+
# you may not use this file except in compliance with the License.
|
11 |
+
# You may obtain a copy of the License at
|
12 |
+
#
|
13 |
+
# http://www.apache.org/licenses/LICENSE-2.0
|
14 |
+
#
|
15 |
+
# Unless required by applicable law or agreed to in writing, software
|
16 |
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
17 |
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
18 |
+
# See the License for the specific language governing permissions and
|
19 |
+
# limitations under the License.
|
20 |
+
""" InternLM model configuration"""
|
21 |
+
|
22 |
+
from transformers.configuration_utils import PretrainedConfig
|
23 |
+
from transformers.utils import logging
|
24 |
+
|
25 |
+
logger = logging.get_logger(__name__)
|
26 |
+
|
27 |
+
INTERNLM_PRETRAINED_CONFIG_ARCHIVE_MAP = {}
|
28 |
+
|
29 |
+
|
30 |
+
class InternLMConfig(PretrainedConfig):
|
31 |
+
r"""
|
32 |
+
This is the configuration class to store the configuration of a [`InternLMModel`]. It is used to instantiate
|
33 |
+
an InternLM model according to the specified arguments, defining the model architecture. Instantiating a
|
34 |
+
configuration with the defaults will yield a similar configuration to that of the InternLM-7B.
|
35 |
+
|
36 |
+
Configuration objects inherit from [`PretrainedConfig`] and can be used to control the model outputs. Read the
|
37 |
+
documentation from [`PretrainedConfig`] for more information.
|
38 |
+
|
39 |
+
|
40 |
+
Args:
|
41 |
+
vocab_size (`int`, *optional*, defaults to 32000):
|
42 |
+
Vocabulary size of the InternLM model. Defines the number of different tokens that can be represented by the
|
43 |
+
`inputs_ids` passed when calling [`InternLMModel`]
|
44 |
+
hidden_size (`int`, *optional*, defaults to 4096):
|
45 |
+
Dimension of the hidden representations.
|
46 |
+
intermediate_size (`int`, *optional*, defaults to 11008):
|
47 |
+
Dimension of the MLP representations.
|
48 |
+
num_hidden_layers (`int`, *optional*, defaults to 32):
|
49 |
+
Number of hidden layers in the Transformer encoder.
|
50 |
+
num_attention_heads (`int`, *optional*, defaults to 32):
|
51 |
+
Number of attention heads for each attention layer in the Transformer encoder.
|
52 |
+
hidden_act (`str` or `function`, *optional*, defaults to `"silu"`):
|
53 |
+
The non-linear activation function (function or string) in the decoder.
|
54 |
+
max_position_embeddings (`int`, *optional*, defaults to 2048):
|
55 |
+
The maximum sequence length that this model might ever be used with. Typically set this to something large
|
56 |
+
just in case (e.g., 512 or 1024 or 2048).
|
57 |
+
initializer_range (`float`, *optional*, defaults to 0.02):
|
58 |
+
The standard deviation of the truncated_normal_initializer for initializing all weight matrices.
|
59 |
+
rms_norm_eps (`float`, *optional*, defaults to 1e-12):
|
60 |
+
The epsilon used by the rms normalization layers.
|
61 |
+
use_cache (`bool`, *optional*, defaults to `True`):
|
62 |
+
Whether or not the model should return the last key/values attentions (not used by all models). Only
|
63 |
+
relevant if `config.is_decoder=True`.
|
64 |
+
tie_word_embeddings(`bool`, *optional*, defaults to `False`):
|
65 |
+
Whether to tie weight embeddings
|
66 |
+
Example:
|
67 |
+
|
68 |
+
```python
|
69 |
+
>>> from transformers import InternLMModel, InternLMConfig
|
70 |
+
|
71 |
+
>>> # Initializing a InternLM internlm-7b style configuration
|
72 |
+
>>> configuration = InternLMConfig()
|
73 |
+
|
74 |
+
>>> # Initializing a model from the internlm-7b style configuration
|
75 |
+
>>> model = InternLMModel(configuration)
|
76 |
+
|
77 |
+
>>> # Accessing the model configuration
|
78 |
+
>>> configuration = model.config
|
79 |
+
```"""
|
80 |
+
model_type = "internlm"
|
81 |
+
_auto_class = "AutoConfig"
|
82 |
+
|
83 |
+
def __init__( # pylint: disable=W0102
|
84 |
+
self,
|
85 |
+
vocab_size=103168,
|
86 |
+
hidden_size=4096,
|
87 |
+
intermediate_size=11008,
|
88 |
+
num_hidden_layers=32,
|
89 |
+
num_attention_heads=32,
|
90 |
+
hidden_act="silu",
|
91 |
+
max_position_embeddings=2048,
|
92 |
+
initializer_range=0.02,
|
93 |
+
rms_norm_eps=1e-6,
|
94 |
+
use_cache=True,
|
95 |
+
pad_token_id=0,
|
96 |
+
bos_token_id=1,
|
97 |
+
eos_token_id=2,
|
98 |
+
tie_word_embeddings=False,
|
99 |
+
bias=True,
|
100 |
+
rotary={"base": 10000, "type": "dynamic"}, # pylint: disable=W0102
|
101 |
+
**kwargs,
|
102 |
+
):
|
103 |
+
self.vocab_size = vocab_size
|
104 |
+
self.max_position_embeddings = max_position_embeddings
|
105 |
+
self.hidden_size = hidden_size
|
106 |
+
self.intermediate_size = intermediate_size
|
107 |
+
self.num_hidden_layers = num_hidden_layers
|
108 |
+
self.num_attention_heads = num_attention_heads
|
109 |
+
self.hidden_act = hidden_act
|
110 |
+
self.initializer_range = initializer_range
|
111 |
+
self.rms_norm_eps = rms_norm_eps
|
112 |
+
self.use_cache = use_cache
|
113 |
+
self.bias = bias
|
114 |
+
self.rotary = rotary
|
115 |
+
super().__init__(
|
116 |
+
pad_token_id=pad_token_id,
|
117 |
+
bos_token_id=bos_token_id,
|
118 |
+
eos_token_id=eos_token_id,
|
119 |
+
tie_word_embeddings=tie_word_embeddings,
|
120 |
+
**kwargs,
|
121 |
+
)
|
generation_config.json
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_from_model_config": true,
|
3 |
+
"bos_token_id": 1,
|
4 |
+
"eos_token_id": 2,
|
5 |
+
"pad_token_id": 2,
|
6 |
+
"transformers_version": "4.36.2"
|
7 |
+
}
|
model.safetensors.index.json
ADDED
@@ -0,0 +1,458 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"metadata": {
|
3 |
+
"total_size": 14643904512
|
4 |
+
},
|
5 |
+
"weight_map": {
|
6 |
+
"lm_head.weight": "model-00003-of-00003.safetensors",
|
7 |
+
"model.embed_tokens.weight": "model-00001-of-00003.safetensors",
|
8 |
+
"model.layers.0.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
9 |
+
"model.layers.0.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
10 |
+
"model.layers.0.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
11 |
+
"model.layers.0.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
12 |
+
"model.layers.0.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
13 |
+
"model.layers.0.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
14 |
+
"model.layers.0.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
15 |
+
"model.layers.0.self_attn.o_proj.bias": "model-00001-of-00003.safetensors",
|
16 |
+
"model.layers.0.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
17 |
+
"model.layers.0.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
18 |
+
"model.layers.0.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
19 |
+
"model.layers.0.self_attn.rotary_emb.inv_freq": "model-00001-of-00003.safetensors",
|
20 |
+
"model.layers.0.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
21 |
+
"model.layers.0.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
22 |
+
"model.layers.1.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
23 |
+
"model.layers.1.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
24 |
+
"model.layers.1.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
25 |
+
"model.layers.1.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
26 |
+
"model.layers.1.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
27 |
+
"model.layers.1.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
28 |
+
"model.layers.1.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
29 |
+
"model.layers.1.self_attn.o_proj.bias": "model-00001-of-00003.safetensors",
|
30 |
+
"model.layers.1.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
31 |
+
"model.layers.1.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
32 |
+
"model.layers.1.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
33 |
+
"model.layers.1.self_attn.rotary_emb.inv_freq": "model-00001-of-00003.safetensors",
|
34 |
+
"model.layers.1.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
35 |
+
"model.layers.1.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
36 |
+
"model.layers.10.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
37 |
+
"model.layers.10.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
38 |
+
"model.layers.10.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
39 |
+
"model.layers.10.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
40 |
+
"model.layers.10.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
41 |
+
"model.layers.10.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
42 |
+
"model.layers.10.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
43 |
+
"model.layers.10.self_attn.o_proj.bias": "model-00002-of-00003.safetensors",
|
44 |
+
"model.layers.10.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
45 |
+
"model.layers.10.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
46 |
+
"model.layers.10.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
47 |
+
"model.layers.10.self_attn.rotary_emb.inv_freq": "model-00002-of-00003.safetensors",
|
48 |
+
"model.layers.10.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
49 |
+
"model.layers.10.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
50 |
+
"model.layers.11.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
51 |
+
"model.layers.11.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
52 |
+
"model.layers.11.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
53 |
+
"model.layers.11.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
54 |
+
"model.layers.11.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
55 |
+
"model.layers.11.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
56 |
+
"model.layers.11.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
57 |
+
"model.layers.11.self_attn.o_proj.bias": "model-00002-of-00003.safetensors",
|
58 |
+
"model.layers.11.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
59 |
+
"model.layers.11.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
60 |
+
"model.layers.11.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
61 |
+
"model.layers.11.self_attn.rotary_emb.inv_freq": "model-00002-of-00003.safetensors",
|
62 |
+
"model.layers.11.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
63 |
+
"model.layers.11.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
64 |
+
"model.layers.12.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
65 |
+
"model.layers.12.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
66 |
+
"model.layers.12.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
67 |
+
"model.layers.12.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
68 |
+
"model.layers.12.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
69 |
+
"model.layers.12.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
70 |
+
"model.layers.12.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
71 |
+
"model.layers.12.self_attn.o_proj.bias": "model-00002-of-00003.safetensors",
|
72 |
+
"model.layers.12.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
73 |
+
"model.layers.12.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
74 |
+
"model.layers.12.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
75 |
+
"model.layers.12.self_attn.rotary_emb.inv_freq": "model-00002-of-00003.safetensors",
|
76 |
+
"model.layers.12.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
77 |
+
"model.layers.12.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
78 |
+
"model.layers.13.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
79 |
+
"model.layers.13.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
80 |
+
"model.layers.13.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
81 |
+
"model.layers.13.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
82 |
+
"model.layers.13.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
83 |
+
"model.layers.13.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
84 |
+
"model.layers.13.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
85 |
+
"model.layers.13.self_attn.o_proj.bias": "model-00002-of-00003.safetensors",
|
86 |
+
"model.layers.13.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
87 |
+
"model.layers.13.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
88 |
+
"model.layers.13.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
89 |
+
"model.layers.13.self_attn.rotary_emb.inv_freq": "model-00002-of-00003.safetensors",
|
90 |
+
"model.layers.13.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
91 |
+
"model.layers.13.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
92 |
+
"model.layers.14.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
93 |
+
"model.layers.14.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
94 |
+
"model.layers.14.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
95 |
+
"model.layers.14.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
96 |
+
"model.layers.14.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
97 |
+
"model.layers.14.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
98 |
+
"model.layers.14.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
99 |
+
"model.layers.14.self_attn.o_proj.bias": "model-00002-of-00003.safetensors",
|
100 |
+
"model.layers.14.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
101 |
+
"model.layers.14.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
102 |
+
"model.layers.14.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
103 |
+
"model.layers.14.self_attn.rotary_emb.inv_freq": "model-00002-of-00003.safetensors",
|
104 |
+
"model.layers.14.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
105 |
+
"model.layers.14.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
106 |
+
"model.layers.15.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
107 |
+
"model.layers.15.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
108 |
+
"model.layers.15.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
109 |
+
"model.layers.15.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
110 |
+
"model.layers.15.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
111 |
+
"model.layers.15.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
112 |
+
"model.layers.15.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
113 |
+
"model.layers.15.self_attn.o_proj.bias": "model-00002-of-00003.safetensors",
|
114 |
+
"model.layers.15.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
115 |
+
"model.layers.15.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
116 |
+
"model.layers.15.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
117 |
+
"model.layers.15.self_attn.rotary_emb.inv_freq": "model-00002-of-00003.safetensors",
|
118 |
+
"model.layers.15.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
119 |
+
"model.layers.15.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
120 |
+
"model.layers.16.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
121 |
+
"model.layers.16.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
122 |
+
"model.layers.16.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
123 |
+
"model.layers.16.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
124 |
+
"model.layers.16.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
125 |
+
"model.layers.16.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
126 |
+
"model.layers.16.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
127 |
+
"model.layers.16.self_attn.o_proj.bias": "model-00002-of-00003.safetensors",
|
128 |
+
"model.layers.16.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
129 |
+
"model.layers.16.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
130 |
+
"model.layers.16.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
131 |
+
"model.layers.16.self_attn.rotary_emb.inv_freq": "model-00002-of-00003.safetensors",
|
132 |
+
"model.layers.16.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
133 |
+
"model.layers.16.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
134 |
+
"model.layers.17.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
135 |
+
"model.layers.17.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
136 |
+
"model.layers.17.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
137 |
+
"model.layers.17.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
138 |
+
"model.layers.17.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
139 |
+
"model.layers.17.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
140 |
+
"model.layers.17.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
141 |
+
"model.layers.17.self_attn.o_proj.bias": "model-00002-of-00003.safetensors",
|
142 |
+
"model.layers.17.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
143 |
+
"model.layers.17.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
144 |
+
"model.layers.17.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
145 |
+
"model.layers.17.self_attn.rotary_emb.inv_freq": "model-00002-of-00003.safetensors",
|
146 |
+
"model.layers.17.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
147 |
+
"model.layers.17.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
148 |
+
"model.layers.18.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
149 |
+
"model.layers.18.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
150 |
+
"model.layers.18.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
151 |
+
"model.layers.18.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
152 |
+
"model.layers.18.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
153 |
+
"model.layers.18.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
154 |
+
"model.layers.18.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
155 |
+
"model.layers.18.self_attn.o_proj.bias": "model-00002-of-00003.safetensors",
|
156 |
+
"model.layers.18.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
157 |
+
"model.layers.18.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
158 |
+
"model.layers.18.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
159 |
+
"model.layers.18.self_attn.rotary_emb.inv_freq": "model-00002-of-00003.safetensors",
|
160 |
+
"model.layers.18.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
161 |
+
"model.layers.18.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
162 |
+
"model.layers.19.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
163 |
+
"model.layers.19.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
164 |
+
"model.layers.19.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
165 |
+
"model.layers.19.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
166 |
+
"model.layers.19.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
167 |
+
"model.layers.19.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
168 |
+
"model.layers.19.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
169 |
+
"model.layers.19.self_attn.o_proj.bias": "model-00002-of-00003.safetensors",
|
170 |
+
"model.layers.19.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
171 |
+
"model.layers.19.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
172 |
+
"model.layers.19.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
173 |
+
"model.layers.19.self_attn.rotary_emb.inv_freq": "model-00002-of-00003.safetensors",
|
174 |
+
"model.layers.19.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
175 |
+
"model.layers.19.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
176 |
+
"model.layers.2.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
177 |
+
"model.layers.2.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
178 |
+
"model.layers.2.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
179 |
+
"model.layers.2.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
180 |
+
"model.layers.2.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
181 |
+
"model.layers.2.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
182 |
+
"model.layers.2.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
183 |
+
"model.layers.2.self_attn.o_proj.bias": "model-00001-of-00003.safetensors",
|
184 |
+
"model.layers.2.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
185 |
+
"model.layers.2.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
186 |
+
"model.layers.2.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
187 |
+
"model.layers.2.self_attn.rotary_emb.inv_freq": "model-00001-of-00003.safetensors",
|
188 |
+
"model.layers.2.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
189 |
+
"model.layers.2.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
190 |
+
"model.layers.20.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
191 |
+
"model.layers.20.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
192 |
+
"model.layers.20.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
193 |
+
"model.layers.20.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
194 |
+
"model.layers.20.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
195 |
+
"model.layers.20.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
196 |
+
"model.layers.20.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
197 |
+
"model.layers.20.self_attn.o_proj.bias": "model-00002-of-00003.safetensors",
|
198 |
+
"model.layers.20.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
199 |
+
"model.layers.20.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
200 |
+
"model.layers.20.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
201 |
+
"model.layers.20.self_attn.rotary_emb.inv_freq": "model-00002-of-00003.safetensors",
|
202 |
+
"model.layers.20.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
203 |
+
"model.layers.20.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
204 |
+
"model.layers.21.input_layernorm.weight": "model-00002-of-00003.safetensors",
|
205 |
+
"model.layers.21.mlp.down_proj.weight": "model-00002-of-00003.safetensors",
|
206 |
+
"model.layers.21.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
207 |
+
"model.layers.21.mlp.up_proj.weight": "model-00002-of-00003.safetensors",
|
208 |
+
"model.layers.21.post_attention_layernorm.weight": "model-00002-of-00003.safetensors",
|
209 |
+
"model.layers.21.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
210 |
+
"model.layers.21.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
211 |
+
"model.layers.21.self_attn.o_proj.bias": "model-00002-of-00003.safetensors",
|
212 |
+
"model.layers.21.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
213 |
+
"model.layers.21.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
214 |
+
"model.layers.21.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
215 |
+
"model.layers.21.self_attn.rotary_emb.inv_freq": "model-00002-of-00003.safetensors",
|
216 |
+
"model.layers.21.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
217 |
+
"model.layers.21.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
218 |
+
"model.layers.22.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
219 |
+
"model.layers.22.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
220 |
+
"model.layers.22.mlp.gate_proj.weight": "model-00002-of-00003.safetensors",
|
221 |
+
"model.layers.22.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
222 |
+
"model.layers.22.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
223 |
+
"model.layers.22.self_attn.k_proj.bias": "model-00002-of-00003.safetensors",
|
224 |
+
"model.layers.22.self_attn.k_proj.weight": "model-00002-of-00003.safetensors",
|
225 |
+
"model.layers.22.self_attn.o_proj.bias": "model-00002-of-00003.safetensors",
|
226 |
+
"model.layers.22.self_attn.o_proj.weight": "model-00002-of-00003.safetensors",
|
227 |
+
"model.layers.22.self_attn.q_proj.bias": "model-00002-of-00003.safetensors",
|
228 |
+
"model.layers.22.self_attn.q_proj.weight": "model-00002-of-00003.safetensors",
|
229 |
+
"model.layers.22.self_attn.rotary_emb.inv_freq": "model-00002-of-00003.safetensors",
|
230 |
+
"model.layers.22.self_attn.v_proj.bias": "model-00002-of-00003.safetensors",
|
231 |
+
"model.layers.22.self_attn.v_proj.weight": "model-00002-of-00003.safetensors",
|
232 |
+
"model.layers.23.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
233 |
+
"model.layers.23.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
234 |
+
"model.layers.23.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
235 |
+
"model.layers.23.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
236 |
+
"model.layers.23.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
237 |
+
"model.layers.23.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
238 |
+
"model.layers.23.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
239 |
+
"model.layers.23.self_attn.o_proj.bias": "model-00003-of-00003.safetensors",
|
240 |
+
"model.layers.23.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
241 |
+
"model.layers.23.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
242 |
+
"model.layers.23.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
243 |
+
"model.layers.23.self_attn.rotary_emb.inv_freq": "model-00003-of-00003.safetensors",
|
244 |
+
"model.layers.23.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
245 |
+
"model.layers.23.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
246 |
+
"model.layers.24.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
247 |
+
"model.layers.24.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
248 |
+
"model.layers.24.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
249 |
+
"model.layers.24.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
250 |
+
"model.layers.24.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
251 |
+
"model.layers.24.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
252 |
+
"model.layers.24.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
253 |
+
"model.layers.24.self_attn.o_proj.bias": "model-00003-of-00003.safetensors",
|
254 |
+
"model.layers.24.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
255 |
+
"model.layers.24.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
256 |
+
"model.layers.24.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
257 |
+
"model.layers.24.self_attn.rotary_emb.inv_freq": "model-00003-of-00003.safetensors",
|
258 |
+
"model.layers.24.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
259 |
+
"model.layers.24.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
260 |
+
"model.layers.25.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
261 |
+
"model.layers.25.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
262 |
+
"model.layers.25.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
263 |
+
"model.layers.25.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
264 |
+
"model.layers.25.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
265 |
+
"model.layers.25.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
266 |
+
"model.layers.25.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
267 |
+
"model.layers.25.self_attn.o_proj.bias": "model-00003-of-00003.safetensors",
|
268 |
+
"model.layers.25.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
269 |
+
"model.layers.25.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
270 |
+
"model.layers.25.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
271 |
+
"model.layers.25.self_attn.rotary_emb.inv_freq": "model-00003-of-00003.safetensors",
|
272 |
+
"model.layers.25.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
273 |
+
"model.layers.25.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
274 |
+
"model.layers.26.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
275 |
+
"model.layers.26.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
276 |
+
"model.layers.26.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
277 |
+
"model.layers.26.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
278 |
+
"model.layers.26.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
279 |
+
"model.layers.26.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
280 |
+
"model.layers.26.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
281 |
+
"model.layers.26.self_attn.o_proj.bias": "model-00003-of-00003.safetensors",
|
282 |
+
"model.layers.26.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
283 |
+
"model.layers.26.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
284 |
+
"model.layers.26.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
285 |
+
"model.layers.26.self_attn.rotary_emb.inv_freq": "model-00003-of-00003.safetensors",
|
286 |
+
"model.layers.26.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
287 |
+
"model.layers.26.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
288 |
+
"model.layers.27.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
289 |
+
"model.layers.27.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
290 |
+
"model.layers.27.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
291 |
+
"model.layers.27.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
292 |
+
"model.layers.27.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
293 |
+
"model.layers.27.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
294 |
+
"model.layers.27.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
295 |
+
"model.layers.27.self_attn.o_proj.bias": "model-00003-of-00003.safetensors",
|
296 |
+
"model.layers.27.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
297 |
+
"model.layers.27.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
298 |
+
"model.layers.27.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
299 |
+
"model.layers.27.self_attn.rotary_emb.inv_freq": "model-00003-of-00003.safetensors",
|
300 |
+
"model.layers.27.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
301 |
+
"model.layers.27.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
302 |
+
"model.layers.28.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
303 |
+
"model.layers.28.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
304 |
+
"model.layers.28.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
305 |
+
"model.layers.28.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
306 |
+
"model.layers.28.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
307 |
+
"model.layers.28.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
308 |
+
"model.layers.28.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
309 |
+
"model.layers.28.self_attn.o_proj.bias": "model-00003-of-00003.safetensors",
|
310 |
+
"model.layers.28.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
311 |
+
"model.layers.28.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
312 |
+
"model.layers.28.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
313 |
+
"model.layers.28.self_attn.rotary_emb.inv_freq": "model-00003-of-00003.safetensors",
|
314 |
+
"model.layers.28.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
315 |
+
"model.layers.28.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
316 |
+
"model.layers.29.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
317 |
+
"model.layers.29.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
318 |
+
"model.layers.29.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
319 |
+
"model.layers.29.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
320 |
+
"model.layers.29.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
321 |
+
"model.layers.29.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
322 |
+
"model.layers.29.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
323 |
+
"model.layers.29.self_attn.o_proj.bias": "model-00003-of-00003.safetensors",
|
324 |
+
"model.layers.29.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
325 |
+
"model.layers.29.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
326 |
+
"model.layers.29.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
327 |
+
"model.layers.29.self_attn.rotary_emb.inv_freq": "model-00003-of-00003.safetensors",
|
328 |
+
"model.layers.29.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
329 |
+
"model.layers.29.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
330 |
+
"model.layers.3.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
331 |
+
"model.layers.3.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
332 |
+
"model.layers.3.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
333 |
+
"model.layers.3.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
334 |
+
"model.layers.3.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
335 |
+
"model.layers.3.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
336 |
+
"model.layers.3.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
337 |
+
"model.layers.3.self_attn.o_proj.bias": "model-00001-of-00003.safetensors",
|
338 |
+
"model.layers.3.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
339 |
+
"model.layers.3.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
340 |
+
"model.layers.3.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
341 |
+
"model.layers.3.self_attn.rotary_emb.inv_freq": "model-00001-of-00003.safetensors",
|
342 |
+
"model.layers.3.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
343 |
+
"model.layers.3.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
344 |
+
"model.layers.30.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
345 |
+
"model.layers.30.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
346 |
+
"model.layers.30.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
347 |
+
"model.layers.30.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
348 |
+
"model.layers.30.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
349 |
+
"model.layers.30.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
350 |
+
"model.layers.30.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
351 |
+
"model.layers.30.self_attn.o_proj.bias": "model-00003-of-00003.safetensors",
|
352 |
+
"model.layers.30.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
353 |
+
"model.layers.30.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
354 |
+
"model.layers.30.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
355 |
+
"model.layers.30.self_attn.rotary_emb.inv_freq": "model-00003-of-00003.safetensors",
|
356 |
+
"model.layers.30.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
357 |
+
"model.layers.30.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
358 |
+
"model.layers.31.input_layernorm.weight": "model-00003-of-00003.safetensors",
|
359 |
+
"model.layers.31.mlp.down_proj.weight": "model-00003-of-00003.safetensors",
|
360 |
+
"model.layers.31.mlp.gate_proj.weight": "model-00003-of-00003.safetensors",
|
361 |
+
"model.layers.31.mlp.up_proj.weight": "model-00003-of-00003.safetensors",
|
362 |
+
"model.layers.31.post_attention_layernorm.weight": "model-00003-of-00003.safetensors",
|
363 |
+
"model.layers.31.self_attn.k_proj.bias": "model-00003-of-00003.safetensors",
|
364 |
+
"model.layers.31.self_attn.k_proj.weight": "model-00003-of-00003.safetensors",
|
365 |
+
"model.layers.31.self_attn.o_proj.bias": "model-00003-of-00003.safetensors",
|
366 |
+
"model.layers.31.self_attn.o_proj.weight": "model-00003-of-00003.safetensors",
|
367 |
+
"model.layers.31.self_attn.q_proj.bias": "model-00003-of-00003.safetensors",
|
368 |
+
"model.layers.31.self_attn.q_proj.weight": "model-00003-of-00003.safetensors",
|
369 |
+
"model.layers.31.self_attn.rotary_emb.inv_freq": "model-00003-of-00003.safetensors",
|
370 |
+
"model.layers.31.self_attn.v_proj.bias": "model-00003-of-00003.safetensors",
|
371 |
+
"model.layers.31.self_attn.v_proj.weight": "model-00003-of-00003.safetensors",
|
372 |
+
"model.layers.4.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
373 |
+
"model.layers.4.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
374 |
+
"model.layers.4.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
375 |
+
"model.layers.4.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
376 |
+
"model.layers.4.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
377 |
+
"model.layers.4.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
378 |
+
"model.layers.4.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
379 |
+
"model.layers.4.self_attn.o_proj.bias": "model-00001-of-00003.safetensors",
|
380 |
+
"model.layers.4.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
381 |
+
"model.layers.4.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
382 |
+
"model.layers.4.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
383 |
+
"model.layers.4.self_attn.rotary_emb.inv_freq": "model-00001-of-00003.safetensors",
|
384 |
+
"model.layers.4.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
385 |
+
"model.layers.4.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
386 |
+
"model.layers.5.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
387 |
+
"model.layers.5.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
388 |
+
"model.layers.5.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
389 |
+
"model.layers.5.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
390 |
+
"model.layers.5.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
391 |
+
"model.layers.5.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
392 |
+
"model.layers.5.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
393 |
+
"model.layers.5.self_attn.o_proj.bias": "model-00001-of-00003.safetensors",
|
394 |
+
"model.layers.5.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
395 |
+
"model.layers.5.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
396 |
+
"model.layers.5.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
397 |
+
"model.layers.5.self_attn.rotary_emb.inv_freq": "model-00001-of-00003.safetensors",
|
398 |
+
"model.layers.5.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
399 |
+
"model.layers.5.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
400 |
+
"model.layers.6.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
401 |
+
"model.layers.6.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
402 |
+
"model.layers.6.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
403 |
+
"model.layers.6.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
404 |
+
"model.layers.6.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
405 |
+
"model.layers.6.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
406 |
+
"model.layers.6.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
407 |
+
"model.layers.6.self_attn.o_proj.bias": "model-00001-of-00003.safetensors",
|
408 |
+
"model.layers.6.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
409 |
+
"model.layers.6.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
410 |
+
"model.layers.6.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
411 |
+
"model.layers.6.self_attn.rotary_emb.inv_freq": "model-00001-of-00003.safetensors",
|
412 |
+
"model.layers.6.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
413 |
+
"model.layers.6.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
414 |
+
"model.layers.7.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
415 |
+
"model.layers.7.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
416 |
+
"model.layers.7.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
417 |
+
"model.layers.7.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
418 |
+
"model.layers.7.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
419 |
+
"model.layers.7.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
420 |
+
"model.layers.7.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
421 |
+
"model.layers.7.self_attn.o_proj.bias": "model-00001-of-00003.safetensors",
|
422 |
+
"model.layers.7.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
423 |
+
"model.layers.7.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
424 |
+
"model.layers.7.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
425 |
+
"model.layers.7.self_attn.rotary_emb.inv_freq": "model-00001-of-00003.safetensors",
|
426 |
+
"model.layers.7.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
427 |
+
"model.layers.7.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
428 |
+
"model.layers.8.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
429 |
+
"model.layers.8.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
430 |
+
"model.layers.8.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
431 |
+
"model.layers.8.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
432 |
+
"model.layers.8.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
433 |
+
"model.layers.8.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
434 |
+
"model.layers.8.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
435 |
+
"model.layers.8.self_attn.o_proj.bias": "model-00001-of-00003.safetensors",
|
436 |
+
"model.layers.8.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
437 |
+
"model.layers.8.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
438 |
+
"model.layers.8.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
439 |
+
"model.layers.8.self_attn.rotary_emb.inv_freq": "model-00001-of-00003.safetensors",
|
440 |
+
"model.layers.8.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
441 |
+
"model.layers.8.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
442 |
+
"model.layers.9.input_layernorm.weight": "model-00001-of-00003.safetensors",
|
443 |
+
"model.layers.9.mlp.down_proj.weight": "model-00001-of-00003.safetensors",
|
444 |
+
"model.layers.9.mlp.gate_proj.weight": "model-00001-of-00003.safetensors",
|
445 |
+
"model.layers.9.mlp.up_proj.weight": "model-00001-of-00003.safetensors",
|
446 |
+
"model.layers.9.post_attention_layernorm.weight": "model-00001-of-00003.safetensors",
|
447 |
+
"model.layers.9.self_attn.k_proj.bias": "model-00001-of-00003.safetensors",
|
448 |
+
"model.layers.9.self_attn.k_proj.weight": "model-00001-of-00003.safetensors",
|
449 |
+
"model.layers.9.self_attn.o_proj.bias": "model-00001-of-00003.safetensors",
|
450 |
+
"model.layers.9.self_attn.o_proj.weight": "model-00001-of-00003.safetensors",
|
451 |
+
"model.layers.9.self_attn.q_proj.bias": "model-00001-of-00003.safetensors",
|
452 |
+
"model.layers.9.self_attn.q_proj.weight": "model-00001-of-00003.safetensors",
|
453 |
+
"model.layers.9.self_attn.rotary_emb.inv_freq": "model-00001-of-00003.safetensors",
|
454 |
+
"model.layers.9.self_attn.v_proj.bias": "model-00001-of-00003.safetensors",
|
455 |
+
"model.layers.9.self_attn.v_proj.weight": "model-00001-of-00003.safetensors",
|
456 |
+
"model.norm.weight": "model-00003-of-00003.safetensors"
|
457 |
+
}
|
458 |
+
}
|