Upload 6 files
Browse files- config.json +31 -0
- generation_config.json +7 -0
- modeling_flash_llama.py +1025 -0
- pytorch_model-00001-of-00002.bin +3 -0
- pytorch_model-00002-of-00002.bin +3 -0
- pytorch_model.bin.index.json +330 -0
config.json
ADDED
@@ -0,0 +1,31 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"architectures": [
|
3 |
+
"LlamaForCausalLM"
|
4 |
+
],
|
5 |
+
"auto_map": {
|
6 |
+
"AutoModelForCausalLM": "modeling_flash_llama.LlamaForCausalLM"
|
7 |
+
},
|
8 |
+
"bos_token_id": 1,
|
9 |
+
"eos_token_id": 2,
|
10 |
+
"hidden_act": "silu",
|
11 |
+
"hidden_size": 4096,
|
12 |
+
"initializer_range": 0.02,
|
13 |
+
"intermediate_size": 11008,
|
14 |
+
"max_position_embeddings": 32768,
|
15 |
+
"model_type": "llama",
|
16 |
+
"num_attention_heads": 32,
|
17 |
+
"num_hidden_layers": 32,
|
18 |
+
"num_key_value_heads": 32,
|
19 |
+
"pad_token_id": 0,
|
20 |
+
"pretraining_tp": 1,
|
21 |
+
"rms_norm_eps": 1e-05,
|
22 |
+
"rope_scaling": {
|
23 |
+
"factor": 8.0,
|
24 |
+
"type": "linear"
|
25 |
+
},
|
26 |
+
"tie_word_embeddings": false,
|
27 |
+
"torch_dtype": "float16",
|
28 |
+
"transformers_version": "4.31.0",
|
29 |
+
"use_cache": true,
|
30 |
+
"vocab_size": 32000
|
31 |
+
}
|
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": 0,
|
6 |
+
"transformers_version": "4.31.0"
|
7 |
+
}
|
modeling_flash_llama.py
ADDED
@@ -0,0 +1,1025 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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 |
+
""" PyTorch LLaMA model."""
|
21 |
+
import math
|
22 |
+
from typing import List, Optional, Tuple, Union
|
23 |
+
|
24 |
+
import torch
|
25 |
+
import torch.nn.functional as F
|
26 |
+
import torch.utils.checkpoint
|
27 |
+
from torch import nn
|
28 |
+
from torch.nn import BCEWithLogitsLoss, CrossEntropyLoss, MSELoss
|
29 |
+
|
30 |
+
from transformers.activations import ACT2FN
|
31 |
+
from transformers.modeling_outputs import BaseModelOutputWithPast, CausalLMOutputWithPast, SequenceClassifierOutputWithPast
|
32 |
+
from transformers.modeling_utils import PreTrainedModel
|
33 |
+
from transformers.utils import add_start_docstrings, add_start_docstrings_to_model_forward, logging, replace_return_docstrings
|
34 |
+
from transformers.models.llama.configuration_llama import LlamaConfig
|
35 |
+
|
36 |
+
|
37 |
+
try:
|
38 |
+
from flash_attn.flash_attn_interface import (
|
39 |
+
flash_attn_func,
|
40 |
+
flash_attn_kvpacked_func,
|
41 |
+
flash_attn_qkvpacked_func,
|
42 |
+
flash_attn_varlen_kvpacked_func,
|
43 |
+
)
|
44 |
+
from flash_attn.bert_padding import unpad_input, pad_input
|
45 |
+
flash_attn_v2_installed = True
|
46 |
+
print('>>>> Flash Attention installed')
|
47 |
+
from flash_attn.losses.cross_entropy import CrossEntropyLoss as xCrossEntropyLoss
|
48 |
+
except ImportError:
|
49 |
+
flash_attn_v2_installed = False
|
50 |
+
raise ImportError('Please install Flash Attention: `pip install flash-attn --no-build-isolation`')
|
51 |
+
|
52 |
+
try:
|
53 |
+
from flash_attn.layers.rotary import apply_rotary_emb_func
|
54 |
+
flash_rope_installed = True
|
55 |
+
print('>>>> Flash RoPE installed')
|
56 |
+
except ImportError:
|
57 |
+
flash_rope_installed = False
|
58 |
+
raise ImportError('Please install RoPE kernels: `pip install git+https://github.com/HazyResearch/flash-attention.git#subdirectory=csrc/rotary`')
|
59 |
+
|
60 |
+
|
61 |
+
logger = logging.get_logger(__name__)
|
62 |
+
|
63 |
+
_CONFIG_FOR_DOC = "LlamaConfig"
|
64 |
+
|
65 |
+
|
66 |
+
# @torch.jit.script
|
67 |
+
def rmsnorm_func(hidden_states, weight, variance_epsilon):
|
68 |
+
input_dtype = hidden_states.dtype
|
69 |
+
hidden_states = hidden_states.to(torch.float32)
|
70 |
+
variance = hidden_states.pow(2).mean(-1, keepdim=True)
|
71 |
+
hidden_states = hidden_states * torch.rsqrt(variance + variance_epsilon)
|
72 |
+
return (weight * hidden_states).to(input_dtype)
|
73 |
+
|
74 |
+
|
75 |
+
class LlamaRMSNorm(nn.Module):
|
76 |
+
def __init__(self, hidden_size, eps=1e-6):
|
77 |
+
"""
|
78 |
+
LlamaRMSNorm is equivalent to T5LayerNorm
|
79 |
+
"""
|
80 |
+
super().__init__()
|
81 |
+
self.weight = nn.Parameter(torch.ones(hidden_size))
|
82 |
+
self.register_buffer(
|
83 |
+
"variance_epsilon",
|
84 |
+
torch.tensor(eps),
|
85 |
+
persistent=False,
|
86 |
+
)
|
87 |
+
|
88 |
+
def forward(self, hidden_states):
|
89 |
+
return rmsnorm_func(hidden_states, self.weight, self.variance_epsilon)
|
90 |
+
|
91 |
+
|
92 |
+
class FlashRotaryEmbedding(torch.nn.Module):
|
93 |
+
"""
|
94 |
+
The rotary position embeddings from RoFormer_ (Su et. al).
|
95 |
+
A crucial insight from the method is that the query and keys are
|
96 |
+
transformed by rotation matrices which depend on the relative positions.
|
97 |
+
|
98 |
+
Other implementations are available in the Rotary Transformer repo_ and in
|
99 |
+
GPT-NeoX_, GPT-NeoX was an inspiration
|
100 |
+
|
101 |
+
.. _RoFormer: https://arxiv.org/abs/2104.09864
|
102 |
+
.. _repo: https://github.com/ZhuiyiTechnology/roformer
|
103 |
+
.. _GPT-NeoX: https://github.com/EleutherAI/gpt-neox
|
104 |
+
|
105 |
+
If scale_base is not None, this implements XPos (Sun et al., https://arxiv.org/abs/2212.10554).
|
106 |
+
A recommended value for scale_base is 512: https://github.com/HazyResearch/flash-attention/issues/96
|
107 |
+
Reference: https://github.com/sunyt32/torchscale/blob/main/torchscale/component/xpos_relative_position.py
|
108 |
+
"""
|
109 |
+
|
110 |
+
def __init__(self, dim: int, base=10000.0, interleaved=False, scale_base=None,
|
111 |
+
scaling_factor=1.0, pos_idx_in_fp32=True, device=None):
|
112 |
+
"""
|
113 |
+
interleaved: if True, rotate pairs of even and odd dimensions (GPT-J style) instead
|
114 |
+
of 1st half and 2nd half (GPT-NeoX style).
|
115 |
+
pos_idx_in_fp32: if True, the position indices [0.0, ..., seqlen - 1] are in fp32,
|
116 |
+
otherwise they might be in lower precision.
|
117 |
+
This option was added because previously (before 2023-07-02), when we construct
|
118 |
+
the position indices, we use the dtype of self.inv_freq. In most cases this would
|
119 |
+
be fp32, but if the model is trained in pure bf16 (not mixed precision), then
|
120 |
+
self.inv_freq would be bf16, and the position indices are also in bf16.
|
121 |
+
Because of the limited precision of bf16 (e.g. 1995.0 is rounded to 2000.0), the
|
122 |
+
embeddings for some positions will coincide.
|
123 |
+
To maintain compatibility with models previously trained in pure bf16,
|
124 |
+
we add this option.
|
125 |
+
scaling_factor: RotaryEmbedding extended with linear scaling.
|
126 |
+
"""
|
127 |
+
super().__init__()
|
128 |
+
self.dim = dim
|
129 |
+
self.base = float(base)
|
130 |
+
self.pos_idx_in_fp32 = pos_idx_in_fp32
|
131 |
+
# Generate and save the inverse frequency buffer (non trainable)
|
132 |
+
inv_freq = self._compute_inv_freq(device)
|
133 |
+
self.register_buffer("inv_freq", inv_freq, persistent=False)
|
134 |
+
self.interleaved = interleaved
|
135 |
+
self.scale_base = scale_base
|
136 |
+
self.scaling_factor = scaling_factor
|
137 |
+
scale = ((torch.arange(0, dim, 2, device=device, dtype=torch.float32) + 0.4 * dim)
|
138 |
+
/ (1.4 * dim) if scale_base is not None else None)
|
139 |
+
self.register_buffer("scale", scale)
|
140 |
+
|
141 |
+
self._seq_len_cached = 0
|
142 |
+
self._cos_cached = None
|
143 |
+
self._sin_cached = None
|
144 |
+
self._cos_k_cached = None
|
145 |
+
self._sin_k_cached = None
|
146 |
+
|
147 |
+
def _compute_inv_freq(self, device=None):
|
148 |
+
return 1 / (self.base ** (torch.arange(0, self.dim, 2, device=device,
|
149 |
+
dtype=torch.float32) / self.dim))
|
150 |
+
|
151 |
+
|
152 |
+
def _update_cos_sin_cache(self, seqlen, device=None, dtype=None):
|
153 |
+
# Reset the tables if the sequence length has changed,
|
154 |
+
# if we're on a new device (possibly due to tracing for instance),
|
155 |
+
# or if we're switching from inference mode to training
|
156 |
+
if (seqlen > self._seq_len_cached or self._cos_cached.device != device
|
157 |
+
or self._cos_cached.dtype != dtype
|
158 |
+
or (self.training and self._cos_cached.is_inference())):
|
159 |
+
self._seq_len_cached = seqlen
|
160 |
+
# We want fp32 here, not self.inv_freq.dtype, since the model could be loaded in bf16
|
161 |
+
# And the output of arange can be quite large, so bf16 would lose a lot of precision.
|
162 |
+
# However, for compatibility reason, we add an option to use the dtype of self.inv_freq.
|
163 |
+
if self.pos_idx_in_fp32:
|
164 |
+
t = torch.arange(seqlen, device=device, dtype=torch.float32)
|
165 |
+
t /= self.scaling_factor
|
166 |
+
# We want fp32 here as well since inv_freq will be multiplied with t, and the output
|
167 |
+
# will be large. Having it in bf16 will lose a lot of precision and cause the
|
168 |
+
# cos & sin output to change significantly.
|
169 |
+
# We want to recompute self.inv_freq if it was not loaded in fp32
|
170 |
+
if self.inv_freq.dtype != torch.float32:
|
171 |
+
inv_freq = self.inv_freq.to(torch.float32)
|
172 |
+
else:
|
173 |
+
inv_freq = self.inv_freq
|
174 |
+
else:
|
175 |
+
t = torch.arange(seqlen, device=device, dtype=self.inv_freq.dtype)
|
176 |
+
t /= self.scaling_factor
|
177 |
+
inv_freq = self.inv_freq
|
178 |
+
# Don't do einsum, it converts fp32 to fp16 under AMP
|
179 |
+
# freqs = torch.einsum("i,j->ij", t, self.inv_freq)
|
180 |
+
freqs = torch.outer(t, inv_freq)
|
181 |
+
if self.scale is None:
|
182 |
+
self._cos_cached = torch.cos(freqs).to(dtype)
|
183 |
+
self._sin_cached = torch.sin(freqs).to(dtype)
|
184 |
+
else:
|
185 |
+
power = ((torch.arange(seqlen, dtype=self.scale.dtype, device=self.scale.device)
|
186 |
+
- seqlen // 2) / self.scale_base)
|
187 |
+
scale = self.scale.to(device=power.device) ** power.unsqueeze(-1)
|
188 |
+
# We want the multiplication by scale to happen in fp32
|
189 |
+
self._cos_cached = (torch.cos(freqs) * scale).to(dtype)
|
190 |
+
self._sin_cached = (torch.sin(freqs) * scale).to(dtype)
|
191 |
+
self._cos_k_cached = (torch.cos(freqs) / scale).to(dtype)
|
192 |
+
self._sin_k_cached = (torch.sin(freqs) / scale).to(dtype)
|
193 |
+
|
194 |
+
def forward(self, q: torch.Tensor, k: torch.Tensor, seqlen_offset: int = 0) -> Tuple[torch.Tensor, torch.Tensor]:
|
195 |
+
"""
|
196 |
+
q: (batch, seqlen, nheads, headdim)
|
197 |
+
k: (batch, seqlen, nheads, headdim)
|
198 |
+
seqlen_offset: can be used in generation where the qkv being passed in is only the last
|
199 |
+
token in the batch.
|
200 |
+
"""
|
201 |
+
self._update_cos_sin_cache(q.shape[1] + seqlen_offset, device=q.device, dtype=q.dtype)
|
202 |
+
if self.scale is None:
|
203 |
+
return apply_rotary_emb_func(
|
204 |
+
q, self._cos_cached[seqlen_offset:], self._sin_cached[seqlen_offset:],
|
205 |
+
self.interleaved, True # inplace=True
|
206 |
+
), apply_rotary_emb_func(
|
207 |
+
k, self._cos_cached[seqlen_offset:], self._sin_cached[seqlen_offset:],
|
208 |
+
self.interleaved, True # inplace=True
|
209 |
+
)
|
210 |
+
else:
|
211 |
+
assert False
|
212 |
+
|
213 |
+
class LlamaMLP(nn.Module):
|
214 |
+
def __init__(self, config):
|
215 |
+
super().__init__()
|
216 |
+
self.config = config
|
217 |
+
self.hidden_size = config.hidden_size
|
218 |
+
self.intermediate_size = config.intermediate_size
|
219 |
+
self.gate_proj = nn.Linear(self.hidden_size, self.intermediate_size, bias=False)
|
220 |
+
self.up_proj = nn.Linear(self.hidden_size, self.intermediate_size, bias=False)
|
221 |
+
self.down_proj = nn.Linear(self.intermediate_size, self.hidden_size, bias=False)
|
222 |
+
self.act_fn = ACT2FN[config.hidden_act]
|
223 |
+
|
224 |
+
def forward(self, x):
|
225 |
+
if self.config.pretraining_tp > 1:
|
226 |
+
slice = self.intermediate_size // self.config.pretraining_tp
|
227 |
+
gate_proj_slices = self.gate_proj.weight.split(slice, dim=0)
|
228 |
+
up_proj_slices = self.up_proj.weight.split(slice, dim=0)
|
229 |
+
down_proj_slices = self.down_proj.weight.split(slice, dim=1)
|
230 |
+
|
231 |
+
gate_proj = torch.cat(
|
232 |
+
[F.linear(x, gate_proj_slices[i]) for i in range(self.config.pretraining_tp)], dim=-1
|
233 |
+
)
|
234 |
+
up_proj = torch.cat([F.linear(x, up_proj_slices[i]) for i in range(self.config.pretraining_tp)], dim=-1)
|
235 |
+
|
236 |
+
intermediate_states = (self.act_fn(gate_proj) * up_proj).split(slice, dim=2)
|
237 |
+
down_proj = [
|
238 |
+
F.linear(intermediate_states[i], down_proj_slices[i]) for i in range(self.config.pretraining_tp)
|
239 |
+
]
|
240 |
+
down_proj = sum(down_proj)
|
241 |
+
else:
|
242 |
+
down_proj = self.down_proj(self.act_fn(self.gate_proj(x)) * self.up_proj(x))
|
243 |
+
|
244 |
+
return down_proj
|
245 |
+
|
246 |
+
@torch.jit.script
|
247 |
+
def repeat_kv(hidden_states: torch.Tensor, n_rep: int) -> torch.Tensor:
|
248 |
+
"""
|
249 |
+
This is the equivalent of torch.repeat_interleave(x, dim=1, repeats=n_rep). The hidden states go from (batch,
|
250 |
+
num_key_value_heads, seqlen, head_dim) to (batch, num_attention_heads, seqlen, head_dim)
|
251 |
+
"""
|
252 |
+
batch, slen, _, num_key_value_heads, head_dim = hidden_states.shape
|
253 |
+
if n_rep == 1:
|
254 |
+
return hidden_states
|
255 |
+
hidden_states = hidden_states[:, :, :, :, None, :].expand(batch, slen, 2, num_key_value_heads, n_rep, head_dim)
|
256 |
+
return hidden_states.reshape(batch, slen, 2, num_key_value_heads * n_rep, head_dim)
|
257 |
+
|
258 |
+
|
259 |
+
class LlamaAttention(nn.Module):
|
260 |
+
"""Multi-headed attention from 'Attention Is All You Need' paper"""
|
261 |
+
|
262 |
+
def __init__(self, config: LlamaConfig):
|
263 |
+
super().__init__()
|
264 |
+
self.config = config
|
265 |
+
self.hidden_size = config.hidden_size
|
266 |
+
self.num_heads = config.num_attention_heads
|
267 |
+
self.head_dim = self.hidden_size // self.num_heads
|
268 |
+
self.num_key_value_heads = config.num_key_value_heads
|
269 |
+
self.num_key_value_groups = self.num_heads // self.num_key_value_heads
|
270 |
+
self.max_position_embeddings = config.max_position_embeddings
|
271 |
+
|
272 |
+
if (self.head_dim * self.num_heads) != self.hidden_size:
|
273 |
+
raise ValueError(
|
274 |
+
f"hidden_size must be divisible by num_heads (got `hidden_size`: {self.hidden_size}"
|
275 |
+
f" and `num_heads`: {self.num_heads})."
|
276 |
+
)
|
277 |
+
self.q_proj = nn.Linear(self.hidden_size, self.num_heads * self.head_dim, bias=False)
|
278 |
+
self.k_proj = nn.Linear(self.hidden_size, self.num_key_value_heads * self.head_dim, bias=False)
|
279 |
+
self.v_proj = nn.Linear(self.hidden_size, self.num_key_value_heads * self.head_dim, bias=False)
|
280 |
+
self.o_proj = nn.Linear(self.num_heads * self.head_dim, self.hidden_size, bias=False)
|
281 |
+
|
282 |
+
self.register_buffer(
|
283 |
+
"norm_factor",
|
284 |
+
torch.sqrt(torch.tensor(self.head_dim, dtype=torch.float32)).to(torch.get_default_dtype()),
|
285 |
+
persistent=False,
|
286 |
+
)
|
287 |
+
|
288 |
+
if self.config.rope_scaling is None:
|
289 |
+
scaling_factor = 1
|
290 |
+
else:
|
291 |
+
scaling_type = self.config.rope_scaling["type"]
|
292 |
+
scaling_factor = self.config.rope_scaling["factor"]
|
293 |
+
assert scaling_type == 'linear'
|
294 |
+
|
295 |
+
self.rotary_emb = FlashRotaryEmbedding(
|
296 |
+
self.head_dim, base=10000, interleaved=False, scaling_factor=scaling_factor,
|
297 |
+
)
|
298 |
+
|
299 |
+
def _shape(self, tensor: torch.Tensor, seq_len: int, bsz: int):
|
300 |
+
return tensor.view(bsz, seq_len, self.num_heads, self.head_dim).transpose(1, 2).contiguous()
|
301 |
+
|
302 |
+
def forward(
|
303 |
+
self,
|
304 |
+
hidden_states: torch.Tensor,
|
305 |
+
attention_mask: Optional[torch.Tensor] = None,
|
306 |
+
position_ids: Optional[torch.LongTensor] = None,
|
307 |
+
past_key_value: Optional[Tuple[torch.Tensor]] = None,
|
308 |
+
output_attentions: bool = False,
|
309 |
+
use_cache: bool = False,
|
310 |
+
is_padded_inputs: Optional[bool] = False,
|
311 |
+
) -> Tuple[torch.Tensor, Optional[torch.Tensor], Optional[Tuple[torch.Tensor]]]:
|
312 |
+
bsz, q_len, h_size = hidden_states.size()
|
313 |
+
|
314 |
+
has_layer_past = past_key_value is not None
|
315 |
+
|
316 |
+
if has_layer_past:
|
317 |
+
past_kv = past_key_value[0]
|
318 |
+
past_len = past_key_value[1]
|
319 |
+
else:
|
320 |
+
past_len = 0
|
321 |
+
|
322 |
+
if self.config.pretraining_tp > 1:
|
323 |
+
key_value_slicing = (self.num_key_value_heads * self.head_dim) // self.config.pretraining_tp
|
324 |
+
query_slices = self.q_proj.weight.split(
|
325 |
+
(self.num_heads * self.head_dim) // self.config.pretraining_tp, dim=0
|
326 |
+
)
|
327 |
+
key_slices = self.k_proj.weight.split(key_value_slicing, dim=0)
|
328 |
+
value_slices = self.v_proj.weight.split(key_value_slicing, dim=0)
|
329 |
+
|
330 |
+
q = [F.linear(hidden_states, query_slices[i]) for i in range(self.config.pretraining_tp)]
|
331 |
+
q = torch.cat(q, dim=-1)
|
332 |
+
|
333 |
+
k = [F.linear(hidden_states, key_slices[i]) for i in range(self.config.pretraining_tp)]
|
334 |
+
k = torch.cat(k, dim=-1)
|
335 |
+
|
336 |
+
v = [F.linear(hidden_states, value_slices[i]) for i in range(self.config.pretraining_tp)]
|
337 |
+
v = torch.cat(v, dim=-1)
|
338 |
+
|
339 |
+
else:
|
340 |
+
q = self.q_proj(hidden_states)
|
341 |
+
k = self.k_proj(hidden_states)
|
342 |
+
v = self.v_proj(hidden_states)
|
343 |
+
|
344 |
+
q = q.view(bsz, q_len, self.num_heads, self.head_dim)
|
345 |
+
k = k.view(bsz, q_len, self.num_key_value_heads, self.head_dim)
|
346 |
+
v = v.view(bsz, q_len, self.num_key_value_heads, self.head_dim)
|
347 |
+
|
348 |
+
q, k = self.rotary_emb(q, k, past_len)
|
349 |
+
|
350 |
+
kv = torch.stack([k, v], 2)
|
351 |
+
kv = repeat_kv(kv, self.num_key_value_groups)
|
352 |
+
|
353 |
+
# Cache QKV values
|
354 |
+
if has_layer_past:
|
355 |
+
new_len = past_len+q.size(1)
|
356 |
+
if new_len > past_kv.size(1):
|
357 |
+
past_kv = torch.cat([past_kv, torch.empty(bsz, 256, 2, kv.size(3), kv.size(4), dtype=kv.dtype, device=kv.device)], 1)
|
358 |
+
past_kv[:, past_len:new_len] = kv
|
359 |
+
kv = past_kv[:, :new_len]
|
360 |
+
else:
|
361 |
+
past_kv = kv
|
362 |
+
|
363 |
+
past_key_value = (past_kv, past_len+q.size(1)) if use_cache else None
|
364 |
+
|
365 |
+
if is_padded_inputs:
|
366 |
+
|
367 |
+
# varlen, ignore padding tokens, efficient for large batch with many paddings
|
368 |
+
|
369 |
+
assert attention_mask is not None
|
370 |
+
|
371 |
+
unpadded_kv, indices_k, cu_seqlens_k, max_seqlen_k = unpad_input(kv, attention_mask)
|
372 |
+
unpadded_q, indices_q, cu_seqlens_q, max_seqlen_q = unpad_input(q, attention_mask[:, -q.size(1):])
|
373 |
+
attn_outputs = flash_attn_varlen_kvpacked_func(
|
374 |
+
unpadded_q, unpadded_kv, cu_seqlens_q, cu_seqlens_k,
|
375 |
+
max_seqlen_q, max_seqlen_k,
|
376 |
+
dropout_p=0.0, softmax_scale=1.0/self.norm_factor,
|
377 |
+
causal=(not has_layer_past), return_attn_probs=output_attentions
|
378 |
+
)
|
379 |
+
|
380 |
+
attn_output = attn_outputs[0] if output_attentions else attn_outputs
|
381 |
+
attn_output = pad_input(
|
382 |
+
attn_output, indices_q, bsz, max_seqlen_q
|
383 |
+
).reshape(bsz, q_len, h_size)
|
384 |
+
attn_weights = attn_outputs[2] if output_attentions else None
|
385 |
+
|
386 |
+
else:
|
387 |
+
|
388 |
+
# no padding tokens, more efficient
|
389 |
+
|
390 |
+
attn_outputs = flash_attn_kvpacked_func(
|
391 |
+
q, kv, dropout_p=0.0, softmax_scale=1.0/self.norm_factor, causal=(not has_layer_past), return_attn_probs=output_attentions)
|
392 |
+
|
393 |
+
attn_output = attn_outputs[0] if output_attentions else attn_outputs
|
394 |
+
attn_output = attn_output.reshape(bsz, q_len, h_size)
|
395 |
+
attn_weights = attn_outputs[2] if output_attentions else None
|
396 |
+
|
397 |
+
if self.config.pretraining_tp > 1:
|
398 |
+
attn_output = attn_output.split(self.hidden_size // self.config.pretraining_tp, dim=2)
|
399 |
+
o_proj_slices = self.o_proj.weight.split(self.hidden_size // self.config.pretraining_tp, dim=1)
|
400 |
+
attn_output = sum([F.linear(attn_output[i], o_proj_slices[i]) for i in range(self.config.pretraining_tp)])
|
401 |
+
else:
|
402 |
+
attn_output = self.o_proj(attn_output)
|
403 |
+
|
404 |
+
if not output_attentions:
|
405 |
+
attn_weights = None
|
406 |
+
|
407 |
+
return attn_output, attn_weights, past_key_value
|
408 |
+
|
409 |
+
|
410 |
+
class LlamaDecoderLayer(nn.Module):
|
411 |
+
def __init__(self, config: LlamaConfig):
|
412 |
+
super().__init__()
|
413 |
+
self.hidden_size = config.hidden_size
|
414 |
+
self.self_attn = LlamaAttention(config=config)
|
415 |
+
self.mlp = LlamaMLP(config)
|
416 |
+
self.input_layernorm = LlamaRMSNorm(config.hidden_size, eps=config.rms_norm_eps)
|
417 |
+
self.post_attention_layernorm = LlamaRMSNorm(config.hidden_size, eps=config.rms_norm_eps)
|
418 |
+
|
419 |
+
def forward(
|
420 |
+
self,
|
421 |
+
hidden_states: torch.Tensor,
|
422 |
+
attention_mask: Optional[torch.Tensor] = None,
|
423 |
+
position_ids: Optional[torch.LongTensor] = None,
|
424 |
+
past_key_value: Optional[Tuple[torch.Tensor]] = None,
|
425 |
+
is_padded_inputs: Optional[bool] = False,
|
426 |
+
output_attentions: Optional[bool] = False,
|
427 |
+
use_cache: Optional[bool] = False,
|
428 |
+
) -> Tuple[torch.FloatTensor, Optional[Tuple[torch.FloatTensor, torch.FloatTensor]]]:
|
429 |
+
"""
|
430 |
+
Args:
|
431 |
+
hidden_states (`torch.FloatTensor`): input to the layer of shape `(batch, seq_len, embed_dim)`
|
432 |
+
attention_mask (`torch.FloatTensor`, *optional*): attention mask of size
|
433 |
+
`(batch, 1, tgt_len, src_len)` where padding elements are indicated by very large negative values.
|
434 |
+
output_attentions (`bool`, *optional*):
|
435 |
+
Whether or not to return the attentions tensors of all attention layers. See `attentions` under
|
436 |
+
returned tensors for more detail.
|
437 |
+
use_cache (`bool`, *optional*):
|
438 |
+
If set to `True`, `past_key_values` key value states are returned and can be used to speed up decoding
|
439 |
+
(see `past_key_values`).
|
440 |
+
past_key_value (`Tuple(torch.FloatTensor)`, *optional*): cached past key and value projection states
|
441 |
+
"""
|
442 |
+
|
443 |
+
residual = hidden_states
|
444 |
+
|
445 |
+
hidden_states = self.input_layernorm(hidden_states)
|
446 |
+
|
447 |
+
# Self Attention
|
448 |
+
hidden_states, self_attn_weights, present_key_value = self.self_attn(
|
449 |
+
hidden_states=hidden_states,
|
450 |
+
attention_mask=attention_mask,
|
451 |
+
position_ids=position_ids,
|
452 |
+
past_key_value=past_key_value,
|
453 |
+
output_attentions=output_attentions,
|
454 |
+
use_cache=use_cache,
|
455 |
+
is_padded_inputs=is_padded_inputs,
|
456 |
+
)
|
457 |
+
hidden_states = residual + hidden_states
|
458 |
+
|
459 |
+
# Fully Connected
|
460 |
+
residual = hidden_states
|
461 |
+
hidden_states = self.post_attention_layernorm(hidden_states)
|
462 |
+
hidden_states = self.mlp(hidden_states)
|
463 |
+
hidden_states = residual + hidden_states
|
464 |
+
|
465 |
+
outputs = (hidden_states,)
|
466 |
+
|
467 |
+
if output_attentions:
|
468 |
+
outputs += (self_attn_weights,)
|
469 |
+
|
470 |
+
if use_cache:
|
471 |
+
outputs += (present_key_value,)
|
472 |
+
|
473 |
+
return outputs
|
474 |
+
|
475 |
+
|
476 |
+
LLAMA_START_DOCSTRING = r"""
|
477 |
+
This model inherits from [`PreTrainedModel`]. Check the superclass documentation for the generic methods the
|
478 |
+
library implements for all its model (such as downloading or saving, resizing the input embeddings, pruning heads
|
479 |
+
etc.)
|
480 |
+
|
481 |
+
This model is also a PyTorch [torch.nn.Module](https://pytorch.org/docs/stable/nn.html#torch.nn.Module) subclass.
|
482 |
+
Use it as a regular PyTorch Module and refer to the PyTorch documentation for all matter related to general usage
|
483 |
+
and behavior.
|
484 |
+
|
485 |
+
Parameters:
|
486 |
+
config ([`LlamaConfig`]):
|
487 |
+
Model configuration class with all the parameters of the model. Initializing with a config file does not
|
488 |
+
load the weights associated with the model, only the configuration. Check out the
|
489 |
+
[`~PreTrainedModel.from_pretrained`] method to load the model weights.
|
490 |
+
"""
|
491 |
+
|
492 |
+
|
493 |
+
@add_start_docstrings(
|
494 |
+
"The bare LLaMA Model outputting raw hidden-states without any specific head on top.",
|
495 |
+
LLAMA_START_DOCSTRING,
|
496 |
+
)
|
497 |
+
class LlamaPreTrainedModel(PreTrainedModel):
|
498 |
+
config_class = LlamaConfig
|
499 |
+
base_model_prefix = "model"
|
500 |
+
supports_gradient_checkpointing = True
|
501 |
+
_no_split_modules = ["LlamaDecoderLayer"]
|
502 |
+
_skip_keys_device_placement = "past_key_values"
|
503 |
+
|
504 |
+
def _init_weights(self, module):
|
505 |
+
std = self.config.initializer_range
|
506 |
+
if isinstance(module, nn.Linear):
|
507 |
+
module.weight.data.normal_(mean=0.0, std=std)
|
508 |
+
if module.bias is not None:
|
509 |
+
module.bias.data.zero_()
|
510 |
+
elif isinstance(module, nn.Embedding):
|
511 |
+
module.weight.data.normal_(mean=0.0, std=std)
|
512 |
+
if module.padding_idx is not None:
|
513 |
+
module.weight.data[module.padding_idx].zero_()
|
514 |
+
|
515 |
+
def _set_gradient_checkpointing(self, module, value=False):
|
516 |
+
if isinstance(module, LlamaModel):
|
517 |
+
module.gradient_checkpointing = value
|
518 |
+
|
519 |
+
|
520 |
+
LLAMA_INPUTS_DOCSTRING = r"""
|
521 |
+
Args:
|
522 |
+
input_ids (`torch.LongTensor` of shape `(batch_size, sequence_length)`):
|
523 |
+
Indices of input sequence tokens in the vocabulary. Padding will be ignored by default should you provide
|
524 |
+
it.
|
525 |
+
|
526 |
+
Indices can be obtained using [`AutoTokenizer`]. See [`PreTrainedTokenizer.encode`] and
|
527 |
+
[`PreTrainedTokenizer.__call__`] for details.
|
528 |
+
|
529 |
+
[What are input IDs?](../glossary#input-ids)
|
530 |
+
attention_mask (`torch.Tensor` of shape `(batch_size, sequence_length)`, *optional*):
|
531 |
+
Mask to avoid performing attention on padding token indices. Mask values selected in `[0, 1]`:
|
532 |
+
|
533 |
+
- 1 for tokens that are **not masked**,
|
534 |
+
- 0 for tokens that are **masked**.
|
535 |
+
|
536 |
+
[What are attention masks?](../glossary#attention-mask)
|
537 |
+
|
538 |
+
Indices can be obtained using [`AutoTokenizer`]. See [`PreTrainedTokenizer.encode`] and
|
539 |
+
[`PreTrainedTokenizer.__call__`] for details.
|
540 |
+
|
541 |
+
If `past_key_values` is used, optionally only the last `decoder_input_ids` have to be input (see
|
542 |
+
`past_key_values`).
|
543 |
+
|
544 |
+
If you want to change padding behavior, you should read [`modeling_opt._prepare_decoder_attention_mask`]
|
545 |
+
and modify to your needs. See diagram 1 in [the paper](https://arxiv.org/abs/1910.13461) for more
|
546 |
+
information on the default strategy.
|
547 |
+
|
548 |
+
- 1 indicates the head is **not masked**,
|
549 |
+
- 0 indicates the head is **masked**.
|
550 |
+
position_ids (`torch.LongTensor` of shape `(batch_size, sequence_length)`, *optional*):
|
551 |
+
Indices of positions of each input sequence tokens in the position embeddings. Selected in the range `[0,
|
552 |
+
config.n_positions - 1]`.
|
553 |
+
|
554 |
+
[What are position IDs?](../glossary#position-ids)
|
555 |
+
past_key_values (`tuple(tuple(torch.FloatTensor))`, *optional*, returned when `use_cache=True` is passed or when `config.use_cache=True`):
|
556 |
+
Tuple of `tuple(torch.FloatTensor)` of length `config.n_layers`, with each tuple having 2 tensors of shape
|
557 |
+
`(batch_size, num_heads, sequence_length, embed_size_per_head)`) and 2 additional tensors of shape
|
558 |
+
`(batch_size, num_heads, encoder_sequence_length, embed_size_per_head)`.
|
559 |
+
|
560 |
+
Contains pre-computed hidden-states (key and values in the self-attention blocks and in the cross-attention
|
561 |
+
blocks) that can be used (see `past_key_values` input) to speed up sequential decoding.
|
562 |
+
|
563 |
+
If `past_key_values` are used, the user can optionally input only the last `decoder_input_ids` (those that
|
564 |
+
don't have their past key value states given to this model) of shape `(batch_size, 1)` instead of all
|
565 |
+
`decoder_input_ids` of shape `(batch_size, sequence_length)`.
|
566 |
+
inputs_embeds (`torch.FloatTensor` of shape `(batch_size, sequence_length, hidden_size)`, *optional*):
|
567 |
+
Optionally, instead of passing `input_ids` you can choose to directly pass an embedded representation. This
|
568 |
+
is useful if you want more control over how to convert `input_ids` indices into associated vectors than the
|
569 |
+
model's internal embedding lookup matrix.
|
570 |
+
use_cache (`bool`, *optional*):
|
571 |
+
If set to `True`, `past_key_values` key value states are returned and can be used to speed up decoding (see
|
572 |
+
`past_key_values`).
|
573 |
+
output_attentions (`bool`, *optional*):
|
574 |
+
Whether or not to return the attentions tensors of all attention layers. See `attentions` under returned
|
575 |
+
tensors for more detail.
|
576 |
+
output_hidden_states (`bool`, *optional*):
|
577 |
+
Whether or not to return the hidden states of all layers. See `hidden_states` under returned tensors for
|
578 |
+
more detail.
|
579 |
+
return_dict (`bool`, *optional*):
|
580 |
+
Whether or not to return a [`~utils.ModelOutput`] instead of a plain tuple.
|
581 |
+
"""
|
582 |
+
|
583 |
+
|
584 |
+
@add_start_docstrings(
|
585 |
+
"The bare LLaMA Model outputting raw hidden-states without any specific head on top.",
|
586 |
+
LLAMA_START_DOCSTRING,
|
587 |
+
)
|
588 |
+
class LlamaModel(LlamaPreTrainedModel):
|
589 |
+
"""
|
590 |
+
Transformer decoder consisting of *config.num_hidden_layers* layers. Each layer is a [`LlamaDecoderLayer`]
|
591 |
+
|
592 |
+
Args:
|
593 |
+
config: LlamaConfig
|
594 |
+
"""
|
595 |
+
|
596 |
+
def __init__(self, config: LlamaConfig):
|
597 |
+
super().__init__(config)
|
598 |
+
self.padding_idx = config.pad_token_id
|
599 |
+
self.vocab_size = config.vocab_size
|
600 |
+
|
601 |
+
self.embed_tokens = nn.Embedding(config.vocab_size, config.hidden_size, self.padding_idx)
|
602 |
+
self.layers = nn.ModuleList([LlamaDecoderLayer(config) for _ in range(config.num_hidden_layers)])
|
603 |
+
self.norm = LlamaRMSNorm(config.hidden_size, eps=config.rms_norm_eps)
|
604 |
+
|
605 |
+
self.gradient_checkpointing = False
|
606 |
+
# Initialize weights and apply final processing
|
607 |
+
self.post_init()
|
608 |
+
|
609 |
+
def get_input_embeddings(self):
|
610 |
+
return self.embed_tokens
|
611 |
+
|
612 |
+
def set_input_embeddings(self, value):
|
613 |
+
self.embed_tokens = value
|
614 |
+
|
615 |
+
@add_start_docstrings_to_model_forward(LLAMA_INPUTS_DOCSTRING)
|
616 |
+
def forward(
|
617 |
+
self,
|
618 |
+
input_ids: torch.LongTensor = None,
|
619 |
+
attention_mask: Optional[torch.Tensor] = None,
|
620 |
+
position_ids: Optional[torch.LongTensor] = None,
|
621 |
+
past_key_values: Optional[List[torch.FloatTensor]] = None,
|
622 |
+
inputs_embeds: Optional[torch.FloatTensor] = None,
|
623 |
+
use_cache: Optional[bool] = None,
|
624 |
+
output_attentions: Optional[bool] = None,
|
625 |
+
output_hidden_states: Optional[bool] = None,
|
626 |
+
return_dict: Optional[bool] = None,
|
627 |
+
is_padded_inputs: Optional[bool] = False,
|
628 |
+
) -> Union[Tuple, BaseModelOutputWithPast]:
|
629 |
+
output_attentions = output_attentions if output_attentions is not None else self.config.output_attentions
|
630 |
+
output_hidden_states = (
|
631 |
+
output_hidden_states if output_hidden_states is not None else self.config.output_hidden_states
|
632 |
+
)
|
633 |
+
use_cache = use_cache if use_cache is not None else self.config.use_cache
|
634 |
+
|
635 |
+
return_dict = return_dict if return_dict is not None else self.config.use_return_dict
|
636 |
+
|
637 |
+
# retrieve input_ids and inputs_embeds
|
638 |
+
if input_ids is not None and inputs_embeds is not None:
|
639 |
+
raise ValueError("You cannot specify both decoder_input_ids and decoder_inputs_embeds at the same time")
|
640 |
+
elif input_ids is not None:
|
641 |
+
batch_size, seq_length = input_ids.shape
|
642 |
+
elif inputs_embeds is not None:
|
643 |
+
batch_size, seq_length, _ = inputs_embeds.shape
|
644 |
+
else:
|
645 |
+
raise ValueError("You have to specify either decoder_input_ids or decoder_inputs_embeds")
|
646 |
+
|
647 |
+
seq_length_with_past = seq_length
|
648 |
+
past_key_values_length = 0
|
649 |
+
|
650 |
+
if past_key_values is not None:
|
651 |
+
past_key_values_length = past_key_values[0][0].shape[2]
|
652 |
+
seq_length_with_past = seq_length_with_past + past_key_values_length
|
653 |
+
|
654 |
+
position_ids = None
|
655 |
+
|
656 |
+
if inputs_embeds is None:
|
657 |
+
inputs_embeds = self.embed_tokens(input_ids)
|
658 |
+
|
659 |
+
hidden_states = inputs_embeds
|
660 |
+
|
661 |
+
if self.gradient_checkpointing and self.training:
|
662 |
+
if use_cache:
|
663 |
+
logger.warning_once(
|
664 |
+
"`use_cache=True` is incompatible with gradient checkpointing. Setting `use_cache=False`..."
|
665 |
+
)
|
666 |
+
use_cache = False
|
667 |
+
|
668 |
+
# decoder layers
|
669 |
+
all_hidden_states = () if output_hidden_states else None
|
670 |
+
all_self_attns = () if output_attentions else None
|
671 |
+
next_decoder_cache = () if use_cache else None
|
672 |
+
|
673 |
+
for idx, decoder_layer in enumerate(self.layers):
|
674 |
+
if output_hidden_states:
|
675 |
+
all_hidden_states += (hidden_states,)
|
676 |
+
|
677 |
+
past_key_value = past_key_values[idx] if past_key_values is not None else None
|
678 |
+
|
679 |
+
if self.gradient_checkpointing and self.training:
|
680 |
+
|
681 |
+
def create_custom_forward(module):
|
682 |
+
def custom_forward(*inputs):
|
683 |
+
# None for past_key_value
|
684 |
+
return module(*inputs, output_attentions, None)
|
685 |
+
|
686 |
+
return custom_forward
|
687 |
+
|
688 |
+
layer_outputs = torch.utils.checkpoint.checkpoint(
|
689 |
+
create_custom_forward(decoder_layer),
|
690 |
+
hidden_states,
|
691 |
+
attention_mask,
|
692 |
+
position_ids,
|
693 |
+
None,
|
694 |
+
is_padded_inputs
|
695 |
+
)
|
696 |
+
else:
|
697 |
+
layer_outputs = decoder_layer(
|
698 |
+
hidden_states,
|
699 |
+
attention_mask=attention_mask,
|
700 |
+
position_ids=position_ids,
|
701 |
+
past_key_value=past_key_value,
|
702 |
+
output_attentions=output_attentions,
|
703 |
+
use_cache=use_cache,
|
704 |
+
is_padded_inputs=is_padded_inputs,
|
705 |
+
)
|
706 |
+
|
707 |
+
hidden_states = layer_outputs[0]
|
708 |
+
|
709 |
+
if use_cache:
|
710 |
+
next_decoder_cache += (layer_outputs[2 if output_attentions else 1],)
|
711 |
+
|
712 |
+
if output_attentions:
|
713 |
+
all_self_attns += (layer_outputs[1],)
|
714 |
+
|
715 |
+
hidden_states = self.norm(hidden_states)
|
716 |
+
|
717 |
+
# add hidden states from the last decoder layer
|
718 |
+
if output_hidden_states:
|
719 |
+
all_hidden_states += (hidden_states,)
|
720 |
+
|
721 |
+
next_cache = next_decoder_cache if use_cache else None
|
722 |
+
if not return_dict:
|
723 |
+
return tuple(v for v in [hidden_states, next_cache, all_hidden_states, all_self_attns] if v is not None)
|
724 |
+
return BaseModelOutputWithPast(
|
725 |
+
last_hidden_state=hidden_states,
|
726 |
+
past_key_values=next_cache,
|
727 |
+
hidden_states=all_hidden_states,
|
728 |
+
attentions=all_self_attns,
|
729 |
+
)
|
730 |
+
|
731 |
+
|
732 |
+
class LlamaForCausalLM(LlamaPreTrainedModel):
|
733 |
+
_tied_weights_keys = ["lm_head.weight"]
|
734 |
+
|
735 |
+
def __init__(self, config):
|
736 |
+
super().__init__(config)
|
737 |
+
self.model = LlamaModel(config)
|
738 |
+
self.vocab_size = config.vocab_size
|
739 |
+
self.lm_head = nn.Linear(config.hidden_size, config.vocab_size, bias=False)
|
740 |
+
|
741 |
+
# Initialize weights and apply final processing
|
742 |
+
self.post_init()
|
743 |
+
|
744 |
+
def get_input_embeddings(self):
|
745 |
+
return self.model.embed_tokens
|
746 |
+
|
747 |
+
def set_input_embeddings(self, value):
|
748 |
+
self.model.embed_tokens = value
|
749 |
+
|
750 |
+
def get_output_embeddings(self):
|
751 |
+
return self.lm_head
|
752 |
+
|
753 |
+
def set_output_embeddings(self, new_embeddings):
|
754 |
+
self.lm_head = new_embeddings
|
755 |
+
|
756 |
+
def set_decoder(self, decoder):
|
757 |
+
self.model = decoder
|
758 |
+
|
759 |
+
def get_decoder(self):
|
760 |
+
return self.model
|
761 |
+
|
762 |
+
@add_start_docstrings_to_model_forward(LLAMA_INPUTS_DOCSTRING)
|
763 |
+
@replace_return_docstrings(output_type=CausalLMOutputWithPast, config_class=_CONFIG_FOR_DOC)
|
764 |
+
def forward(
|
765 |
+
self,
|
766 |
+
input_ids: torch.LongTensor = None,
|
767 |
+
attention_mask: Optional[torch.Tensor] = None,
|
768 |
+
position_ids: Optional[torch.LongTensor] = None,
|
769 |
+
past_key_values: Optional[List[torch.FloatTensor]] = None,
|
770 |
+
inputs_embeds: Optional[torch.FloatTensor] = None,
|
771 |
+
labels: Optional[torch.LongTensor] = None,
|
772 |
+
use_cache: Optional[bool] = None,
|
773 |
+
output_attentions: Optional[bool] = None,
|
774 |
+
output_hidden_states: Optional[bool] = None,
|
775 |
+
return_dict: Optional[bool] = None,
|
776 |
+
only_last_logit: Optional[bool] = None,
|
777 |
+
xentropy: Optional[bool] = None,
|
778 |
+
is_padded_inputs: Optional[bool] = None,
|
779 |
+
) -> Union[Tuple, CausalLMOutputWithPast]:
|
780 |
+
r"""
|
781 |
+
Args:
|
782 |
+
labels (`torch.LongTensor` of shape `(batch_size, sequence_length)`, *optional*):
|
783 |
+
Labels for computing the masked language modeling loss. Indices should either be in `[0, ...,
|
784 |
+
config.vocab_size]` or -100 (see `input_ids` docstring). Tokens with indices set to `-100` are ignored
|
785 |
+
(masked), the loss is only computed for the tokens with labels in `[0, ..., config.vocab_size]`.
|
786 |
+
|
787 |
+
Returns:
|
788 |
+
|
789 |
+
Example:
|
790 |
+
|
791 |
+
```python
|
792 |
+
>>> from transformers import AutoTokenizer, LlamaForCausalLM
|
793 |
+
|
794 |
+
>>> model = LlamaForCausalLM.from_pretrained(PATH_TO_CONVERTED_WEIGHTS)
|
795 |
+
>>> tokenizer = AutoTokenizer.from_pretrained(PATH_TO_CONVERTED_TOKENIZER)
|
796 |
+
|
797 |
+
>>> prompt = "Hey, are you conscious? Can you talk to me?"
|
798 |
+
>>> inputs = tokenizer(prompt, return_tensors="pt")
|
799 |
+
|
800 |
+
>>> # Generate
|
801 |
+
>>> generate_ids = model.generate(inputs.input_ids, max_length=30)
|
802 |
+
>>> tokenizer.batch_decode(generate_ids, skip_special_tokens=True, clean_up_tokenization_spaces=False)[0]
|
803 |
+
"Hey, are you conscious? Can you talk to me?\nI'm not conscious, but I can talk to you."
|
804 |
+
```"""
|
805 |
+
|
806 |
+
output_attentions = output_attentions if output_attentions is not None else self.config.output_attentions
|
807 |
+
output_hidden_states = (
|
808 |
+
output_hidden_states if output_hidden_states is not None else self.config.output_hidden_states
|
809 |
+
)
|
810 |
+
return_dict = return_dict if return_dict is not None else self.config.use_return_dict
|
811 |
+
|
812 |
+
is_padded_inputs = ((attention_mask is not None) and (not attention_mask.all().item()))
|
813 |
+
|
814 |
+
# decoder outputs consists of (dec_features, layer_state, dec_hidden, dec_attn)
|
815 |
+
outputs = self.model(
|
816 |
+
input_ids=input_ids,
|
817 |
+
attention_mask=attention_mask,
|
818 |
+
position_ids=position_ids,
|
819 |
+
past_key_values=past_key_values,
|
820 |
+
inputs_embeds=inputs_embeds,
|
821 |
+
use_cache=use_cache,
|
822 |
+
output_attentions=output_attentions,
|
823 |
+
output_hidden_states=output_hidden_states,
|
824 |
+
return_dict=return_dict,
|
825 |
+
is_padded_inputs=is_padded_inputs,
|
826 |
+
)
|
827 |
+
|
828 |
+
hidden_states = outputs[0]
|
829 |
+
if self.config.pretraining_tp > 1:
|
830 |
+
lm_head_slices = self.lm_head.weight.split(self.vocab_size // self.config.pretraining_tp, dim=0)
|
831 |
+
logits = [F.linear(hidden_states, lm_head_slices[i]) for i in range(self.config.pretraining_tp)]
|
832 |
+
logits = torch.cat(logits, dim=-1)
|
833 |
+
else:
|
834 |
+
#logits = self.lm_head(hidden_states)
|
835 |
+
if only_last_logit:
|
836 |
+
logits = self.lm_head(hidden_states[:,-1,:])
|
837 |
+
logits = logits.unsqueeze(1)
|
838 |
+
else:
|
839 |
+
logits = self.lm_head(hidden_states)
|
840 |
+
logits = logits.float()
|
841 |
+
|
842 |
+
loss = None
|
843 |
+
if labels is not None:
|
844 |
+
# Shift so that tokens < n predict n
|
845 |
+
shift_logits = logits[..., :-1, :].contiguous()
|
846 |
+
shift_labels = labels[..., 1:].contiguous()
|
847 |
+
# Flatten the tokens
|
848 |
+
if xentropy:
|
849 |
+
loss_fct = xCrossEntropyLoss(inplace_backward=True)
|
850 |
+
else:
|
851 |
+
loss_fct = CrossEntropyLoss()
|
852 |
+
shift_logits = shift_logits.view(-1, self.config.vocab_size)
|
853 |
+
shift_labels = shift_labels.view(-1)
|
854 |
+
# Enable model parallelism
|
855 |
+
shift_labels = shift_labels.to(shift_logits.device)
|
856 |
+
loss = loss_fct(shift_logits, shift_labels)
|
857 |
+
|
858 |
+
if not return_dict:
|
859 |
+
output = (logits,) + outputs[1:]
|
860 |
+
return (loss,) + output if loss is not None else output
|
861 |
+
|
862 |
+
return CausalLMOutputWithPast(
|
863 |
+
loss=loss,
|
864 |
+
logits=logits,
|
865 |
+
past_key_values=outputs.past_key_values,
|
866 |
+
hidden_states=outputs.hidden_states,
|
867 |
+
attentions=outputs.attentions,
|
868 |
+
)
|
869 |
+
|
870 |
+
def prepare_inputs_for_generation(
|
871 |
+
self, input_ids, past_key_values=None, attention_mask=None, inputs_embeds=None, only_last_logit=False,
|
872 |
+
xentropy=False, **kwargs
|
873 |
+
):
|
874 |
+
if past_key_values:
|
875 |
+
input_ids = input_ids[:, -1:]
|
876 |
+
|
877 |
+
position_ids = kwargs.get("position_ids", None)
|
878 |
+
|
879 |
+
# if `inputs_embeds` are passed, we only want to use them in the 1st generation step
|
880 |
+
if inputs_embeds is not None and past_key_values is None:
|
881 |
+
model_inputs = {"inputs_embeds": inputs_embeds}
|
882 |
+
else:
|
883 |
+
model_inputs = {"input_ids": input_ids}
|
884 |
+
|
885 |
+
model_inputs.update(
|
886 |
+
{
|
887 |
+
"position_ids": position_ids,
|
888 |
+
"past_key_values": past_key_values,
|
889 |
+
"use_cache": kwargs.get("use_cache"),
|
890 |
+
"attention_mask": attention_mask,
|
891 |
+
"is_padded_inputs": ((attention_mask is not None) and (not attention_mask.all().item())),
|
892 |
+
"only_last_logit": only_last_logit,
|
893 |
+
"xentropy": xentropy
|
894 |
+
}
|
895 |
+
)
|
896 |
+
return model_inputs
|
897 |
+
|
898 |
+
@staticmethod
|
899 |
+
def _reorder_cache(past_key_values, beam_idx):
|
900 |
+
reordered_past = ()
|
901 |
+
for layer_past in past_key_values:
|
902 |
+
reordered_past += (
|
903 |
+
tuple(past_state.index_select(0, beam_idx.to(past_state.device)) for past_state in layer_past),
|
904 |
+
)
|
905 |
+
return reordered_past
|
906 |
+
|
907 |
+
|
908 |
+
@add_start_docstrings(
|
909 |
+
"""
|
910 |
+
The LLaMa Model transformer with a sequence classification head on top (linear layer).
|
911 |
+
|
912 |
+
[`LlamaForSequenceClassification`] uses the last token in order to do the classification, as other causal models
|
913 |
+
(e.g. GPT-2) do.
|
914 |
+
|
915 |
+
Since it does classification on the last token, it requires to know the position of the last token. If a
|
916 |
+
`pad_token_id` is defined in the configuration, it finds the last token that is not a padding token in each row. If
|
917 |
+
no `pad_token_id` is defined, it simply takes the last value in each row of the batch. Since it cannot guess the
|
918 |
+
padding tokens when `inputs_embeds` are passed instead of `input_ids`, it does the same (take the last value in
|
919 |
+
each row of the batch).
|
920 |
+
""",
|
921 |
+
LLAMA_START_DOCSTRING,
|
922 |
+
)
|
923 |
+
class LlamaForSequenceClassification(LlamaPreTrainedModel):
|
924 |
+
def __init__(self, config):
|
925 |
+
super().__init__(config)
|
926 |
+
self.num_labels = config.num_labels
|
927 |
+
self.model = LlamaModel(config)
|
928 |
+
self.score = nn.Linear(config.hidden_size, self.num_labels, bias=False)
|
929 |
+
|
930 |
+
# Initialize weights and apply final processing
|
931 |
+
self.post_init()
|
932 |
+
|
933 |
+
def get_input_embeddings(self):
|
934 |
+
return self.model.embed_tokens
|
935 |
+
|
936 |
+
def set_input_embeddings(self, value):
|
937 |
+
self.model.embed_tokens = value
|
938 |
+
|
939 |
+
@add_start_docstrings_to_model_forward(LLAMA_INPUTS_DOCSTRING)
|
940 |
+
def forward(
|
941 |
+
self,
|
942 |
+
input_ids: torch.LongTensor = None,
|
943 |
+
attention_mask: Optional[torch.Tensor] = None,
|
944 |
+
position_ids: Optional[torch.LongTensor] = None,
|
945 |
+
past_key_values: Optional[List[torch.FloatTensor]] = None,
|
946 |
+
inputs_embeds: Optional[torch.FloatTensor] = None,
|
947 |
+
labels: Optional[torch.LongTensor] = None,
|
948 |
+
use_cache: Optional[bool] = None,
|
949 |
+
output_attentions: Optional[bool] = None,
|
950 |
+
output_hidden_states: Optional[bool] = None,
|
951 |
+
return_dict: Optional[bool] = None,
|
952 |
+
) -> Union[Tuple, SequenceClassifierOutputWithPast]:
|
953 |
+
r"""
|
954 |
+
labels (`torch.LongTensor` of shape `(batch_size,)`, *optional*):
|
955 |
+
Labels for computing the sequence classification/regression loss. Indices should be in `[0, ...,
|
956 |
+
config.num_labels - 1]`. If `config.num_labels == 1` a regression loss is computed (Mean-Square loss), If
|
957 |
+
`config.num_labels > 1` a classification loss is computed (Cross-Entropy).
|
958 |
+
"""
|
959 |
+
return_dict = return_dict if return_dict is not None else self.config.use_return_dict
|
960 |
+
|
961 |
+
transformer_outputs = self.model(
|
962 |
+
input_ids,
|
963 |
+
attention_mask=attention_mask,
|
964 |
+
position_ids=position_ids,
|
965 |
+
past_key_values=past_key_values,
|
966 |
+
inputs_embeds=inputs_embeds,
|
967 |
+
use_cache=use_cache,
|
968 |
+
output_attentions=output_attentions,
|
969 |
+
output_hidden_states=output_hidden_states,
|
970 |
+
return_dict=return_dict,
|
971 |
+
)
|
972 |
+
hidden_states = transformer_outputs[0]
|
973 |
+
logits = self.score(hidden_states)
|
974 |
+
|
975 |
+
if input_ids is not None:
|
976 |
+
batch_size = input_ids.shape[0]
|
977 |
+
else:
|
978 |
+
batch_size = inputs_embeds.shape[0]
|
979 |
+
|
980 |
+
if self.config.pad_token_id is None and batch_size != 1:
|
981 |
+
raise ValueError("Cannot handle batch sizes > 1 if no padding token is defined.")
|
982 |
+
if self.config.pad_token_id is None:
|
983 |
+
sequence_lengths = -1
|
984 |
+
else:
|
985 |
+
if input_ids is not None:
|
986 |
+
sequence_lengths = (torch.ne(input_ids, self.config.pad_token_id).sum(-1) - 1).to(logits.device)
|
987 |
+
else:
|
988 |
+
sequence_lengths = -1
|
989 |
+
|
990 |
+
pooled_logits = logits[torch.arange(batch_size, device=logits.device), sequence_lengths]
|
991 |
+
|
992 |
+
loss = None
|
993 |
+
if labels is not None:
|
994 |
+
labels = labels.to(logits.device)
|
995 |
+
if self.config.problem_type is None:
|
996 |
+
if self.num_labels == 1:
|
997 |
+
self.config.problem_type = "regression"
|
998 |
+
elif self.num_labels > 1 and (labels.dtype == torch.long or labels.dtype == torch.int):
|
999 |
+
self.config.problem_type = "single_label_classification"
|
1000 |
+
else:
|
1001 |
+
self.config.problem_type = "multi_label_classification"
|
1002 |
+
|
1003 |
+
if self.config.problem_type == "regression":
|
1004 |
+
loss_fct = MSELoss()
|
1005 |
+
if self.num_labels == 1:
|
1006 |
+
loss = loss_fct(pooled_logits.squeeze(), labels.squeeze())
|
1007 |
+
else:
|
1008 |
+
loss = loss_fct(pooled_logits, labels)
|
1009 |
+
elif self.config.problem_type == "single_label_classification":
|
1010 |
+
loss_fct = CrossEntropyLoss()
|
1011 |
+
loss = loss_fct(pooled_logits.view(-1, self.num_labels), labels.view(-1))
|
1012 |
+
elif self.config.problem_type == "multi_label_classification":
|
1013 |
+
loss_fct = BCEWithLogitsLoss()
|
1014 |
+
loss = loss_fct(pooled_logits, labels)
|
1015 |
+
if not return_dict:
|
1016 |
+
output = (pooled_logits,) + transformer_outputs[1:]
|
1017 |
+
return ((loss,) + output) if loss is not None else output
|
1018 |
+
|
1019 |
+
return SequenceClassifierOutputWithPast(
|
1020 |
+
loss=loss,
|
1021 |
+
logits=pooled_logits,
|
1022 |
+
past_key_values=transformer_outputs.past_key_values,
|
1023 |
+
hidden_states=transformer_outputs.hidden_states,
|
1024 |
+
attentions=transformer_outputs.attentions,
|
1025 |
+
)
|
pytorch_model-00001-of-00002.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:16e15a980e83c466aafa1672bffdb632aab50f7387d9402f3231a353c3f03711
|
3 |
+
size 9976637886
|
pytorch_model-00002-of-00002.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:ac2819c32b9b98054ace4261a4a64d3e5b84cc72a3671d8ed069a8a3e8a6d0db
|
3 |
+
size 3500316627
|
pytorch_model.bin.index.json
ADDED
@@ -0,0 +1,330 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"metadata": {
|
3 |
+
"total_size": 13476839424
|
4 |
+
},
|
5 |
+
"weight_map": {
|
6 |
+
"lm_head.weight": "pytorch_model-00002-of-00002.bin",
|
7 |
+
"model.embed_tokens.weight": "pytorch_model-00001-of-00002.bin",
|
8 |
+
"model.layers.0.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
9 |
+
"model.layers.0.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
10 |
+
"model.layers.0.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
11 |
+
"model.layers.0.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
12 |
+
"model.layers.0.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
13 |
+
"model.layers.0.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
14 |
+
"model.layers.0.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
15 |
+
"model.layers.0.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
16 |
+
"model.layers.0.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
17 |
+
"model.layers.0.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
18 |
+
"model.layers.1.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
19 |
+
"model.layers.1.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
20 |
+
"model.layers.1.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
21 |
+
"model.layers.1.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
22 |
+
"model.layers.1.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
23 |
+
"model.layers.1.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
24 |
+
"model.layers.1.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
25 |
+
"model.layers.1.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
26 |
+
"model.layers.1.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
27 |
+
"model.layers.1.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
28 |
+
"model.layers.10.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
29 |
+
"model.layers.10.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
30 |
+
"model.layers.10.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
31 |
+
"model.layers.10.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
32 |
+
"model.layers.10.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
33 |
+
"model.layers.10.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
34 |
+
"model.layers.10.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
35 |
+
"model.layers.10.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
36 |
+
"model.layers.10.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
37 |
+
"model.layers.10.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
38 |
+
"model.layers.11.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
39 |
+
"model.layers.11.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
40 |
+
"model.layers.11.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
41 |
+
"model.layers.11.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
42 |
+
"model.layers.11.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
43 |
+
"model.layers.11.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
44 |
+
"model.layers.11.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
45 |
+
"model.layers.11.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
46 |
+
"model.layers.11.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
47 |
+
"model.layers.11.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
48 |
+
"model.layers.12.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
49 |
+
"model.layers.12.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
50 |
+
"model.layers.12.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
51 |
+
"model.layers.12.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
52 |
+
"model.layers.12.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
53 |
+
"model.layers.12.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
54 |
+
"model.layers.12.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
55 |
+
"model.layers.12.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
56 |
+
"model.layers.12.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
57 |
+
"model.layers.12.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
58 |
+
"model.layers.13.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
59 |
+
"model.layers.13.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
60 |
+
"model.layers.13.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
61 |
+
"model.layers.13.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
62 |
+
"model.layers.13.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
63 |
+
"model.layers.13.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
64 |
+
"model.layers.13.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
65 |
+
"model.layers.13.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
66 |
+
"model.layers.13.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
67 |
+
"model.layers.13.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
68 |
+
"model.layers.14.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
69 |
+
"model.layers.14.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
70 |
+
"model.layers.14.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
71 |
+
"model.layers.14.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
72 |
+
"model.layers.14.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
73 |
+
"model.layers.14.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
74 |
+
"model.layers.14.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
75 |
+
"model.layers.14.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
76 |
+
"model.layers.14.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
77 |
+
"model.layers.14.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
78 |
+
"model.layers.15.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
79 |
+
"model.layers.15.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
80 |
+
"model.layers.15.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
81 |
+
"model.layers.15.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
82 |
+
"model.layers.15.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
83 |
+
"model.layers.15.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
84 |
+
"model.layers.15.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
85 |
+
"model.layers.15.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
86 |
+
"model.layers.15.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
87 |
+
"model.layers.15.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
88 |
+
"model.layers.16.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
89 |
+
"model.layers.16.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
90 |
+
"model.layers.16.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
91 |
+
"model.layers.16.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
92 |
+
"model.layers.16.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
93 |
+
"model.layers.16.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
94 |
+
"model.layers.16.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
95 |
+
"model.layers.16.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
96 |
+
"model.layers.16.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
97 |
+
"model.layers.16.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
98 |
+
"model.layers.17.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
99 |
+
"model.layers.17.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
100 |
+
"model.layers.17.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
101 |
+
"model.layers.17.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
102 |
+
"model.layers.17.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
103 |
+
"model.layers.17.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
104 |
+
"model.layers.17.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
105 |
+
"model.layers.17.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
106 |
+
"model.layers.17.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
107 |
+
"model.layers.17.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
108 |
+
"model.layers.18.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
109 |
+
"model.layers.18.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
110 |
+
"model.layers.18.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
111 |
+
"model.layers.18.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
112 |
+
"model.layers.18.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
113 |
+
"model.layers.18.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
114 |
+
"model.layers.18.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
115 |
+
"model.layers.18.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
116 |
+
"model.layers.18.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
117 |
+
"model.layers.18.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
118 |
+
"model.layers.19.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
119 |
+
"model.layers.19.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
120 |
+
"model.layers.19.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
121 |
+
"model.layers.19.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
122 |
+
"model.layers.19.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
123 |
+
"model.layers.19.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
124 |
+
"model.layers.19.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
125 |
+
"model.layers.19.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
126 |
+
"model.layers.19.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
127 |
+
"model.layers.19.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
128 |
+
"model.layers.2.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
129 |
+
"model.layers.2.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
130 |
+
"model.layers.2.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
131 |
+
"model.layers.2.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
132 |
+
"model.layers.2.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
133 |
+
"model.layers.2.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
134 |
+
"model.layers.2.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
135 |
+
"model.layers.2.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
136 |
+
"model.layers.2.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
137 |
+
"model.layers.2.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
138 |
+
"model.layers.20.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
139 |
+
"model.layers.20.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
140 |
+
"model.layers.20.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
141 |
+
"model.layers.20.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
142 |
+
"model.layers.20.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
143 |
+
"model.layers.20.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
144 |
+
"model.layers.20.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
145 |
+
"model.layers.20.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
146 |
+
"model.layers.20.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
147 |
+
"model.layers.20.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
148 |
+
"model.layers.21.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
149 |
+
"model.layers.21.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
150 |
+
"model.layers.21.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
151 |
+
"model.layers.21.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
152 |
+
"model.layers.21.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
153 |
+
"model.layers.21.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
154 |
+
"model.layers.21.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
155 |
+
"model.layers.21.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
156 |
+
"model.layers.21.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
157 |
+
"model.layers.21.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
158 |
+
"model.layers.22.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
159 |
+
"model.layers.22.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
160 |
+
"model.layers.22.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
161 |
+
"model.layers.22.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
162 |
+
"model.layers.22.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
163 |
+
"model.layers.22.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
164 |
+
"model.layers.22.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
165 |
+
"model.layers.22.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
166 |
+
"model.layers.22.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
167 |
+
"model.layers.22.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
168 |
+
"model.layers.23.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
169 |
+
"model.layers.23.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
170 |
+
"model.layers.23.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
171 |
+
"model.layers.23.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
172 |
+
"model.layers.23.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
173 |
+
"model.layers.23.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
174 |
+
"model.layers.23.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
175 |
+
"model.layers.23.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
176 |
+
"model.layers.23.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
177 |
+
"model.layers.23.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
178 |
+
"model.layers.24.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
|
179 |
+
"model.layers.24.mlp.down_proj.weight": "pytorch_model-00002-of-00002.bin",
|
180 |
+
"model.layers.24.mlp.gate_proj.weight": "pytorch_model-00002-of-00002.bin",
|
181 |
+
"model.layers.24.mlp.up_proj.weight": "pytorch_model-00002-of-00002.bin",
|
182 |
+
"model.layers.24.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
|
183 |
+
"model.layers.24.self_attn.k_proj.weight": "pytorch_model-00002-of-00002.bin",
|
184 |
+
"model.layers.24.self_attn.o_proj.weight": "pytorch_model-00002-of-00002.bin",
|
185 |
+
"model.layers.24.self_attn.q_proj.weight": "pytorch_model-00002-of-00002.bin",
|
186 |
+
"model.layers.24.self_attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin",
|
187 |
+
"model.layers.24.self_attn.v_proj.weight": "pytorch_model-00002-of-00002.bin",
|
188 |
+
"model.layers.25.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
|
189 |
+
"model.layers.25.mlp.down_proj.weight": "pytorch_model-00002-of-00002.bin",
|
190 |
+
"model.layers.25.mlp.gate_proj.weight": "pytorch_model-00002-of-00002.bin",
|
191 |
+
"model.layers.25.mlp.up_proj.weight": "pytorch_model-00002-of-00002.bin",
|
192 |
+
"model.layers.25.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
|
193 |
+
"model.layers.25.self_attn.k_proj.weight": "pytorch_model-00002-of-00002.bin",
|
194 |
+
"model.layers.25.self_attn.o_proj.weight": "pytorch_model-00002-of-00002.bin",
|
195 |
+
"model.layers.25.self_attn.q_proj.weight": "pytorch_model-00002-of-00002.bin",
|
196 |
+
"model.layers.25.self_attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin",
|
197 |
+
"model.layers.25.self_attn.v_proj.weight": "pytorch_model-00002-of-00002.bin",
|
198 |
+
"model.layers.26.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
|
199 |
+
"model.layers.26.mlp.down_proj.weight": "pytorch_model-00002-of-00002.bin",
|
200 |
+
"model.layers.26.mlp.gate_proj.weight": "pytorch_model-00002-of-00002.bin",
|
201 |
+
"model.layers.26.mlp.up_proj.weight": "pytorch_model-00002-of-00002.bin",
|
202 |
+
"model.layers.26.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
|
203 |
+
"model.layers.26.self_attn.k_proj.weight": "pytorch_model-00002-of-00002.bin",
|
204 |
+
"model.layers.26.self_attn.o_proj.weight": "pytorch_model-00002-of-00002.bin",
|
205 |
+
"model.layers.26.self_attn.q_proj.weight": "pytorch_model-00002-of-00002.bin",
|
206 |
+
"model.layers.26.self_attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin",
|
207 |
+
"model.layers.26.self_attn.v_proj.weight": "pytorch_model-00002-of-00002.bin",
|
208 |
+
"model.layers.27.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
|
209 |
+
"model.layers.27.mlp.down_proj.weight": "pytorch_model-00002-of-00002.bin",
|
210 |
+
"model.layers.27.mlp.gate_proj.weight": "pytorch_model-00002-of-00002.bin",
|
211 |
+
"model.layers.27.mlp.up_proj.weight": "pytorch_model-00002-of-00002.bin",
|
212 |
+
"model.layers.27.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
|
213 |
+
"model.layers.27.self_attn.k_proj.weight": "pytorch_model-00002-of-00002.bin",
|
214 |
+
"model.layers.27.self_attn.o_proj.weight": "pytorch_model-00002-of-00002.bin",
|
215 |
+
"model.layers.27.self_attn.q_proj.weight": "pytorch_model-00002-of-00002.bin",
|
216 |
+
"model.layers.27.self_attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin",
|
217 |
+
"model.layers.27.self_attn.v_proj.weight": "pytorch_model-00002-of-00002.bin",
|
218 |
+
"model.layers.28.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
|
219 |
+
"model.layers.28.mlp.down_proj.weight": "pytorch_model-00002-of-00002.bin",
|
220 |
+
"model.layers.28.mlp.gate_proj.weight": "pytorch_model-00002-of-00002.bin",
|
221 |
+
"model.layers.28.mlp.up_proj.weight": "pytorch_model-00002-of-00002.bin",
|
222 |
+
"model.layers.28.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
|
223 |
+
"model.layers.28.self_attn.k_proj.weight": "pytorch_model-00002-of-00002.bin",
|
224 |
+
"model.layers.28.self_attn.o_proj.weight": "pytorch_model-00002-of-00002.bin",
|
225 |
+
"model.layers.28.self_attn.q_proj.weight": "pytorch_model-00002-of-00002.bin",
|
226 |
+
"model.layers.28.self_attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin",
|
227 |
+
"model.layers.28.self_attn.v_proj.weight": "pytorch_model-00002-of-00002.bin",
|
228 |
+
"model.layers.29.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
|
229 |
+
"model.layers.29.mlp.down_proj.weight": "pytorch_model-00002-of-00002.bin",
|
230 |
+
"model.layers.29.mlp.gate_proj.weight": "pytorch_model-00002-of-00002.bin",
|
231 |
+
"model.layers.29.mlp.up_proj.weight": "pytorch_model-00002-of-00002.bin",
|
232 |
+
"model.layers.29.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
|
233 |
+
"model.layers.29.self_attn.k_proj.weight": "pytorch_model-00002-of-00002.bin",
|
234 |
+
"model.layers.29.self_attn.o_proj.weight": "pytorch_model-00002-of-00002.bin",
|
235 |
+
"model.layers.29.self_attn.q_proj.weight": "pytorch_model-00002-of-00002.bin",
|
236 |
+
"model.layers.29.self_attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin",
|
237 |
+
"model.layers.29.self_attn.v_proj.weight": "pytorch_model-00002-of-00002.bin",
|
238 |
+
"model.layers.3.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
239 |
+
"model.layers.3.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
240 |
+
"model.layers.3.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
241 |
+
"model.layers.3.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
242 |
+
"model.layers.3.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
243 |
+
"model.layers.3.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
244 |
+
"model.layers.3.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
245 |
+
"model.layers.3.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
246 |
+
"model.layers.3.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
247 |
+
"model.layers.3.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
248 |
+
"model.layers.30.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
|
249 |
+
"model.layers.30.mlp.down_proj.weight": "pytorch_model-00002-of-00002.bin",
|
250 |
+
"model.layers.30.mlp.gate_proj.weight": "pytorch_model-00002-of-00002.bin",
|
251 |
+
"model.layers.30.mlp.up_proj.weight": "pytorch_model-00002-of-00002.bin",
|
252 |
+
"model.layers.30.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
|
253 |
+
"model.layers.30.self_attn.k_proj.weight": "pytorch_model-00002-of-00002.bin",
|
254 |
+
"model.layers.30.self_attn.o_proj.weight": "pytorch_model-00002-of-00002.bin",
|
255 |
+
"model.layers.30.self_attn.q_proj.weight": "pytorch_model-00002-of-00002.bin",
|
256 |
+
"model.layers.30.self_attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin",
|
257 |
+
"model.layers.30.self_attn.v_proj.weight": "pytorch_model-00002-of-00002.bin",
|
258 |
+
"model.layers.31.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
|
259 |
+
"model.layers.31.mlp.down_proj.weight": "pytorch_model-00002-of-00002.bin",
|
260 |
+
"model.layers.31.mlp.gate_proj.weight": "pytorch_model-00002-of-00002.bin",
|
261 |
+
"model.layers.31.mlp.up_proj.weight": "pytorch_model-00002-of-00002.bin",
|
262 |
+
"model.layers.31.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
|
263 |
+
"model.layers.31.self_attn.k_proj.weight": "pytorch_model-00002-of-00002.bin",
|
264 |
+
"model.layers.31.self_attn.o_proj.weight": "pytorch_model-00002-of-00002.bin",
|
265 |
+
"model.layers.31.self_attn.q_proj.weight": "pytorch_model-00002-of-00002.bin",
|
266 |
+
"model.layers.31.self_attn.rotary_emb.inv_freq": "pytorch_model-00002-of-00002.bin",
|
267 |
+
"model.layers.31.self_attn.v_proj.weight": "pytorch_model-00002-of-00002.bin",
|
268 |
+
"model.layers.4.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
269 |
+
"model.layers.4.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
270 |
+
"model.layers.4.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
271 |
+
"model.layers.4.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
272 |
+
"model.layers.4.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
273 |
+
"model.layers.4.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
274 |
+
"model.layers.4.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
275 |
+
"model.layers.4.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
276 |
+
"model.layers.4.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
277 |
+
"model.layers.4.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
278 |
+
"model.layers.5.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
279 |
+
"model.layers.5.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
280 |
+
"model.layers.5.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
281 |
+
"model.layers.5.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
282 |
+
"model.layers.5.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
283 |
+
"model.layers.5.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
284 |
+
"model.layers.5.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
285 |
+
"model.layers.5.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
286 |
+
"model.layers.5.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
287 |
+
"model.layers.5.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
288 |
+
"model.layers.6.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
289 |
+
"model.layers.6.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
290 |
+
"model.layers.6.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
291 |
+
"model.layers.6.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
292 |
+
"model.layers.6.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
293 |
+
"model.layers.6.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
294 |
+
"model.layers.6.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
295 |
+
"model.layers.6.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
296 |
+
"model.layers.6.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
297 |
+
"model.layers.6.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
298 |
+
"model.layers.7.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
299 |
+
"model.layers.7.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
300 |
+
"model.layers.7.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
301 |
+
"model.layers.7.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
302 |
+
"model.layers.7.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
303 |
+
"model.layers.7.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
304 |
+
"model.layers.7.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
305 |
+
"model.layers.7.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
306 |
+
"model.layers.7.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
307 |
+
"model.layers.7.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
308 |
+
"model.layers.8.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
309 |
+
"model.layers.8.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
310 |
+
"model.layers.8.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
311 |
+
"model.layers.8.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
312 |
+
"model.layers.8.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
313 |
+
"model.layers.8.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
314 |
+
"model.layers.8.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
315 |
+
"model.layers.8.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
316 |
+
"model.layers.8.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
317 |
+
"model.layers.8.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
318 |
+
"model.layers.9.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
319 |
+
"model.layers.9.mlp.down_proj.weight": "pytorch_model-00001-of-00002.bin",
|
320 |
+
"model.layers.9.mlp.gate_proj.weight": "pytorch_model-00001-of-00002.bin",
|
321 |
+
"model.layers.9.mlp.up_proj.weight": "pytorch_model-00001-of-00002.bin",
|
322 |
+
"model.layers.9.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
|
323 |
+
"model.layers.9.self_attn.k_proj.weight": "pytorch_model-00001-of-00002.bin",
|
324 |
+
"model.layers.9.self_attn.o_proj.weight": "pytorch_model-00001-of-00002.bin",
|
325 |
+
"model.layers.9.self_attn.q_proj.weight": "pytorch_model-00001-of-00002.bin",
|
326 |
+
"model.layers.9.self_attn.rotary_emb.inv_freq": "pytorch_model-00001-of-00002.bin",
|
327 |
+
"model.layers.9.self_attn.v_proj.weight": "pytorch_model-00001-of-00002.bin",
|
328 |
+
"model.norm.weight": "pytorch_model-00002-of-00002.bin"
|
329 |
+
}
|
330 |
+
}
|