Training in progress, step 29
Browse files- .gitattributes +1 -0
- chat_template.jinja +4 -0
- config.json +47 -0
- configuration_apertus.py +217 -0
- generation_config.json +9 -0
- model-00001-of-00005.safetensors +3 -0
- model-00002-of-00005.safetensors +3 -0
- model-00003-of-00005.safetensors +3 -0
- model-00004-of-00005.safetensors +3 -0
- model-00005-of-00005.safetensors +3 -0
- model.safetensors.index.json +711 -0
- special_tokens_map.json +30 -0
- tokenizer.json +3 -0
- tokenizer_config.json +0 -0
- training_args.bin +3 -0
.gitattributes
CHANGED
|
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
|
|
|
|
|
| 33 |
*.zip filter=lfs diff=lfs merge=lfs -text
|
| 34 |
*.zst filter=lfs diff=lfs merge=lfs -text
|
| 35 |
*tfevents* filter=lfs diff=lfs merge=lfs -text
|
| 36 |
+
tokenizer.json filter=lfs diff=lfs merge=lfs -text
|
chat_template.jinja
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{% if not add_generation_prompt is defined %}{% set add_generation_prompt = false %}{% endif %}{% for message in messages %}{{'<|im_start|>' + message['role'] + '
|
| 2 |
+
' + message['content'] + '<|im_end|>' + '
|
| 3 |
+
'}}{% endfor %}{% if add_generation_prompt %}{{ '<|im_start|>assistant
|
| 4 |
+
' }}{% endif %}
|
config.json
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"architectures": [
|
| 3 |
+
"ApertusForCausalLM"
|
| 4 |
+
],
|
| 5 |
+
"attention_bias": false,
|
| 6 |
+
"attention_dropout": 0.0,
|
| 7 |
+
"auto_map": {
|
| 8 |
+
"AutoConfig": "configuration_apertus.ApertusConfig",
|
| 9 |
+
"AutoModel": "modeling_apertus.ApertusModel",
|
| 10 |
+
"AutoModelForCausalLM": "modeling_apertus.ApertusForCausalLM"
|
| 11 |
+
},
|
| 12 |
+
"bos_token_id": 1,
|
| 13 |
+
"dtype": "bfloat16",
|
| 14 |
+
"eos_token_id": 68,
|
| 15 |
+
"hidden_act": "xielu",
|
| 16 |
+
"hidden_dropout": 0.0,
|
| 17 |
+
"hidden_size": 4096,
|
| 18 |
+
"initializer_range": 0.02,
|
| 19 |
+
"intermediate_size": 21504,
|
| 20 |
+
"max_position_embeddings": 65536,
|
| 21 |
+
"mlp_bias": false,
|
| 22 |
+
"model_type": "apertus",
|
| 23 |
+
"num_attention_heads": 32,
|
| 24 |
+
"num_hidden_layers": 50,
|
| 25 |
+
"num_key_value_heads": 8,
|
| 26 |
+
"pad_token_id": 3,
|
| 27 |
+
"patches": [
|
| 28 |
+
"liger",
|
| 29 |
+
"cce"
|
| 30 |
+
],
|
| 31 |
+
"post_norm": false,
|
| 32 |
+
"qk_norm": true,
|
| 33 |
+
"rms_norm_eps": 1e-05,
|
| 34 |
+
"rope_scaling": {
|
| 35 |
+
"factor": 8.0,
|
| 36 |
+
"high_freq_factor": 4.0,
|
| 37 |
+
"low_freq_factor": 1.0,
|
| 38 |
+
"original_max_position_embeddings": 8192,
|
| 39 |
+
"rope_type": "llama3",
|
| 40 |
+
"type": "llama3"
|
| 41 |
+
},
|
| 42 |
+
"rope_theta": 12000000,
|
| 43 |
+
"tie_word_embeddings": false,
|
| 44 |
+
"transformers_version": "4.57.1",
|
| 45 |
+
"use_cache": false,
|
| 46 |
+
"vocab_size": 131072
|
| 47 |
+
}
|
configuration_apertus.py
ADDED
|
@@ -0,0 +1,217 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# 🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨
|
| 2 |
+
# This file was automatically generated from src/transformers/models/apertus/modular_apertus.py.
|
| 3 |
+
# Do NOT edit this file manually as any edits will be overwritten by the generation of
|
| 4 |
+
# the file from the modular. If any change should be done, please apply the change to the
|
| 5 |
+
# modular_apertus.py file directly. One of our CI enforces this.
|
| 6 |
+
# 🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨🚨
|
| 7 |
+
# coding=utf-8
|
| 8 |
+
# Copyright 2025 the HuggingFace Inc. team and the Swiss AI Initiative. All rights reserved.
|
| 9 |
+
#
|
| 10 |
+
#
|
| 11 |
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
| 12 |
+
# you may not use this file except in compliance with the License.
|
| 13 |
+
# You may obtain a copy of the License at
|
| 14 |
+
#
|
| 15 |
+
# http://www.apache.org/licenses/LICENSE-2.0
|
| 16 |
+
#
|
| 17 |
+
# Unless required by applicable law or agreed to in writing, software
|
| 18 |
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
| 19 |
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
| 20 |
+
# See the License for the specific language governing permissions and
|
| 21 |
+
# limitations under the License.
|
| 22 |
+
|
| 23 |
+
from transformers.configuration_utils import PretrainedConfig
|
| 24 |
+
from transformers.modeling_rope_utils import rope_config_validation
|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
class ApertusConfig(PretrainedConfig):
|
| 28 |
+
r"""
|
| 29 |
+
This is the configuration class to store the configuration of a [`ApertusModel`]. It is used to instantiate a Apertus
|
| 30 |
+
model according to the specified arguments, defining the model architecture. Instantiating a configuration with the
|
| 31 |
+
defaults will yield a similar configuration to that of the Apertus-8B.
|
| 32 |
+
e.g. [swiss-ai/Apertus-8B](https://huggingface.co/swiss-ai/Apertus-8B)
|
| 33 |
+
|
| 34 |
+
Configuration objects inherit from [`PretrainedConfig`] and can be used to control the model outputs. Read the
|
| 35 |
+
documentation from [`PretrainedConfig`] for more information.
|
| 36 |
+
|
| 37 |
+
|
| 38 |
+
Args:
|
| 39 |
+
vocab_size (`int`, *optional*, defaults to 131072):
|
| 40 |
+
Vocabulary size of the Apertus model. Defines the number of different tokens that can be represented by the
|
| 41 |
+
`inputs_ids` passed when calling [`ApertusModel`]
|
| 42 |
+
hidden_size (`int`, *optional*, defaults to 4096):
|
| 43 |
+
Dimension of the hidden representations.
|
| 44 |
+
intermediate_size (`int`, *optional*, defaults to 14336):
|
| 45 |
+
Dimension of the MLP representations.
|
| 46 |
+
num_hidden_layers (`int`, *optional*, defaults to 32):
|
| 47 |
+
Number of hidden layers in the Transformer decoder.
|
| 48 |
+
num_attention_heads (`int`, *optional*, defaults to 32):
|
| 49 |
+
Number of attention heads for each attention layer in the Transformer decoder.
|
| 50 |
+
num_key_value_heads (`int`, *optional*):
|
| 51 |
+
This is the number of key_value heads that should be used to implement Grouped Query Attention. If
|
| 52 |
+
`num_key_value_heads=num_attention_heads`, the model will use Multi Head Attention (MHA), if
|
| 53 |
+
`num_key_value_heads=1` the model will use Multi Query Attention (MQA) otherwise GQA is used. When
|
| 54 |
+
converting a multi-head checkpoint to a GQA checkpoint, each group key and value head should be constructed
|
| 55 |
+
by meanpooling all the original heads within that group. For more details, check out [this
|
| 56 |
+
paper](https://huggingface.co/papers/2305.13245). If it is not specified, will default to
|
| 57 |
+
`num_attention_heads`.
|
| 58 |
+
hidden_act (`str` or `function`, *optional*, defaults to `"xielu"`):
|
| 59 |
+
The non-linear activation function (function or string) in the decoder.
|
| 60 |
+
max_position_embeddings (`int`, *optional*, defaults to 65536):
|
| 61 |
+
The maximum sequence length that this model might ever be used with. Apertus supports up to 65536 tokens.
|
| 62 |
+
initializer_range (`float`, *optional*, defaults to 0.02):
|
| 63 |
+
The standard deviation of the truncated_normal_initializer for initializing all weight matrices.
|
| 64 |
+
rms_norm_eps (`float`, *optional*, defaults to 1e-05):
|
| 65 |
+
The epsilon used by the rms normalization layers.
|
| 66 |
+
use_cache (`bool`, *optional*, defaults to `True`):
|
| 67 |
+
Whether or not the model should return the last key/values attentions (not used by all models). Only
|
| 68 |
+
relevant if `config.is_decoder=True`.
|
| 69 |
+
pad_token_id (`int`, *optional*, defaults to 3):
|
| 70 |
+
Padding token id.
|
| 71 |
+
bos_token_id (`int`, *optional*, defaults to 1):
|
| 72 |
+
Beginning of stream token id.
|
| 73 |
+
eos_token_id (`int`, *optional*, defaults to 2):
|
| 74 |
+
End of stream token id.
|
| 75 |
+
tie_word_embeddings (`bool`, *optional*, defaults to `False`):
|
| 76 |
+
Whether to tie weight embeddings
|
| 77 |
+
rope_theta (`float`, *optional*, defaults to 12000000.0):
|
| 78 |
+
The base period of the RoPE embeddings.
|
| 79 |
+
rope_scaling (`Dict`, *optional*):
|
| 80 |
+
Dictionary containing the scaling configuration for the RoPE embeddings. NOTE: if you apply new rope type
|
| 81 |
+
and you expect the model to work on longer `max_position_embeddings`, we recommend you to update this value
|
| 82 |
+
accordingly.
|
| 83 |
+
Expected contents:
|
| 84 |
+
`rope_type` (`str`):
|
| 85 |
+
The sub-variant of RoPE to use. Can be one of ['default', 'linear', 'dynamic', 'yarn', 'longrope',
|
| 86 |
+
'llama3'], with 'default' being the original RoPE implementation.
|
| 87 |
+
`factor` (`float`, *optional*):
|
| 88 |
+
Used with all rope types except 'default'. The scaling factor to apply to the RoPE embeddings. In
|
| 89 |
+
most scaling types, a `factor` of x will enable the model to handle sequences of length x *
|
| 90 |
+
original maximum pre-trained length.
|
| 91 |
+
`original_max_position_embeddings` (`int`, *optional*):
|
| 92 |
+
Used with 'dynamic', 'longrope' and 'llama3'. The original max position embeddings used during
|
| 93 |
+
pretraining.
|
| 94 |
+
`attention_factor` (`float`, *optional*):
|
| 95 |
+
Used with 'yarn' and 'longrope'. The scaling factor to be applied on the attention
|
| 96 |
+
computation. If unspecified, it defaults to value recommended by the implementation, using the
|
| 97 |
+
`factor` field to infer the suggested value.
|
| 98 |
+
`beta_fast` (`float`, *optional*):
|
| 99 |
+
Only used with 'yarn'. Parameter to set the boundary for extrapolation (only) in the linear
|
| 100 |
+
ramp function. If unspecified, it defaults to 32.
|
| 101 |
+
`beta_slow` (`float`, *optional*):
|
| 102 |
+
Only used with 'yarn'. Parameter to set the boundary for interpolation (only) in the linear
|
| 103 |
+
ramp function. If unspecified, it defaults to 1.
|
| 104 |
+
`short_factor` (`list[float]`, *optional*):
|
| 105 |
+
Only used with 'longrope'. The scaling factor to be applied to short contexts (<
|
| 106 |
+
`original_max_position_embeddings`). Must be a list of numbers with the same length as the hidden
|
| 107 |
+
size divided by the number of attention heads divided by 2
|
| 108 |
+
`long_factor` (`list[float]`, *optional*):
|
| 109 |
+
Only used with 'longrope'. The scaling factor to be applied to long contexts (<
|
| 110 |
+
`original_max_position_embeddings`). Must be a list of numbers with the same length as the hidden
|
| 111 |
+
size divided by the number of attention heads divided by 2
|
| 112 |
+
`low_freq_factor` (`float`, *optional*):
|
| 113 |
+
Only used with 'llama3'. Scaling factor applied to low frequency components of the RoPE
|
| 114 |
+
`high_freq_factor` (`float`, *optional*):
|
| 115 |
+
Only used with 'llama3'. Scaling factor applied to high frequency components of the RoPE
|
| 116 |
+
attention_bias (`bool`, *optional*, defaults to `False`):
|
| 117 |
+
Whether to use a bias in the query, key, value and output projection layers during self-attention.
|
| 118 |
+
attention_dropout (`float`, *optional*, defaults to 0.0):
|
| 119 |
+
The dropout ratio for the attention probabilities.
|
| 120 |
+
|
| 121 |
+
```python
|
| 122 |
+
>>> from transformers import ApertusModel, ApertusConfig
|
| 123 |
+
|
| 124 |
+
>>> # Initializing a Apertus-8B style configuration
|
| 125 |
+
>>> configuration = ApertusConfig()
|
| 126 |
+
|
| 127 |
+
>>> # Initializing a model from the Apertus-8B style configuration
|
| 128 |
+
>>> model = ApertusModel(configuration)
|
| 129 |
+
|
| 130 |
+
>>> # Accessing the model configuration
|
| 131 |
+
>>> configuration = model.config
|
| 132 |
+
```"""
|
| 133 |
+
|
| 134 |
+
model_type = "apertus"
|
| 135 |
+
keys_to_ignore_at_inference = ["past_key_values"]
|
| 136 |
+
base_model_tp_plan = {
|
| 137 |
+
"layers.*.self_attn.q_proj": "colwise_rep", # we need to replicate here due to the added norm on q and k
|
| 138 |
+
"layers.*.self_attn.k_proj": "colwise_rep", # we need to replicate here due to the added norm on q and k
|
| 139 |
+
"layers.*.self_attn.v_proj": "colwise_rep", # we need to replicate here due to the added norm on q and k
|
| 140 |
+
"layers.*.self_attn.o_proj": "rowwise_rep", # we need to replicate here due to the added norm on q and k
|
| 141 |
+
"layers.*.mlp.up_proj": "colwise",
|
| 142 |
+
"layers.*.mlp.down_proj": "rowwise",
|
| 143 |
+
"layers.*.mlp.gate_proj": "colwise",
|
| 144 |
+
}
|
| 145 |
+
base_model_pp_plan = {
|
| 146 |
+
"embed_tokens": (["input_ids"], ["inputs_embeds"]),
|
| 147 |
+
"layers": (["hidden_states", "attention_mask"], ["hidden_states"]),
|
| 148 |
+
"norm": (["hidden_states"], ["hidden_states"]),
|
| 149 |
+
}
|
| 150 |
+
|
| 151 |
+
def __init__(
|
| 152 |
+
self,
|
| 153 |
+
vocab_size=131072,
|
| 154 |
+
hidden_size=4096,
|
| 155 |
+
intermediate_size=14336,
|
| 156 |
+
num_hidden_layers=32,
|
| 157 |
+
num_attention_heads=32,
|
| 158 |
+
num_key_value_heads=None,
|
| 159 |
+
hidden_act="xielu",
|
| 160 |
+
max_position_embeddings=65536,
|
| 161 |
+
initializer_range=0.02,
|
| 162 |
+
rms_norm_eps=1e-5,
|
| 163 |
+
use_cache=True,
|
| 164 |
+
pad_token_id=3,
|
| 165 |
+
bos_token_id=1,
|
| 166 |
+
eos_token_id=2,
|
| 167 |
+
tie_word_embeddings=False,
|
| 168 |
+
rope_theta=12000000.0,
|
| 169 |
+
rope_scaling={
|
| 170 |
+
"rope_type": "llama3",
|
| 171 |
+
"factor": 8.0,
|
| 172 |
+
"original_max_position_embeddings": 8192,
|
| 173 |
+
"low_freq_factor": 1.0,
|
| 174 |
+
"high_freq_factor": 4.0,
|
| 175 |
+
},
|
| 176 |
+
attention_bias=False,
|
| 177 |
+
attention_dropout=0.0,
|
| 178 |
+
patches=["liger", "cce"],
|
| 179 |
+
**kwargs,
|
| 180 |
+
):
|
| 181 |
+
super().__init__(
|
| 182 |
+
pad_token_id=pad_token_id,
|
| 183 |
+
bos_token_id=bos_token_id,
|
| 184 |
+
eos_token_id=eos_token_id,
|
| 185 |
+
tie_word_embeddings=tie_word_embeddings,
|
| 186 |
+
**kwargs,
|
| 187 |
+
)
|
| 188 |
+
self.vocab_size = vocab_size
|
| 189 |
+
self.max_position_embeddings = max_position_embeddings
|
| 190 |
+
self.hidden_size = hidden_size
|
| 191 |
+
self.intermediate_size = intermediate_size
|
| 192 |
+
self.num_hidden_layers = num_hidden_layers
|
| 193 |
+
self.num_attention_heads = num_attention_heads
|
| 194 |
+
|
| 195 |
+
# for backward compatibility
|
| 196 |
+
if num_key_value_heads is None:
|
| 197 |
+
num_key_value_heads = num_attention_heads
|
| 198 |
+
|
| 199 |
+
self.num_key_value_heads = num_key_value_heads
|
| 200 |
+
self.hidden_act = hidden_act
|
| 201 |
+
self.initializer_range = initializer_range
|
| 202 |
+
self.rms_norm_eps = rms_norm_eps
|
| 203 |
+
self.use_cache = use_cache
|
| 204 |
+
self.rope_theta = rope_theta
|
| 205 |
+
self.rope_scaling = rope_scaling
|
| 206 |
+
self.attention_bias = attention_bias
|
| 207 |
+
self.attention_dropout = attention_dropout
|
| 208 |
+
# Validate the correctness of rotary position embeddings parameters
|
| 209 |
+
# BC: if there is a 'type' field, copy it it to 'rope_type'.
|
| 210 |
+
if self.rope_scaling is not None and "type" in self.rope_scaling:
|
| 211 |
+
self.rope_scaling["rope_type"] = self.rope_scaling["type"]
|
| 212 |
+
rope_config_validation(self)
|
| 213 |
+
|
| 214 |
+
self.patches = patches
|
| 215 |
+
|
| 216 |
+
|
| 217 |
+
__all__ = ["ApertusConfig"]
|
generation_config.json
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"_from_model_config": true,
|
| 3 |
+
"bos_token_id": 1,
|
| 4 |
+
"do_sample": true,
|
| 5 |
+
"eos_token_id": 68,
|
| 6 |
+
"pad_token_id": 3,
|
| 7 |
+
"transformers_version": "4.57.1",
|
| 8 |
+
"use_cache": false
|
| 9 |
+
}
|
model-00001-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:601445205aff0a8348e63ac8c4f8974522604a799581ae01c24a6b888741bb74
|
| 3 |
+
size 4999776656
|
model-00002-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:08b6ced143dfbc45ff0397391497171e24652af5f7f8892951ee60b57a3a9c30
|
| 3 |
+
size 4882374192
|
model-00003-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:dd32ff3dcd4672993614c21d2f954ed715d23a3dd7c509d00e43f5fa64a6cdf6
|
| 3 |
+
size 4974647808
|
model-00004-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:1c06320ffcdd1947789ab294adc72bd64611ac670c2a3626fa882af2aa533282
|
| 3 |
+
size 4974664848
|
model-00005-of-00005.safetensors
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:b84712aebb01895df27e147b879a6ae5c45f4ed7f815e552c038f747ec374b93
|
| 3 |
+
size 4127332872
|
model.safetensors.index.json
ADDED
|
@@ -0,0 +1,711 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"metadata": {
|
| 3 |
+
"total_parameters": 11979358820,
|
| 4 |
+
"total_size": 23958717840
|
| 5 |
+
},
|
| 6 |
+
"weight_map": {
|
| 7 |
+
"lm_head.weight": "model-00005-of-00005.safetensors",
|
| 8 |
+
"model.embed_tokens.weight": "model-00001-of-00005.safetensors",
|
| 9 |
+
"model.layers.0.attention_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 10 |
+
"model.layers.0.feedforward_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 11 |
+
"model.layers.0.mlp.act_fn.alpha_n": "model-00001-of-00005.safetensors",
|
| 12 |
+
"model.layers.0.mlp.act_fn.alpha_p": "model-00001-of-00005.safetensors",
|
| 13 |
+
"model.layers.0.mlp.act_fn.beta": "model-00001-of-00005.safetensors",
|
| 14 |
+
"model.layers.0.mlp.act_fn.eps": "model-00001-of-00005.safetensors",
|
| 15 |
+
"model.layers.0.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
|
| 16 |
+
"model.layers.0.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
|
| 17 |
+
"model.layers.0.self_attn.k_norm.weight": "model-00001-of-00005.safetensors",
|
| 18 |
+
"model.layers.0.self_attn.k_proj.weight": "model-00001-of-00005.safetensors",
|
| 19 |
+
"model.layers.0.self_attn.o_proj.weight": "model-00001-of-00005.safetensors",
|
| 20 |
+
"model.layers.0.self_attn.q_norm.weight": "model-00001-of-00005.safetensors",
|
| 21 |
+
"model.layers.0.self_attn.q_proj.weight": "model-00001-of-00005.safetensors",
|
| 22 |
+
"model.layers.0.self_attn.v_proj.weight": "model-00001-of-00005.safetensors",
|
| 23 |
+
"model.layers.1.attention_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 24 |
+
"model.layers.1.feedforward_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 25 |
+
"model.layers.1.mlp.act_fn.alpha_n": "model-00001-of-00005.safetensors",
|
| 26 |
+
"model.layers.1.mlp.act_fn.alpha_p": "model-00001-of-00005.safetensors",
|
| 27 |
+
"model.layers.1.mlp.act_fn.beta": "model-00001-of-00005.safetensors",
|
| 28 |
+
"model.layers.1.mlp.act_fn.eps": "model-00001-of-00005.safetensors",
|
| 29 |
+
"model.layers.1.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
|
| 30 |
+
"model.layers.1.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
|
| 31 |
+
"model.layers.1.self_attn.k_norm.weight": "model-00001-of-00005.safetensors",
|
| 32 |
+
"model.layers.1.self_attn.k_proj.weight": "model-00001-of-00005.safetensors",
|
| 33 |
+
"model.layers.1.self_attn.o_proj.weight": "model-00001-of-00005.safetensors",
|
| 34 |
+
"model.layers.1.self_attn.q_norm.weight": "model-00001-of-00005.safetensors",
|
| 35 |
+
"model.layers.1.self_attn.q_proj.weight": "model-00001-of-00005.safetensors",
|
| 36 |
+
"model.layers.1.self_attn.v_proj.weight": "model-00001-of-00005.safetensors",
|
| 37 |
+
"model.layers.10.attention_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 38 |
+
"model.layers.10.feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 39 |
+
"model.layers.10.mlp.act_fn.alpha_n": "model-00002-of-00005.safetensors",
|
| 40 |
+
"model.layers.10.mlp.act_fn.alpha_p": "model-00002-of-00005.safetensors",
|
| 41 |
+
"model.layers.10.mlp.act_fn.beta": "model-00002-of-00005.safetensors",
|
| 42 |
+
"model.layers.10.mlp.act_fn.eps": "model-00002-of-00005.safetensors",
|
| 43 |
+
"model.layers.10.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
|
| 44 |
+
"model.layers.10.mlp.up_proj.weight": "model-00002-of-00005.safetensors",
|
| 45 |
+
"model.layers.10.self_attn.k_norm.weight": "model-00002-of-00005.safetensors",
|
| 46 |
+
"model.layers.10.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
|
| 47 |
+
"model.layers.10.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
|
| 48 |
+
"model.layers.10.self_attn.q_norm.weight": "model-00002-of-00005.safetensors",
|
| 49 |
+
"model.layers.10.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
|
| 50 |
+
"model.layers.10.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
|
| 51 |
+
"model.layers.11.attention_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 52 |
+
"model.layers.11.feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 53 |
+
"model.layers.11.mlp.act_fn.alpha_n": "model-00002-of-00005.safetensors",
|
| 54 |
+
"model.layers.11.mlp.act_fn.alpha_p": "model-00002-of-00005.safetensors",
|
| 55 |
+
"model.layers.11.mlp.act_fn.beta": "model-00002-of-00005.safetensors",
|
| 56 |
+
"model.layers.11.mlp.act_fn.eps": "model-00002-of-00005.safetensors",
|
| 57 |
+
"model.layers.11.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
|
| 58 |
+
"model.layers.11.mlp.up_proj.weight": "model-00002-of-00005.safetensors",
|
| 59 |
+
"model.layers.11.self_attn.k_norm.weight": "model-00002-of-00005.safetensors",
|
| 60 |
+
"model.layers.11.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
|
| 61 |
+
"model.layers.11.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
|
| 62 |
+
"model.layers.11.self_attn.q_norm.weight": "model-00002-of-00005.safetensors",
|
| 63 |
+
"model.layers.11.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
|
| 64 |
+
"model.layers.11.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
|
| 65 |
+
"model.layers.12.attention_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 66 |
+
"model.layers.12.feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 67 |
+
"model.layers.12.mlp.act_fn.alpha_n": "model-00002-of-00005.safetensors",
|
| 68 |
+
"model.layers.12.mlp.act_fn.alpha_p": "model-00002-of-00005.safetensors",
|
| 69 |
+
"model.layers.12.mlp.act_fn.beta": "model-00002-of-00005.safetensors",
|
| 70 |
+
"model.layers.12.mlp.act_fn.eps": "model-00002-of-00005.safetensors",
|
| 71 |
+
"model.layers.12.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
|
| 72 |
+
"model.layers.12.mlp.up_proj.weight": "model-00002-of-00005.safetensors",
|
| 73 |
+
"model.layers.12.self_attn.k_norm.weight": "model-00002-of-00005.safetensors",
|
| 74 |
+
"model.layers.12.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
|
| 75 |
+
"model.layers.12.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
|
| 76 |
+
"model.layers.12.self_attn.q_norm.weight": "model-00002-of-00005.safetensors",
|
| 77 |
+
"model.layers.12.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
|
| 78 |
+
"model.layers.12.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
|
| 79 |
+
"model.layers.13.attention_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 80 |
+
"model.layers.13.feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 81 |
+
"model.layers.13.mlp.act_fn.alpha_n": "model-00002-of-00005.safetensors",
|
| 82 |
+
"model.layers.13.mlp.act_fn.alpha_p": "model-00002-of-00005.safetensors",
|
| 83 |
+
"model.layers.13.mlp.act_fn.beta": "model-00002-of-00005.safetensors",
|
| 84 |
+
"model.layers.13.mlp.act_fn.eps": "model-00002-of-00005.safetensors",
|
| 85 |
+
"model.layers.13.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
|
| 86 |
+
"model.layers.13.mlp.up_proj.weight": "model-00002-of-00005.safetensors",
|
| 87 |
+
"model.layers.13.self_attn.k_norm.weight": "model-00002-of-00005.safetensors",
|
| 88 |
+
"model.layers.13.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
|
| 89 |
+
"model.layers.13.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
|
| 90 |
+
"model.layers.13.self_attn.q_norm.weight": "model-00002-of-00005.safetensors",
|
| 91 |
+
"model.layers.13.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
|
| 92 |
+
"model.layers.13.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
|
| 93 |
+
"model.layers.14.attention_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 94 |
+
"model.layers.14.feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 95 |
+
"model.layers.14.mlp.act_fn.alpha_n": "model-00002-of-00005.safetensors",
|
| 96 |
+
"model.layers.14.mlp.act_fn.alpha_p": "model-00002-of-00005.safetensors",
|
| 97 |
+
"model.layers.14.mlp.act_fn.beta": "model-00002-of-00005.safetensors",
|
| 98 |
+
"model.layers.14.mlp.act_fn.eps": "model-00002-of-00005.safetensors",
|
| 99 |
+
"model.layers.14.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
|
| 100 |
+
"model.layers.14.mlp.up_proj.weight": "model-00002-of-00005.safetensors",
|
| 101 |
+
"model.layers.14.self_attn.k_norm.weight": "model-00002-of-00005.safetensors",
|
| 102 |
+
"model.layers.14.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
|
| 103 |
+
"model.layers.14.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
|
| 104 |
+
"model.layers.14.self_attn.q_norm.weight": "model-00002-of-00005.safetensors",
|
| 105 |
+
"model.layers.14.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
|
| 106 |
+
"model.layers.14.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
|
| 107 |
+
"model.layers.15.attention_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 108 |
+
"model.layers.15.feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 109 |
+
"model.layers.15.mlp.act_fn.alpha_n": "model-00002-of-00005.safetensors",
|
| 110 |
+
"model.layers.15.mlp.act_fn.alpha_p": "model-00002-of-00005.safetensors",
|
| 111 |
+
"model.layers.15.mlp.act_fn.beta": "model-00002-of-00005.safetensors",
|
| 112 |
+
"model.layers.15.mlp.act_fn.eps": "model-00002-of-00005.safetensors",
|
| 113 |
+
"model.layers.15.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
|
| 114 |
+
"model.layers.15.mlp.up_proj.weight": "model-00002-of-00005.safetensors",
|
| 115 |
+
"model.layers.15.self_attn.k_norm.weight": "model-00002-of-00005.safetensors",
|
| 116 |
+
"model.layers.15.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
|
| 117 |
+
"model.layers.15.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
|
| 118 |
+
"model.layers.15.self_attn.q_norm.weight": "model-00002-of-00005.safetensors",
|
| 119 |
+
"model.layers.15.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
|
| 120 |
+
"model.layers.15.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
|
| 121 |
+
"model.layers.16.attention_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 122 |
+
"model.layers.16.feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 123 |
+
"model.layers.16.mlp.act_fn.alpha_n": "model-00002-of-00005.safetensors",
|
| 124 |
+
"model.layers.16.mlp.act_fn.alpha_p": "model-00002-of-00005.safetensors",
|
| 125 |
+
"model.layers.16.mlp.act_fn.beta": "model-00002-of-00005.safetensors",
|
| 126 |
+
"model.layers.16.mlp.act_fn.eps": "model-00002-of-00005.safetensors",
|
| 127 |
+
"model.layers.16.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
|
| 128 |
+
"model.layers.16.mlp.up_proj.weight": "model-00002-of-00005.safetensors",
|
| 129 |
+
"model.layers.16.self_attn.k_norm.weight": "model-00002-of-00005.safetensors",
|
| 130 |
+
"model.layers.16.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
|
| 131 |
+
"model.layers.16.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
|
| 132 |
+
"model.layers.16.self_attn.q_norm.weight": "model-00002-of-00005.safetensors",
|
| 133 |
+
"model.layers.16.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
|
| 134 |
+
"model.layers.16.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
|
| 135 |
+
"model.layers.17.attention_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 136 |
+
"model.layers.17.feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 137 |
+
"model.layers.17.mlp.act_fn.alpha_n": "model-00002-of-00005.safetensors",
|
| 138 |
+
"model.layers.17.mlp.act_fn.alpha_p": "model-00002-of-00005.safetensors",
|
| 139 |
+
"model.layers.17.mlp.act_fn.beta": "model-00002-of-00005.safetensors",
|
| 140 |
+
"model.layers.17.mlp.act_fn.eps": "model-00002-of-00005.safetensors",
|
| 141 |
+
"model.layers.17.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
|
| 142 |
+
"model.layers.17.mlp.up_proj.weight": "model-00002-of-00005.safetensors",
|
| 143 |
+
"model.layers.17.self_attn.k_norm.weight": "model-00002-of-00005.safetensors",
|
| 144 |
+
"model.layers.17.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
|
| 145 |
+
"model.layers.17.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
|
| 146 |
+
"model.layers.17.self_attn.q_norm.weight": "model-00002-of-00005.safetensors",
|
| 147 |
+
"model.layers.17.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
|
| 148 |
+
"model.layers.17.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
|
| 149 |
+
"model.layers.18.attention_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 150 |
+
"model.layers.18.feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 151 |
+
"model.layers.18.mlp.act_fn.alpha_n": "model-00002-of-00005.safetensors",
|
| 152 |
+
"model.layers.18.mlp.act_fn.alpha_p": "model-00002-of-00005.safetensors",
|
| 153 |
+
"model.layers.18.mlp.act_fn.beta": "model-00002-of-00005.safetensors",
|
| 154 |
+
"model.layers.18.mlp.act_fn.eps": "model-00002-of-00005.safetensors",
|
| 155 |
+
"model.layers.18.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
|
| 156 |
+
"model.layers.18.mlp.up_proj.weight": "model-00002-of-00005.safetensors",
|
| 157 |
+
"model.layers.18.self_attn.k_norm.weight": "model-00002-of-00005.safetensors",
|
| 158 |
+
"model.layers.18.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
|
| 159 |
+
"model.layers.18.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
|
| 160 |
+
"model.layers.18.self_attn.q_norm.weight": "model-00002-of-00005.safetensors",
|
| 161 |
+
"model.layers.18.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
|
| 162 |
+
"model.layers.18.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
|
| 163 |
+
"model.layers.19.attention_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 164 |
+
"model.layers.19.feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 165 |
+
"model.layers.19.mlp.act_fn.alpha_n": "model-00002-of-00005.safetensors",
|
| 166 |
+
"model.layers.19.mlp.act_fn.alpha_p": "model-00002-of-00005.safetensors",
|
| 167 |
+
"model.layers.19.mlp.act_fn.beta": "model-00002-of-00005.safetensors",
|
| 168 |
+
"model.layers.19.mlp.act_fn.eps": "model-00002-of-00005.safetensors",
|
| 169 |
+
"model.layers.19.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
|
| 170 |
+
"model.layers.19.mlp.up_proj.weight": "model-00002-of-00005.safetensors",
|
| 171 |
+
"model.layers.19.self_attn.k_norm.weight": "model-00002-of-00005.safetensors",
|
| 172 |
+
"model.layers.19.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
|
| 173 |
+
"model.layers.19.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
|
| 174 |
+
"model.layers.19.self_attn.q_norm.weight": "model-00002-of-00005.safetensors",
|
| 175 |
+
"model.layers.19.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
|
| 176 |
+
"model.layers.19.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
|
| 177 |
+
"model.layers.2.attention_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 178 |
+
"model.layers.2.feedforward_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 179 |
+
"model.layers.2.mlp.act_fn.alpha_n": "model-00001-of-00005.safetensors",
|
| 180 |
+
"model.layers.2.mlp.act_fn.alpha_p": "model-00001-of-00005.safetensors",
|
| 181 |
+
"model.layers.2.mlp.act_fn.beta": "model-00001-of-00005.safetensors",
|
| 182 |
+
"model.layers.2.mlp.act_fn.eps": "model-00001-of-00005.safetensors",
|
| 183 |
+
"model.layers.2.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
|
| 184 |
+
"model.layers.2.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
|
| 185 |
+
"model.layers.2.self_attn.k_norm.weight": "model-00001-of-00005.safetensors",
|
| 186 |
+
"model.layers.2.self_attn.k_proj.weight": "model-00001-of-00005.safetensors",
|
| 187 |
+
"model.layers.2.self_attn.o_proj.weight": "model-00001-of-00005.safetensors",
|
| 188 |
+
"model.layers.2.self_attn.q_norm.weight": "model-00001-of-00005.safetensors",
|
| 189 |
+
"model.layers.2.self_attn.q_proj.weight": "model-00001-of-00005.safetensors",
|
| 190 |
+
"model.layers.2.self_attn.v_proj.weight": "model-00001-of-00005.safetensors",
|
| 191 |
+
"model.layers.20.attention_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 192 |
+
"model.layers.20.feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 193 |
+
"model.layers.20.mlp.act_fn.alpha_n": "model-00003-of-00005.safetensors",
|
| 194 |
+
"model.layers.20.mlp.act_fn.alpha_p": "model-00003-of-00005.safetensors",
|
| 195 |
+
"model.layers.20.mlp.act_fn.beta": "model-00003-of-00005.safetensors",
|
| 196 |
+
"model.layers.20.mlp.act_fn.eps": "model-00003-of-00005.safetensors",
|
| 197 |
+
"model.layers.20.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
|
| 198 |
+
"model.layers.20.mlp.up_proj.weight": "model-00003-of-00005.safetensors",
|
| 199 |
+
"model.layers.20.self_attn.k_norm.weight": "model-00002-of-00005.safetensors",
|
| 200 |
+
"model.layers.20.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
|
| 201 |
+
"model.layers.20.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
|
| 202 |
+
"model.layers.20.self_attn.q_norm.weight": "model-00002-of-00005.safetensors",
|
| 203 |
+
"model.layers.20.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
|
| 204 |
+
"model.layers.20.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
|
| 205 |
+
"model.layers.21.attention_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 206 |
+
"model.layers.21.feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 207 |
+
"model.layers.21.mlp.act_fn.alpha_n": "model-00003-of-00005.safetensors",
|
| 208 |
+
"model.layers.21.mlp.act_fn.alpha_p": "model-00003-of-00005.safetensors",
|
| 209 |
+
"model.layers.21.mlp.act_fn.beta": "model-00003-of-00005.safetensors",
|
| 210 |
+
"model.layers.21.mlp.act_fn.eps": "model-00003-of-00005.safetensors",
|
| 211 |
+
"model.layers.21.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
|
| 212 |
+
"model.layers.21.mlp.up_proj.weight": "model-00003-of-00005.safetensors",
|
| 213 |
+
"model.layers.21.self_attn.k_norm.weight": "model-00003-of-00005.safetensors",
|
| 214 |
+
"model.layers.21.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
|
| 215 |
+
"model.layers.21.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
|
| 216 |
+
"model.layers.21.self_attn.q_norm.weight": "model-00003-of-00005.safetensors",
|
| 217 |
+
"model.layers.21.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
|
| 218 |
+
"model.layers.21.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
|
| 219 |
+
"model.layers.22.attention_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 220 |
+
"model.layers.22.feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 221 |
+
"model.layers.22.mlp.act_fn.alpha_n": "model-00003-of-00005.safetensors",
|
| 222 |
+
"model.layers.22.mlp.act_fn.alpha_p": "model-00003-of-00005.safetensors",
|
| 223 |
+
"model.layers.22.mlp.act_fn.beta": "model-00003-of-00005.safetensors",
|
| 224 |
+
"model.layers.22.mlp.act_fn.eps": "model-00003-of-00005.safetensors",
|
| 225 |
+
"model.layers.22.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
|
| 226 |
+
"model.layers.22.mlp.up_proj.weight": "model-00003-of-00005.safetensors",
|
| 227 |
+
"model.layers.22.self_attn.k_norm.weight": "model-00003-of-00005.safetensors",
|
| 228 |
+
"model.layers.22.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
|
| 229 |
+
"model.layers.22.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
|
| 230 |
+
"model.layers.22.self_attn.q_norm.weight": "model-00003-of-00005.safetensors",
|
| 231 |
+
"model.layers.22.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
|
| 232 |
+
"model.layers.22.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
|
| 233 |
+
"model.layers.23.attention_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 234 |
+
"model.layers.23.feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 235 |
+
"model.layers.23.mlp.act_fn.alpha_n": "model-00003-of-00005.safetensors",
|
| 236 |
+
"model.layers.23.mlp.act_fn.alpha_p": "model-00003-of-00005.safetensors",
|
| 237 |
+
"model.layers.23.mlp.act_fn.beta": "model-00003-of-00005.safetensors",
|
| 238 |
+
"model.layers.23.mlp.act_fn.eps": "model-00003-of-00005.safetensors",
|
| 239 |
+
"model.layers.23.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
|
| 240 |
+
"model.layers.23.mlp.up_proj.weight": "model-00003-of-00005.safetensors",
|
| 241 |
+
"model.layers.23.self_attn.k_norm.weight": "model-00003-of-00005.safetensors",
|
| 242 |
+
"model.layers.23.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
|
| 243 |
+
"model.layers.23.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
|
| 244 |
+
"model.layers.23.self_attn.q_norm.weight": "model-00003-of-00005.safetensors",
|
| 245 |
+
"model.layers.23.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
|
| 246 |
+
"model.layers.23.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
|
| 247 |
+
"model.layers.24.attention_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 248 |
+
"model.layers.24.feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 249 |
+
"model.layers.24.mlp.act_fn.alpha_n": "model-00003-of-00005.safetensors",
|
| 250 |
+
"model.layers.24.mlp.act_fn.alpha_p": "model-00003-of-00005.safetensors",
|
| 251 |
+
"model.layers.24.mlp.act_fn.beta": "model-00003-of-00005.safetensors",
|
| 252 |
+
"model.layers.24.mlp.act_fn.eps": "model-00003-of-00005.safetensors",
|
| 253 |
+
"model.layers.24.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
|
| 254 |
+
"model.layers.24.mlp.up_proj.weight": "model-00003-of-00005.safetensors",
|
| 255 |
+
"model.layers.24.self_attn.k_norm.weight": "model-00003-of-00005.safetensors",
|
| 256 |
+
"model.layers.24.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
|
| 257 |
+
"model.layers.24.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
|
| 258 |
+
"model.layers.24.self_attn.q_norm.weight": "model-00003-of-00005.safetensors",
|
| 259 |
+
"model.layers.24.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
|
| 260 |
+
"model.layers.24.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
|
| 261 |
+
"model.layers.25.attention_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 262 |
+
"model.layers.25.feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 263 |
+
"model.layers.25.mlp.act_fn.alpha_n": "model-00003-of-00005.safetensors",
|
| 264 |
+
"model.layers.25.mlp.act_fn.alpha_p": "model-00003-of-00005.safetensors",
|
| 265 |
+
"model.layers.25.mlp.act_fn.beta": "model-00003-of-00005.safetensors",
|
| 266 |
+
"model.layers.25.mlp.act_fn.eps": "model-00003-of-00005.safetensors",
|
| 267 |
+
"model.layers.25.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
|
| 268 |
+
"model.layers.25.mlp.up_proj.weight": "model-00003-of-00005.safetensors",
|
| 269 |
+
"model.layers.25.self_attn.k_norm.weight": "model-00003-of-00005.safetensors",
|
| 270 |
+
"model.layers.25.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
|
| 271 |
+
"model.layers.25.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
|
| 272 |
+
"model.layers.25.self_attn.q_norm.weight": "model-00003-of-00005.safetensors",
|
| 273 |
+
"model.layers.25.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
|
| 274 |
+
"model.layers.25.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
|
| 275 |
+
"model.layers.26.attention_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 276 |
+
"model.layers.26.feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 277 |
+
"model.layers.26.mlp.act_fn.alpha_n": "model-00003-of-00005.safetensors",
|
| 278 |
+
"model.layers.26.mlp.act_fn.alpha_p": "model-00003-of-00005.safetensors",
|
| 279 |
+
"model.layers.26.mlp.act_fn.beta": "model-00003-of-00005.safetensors",
|
| 280 |
+
"model.layers.26.mlp.act_fn.eps": "model-00003-of-00005.safetensors",
|
| 281 |
+
"model.layers.26.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
|
| 282 |
+
"model.layers.26.mlp.up_proj.weight": "model-00003-of-00005.safetensors",
|
| 283 |
+
"model.layers.26.self_attn.k_norm.weight": "model-00003-of-00005.safetensors",
|
| 284 |
+
"model.layers.26.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
|
| 285 |
+
"model.layers.26.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
|
| 286 |
+
"model.layers.26.self_attn.q_norm.weight": "model-00003-of-00005.safetensors",
|
| 287 |
+
"model.layers.26.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
|
| 288 |
+
"model.layers.26.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
|
| 289 |
+
"model.layers.27.attention_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 290 |
+
"model.layers.27.feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 291 |
+
"model.layers.27.mlp.act_fn.alpha_n": "model-00003-of-00005.safetensors",
|
| 292 |
+
"model.layers.27.mlp.act_fn.alpha_p": "model-00003-of-00005.safetensors",
|
| 293 |
+
"model.layers.27.mlp.act_fn.beta": "model-00003-of-00005.safetensors",
|
| 294 |
+
"model.layers.27.mlp.act_fn.eps": "model-00003-of-00005.safetensors",
|
| 295 |
+
"model.layers.27.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
|
| 296 |
+
"model.layers.27.mlp.up_proj.weight": "model-00003-of-00005.safetensors",
|
| 297 |
+
"model.layers.27.self_attn.k_norm.weight": "model-00003-of-00005.safetensors",
|
| 298 |
+
"model.layers.27.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
|
| 299 |
+
"model.layers.27.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
|
| 300 |
+
"model.layers.27.self_attn.q_norm.weight": "model-00003-of-00005.safetensors",
|
| 301 |
+
"model.layers.27.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
|
| 302 |
+
"model.layers.27.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
|
| 303 |
+
"model.layers.28.attention_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 304 |
+
"model.layers.28.feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 305 |
+
"model.layers.28.mlp.act_fn.alpha_n": "model-00003-of-00005.safetensors",
|
| 306 |
+
"model.layers.28.mlp.act_fn.alpha_p": "model-00003-of-00005.safetensors",
|
| 307 |
+
"model.layers.28.mlp.act_fn.beta": "model-00003-of-00005.safetensors",
|
| 308 |
+
"model.layers.28.mlp.act_fn.eps": "model-00003-of-00005.safetensors",
|
| 309 |
+
"model.layers.28.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
|
| 310 |
+
"model.layers.28.mlp.up_proj.weight": "model-00003-of-00005.safetensors",
|
| 311 |
+
"model.layers.28.self_attn.k_norm.weight": "model-00003-of-00005.safetensors",
|
| 312 |
+
"model.layers.28.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
|
| 313 |
+
"model.layers.28.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
|
| 314 |
+
"model.layers.28.self_attn.q_norm.weight": "model-00003-of-00005.safetensors",
|
| 315 |
+
"model.layers.28.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
|
| 316 |
+
"model.layers.28.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
|
| 317 |
+
"model.layers.29.attention_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 318 |
+
"model.layers.29.feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 319 |
+
"model.layers.29.mlp.act_fn.alpha_n": "model-00003-of-00005.safetensors",
|
| 320 |
+
"model.layers.29.mlp.act_fn.alpha_p": "model-00003-of-00005.safetensors",
|
| 321 |
+
"model.layers.29.mlp.act_fn.beta": "model-00003-of-00005.safetensors",
|
| 322 |
+
"model.layers.29.mlp.act_fn.eps": "model-00003-of-00005.safetensors",
|
| 323 |
+
"model.layers.29.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
|
| 324 |
+
"model.layers.29.mlp.up_proj.weight": "model-00003-of-00005.safetensors",
|
| 325 |
+
"model.layers.29.self_attn.k_norm.weight": "model-00003-of-00005.safetensors",
|
| 326 |
+
"model.layers.29.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
|
| 327 |
+
"model.layers.29.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
|
| 328 |
+
"model.layers.29.self_attn.q_norm.weight": "model-00003-of-00005.safetensors",
|
| 329 |
+
"model.layers.29.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
|
| 330 |
+
"model.layers.29.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
|
| 331 |
+
"model.layers.3.attention_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 332 |
+
"model.layers.3.feedforward_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 333 |
+
"model.layers.3.mlp.act_fn.alpha_n": "model-00001-of-00005.safetensors",
|
| 334 |
+
"model.layers.3.mlp.act_fn.alpha_p": "model-00001-of-00005.safetensors",
|
| 335 |
+
"model.layers.3.mlp.act_fn.beta": "model-00001-of-00005.safetensors",
|
| 336 |
+
"model.layers.3.mlp.act_fn.eps": "model-00001-of-00005.safetensors",
|
| 337 |
+
"model.layers.3.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
|
| 338 |
+
"model.layers.3.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
|
| 339 |
+
"model.layers.3.self_attn.k_norm.weight": "model-00001-of-00005.safetensors",
|
| 340 |
+
"model.layers.3.self_attn.k_proj.weight": "model-00001-of-00005.safetensors",
|
| 341 |
+
"model.layers.3.self_attn.o_proj.weight": "model-00001-of-00005.safetensors",
|
| 342 |
+
"model.layers.3.self_attn.q_norm.weight": "model-00001-of-00005.safetensors",
|
| 343 |
+
"model.layers.3.self_attn.q_proj.weight": "model-00001-of-00005.safetensors",
|
| 344 |
+
"model.layers.3.self_attn.v_proj.weight": "model-00001-of-00005.safetensors",
|
| 345 |
+
"model.layers.30.attention_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 346 |
+
"model.layers.30.feedforward_layernorm.weight": "model-00003-of-00005.safetensors",
|
| 347 |
+
"model.layers.30.mlp.act_fn.alpha_n": "model-00003-of-00005.safetensors",
|
| 348 |
+
"model.layers.30.mlp.act_fn.alpha_p": "model-00003-of-00005.safetensors",
|
| 349 |
+
"model.layers.30.mlp.act_fn.beta": "model-00003-of-00005.safetensors",
|
| 350 |
+
"model.layers.30.mlp.act_fn.eps": "model-00003-of-00005.safetensors",
|
| 351 |
+
"model.layers.30.mlp.down_proj.weight": "model-00003-of-00005.safetensors",
|
| 352 |
+
"model.layers.30.mlp.up_proj.weight": "model-00003-of-00005.safetensors",
|
| 353 |
+
"model.layers.30.self_attn.k_norm.weight": "model-00003-of-00005.safetensors",
|
| 354 |
+
"model.layers.30.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
|
| 355 |
+
"model.layers.30.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
|
| 356 |
+
"model.layers.30.self_attn.q_norm.weight": "model-00003-of-00005.safetensors",
|
| 357 |
+
"model.layers.30.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
|
| 358 |
+
"model.layers.30.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
|
| 359 |
+
"model.layers.31.attention_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 360 |
+
"model.layers.31.feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 361 |
+
"model.layers.31.mlp.act_fn.alpha_n": "model-00004-of-00005.safetensors",
|
| 362 |
+
"model.layers.31.mlp.act_fn.alpha_p": "model-00004-of-00005.safetensors",
|
| 363 |
+
"model.layers.31.mlp.act_fn.beta": "model-00004-of-00005.safetensors",
|
| 364 |
+
"model.layers.31.mlp.act_fn.eps": "model-00004-of-00005.safetensors",
|
| 365 |
+
"model.layers.31.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
|
| 366 |
+
"model.layers.31.mlp.up_proj.weight": "model-00003-of-00005.safetensors",
|
| 367 |
+
"model.layers.31.self_attn.k_norm.weight": "model-00003-of-00005.safetensors",
|
| 368 |
+
"model.layers.31.self_attn.k_proj.weight": "model-00003-of-00005.safetensors",
|
| 369 |
+
"model.layers.31.self_attn.o_proj.weight": "model-00003-of-00005.safetensors",
|
| 370 |
+
"model.layers.31.self_attn.q_norm.weight": "model-00003-of-00005.safetensors",
|
| 371 |
+
"model.layers.31.self_attn.q_proj.weight": "model-00003-of-00005.safetensors",
|
| 372 |
+
"model.layers.31.self_attn.v_proj.weight": "model-00003-of-00005.safetensors",
|
| 373 |
+
"model.layers.32.attention_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 374 |
+
"model.layers.32.feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 375 |
+
"model.layers.32.mlp.act_fn.alpha_n": "model-00004-of-00005.safetensors",
|
| 376 |
+
"model.layers.32.mlp.act_fn.alpha_p": "model-00004-of-00005.safetensors",
|
| 377 |
+
"model.layers.32.mlp.act_fn.beta": "model-00004-of-00005.safetensors",
|
| 378 |
+
"model.layers.32.mlp.act_fn.eps": "model-00004-of-00005.safetensors",
|
| 379 |
+
"model.layers.32.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
|
| 380 |
+
"model.layers.32.mlp.up_proj.weight": "model-00004-of-00005.safetensors",
|
| 381 |
+
"model.layers.32.self_attn.k_norm.weight": "model-00004-of-00005.safetensors",
|
| 382 |
+
"model.layers.32.self_attn.k_proj.weight": "model-00004-of-00005.safetensors",
|
| 383 |
+
"model.layers.32.self_attn.o_proj.weight": "model-00004-of-00005.safetensors",
|
| 384 |
+
"model.layers.32.self_attn.q_norm.weight": "model-00004-of-00005.safetensors",
|
| 385 |
+
"model.layers.32.self_attn.q_proj.weight": "model-00004-of-00005.safetensors",
|
| 386 |
+
"model.layers.32.self_attn.v_proj.weight": "model-00004-of-00005.safetensors",
|
| 387 |
+
"model.layers.33.attention_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 388 |
+
"model.layers.33.feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 389 |
+
"model.layers.33.mlp.act_fn.alpha_n": "model-00004-of-00005.safetensors",
|
| 390 |
+
"model.layers.33.mlp.act_fn.alpha_p": "model-00004-of-00005.safetensors",
|
| 391 |
+
"model.layers.33.mlp.act_fn.beta": "model-00004-of-00005.safetensors",
|
| 392 |
+
"model.layers.33.mlp.act_fn.eps": "model-00004-of-00005.safetensors",
|
| 393 |
+
"model.layers.33.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
|
| 394 |
+
"model.layers.33.mlp.up_proj.weight": "model-00004-of-00005.safetensors",
|
| 395 |
+
"model.layers.33.self_attn.k_norm.weight": "model-00004-of-00005.safetensors",
|
| 396 |
+
"model.layers.33.self_attn.k_proj.weight": "model-00004-of-00005.safetensors",
|
| 397 |
+
"model.layers.33.self_attn.o_proj.weight": "model-00004-of-00005.safetensors",
|
| 398 |
+
"model.layers.33.self_attn.q_norm.weight": "model-00004-of-00005.safetensors",
|
| 399 |
+
"model.layers.33.self_attn.q_proj.weight": "model-00004-of-00005.safetensors",
|
| 400 |
+
"model.layers.33.self_attn.v_proj.weight": "model-00004-of-00005.safetensors",
|
| 401 |
+
"model.layers.34.attention_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 402 |
+
"model.layers.34.feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 403 |
+
"model.layers.34.mlp.act_fn.alpha_n": "model-00004-of-00005.safetensors",
|
| 404 |
+
"model.layers.34.mlp.act_fn.alpha_p": "model-00004-of-00005.safetensors",
|
| 405 |
+
"model.layers.34.mlp.act_fn.beta": "model-00004-of-00005.safetensors",
|
| 406 |
+
"model.layers.34.mlp.act_fn.eps": "model-00004-of-00005.safetensors",
|
| 407 |
+
"model.layers.34.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
|
| 408 |
+
"model.layers.34.mlp.up_proj.weight": "model-00004-of-00005.safetensors",
|
| 409 |
+
"model.layers.34.self_attn.k_norm.weight": "model-00004-of-00005.safetensors",
|
| 410 |
+
"model.layers.34.self_attn.k_proj.weight": "model-00004-of-00005.safetensors",
|
| 411 |
+
"model.layers.34.self_attn.o_proj.weight": "model-00004-of-00005.safetensors",
|
| 412 |
+
"model.layers.34.self_attn.q_norm.weight": "model-00004-of-00005.safetensors",
|
| 413 |
+
"model.layers.34.self_attn.q_proj.weight": "model-00004-of-00005.safetensors",
|
| 414 |
+
"model.layers.34.self_attn.v_proj.weight": "model-00004-of-00005.safetensors",
|
| 415 |
+
"model.layers.35.attention_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 416 |
+
"model.layers.35.feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 417 |
+
"model.layers.35.mlp.act_fn.alpha_n": "model-00004-of-00005.safetensors",
|
| 418 |
+
"model.layers.35.mlp.act_fn.alpha_p": "model-00004-of-00005.safetensors",
|
| 419 |
+
"model.layers.35.mlp.act_fn.beta": "model-00004-of-00005.safetensors",
|
| 420 |
+
"model.layers.35.mlp.act_fn.eps": "model-00004-of-00005.safetensors",
|
| 421 |
+
"model.layers.35.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
|
| 422 |
+
"model.layers.35.mlp.up_proj.weight": "model-00004-of-00005.safetensors",
|
| 423 |
+
"model.layers.35.self_attn.k_norm.weight": "model-00004-of-00005.safetensors",
|
| 424 |
+
"model.layers.35.self_attn.k_proj.weight": "model-00004-of-00005.safetensors",
|
| 425 |
+
"model.layers.35.self_attn.o_proj.weight": "model-00004-of-00005.safetensors",
|
| 426 |
+
"model.layers.35.self_attn.q_norm.weight": "model-00004-of-00005.safetensors",
|
| 427 |
+
"model.layers.35.self_attn.q_proj.weight": "model-00004-of-00005.safetensors",
|
| 428 |
+
"model.layers.35.self_attn.v_proj.weight": "model-00004-of-00005.safetensors",
|
| 429 |
+
"model.layers.36.attention_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 430 |
+
"model.layers.36.feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 431 |
+
"model.layers.36.mlp.act_fn.alpha_n": "model-00004-of-00005.safetensors",
|
| 432 |
+
"model.layers.36.mlp.act_fn.alpha_p": "model-00004-of-00005.safetensors",
|
| 433 |
+
"model.layers.36.mlp.act_fn.beta": "model-00004-of-00005.safetensors",
|
| 434 |
+
"model.layers.36.mlp.act_fn.eps": "model-00004-of-00005.safetensors",
|
| 435 |
+
"model.layers.36.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
|
| 436 |
+
"model.layers.36.mlp.up_proj.weight": "model-00004-of-00005.safetensors",
|
| 437 |
+
"model.layers.36.self_attn.k_norm.weight": "model-00004-of-00005.safetensors",
|
| 438 |
+
"model.layers.36.self_attn.k_proj.weight": "model-00004-of-00005.safetensors",
|
| 439 |
+
"model.layers.36.self_attn.o_proj.weight": "model-00004-of-00005.safetensors",
|
| 440 |
+
"model.layers.36.self_attn.q_norm.weight": "model-00004-of-00005.safetensors",
|
| 441 |
+
"model.layers.36.self_attn.q_proj.weight": "model-00004-of-00005.safetensors",
|
| 442 |
+
"model.layers.36.self_attn.v_proj.weight": "model-00004-of-00005.safetensors",
|
| 443 |
+
"model.layers.37.attention_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 444 |
+
"model.layers.37.feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 445 |
+
"model.layers.37.mlp.act_fn.alpha_n": "model-00004-of-00005.safetensors",
|
| 446 |
+
"model.layers.37.mlp.act_fn.alpha_p": "model-00004-of-00005.safetensors",
|
| 447 |
+
"model.layers.37.mlp.act_fn.beta": "model-00004-of-00005.safetensors",
|
| 448 |
+
"model.layers.37.mlp.act_fn.eps": "model-00004-of-00005.safetensors",
|
| 449 |
+
"model.layers.37.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
|
| 450 |
+
"model.layers.37.mlp.up_proj.weight": "model-00004-of-00005.safetensors",
|
| 451 |
+
"model.layers.37.self_attn.k_norm.weight": "model-00004-of-00005.safetensors",
|
| 452 |
+
"model.layers.37.self_attn.k_proj.weight": "model-00004-of-00005.safetensors",
|
| 453 |
+
"model.layers.37.self_attn.o_proj.weight": "model-00004-of-00005.safetensors",
|
| 454 |
+
"model.layers.37.self_attn.q_norm.weight": "model-00004-of-00005.safetensors",
|
| 455 |
+
"model.layers.37.self_attn.q_proj.weight": "model-00004-of-00005.safetensors",
|
| 456 |
+
"model.layers.37.self_attn.v_proj.weight": "model-00004-of-00005.safetensors",
|
| 457 |
+
"model.layers.38.attention_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 458 |
+
"model.layers.38.feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 459 |
+
"model.layers.38.mlp.act_fn.alpha_n": "model-00004-of-00005.safetensors",
|
| 460 |
+
"model.layers.38.mlp.act_fn.alpha_p": "model-00004-of-00005.safetensors",
|
| 461 |
+
"model.layers.38.mlp.act_fn.beta": "model-00004-of-00005.safetensors",
|
| 462 |
+
"model.layers.38.mlp.act_fn.eps": "model-00004-of-00005.safetensors",
|
| 463 |
+
"model.layers.38.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
|
| 464 |
+
"model.layers.38.mlp.up_proj.weight": "model-00004-of-00005.safetensors",
|
| 465 |
+
"model.layers.38.self_attn.k_norm.weight": "model-00004-of-00005.safetensors",
|
| 466 |
+
"model.layers.38.self_attn.k_proj.weight": "model-00004-of-00005.safetensors",
|
| 467 |
+
"model.layers.38.self_attn.o_proj.weight": "model-00004-of-00005.safetensors",
|
| 468 |
+
"model.layers.38.self_attn.q_norm.weight": "model-00004-of-00005.safetensors",
|
| 469 |
+
"model.layers.38.self_attn.q_proj.weight": "model-00004-of-00005.safetensors",
|
| 470 |
+
"model.layers.38.self_attn.v_proj.weight": "model-00004-of-00005.safetensors",
|
| 471 |
+
"model.layers.39.attention_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 472 |
+
"model.layers.39.feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 473 |
+
"model.layers.39.mlp.act_fn.alpha_n": "model-00004-of-00005.safetensors",
|
| 474 |
+
"model.layers.39.mlp.act_fn.alpha_p": "model-00004-of-00005.safetensors",
|
| 475 |
+
"model.layers.39.mlp.act_fn.beta": "model-00004-of-00005.safetensors",
|
| 476 |
+
"model.layers.39.mlp.act_fn.eps": "model-00004-of-00005.safetensors",
|
| 477 |
+
"model.layers.39.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
|
| 478 |
+
"model.layers.39.mlp.up_proj.weight": "model-00004-of-00005.safetensors",
|
| 479 |
+
"model.layers.39.self_attn.k_norm.weight": "model-00004-of-00005.safetensors",
|
| 480 |
+
"model.layers.39.self_attn.k_proj.weight": "model-00004-of-00005.safetensors",
|
| 481 |
+
"model.layers.39.self_attn.o_proj.weight": "model-00004-of-00005.safetensors",
|
| 482 |
+
"model.layers.39.self_attn.q_norm.weight": "model-00004-of-00005.safetensors",
|
| 483 |
+
"model.layers.39.self_attn.q_proj.weight": "model-00004-of-00005.safetensors",
|
| 484 |
+
"model.layers.39.self_attn.v_proj.weight": "model-00004-of-00005.safetensors",
|
| 485 |
+
"model.layers.4.attention_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 486 |
+
"model.layers.4.feedforward_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 487 |
+
"model.layers.4.mlp.act_fn.alpha_n": "model-00001-of-00005.safetensors",
|
| 488 |
+
"model.layers.4.mlp.act_fn.alpha_p": "model-00001-of-00005.safetensors",
|
| 489 |
+
"model.layers.4.mlp.act_fn.beta": "model-00001-of-00005.safetensors",
|
| 490 |
+
"model.layers.4.mlp.act_fn.eps": "model-00001-of-00005.safetensors",
|
| 491 |
+
"model.layers.4.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
|
| 492 |
+
"model.layers.4.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
|
| 493 |
+
"model.layers.4.self_attn.k_norm.weight": "model-00001-of-00005.safetensors",
|
| 494 |
+
"model.layers.4.self_attn.k_proj.weight": "model-00001-of-00005.safetensors",
|
| 495 |
+
"model.layers.4.self_attn.o_proj.weight": "model-00001-of-00005.safetensors",
|
| 496 |
+
"model.layers.4.self_attn.q_norm.weight": "model-00001-of-00005.safetensors",
|
| 497 |
+
"model.layers.4.self_attn.q_proj.weight": "model-00001-of-00005.safetensors",
|
| 498 |
+
"model.layers.4.self_attn.v_proj.weight": "model-00001-of-00005.safetensors",
|
| 499 |
+
"model.layers.40.attention_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 500 |
+
"model.layers.40.feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 501 |
+
"model.layers.40.mlp.act_fn.alpha_n": "model-00004-of-00005.safetensors",
|
| 502 |
+
"model.layers.40.mlp.act_fn.alpha_p": "model-00004-of-00005.safetensors",
|
| 503 |
+
"model.layers.40.mlp.act_fn.beta": "model-00004-of-00005.safetensors",
|
| 504 |
+
"model.layers.40.mlp.act_fn.eps": "model-00004-of-00005.safetensors",
|
| 505 |
+
"model.layers.40.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
|
| 506 |
+
"model.layers.40.mlp.up_proj.weight": "model-00004-of-00005.safetensors",
|
| 507 |
+
"model.layers.40.self_attn.k_norm.weight": "model-00004-of-00005.safetensors",
|
| 508 |
+
"model.layers.40.self_attn.k_proj.weight": "model-00004-of-00005.safetensors",
|
| 509 |
+
"model.layers.40.self_attn.o_proj.weight": "model-00004-of-00005.safetensors",
|
| 510 |
+
"model.layers.40.self_attn.q_norm.weight": "model-00004-of-00005.safetensors",
|
| 511 |
+
"model.layers.40.self_attn.q_proj.weight": "model-00004-of-00005.safetensors",
|
| 512 |
+
"model.layers.40.self_attn.v_proj.weight": "model-00004-of-00005.safetensors",
|
| 513 |
+
"model.layers.41.attention_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 514 |
+
"model.layers.41.feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 515 |
+
"model.layers.41.mlp.act_fn.alpha_n": "model-00004-of-00005.safetensors",
|
| 516 |
+
"model.layers.41.mlp.act_fn.alpha_p": "model-00004-of-00005.safetensors",
|
| 517 |
+
"model.layers.41.mlp.act_fn.beta": "model-00004-of-00005.safetensors",
|
| 518 |
+
"model.layers.41.mlp.act_fn.eps": "model-00004-of-00005.safetensors",
|
| 519 |
+
"model.layers.41.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
|
| 520 |
+
"model.layers.41.mlp.up_proj.weight": "model-00004-of-00005.safetensors",
|
| 521 |
+
"model.layers.41.self_attn.k_norm.weight": "model-00004-of-00005.safetensors",
|
| 522 |
+
"model.layers.41.self_attn.k_proj.weight": "model-00004-of-00005.safetensors",
|
| 523 |
+
"model.layers.41.self_attn.o_proj.weight": "model-00004-of-00005.safetensors",
|
| 524 |
+
"model.layers.41.self_attn.q_norm.weight": "model-00004-of-00005.safetensors",
|
| 525 |
+
"model.layers.41.self_attn.q_proj.weight": "model-00004-of-00005.safetensors",
|
| 526 |
+
"model.layers.41.self_attn.v_proj.weight": "model-00004-of-00005.safetensors",
|
| 527 |
+
"model.layers.42.attention_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 528 |
+
"model.layers.42.feedforward_layernorm.weight": "model-00004-of-00005.safetensors",
|
| 529 |
+
"model.layers.42.mlp.act_fn.alpha_n": "model-00004-of-00005.safetensors",
|
| 530 |
+
"model.layers.42.mlp.act_fn.alpha_p": "model-00004-of-00005.safetensors",
|
| 531 |
+
"model.layers.42.mlp.act_fn.beta": "model-00004-of-00005.safetensors",
|
| 532 |
+
"model.layers.42.mlp.act_fn.eps": "model-00004-of-00005.safetensors",
|
| 533 |
+
"model.layers.42.mlp.down_proj.weight": "model-00004-of-00005.safetensors",
|
| 534 |
+
"model.layers.42.mlp.up_proj.weight": "model-00004-of-00005.safetensors",
|
| 535 |
+
"model.layers.42.self_attn.k_norm.weight": "model-00004-of-00005.safetensors",
|
| 536 |
+
"model.layers.42.self_attn.k_proj.weight": "model-00004-of-00005.safetensors",
|
| 537 |
+
"model.layers.42.self_attn.o_proj.weight": "model-00004-of-00005.safetensors",
|
| 538 |
+
"model.layers.42.self_attn.q_norm.weight": "model-00004-of-00005.safetensors",
|
| 539 |
+
"model.layers.42.self_attn.q_proj.weight": "model-00004-of-00005.safetensors",
|
| 540 |
+
"model.layers.42.self_attn.v_proj.weight": "model-00004-of-00005.safetensors",
|
| 541 |
+
"model.layers.43.attention_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 542 |
+
"model.layers.43.feedforward_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 543 |
+
"model.layers.43.mlp.act_fn.alpha_n": "model-00005-of-00005.safetensors",
|
| 544 |
+
"model.layers.43.mlp.act_fn.alpha_p": "model-00005-of-00005.safetensors",
|
| 545 |
+
"model.layers.43.mlp.act_fn.beta": "model-00005-of-00005.safetensors",
|
| 546 |
+
"model.layers.43.mlp.act_fn.eps": "model-00005-of-00005.safetensors",
|
| 547 |
+
"model.layers.43.mlp.down_proj.weight": "model-00005-of-00005.safetensors",
|
| 548 |
+
"model.layers.43.mlp.up_proj.weight": "model-00005-of-00005.safetensors",
|
| 549 |
+
"model.layers.43.self_attn.k_norm.weight": "model-00005-of-00005.safetensors",
|
| 550 |
+
"model.layers.43.self_attn.k_proj.weight": "model-00005-of-00005.safetensors",
|
| 551 |
+
"model.layers.43.self_attn.o_proj.weight": "model-00005-of-00005.safetensors",
|
| 552 |
+
"model.layers.43.self_attn.q_norm.weight": "model-00005-of-00005.safetensors",
|
| 553 |
+
"model.layers.43.self_attn.q_proj.weight": "model-00005-of-00005.safetensors",
|
| 554 |
+
"model.layers.43.self_attn.v_proj.weight": "model-00005-of-00005.safetensors",
|
| 555 |
+
"model.layers.44.attention_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 556 |
+
"model.layers.44.feedforward_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 557 |
+
"model.layers.44.mlp.act_fn.alpha_n": "model-00005-of-00005.safetensors",
|
| 558 |
+
"model.layers.44.mlp.act_fn.alpha_p": "model-00005-of-00005.safetensors",
|
| 559 |
+
"model.layers.44.mlp.act_fn.beta": "model-00005-of-00005.safetensors",
|
| 560 |
+
"model.layers.44.mlp.act_fn.eps": "model-00005-of-00005.safetensors",
|
| 561 |
+
"model.layers.44.mlp.down_proj.weight": "model-00005-of-00005.safetensors",
|
| 562 |
+
"model.layers.44.mlp.up_proj.weight": "model-00005-of-00005.safetensors",
|
| 563 |
+
"model.layers.44.self_attn.k_norm.weight": "model-00005-of-00005.safetensors",
|
| 564 |
+
"model.layers.44.self_attn.k_proj.weight": "model-00005-of-00005.safetensors",
|
| 565 |
+
"model.layers.44.self_attn.o_proj.weight": "model-00005-of-00005.safetensors",
|
| 566 |
+
"model.layers.44.self_attn.q_norm.weight": "model-00005-of-00005.safetensors",
|
| 567 |
+
"model.layers.44.self_attn.q_proj.weight": "model-00005-of-00005.safetensors",
|
| 568 |
+
"model.layers.44.self_attn.v_proj.weight": "model-00005-of-00005.safetensors",
|
| 569 |
+
"model.layers.45.attention_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 570 |
+
"model.layers.45.feedforward_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 571 |
+
"model.layers.45.mlp.act_fn.alpha_n": "model-00005-of-00005.safetensors",
|
| 572 |
+
"model.layers.45.mlp.act_fn.alpha_p": "model-00005-of-00005.safetensors",
|
| 573 |
+
"model.layers.45.mlp.act_fn.beta": "model-00005-of-00005.safetensors",
|
| 574 |
+
"model.layers.45.mlp.act_fn.eps": "model-00005-of-00005.safetensors",
|
| 575 |
+
"model.layers.45.mlp.down_proj.weight": "model-00005-of-00005.safetensors",
|
| 576 |
+
"model.layers.45.mlp.up_proj.weight": "model-00005-of-00005.safetensors",
|
| 577 |
+
"model.layers.45.self_attn.k_norm.weight": "model-00005-of-00005.safetensors",
|
| 578 |
+
"model.layers.45.self_attn.k_proj.weight": "model-00005-of-00005.safetensors",
|
| 579 |
+
"model.layers.45.self_attn.o_proj.weight": "model-00005-of-00005.safetensors",
|
| 580 |
+
"model.layers.45.self_attn.q_norm.weight": "model-00005-of-00005.safetensors",
|
| 581 |
+
"model.layers.45.self_attn.q_proj.weight": "model-00005-of-00005.safetensors",
|
| 582 |
+
"model.layers.45.self_attn.v_proj.weight": "model-00005-of-00005.safetensors",
|
| 583 |
+
"model.layers.46.attention_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 584 |
+
"model.layers.46.feedforward_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 585 |
+
"model.layers.46.mlp.act_fn.alpha_n": "model-00005-of-00005.safetensors",
|
| 586 |
+
"model.layers.46.mlp.act_fn.alpha_p": "model-00005-of-00005.safetensors",
|
| 587 |
+
"model.layers.46.mlp.act_fn.beta": "model-00005-of-00005.safetensors",
|
| 588 |
+
"model.layers.46.mlp.act_fn.eps": "model-00005-of-00005.safetensors",
|
| 589 |
+
"model.layers.46.mlp.down_proj.weight": "model-00005-of-00005.safetensors",
|
| 590 |
+
"model.layers.46.mlp.up_proj.weight": "model-00005-of-00005.safetensors",
|
| 591 |
+
"model.layers.46.self_attn.k_norm.weight": "model-00005-of-00005.safetensors",
|
| 592 |
+
"model.layers.46.self_attn.k_proj.weight": "model-00005-of-00005.safetensors",
|
| 593 |
+
"model.layers.46.self_attn.o_proj.weight": "model-00005-of-00005.safetensors",
|
| 594 |
+
"model.layers.46.self_attn.q_norm.weight": "model-00005-of-00005.safetensors",
|
| 595 |
+
"model.layers.46.self_attn.q_proj.weight": "model-00005-of-00005.safetensors",
|
| 596 |
+
"model.layers.46.self_attn.v_proj.weight": "model-00005-of-00005.safetensors",
|
| 597 |
+
"model.layers.47.attention_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 598 |
+
"model.layers.47.feedforward_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 599 |
+
"model.layers.47.mlp.act_fn.alpha_n": "model-00005-of-00005.safetensors",
|
| 600 |
+
"model.layers.47.mlp.act_fn.alpha_p": "model-00005-of-00005.safetensors",
|
| 601 |
+
"model.layers.47.mlp.act_fn.beta": "model-00005-of-00005.safetensors",
|
| 602 |
+
"model.layers.47.mlp.act_fn.eps": "model-00005-of-00005.safetensors",
|
| 603 |
+
"model.layers.47.mlp.down_proj.weight": "model-00005-of-00005.safetensors",
|
| 604 |
+
"model.layers.47.mlp.up_proj.weight": "model-00005-of-00005.safetensors",
|
| 605 |
+
"model.layers.47.self_attn.k_norm.weight": "model-00005-of-00005.safetensors",
|
| 606 |
+
"model.layers.47.self_attn.k_proj.weight": "model-00005-of-00005.safetensors",
|
| 607 |
+
"model.layers.47.self_attn.o_proj.weight": "model-00005-of-00005.safetensors",
|
| 608 |
+
"model.layers.47.self_attn.q_norm.weight": "model-00005-of-00005.safetensors",
|
| 609 |
+
"model.layers.47.self_attn.q_proj.weight": "model-00005-of-00005.safetensors",
|
| 610 |
+
"model.layers.47.self_attn.v_proj.weight": "model-00005-of-00005.safetensors",
|
| 611 |
+
"model.layers.48.attention_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 612 |
+
"model.layers.48.feedforward_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 613 |
+
"model.layers.48.mlp.act_fn.alpha_n": "model-00005-of-00005.safetensors",
|
| 614 |
+
"model.layers.48.mlp.act_fn.alpha_p": "model-00005-of-00005.safetensors",
|
| 615 |
+
"model.layers.48.mlp.act_fn.beta": "model-00005-of-00005.safetensors",
|
| 616 |
+
"model.layers.48.mlp.act_fn.eps": "model-00005-of-00005.safetensors",
|
| 617 |
+
"model.layers.48.mlp.down_proj.weight": "model-00005-of-00005.safetensors",
|
| 618 |
+
"model.layers.48.mlp.up_proj.weight": "model-00005-of-00005.safetensors",
|
| 619 |
+
"model.layers.48.self_attn.k_norm.weight": "model-00005-of-00005.safetensors",
|
| 620 |
+
"model.layers.48.self_attn.k_proj.weight": "model-00005-of-00005.safetensors",
|
| 621 |
+
"model.layers.48.self_attn.o_proj.weight": "model-00005-of-00005.safetensors",
|
| 622 |
+
"model.layers.48.self_attn.q_norm.weight": "model-00005-of-00005.safetensors",
|
| 623 |
+
"model.layers.48.self_attn.q_proj.weight": "model-00005-of-00005.safetensors",
|
| 624 |
+
"model.layers.48.self_attn.v_proj.weight": "model-00005-of-00005.safetensors",
|
| 625 |
+
"model.layers.49.attention_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 626 |
+
"model.layers.49.feedforward_layernorm.weight": "model-00005-of-00005.safetensors",
|
| 627 |
+
"model.layers.49.mlp.act_fn.alpha_n": "model-00005-of-00005.safetensors",
|
| 628 |
+
"model.layers.49.mlp.act_fn.alpha_p": "model-00005-of-00005.safetensors",
|
| 629 |
+
"model.layers.49.mlp.act_fn.beta": "model-00005-of-00005.safetensors",
|
| 630 |
+
"model.layers.49.mlp.act_fn.eps": "model-00005-of-00005.safetensors",
|
| 631 |
+
"model.layers.49.mlp.down_proj.weight": "model-00005-of-00005.safetensors",
|
| 632 |
+
"model.layers.49.mlp.up_proj.weight": "model-00005-of-00005.safetensors",
|
| 633 |
+
"model.layers.49.self_attn.k_norm.weight": "model-00005-of-00005.safetensors",
|
| 634 |
+
"model.layers.49.self_attn.k_proj.weight": "model-00005-of-00005.safetensors",
|
| 635 |
+
"model.layers.49.self_attn.o_proj.weight": "model-00005-of-00005.safetensors",
|
| 636 |
+
"model.layers.49.self_attn.q_norm.weight": "model-00005-of-00005.safetensors",
|
| 637 |
+
"model.layers.49.self_attn.q_proj.weight": "model-00005-of-00005.safetensors",
|
| 638 |
+
"model.layers.49.self_attn.v_proj.weight": "model-00005-of-00005.safetensors",
|
| 639 |
+
"model.layers.5.attention_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 640 |
+
"model.layers.5.feedforward_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 641 |
+
"model.layers.5.mlp.act_fn.alpha_n": "model-00001-of-00005.safetensors",
|
| 642 |
+
"model.layers.5.mlp.act_fn.alpha_p": "model-00001-of-00005.safetensors",
|
| 643 |
+
"model.layers.5.mlp.act_fn.beta": "model-00001-of-00005.safetensors",
|
| 644 |
+
"model.layers.5.mlp.act_fn.eps": "model-00001-of-00005.safetensors",
|
| 645 |
+
"model.layers.5.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
|
| 646 |
+
"model.layers.5.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
|
| 647 |
+
"model.layers.5.self_attn.k_norm.weight": "model-00001-of-00005.safetensors",
|
| 648 |
+
"model.layers.5.self_attn.k_proj.weight": "model-00001-of-00005.safetensors",
|
| 649 |
+
"model.layers.5.self_attn.o_proj.weight": "model-00001-of-00005.safetensors",
|
| 650 |
+
"model.layers.5.self_attn.q_norm.weight": "model-00001-of-00005.safetensors",
|
| 651 |
+
"model.layers.5.self_attn.q_proj.weight": "model-00001-of-00005.safetensors",
|
| 652 |
+
"model.layers.5.self_attn.v_proj.weight": "model-00001-of-00005.safetensors",
|
| 653 |
+
"model.layers.6.attention_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 654 |
+
"model.layers.6.feedforward_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 655 |
+
"model.layers.6.mlp.act_fn.alpha_n": "model-00001-of-00005.safetensors",
|
| 656 |
+
"model.layers.6.mlp.act_fn.alpha_p": "model-00001-of-00005.safetensors",
|
| 657 |
+
"model.layers.6.mlp.act_fn.beta": "model-00001-of-00005.safetensors",
|
| 658 |
+
"model.layers.6.mlp.act_fn.eps": "model-00001-of-00005.safetensors",
|
| 659 |
+
"model.layers.6.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
|
| 660 |
+
"model.layers.6.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
|
| 661 |
+
"model.layers.6.self_attn.k_norm.weight": "model-00001-of-00005.safetensors",
|
| 662 |
+
"model.layers.6.self_attn.k_proj.weight": "model-00001-of-00005.safetensors",
|
| 663 |
+
"model.layers.6.self_attn.o_proj.weight": "model-00001-of-00005.safetensors",
|
| 664 |
+
"model.layers.6.self_attn.q_norm.weight": "model-00001-of-00005.safetensors",
|
| 665 |
+
"model.layers.6.self_attn.q_proj.weight": "model-00001-of-00005.safetensors",
|
| 666 |
+
"model.layers.6.self_attn.v_proj.weight": "model-00001-of-00005.safetensors",
|
| 667 |
+
"model.layers.7.attention_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 668 |
+
"model.layers.7.feedforward_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 669 |
+
"model.layers.7.mlp.act_fn.alpha_n": "model-00001-of-00005.safetensors",
|
| 670 |
+
"model.layers.7.mlp.act_fn.alpha_p": "model-00001-of-00005.safetensors",
|
| 671 |
+
"model.layers.7.mlp.act_fn.beta": "model-00001-of-00005.safetensors",
|
| 672 |
+
"model.layers.7.mlp.act_fn.eps": "model-00001-of-00005.safetensors",
|
| 673 |
+
"model.layers.7.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
|
| 674 |
+
"model.layers.7.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
|
| 675 |
+
"model.layers.7.self_attn.k_norm.weight": "model-00001-of-00005.safetensors",
|
| 676 |
+
"model.layers.7.self_attn.k_proj.weight": "model-00001-of-00005.safetensors",
|
| 677 |
+
"model.layers.7.self_attn.o_proj.weight": "model-00001-of-00005.safetensors",
|
| 678 |
+
"model.layers.7.self_attn.q_norm.weight": "model-00001-of-00005.safetensors",
|
| 679 |
+
"model.layers.7.self_attn.q_proj.weight": "model-00001-of-00005.safetensors",
|
| 680 |
+
"model.layers.7.self_attn.v_proj.weight": "model-00001-of-00005.safetensors",
|
| 681 |
+
"model.layers.8.attention_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 682 |
+
"model.layers.8.feedforward_layernorm.weight": "model-00001-of-00005.safetensors",
|
| 683 |
+
"model.layers.8.mlp.act_fn.alpha_n": "model-00001-of-00005.safetensors",
|
| 684 |
+
"model.layers.8.mlp.act_fn.alpha_p": "model-00001-of-00005.safetensors",
|
| 685 |
+
"model.layers.8.mlp.act_fn.beta": "model-00001-of-00005.safetensors",
|
| 686 |
+
"model.layers.8.mlp.act_fn.eps": "model-00001-of-00005.safetensors",
|
| 687 |
+
"model.layers.8.mlp.down_proj.weight": "model-00001-of-00005.safetensors",
|
| 688 |
+
"model.layers.8.mlp.up_proj.weight": "model-00001-of-00005.safetensors",
|
| 689 |
+
"model.layers.8.self_attn.k_norm.weight": "model-00001-of-00005.safetensors",
|
| 690 |
+
"model.layers.8.self_attn.k_proj.weight": "model-00001-of-00005.safetensors",
|
| 691 |
+
"model.layers.8.self_attn.o_proj.weight": "model-00001-of-00005.safetensors",
|
| 692 |
+
"model.layers.8.self_attn.q_norm.weight": "model-00001-of-00005.safetensors",
|
| 693 |
+
"model.layers.8.self_attn.q_proj.weight": "model-00001-of-00005.safetensors",
|
| 694 |
+
"model.layers.8.self_attn.v_proj.weight": "model-00001-of-00005.safetensors",
|
| 695 |
+
"model.layers.9.attention_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 696 |
+
"model.layers.9.feedforward_layernorm.weight": "model-00002-of-00005.safetensors",
|
| 697 |
+
"model.layers.9.mlp.act_fn.alpha_n": "model-00002-of-00005.safetensors",
|
| 698 |
+
"model.layers.9.mlp.act_fn.alpha_p": "model-00002-of-00005.safetensors",
|
| 699 |
+
"model.layers.9.mlp.act_fn.beta": "model-00002-of-00005.safetensors",
|
| 700 |
+
"model.layers.9.mlp.act_fn.eps": "model-00002-of-00005.safetensors",
|
| 701 |
+
"model.layers.9.mlp.down_proj.weight": "model-00002-of-00005.safetensors",
|
| 702 |
+
"model.layers.9.mlp.up_proj.weight": "model-00002-of-00005.safetensors",
|
| 703 |
+
"model.layers.9.self_attn.k_norm.weight": "model-00002-of-00005.safetensors",
|
| 704 |
+
"model.layers.9.self_attn.k_proj.weight": "model-00002-of-00005.safetensors",
|
| 705 |
+
"model.layers.9.self_attn.o_proj.weight": "model-00002-of-00005.safetensors",
|
| 706 |
+
"model.layers.9.self_attn.q_norm.weight": "model-00002-of-00005.safetensors",
|
| 707 |
+
"model.layers.9.self_attn.q_proj.weight": "model-00002-of-00005.safetensors",
|
| 708 |
+
"model.layers.9.self_attn.v_proj.weight": "model-00002-of-00005.safetensors",
|
| 709 |
+
"model.norm.weight": "model-00005-of-00005.safetensors"
|
| 710 |
+
}
|
| 711 |
+
}
|
special_tokens_map.json
ADDED
|
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"bos_token": {
|
| 3 |
+
"content": "<s>",
|
| 4 |
+
"lstrip": false,
|
| 5 |
+
"normalized": false,
|
| 6 |
+
"rstrip": false,
|
| 7 |
+
"single_word": false
|
| 8 |
+
},
|
| 9 |
+
"eos_token": {
|
| 10 |
+
"content": "<|im_end|>",
|
| 11 |
+
"lstrip": false,
|
| 12 |
+
"normalized": false,
|
| 13 |
+
"rstrip": false,
|
| 14 |
+
"single_word": false
|
| 15 |
+
},
|
| 16 |
+
"pad_token": {
|
| 17 |
+
"content": "<pad>",
|
| 18 |
+
"lstrip": false,
|
| 19 |
+
"normalized": false,
|
| 20 |
+
"rstrip": false,
|
| 21 |
+
"single_word": false
|
| 22 |
+
},
|
| 23 |
+
"unk_token": {
|
| 24 |
+
"content": "<unk>",
|
| 25 |
+
"lstrip": false,
|
| 26 |
+
"normalized": false,
|
| 27 |
+
"rstrip": false,
|
| 28 |
+
"single_word": false
|
| 29 |
+
}
|
| 30 |
+
}
|
tokenizer.json
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:355d635f647f0513296e01963d876dc5a10df2853296b11d5be7d00296070faf
|
| 3 |
+
size 17078466
|
tokenizer_config.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
training_args.bin
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
version https://git-lfs.github.com/spec/v1
|
| 2 |
+
oid sha256:08dd842896c230f73d6315514e9d44ffd267ee56af71df6039a023f6565581a0
|
| 3 |
+
size 7633
|