Jenniw0112
commited on
Commit
•
c316622
1
Parent(s):
1fef2d9
Upload folder using huggingface_hub
Browse files- config.json +37 -0
- config_custom.py +191 -0
- generation_config.json +6 -0
- model.safetensors +3 -0
- modeling_custom.py +1573 -0
- special_tokens_map.json +24 -0
- tokenizer.json +0 -0
- tokenizer_config.json +214 -0
- training_args.bin +3 -0
config.json
ADDED
@@ -0,0 +1,37 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "models/GPTNeoX-160m",
|
3 |
+
"architectures": [
|
4 |
+
"GPTNeoXForCausalLM"
|
5 |
+
],
|
6 |
+
"attention_bias": true,
|
7 |
+
"attention_dropout": 0.0,
|
8 |
+
"auto_map": {
|
9 |
+
"AutoConfig": "config_custom.GPTNeoXConfig",
|
10 |
+
"AutoModel": "modeling_custom.GPTNeoXModel",
|
11 |
+
"AutoModelForCausalLM": "modeling_custom.GPTNeoXForCausalLM"
|
12 |
+
},
|
13 |
+
"bos_token_id": 0,
|
14 |
+
"classifier_dropout": 0.1,
|
15 |
+
"eos_token_id": 0,
|
16 |
+
"hidden_act": "gelu",
|
17 |
+
"hidden_dropout": 0.0,
|
18 |
+
"hidden_size": 768,
|
19 |
+
"initializer_range": 0.02,
|
20 |
+
"intermediate_size": 3072,
|
21 |
+
"layer_norm_eps": 1e-05,
|
22 |
+
"max_position_embeddings": 2048,
|
23 |
+
"model_type": "gpt_neox",
|
24 |
+
"num_attention_heads": 12,
|
25 |
+
"num_hidden_layers": 12,
|
26 |
+
"partial_rotary_factor": 0.25,
|
27 |
+
"rope_scaling": null,
|
28 |
+
"rope_theta": 10000,
|
29 |
+
"rotary_emb_base": 10000,
|
30 |
+
"rotary_pct": 0.25,
|
31 |
+
"tie_word_embeddings": false,
|
32 |
+
"torch_dtype": "bfloat16",
|
33 |
+
"transformers_version": "4.46.2",
|
34 |
+
"use_cache": true,
|
35 |
+
"use_parallel_residual": true,
|
36 |
+
"vocab_size": 50304
|
37 |
+
}
|
config_custom.py
ADDED
@@ -0,0 +1,191 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# coding=utf-8
|
2 |
+
# Copyright 2022 EleutherAI and The HuggingFace Inc. team. All rights reserved.
|
3 |
+
#
|
4 |
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
5 |
+
# you may not use this file except in compliance with the License.
|
6 |
+
# You may obtain a copy of the License at
|
7 |
+
#
|
8 |
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9 |
+
#
|
10 |
+
# Unless required by applicable law or agreed to in writing, software
|
11 |
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
12 |
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13 |
+
# See the License for the specific language governing permissions and
|
14 |
+
# limitations under the License.
|
15 |
+
"""GPTNeoX model configuration"""
|
16 |
+
|
17 |
+
from transformers.configuration_utils import PretrainedConfig
|
18 |
+
from transformers.modeling_rope_utils import rope_config_validation
|
19 |
+
from transformers.utils import logging
|
20 |
+
|
21 |
+
|
22 |
+
logger = logging.get_logger(__name__)
|
23 |
+
|
24 |
+
|
25 |
+
class GPTNeoXConfig(PretrainedConfig):
|
26 |
+
r"""
|
27 |
+
This is the configuration class to store the configuration of a [`GPTNeoXModel`]. It is used to instantiate an
|
28 |
+
GPTNeoX model according to the specified arguments, defining the model architecture. Instantiating a configuration
|
29 |
+
with the defaults will yield a similar configuration to that of the GPTNeoX
|
30 |
+
[EleutherAI/gpt-neox-20b](https://huggingface.co/EleutherAI/gpt-neox-20b) architecture.
|
31 |
+
|
32 |
+
Configuration objects inherit from [`PretrainedConfig`] and can be used to control the model outputs. Read the
|
33 |
+
documentation from [`PretrainedConfig`] for more information.
|
34 |
+
|
35 |
+
|
36 |
+
Args:
|
37 |
+
vocab_size (`int`, *optional*, defaults to 50432):
|
38 |
+
Vocabulary size of the GPTNeoX model. Defines the number of different tokens that can be represented by the
|
39 |
+
`inputs_ids` passed when calling [`GPTNeoXModel`].
|
40 |
+
hidden_size (`int`, *optional*, defaults to 6144):
|
41 |
+
Dimension of the encoder layers and the pooler layer.
|
42 |
+
num_hidden_layers (`int`, *optional*, defaults to 44):
|
43 |
+
Number of hidden layers in the Transformer encoder.
|
44 |
+
num_attention_heads (`int`, *optional*, defaults to 64):
|
45 |
+
Number of attention heads for each attention layer in the Transformer encoder.
|
46 |
+
intermediate_size (`int`, *optional*, defaults to 24576):
|
47 |
+
Dimension of the "intermediate" (i.e., feed-forward) layer in the Transformer encoder.
|
48 |
+
hidden_act (`str` or `function`, *optional*, defaults to `"gelu"`):
|
49 |
+
The non-linear activation function (function or string) in the encoder and pooler. If string, `"gelu"`,
|
50 |
+
`"relu"`, `"selu"` and `"gelu_new"` are supported.
|
51 |
+
rotary_pct (`float`, *optional*, defaults to 0.25):
|
52 |
+
percentage of hidden dimensions to allocate to rotary embeddings
|
53 |
+
rotary_emb_base (`int`, *optional*, defaults to 10000)
|
54 |
+
base for computing rotary embeddings frequency
|
55 |
+
attention_dropout (`float`, *optional*, defaults to 0.0):
|
56 |
+
The dropout ratio probability of the attention score.
|
57 |
+
hidden_dropout (`float`, *optional*, defaults to 0.0):
|
58 |
+
The dropout ratio of (1) the word embeddings, (2) the post-attention hidden states, and (3) the post-mlp
|
59 |
+
hidden states.
|
60 |
+
classifier_dropout (`float`, *optional*, defaults to 0.1):
|
61 |
+
Argument used when doing token classification, used in the model [`GPTNeoXForTokenClassification`].
|
62 |
+
|
63 |
+
The dropout ratio for the hidden layer.
|
64 |
+
max_position_embeddings (`int`, *optional*, defaults to 2048):
|
65 |
+
The maximum sequence length that this model might ever be used with. Typically set this to something large
|
66 |
+
just in case (e.g., 512 or 1024 or 2048).
|
67 |
+
initializer_range (`float`, *optional*, defaults to 1e-5):
|
68 |
+
The standard deviation of the truncated_normal_initializer for initializing all weight matrices.
|
69 |
+
layer_norm_eps (`float`, *optional*, defaults to 1e-12):
|
70 |
+
The epsilon used by the layer normalization layers.
|
71 |
+
use_cache (`bool`, *optional*, defaults to `True`):
|
72 |
+
Whether or not the model should return the last key/values attentions (not used by all models). Only
|
73 |
+
relevant if `config.is_decoder=True`.
|
74 |
+
use_parallel_residual (`bool`, *optional*, defaults to `True`):
|
75 |
+
Whether to use a "parallel" formulation in each Transformer layer, which can provide a slight training
|
76 |
+
speedup at large scales (e.g. 20B).
|
77 |
+
rope_scaling (`Dict`, *optional*):
|
78 |
+
Dictionary containing the scaling configuration for the RoPE embeddings. NOTE: if you apply new rope type
|
79 |
+
and you expect the model to work on longer `max_position_embeddings`, we recommend you to update this value
|
80 |
+
accordingly.
|
81 |
+
Expected contents:
|
82 |
+
`rope_type` (`str`):
|
83 |
+
The sub-variant of RoPE to use. Can be one of ['default', 'linear', 'dynamic', 'yarn', 'longrope',
|
84 |
+
'llama3'], with 'default' being the original RoPE implementation.
|
85 |
+
`factor` (`float`, *optional*):
|
86 |
+
Used with all rope types except 'default'. The scaling factor to apply to the RoPE embeddings. In
|
87 |
+
most scaling types, a `factor` of x will enable the model to handle sequences of length x *
|
88 |
+
original maximum pre-trained length.
|
89 |
+
`original_max_position_embeddings` (`int`, *optional*):
|
90 |
+
Used with 'dynamic', 'longrope' and 'llama3'. The original max position embeddings used during
|
91 |
+
pretraining.
|
92 |
+
`attention_factor` (`float`, *optional*):
|
93 |
+
Used with 'yarn' and 'longrope'. The scaling factor to be applied on the attention
|
94 |
+
computation. If unspecified, it defaults to value recommended by the implementation, using the
|
95 |
+
`factor` field to infer the suggested value.
|
96 |
+
`beta_fast` (`float`, *optional*):
|
97 |
+
Only used with 'yarn'. Parameter to set the boundary for extrapolation (only) in the linear
|
98 |
+
ramp function. If unspecified, it defaults to 32.
|
99 |
+
`beta_slow` (`float`, *optional*):
|
100 |
+
Only used with 'yarn'. Parameter to set the boundary for interpolation (only) in the linear
|
101 |
+
ramp function. If unspecified, it defaults to 1.
|
102 |
+
`short_factor` (`List[float]`, *optional*):
|
103 |
+
Only used with 'longrope'. The scaling factor to be applied to short contexts (<
|
104 |
+
`original_max_position_embeddings`). Must be a list of numbers with the same length as the hidden
|
105 |
+
size divided by the number of attention heads divided by 2
|
106 |
+
`long_factor` (`List[float]`, *optional*):
|
107 |
+
Only used with 'longrope'. The scaling factor to be applied to long contexts (<
|
108 |
+
`original_max_position_embeddings`). Must be a list of numbers with the same length as the hidden
|
109 |
+
size divided by the number of attention heads divided by 2
|
110 |
+
`low_freq_factor` (`float`, *optional*):
|
111 |
+
Only used with 'llama3'. Scaling factor applied to low frequency components of the RoPE
|
112 |
+
`high_freq_factor` (`float`, *optional*):
|
113 |
+
Only used with 'llama3'. Scaling factor applied to high frequency components of the RoPE
|
114 |
+
attention_bias (`bool`, *optional*, defaults to `True`):
|
115 |
+
Whether to use a bias in the query, key, value and output projection layers during self-attention.
|
116 |
+
|
117 |
+
Example:
|
118 |
+
|
119 |
+
```python
|
120 |
+
>>> from transformers import GPTNeoXConfig, GPTNeoXModel
|
121 |
+
|
122 |
+
>>> # Initializing a GPTNeoX gpt-neox-20b style configuration
|
123 |
+
>>> configuration = GPTNeoXConfig()
|
124 |
+
|
125 |
+
>>> # Initializing a model (with random weights) from the gpt-neox-20b style configuration
|
126 |
+
>>> model = GPTNeoXModel(configuration) # doctest: +SKIP
|
127 |
+
|
128 |
+
>>> # Accessing the model configuration
|
129 |
+
>>> configuration = model.config # doctest: +SKIP
|
130 |
+
```"""
|
131 |
+
|
132 |
+
model_type = "gpt_neox"
|
133 |
+
keys_to_ignore_at_inference = ["past_key_values"]
|
134 |
+
|
135 |
+
def __init__(
|
136 |
+
self,
|
137 |
+
vocab_size=50432,
|
138 |
+
hidden_size=6144,
|
139 |
+
num_hidden_layers=44,
|
140 |
+
num_attention_heads=64,
|
141 |
+
intermediate_size=24576,
|
142 |
+
hidden_act="gelu",
|
143 |
+
rotary_pct=0.25,
|
144 |
+
rotary_emb_base=10000,
|
145 |
+
attention_dropout=0.0,
|
146 |
+
hidden_dropout=0.0,
|
147 |
+
classifier_dropout=0.1,
|
148 |
+
max_position_embeddings=2048,
|
149 |
+
initializer_range=0.02,
|
150 |
+
layer_norm_eps=1e-5,
|
151 |
+
use_cache=True,
|
152 |
+
bos_token_id=0,
|
153 |
+
eos_token_id=2,
|
154 |
+
tie_word_embeddings=False,
|
155 |
+
use_parallel_residual=True,
|
156 |
+
rope_scaling=None,
|
157 |
+
attention_bias=True,
|
158 |
+
**kwargs,
|
159 |
+
):
|
160 |
+
super().__init__(bos_token_id=bos_token_id, eos_token_id=eos_token_id, **kwargs)
|
161 |
+
self.vocab_size = vocab_size
|
162 |
+
self.max_position_embeddings = max_position_embeddings
|
163 |
+
self.hidden_size = hidden_size
|
164 |
+
self.num_hidden_layers = num_hidden_layers
|
165 |
+
self.num_attention_heads = num_attention_heads
|
166 |
+
self.intermediate_size = intermediate_size
|
167 |
+
self.hidden_act = hidden_act
|
168 |
+
self.rotary_pct = rotary_pct
|
169 |
+
self.partial_rotary_factor = rotary_pct
|
170 |
+
self.rotary_emb_base = rotary_emb_base
|
171 |
+
self.rope_theta = rotary_emb_base
|
172 |
+
self.attention_dropout = attention_dropout
|
173 |
+
self.hidden_dropout = hidden_dropout
|
174 |
+
self.classifier_dropout = classifier_dropout
|
175 |
+
self.initializer_range = initializer_range
|
176 |
+
self.layer_norm_eps = layer_norm_eps
|
177 |
+
self.use_cache = use_cache
|
178 |
+
self.tie_word_embeddings = tie_word_embeddings
|
179 |
+
self.use_parallel_residual = use_parallel_residual
|
180 |
+
self.rope_scaling = rope_scaling
|
181 |
+
self.attention_bias = attention_bias
|
182 |
+
# Validate the correctness of rotary position embeddings parameters
|
183 |
+
# BC: if there is a 'type' field, move it to 'rope_type'.
|
184 |
+
if self.rope_scaling is not None and "type" in self.rope_scaling:
|
185 |
+
self.rope_scaling["rope_type"] = self.rope_scaling["type"]
|
186 |
+
rope_config_validation(self)
|
187 |
+
|
188 |
+
if self.hidden_size % self.num_attention_heads != 0:
|
189 |
+
raise ValueError(
|
190 |
+
"The hidden size is not divisble by the number of attention heads! Make sure to update them!"
|
191 |
+
)
|
generation_config.json
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_from_model_config": true,
|
3 |
+
"bos_token_id": 0,
|
4 |
+
"eos_token_id": 0,
|
5 |
+
"transformers_version": "4.46.2"
|
6 |
+
}
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:37ba574ae609ee1f586077310c07925fae3fdd9b786c25b78f315b2eea365159
|
3 |
+
size 324662984
|
modeling_custom.py
ADDED
@@ -0,0 +1,1573 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# coding=utf-8
|
2 |
+
# Copyright 2022 EleutherAI The HuggingFace Inc. team. All rights reserved.
|
3 |
+
#
|
4 |
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
5 |
+
# you may not use this file except in compliance with the License.
|
6 |
+
# You may obtain a copy of the License at
|
7 |
+
#
|
8 |
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9 |
+
#
|
10 |
+
# Unless required by applicable law or agreed to in writing, software
|
11 |
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
12 |
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13 |
+
# See the License for the specific language governing permissions and
|
14 |
+
# limitations under the License.
|
15 |
+
"""PyTorch GPTNeoX model."""
|
16 |
+
|
17 |
+
from typing import Optional, Tuple, Union
|
18 |
+
|
19 |
+
import torch
|
20 |
+
import torch.utils.checkpoint
|
21 |
+
from packaging import version
|
22 |
+
from torch import nn
|
23 |
+
from torch.nn import BCEWithLogitsLoss, CrossEntropyLoss, MSELoss
|
24 |
+
|
25 |
+
from transformers.activations import ACT2FN
|
26 |
+
from transformers.cache_utils import Cache, DynamicCache, StaticCache
|
27 |
+
from transformers.file_utils import (
|
28 |
+
add_code_sample_docstrings,
|
29 |
+
add_start_docstrings,
|
30 |
+
add_start_docstrings_to_model_forward,
|
31 |
+
replace_return_docstrings,
|
32 |
+
)
|
33 |
+
from transformers.generation import GenerationMixin
|
34 |
+
from transformers.modeling_attn_mask_utils import AttentionMaskConverter
|
35 |
+
from transformers.modeling_outputs import (
|
36 |
+
BaseModelOutputWithPast,
|
37 |
+
CausalLMOutputWithPast,
|
38 |
+
QuestionAnsweringModelOutput,
|
39 |
+
SequenceClassifierOutputWithPast,
|
40 |
+
TokenClassifierOutput,
|
41 |
+
)
|
42 |
+
from transformers.modeling_rope_utils import ROPE_INIT_FUNCTIONS
|
43 |
+
from transformers.modeling_utils import PreTrainedModel
|
44 |
+
from transformers.utils import (
|
45 |
+
get_torch_version,
|
46 |
+
is_flash_attn_2_available,
|
47 |
+
is_flash_attn_greater_or_equal_2_10,
|
48 |
+
logging,
|
49 |
+
)
|
50 |
+
from .config_custom import GPTNeoXConfig
|
51 |
+
from flash_attn.flash_attn_interface import flash_attn_func
|
52 |
+
|
53 |
+
|
54 |
+
|
55 |
+
|
56 |
+
if is_flash_attn_2_available():
|
57 |
+
from transformers.modeling_flash_attention_utils import _flash_attention_forward
|
58 |
+
|
59 |
+
logger = logging.get_logger(__name__)
|
60 |
+
|
61 |
+
_CHECKPOINT_FOR_DOC = "trl-internal-testing/tiny-random-GPTNeoXForCausalLM"
|
62 |
+
_REAL_CHECKPOINT_FOR_DOC = "EleutherAI/gpt-neox-20b"
|
63 |
+
_CONFIG_FOR_DOC = "GPTNeoXConfig"
|
64 |
+
|
65 |
+
|
66 |
+
# Copied from transformers.models.llama.modeling_llama._prepare_4d_causal_attention_mask_with_cache_position
|
67 |
+
def _prepare_4d_causal_attention_mask_with_cache_position(
|
68 |
+
attention_mask: torch.Tensor,
|
69 |
+
sequence_length: int,
|
70 |
+
target_length: int,
|
71 |
+
dtype: torch.dtype,
|
72 |
+
device: torch.device,
|
73 |
+
min_dtype: float,
|
74 |
+
cache_position: torch.Tensor,
|
75 |
+
batch_size: int,
|
76 |
+
):
|
77 |
+
"""
|
78 |
+
Creates a causal 4D mask of shape `(batch_size, 1, query_length, key_value_length)` from a 2D mask of shape
|
79 |
+
`(batch_size, key_value_length)`, or if the input `attention_mask` is already 4D, do nothing.
|
80 |
+
|
81 |
+
Args:
|
82 |
+
attention_mask (`torch.Tensor`):
|
83 |
+
A 2D attention mask of shape `(batch_size, key_value_length)` or a 4D attention mask of shape `(batch_size, 1, query_length, key_value_length)`.
|
84 |
+
sequence_length (`int`):
|
85 |
+
The sequence length being processed.
|
86 |
+
target_length (`int`):
|
87 |
+
The target length: when generating with static cache, the mask should be as long as the static cache, to account for the 0 padding, the part of the cache that is not filled yet.
|
88 |
+
dtype (`torch.dtype`):
|
89 |
+
The dtype to use for the 4D attention mask.
|
90 |
+
device (`torch.device`):
|
91 |
+
The device to plcae the 4D attention mask on.
|
92 |
+
min_dtype (`float`):
|
93 |
+
The minimum value representable with the dtype `dtype`.
|
94 |
+
cache_position (`torch.Tensor`):
|
95 |
+
Indices depicting the position of the input sequence tokens in the sequence.
|
96 |
+
batch_size (`torch.Tensor`):
|
97 |
+
Batch size.
|
98 |
+
"""
|
99 |
+
if attention_mask is not None and attention_mask.dim() == 4:
|
100 |
+
# In this case we assume that the mask comes already in inverted form and requires no inversion or slicing.
|
101 |
+
causal_mask = attention_mask
|
102 |
+
else:
|
103 |
+
causal_mask = torch.full((sequence_length, target_length), fill_value=min_dtype, dtype=dtype, device=device)
|
104 |
+
if sequence_length != 1:
|
105 |
+
causal_mask = torch.triu(causal_mask, diagonal=1)
|
106 |
+
causal_mask *= torch.arange(target_length, device=device) > cache_position.reshape(-1, 1)
|
107 |
+
causal_mask = causal_mask[None, None, :, :].expand(batch_size, 1, -1, -1)
|
108 |
+
if attention_mask is not None:
|
109 |
+
causal_mask = causal_mask.clone() # copy to contiguous memory for in-place edit
|
110 |
+
mask_length = attention_mask.shape[-1]
|
111 |
+
padding_mask = causal_mask[:, :, :, :mask_length] + attention_mask[:, None, None, :]
|
112 |
+
padding_mask = padding_mask == 0
|
113 |
+
causal_mask[:, :, :, :mask_length] = causal_mask[:, :, :, :mask_length].masked_fill(
|
114 |
+
padding_mask, min_dtype
|
115 |
+
)
|
116 |
+
|
117 |
+
return causal_mask
|
118 |
+
|
119 |
+
|
120 |
+
class GPTNeoXPreTrainedModel(PreTrainedModel):
|
121 |
+
"""
|
122 |
+
An abstract class to handle weights initialization and a simple interface for downloading and loading pretrained
|
123 |
+
models.
|
124 |
+
"""
|
125 |
+
|
126 |
+
config_class = GPTNeoXConfig
|
127 |
+
base_model_prefix = "gpt_neox"
|
128 |
+
supports_gradient_checkpointing = True
|
129 |
+
_no_split_modules = ["GPTNeoXLayer"]
|
130 |
+
_skip_keys_device_placement = "past_key_values"
|
131 |
+
_supports_flash_attn_2 = True
|
132 |
+
_supports_cache_class = True
|
133 |
+
_supports_quantized_cache = True
|
134 |
+
_supports_static_cache = True
|
135 |
+
_supports_sdpa = True
|
136 |
+
|
137 |
+
def _init_weights(self, module):
|
138 |
+
"""Initialize the weights"""
|
139 |
+
if isinstance(module, nn.Linear):
|
140 |
+
module.weight.data.normal_(mean=0.0, std=self.config.initializer_range)
|
141 |
+
if module.bias is not None:
|
142 |
+
module.bias.data.zero_()
|
143 |
+
elif isinstance(module, nn.Embedding):
|
144 |
+
module.weight.data.normal_(mean=0.0, std=self.config.initializer_range)
|
145 |
+
if module.padding_idx is not None:
|
146 |
+
module.weight.data[module.padding_idx].zero_()
|
147 |
+
elif isinstance(module, nn.LayerNorm):
|
148 |
+
module.bias.data.zero_()
|
149 |
+
module.weight.data.fill_(1.0)
|
150 |
+
|
151 |
+
|
152 |
+
class GPTNeoXAttention(nn.Module):
|
153 |
+
def __init__(self, config, layer_idx=None):
|
154 |
+
super().__init__()
|
155 |
+
self.config = config
|
156 |
+
self.num_attention_heads = config.num_attention_heads
|
157 |
+
self.hidden_size = config.hidden_size
|
158 |
+
if self.hidden_size % self.num_attention_heads != 0:
|
159 |
+
raise ValueError(
|
160 |
+
"The hidden size is not divisble by the number of attention heads! Make sure to update them"
|
161 |
+
)
|
162 |
+
self.head_size = self.hidden_size // self.num_attention_heads
|
163 |
+
self.rotary_ndims = int(self.head_size * config.rotary_pct)
|
164 |
+
self.rope_theta = config.rotary_emb_base
|
165 |
+
self._init_bias(config.max_position_embeddings)
|
166 |
+
|
167 |
+
self.register_buffer("masked_bias", torch.tensor(-1e9), persistent=False)
|
168 |
+
self.rotary_emb = GPTNeoXRotaryEmbedding(config=self.config)
|
169 |
+
|
170 |
+
if layer_idx is None:
|
171 |
+
logger.warning_once(
|
172 |
+
f"Instantiating {self.__class__.__name__} without passing a `layer_idx` is not recommended and will "
|
173 |
+
"lead to errors during the forward call if caching is used. Please make sure to provide a `layer_idx` "
|
174 |
+
"when creating this class."
|
175 |
+
)
|
176 |
+
self.norm_factor = self.head_size**-0.5
|
177 |
+
self.query_key_value = nn.Linear(config.hidden_size, 3 * config.hidden_size, bias=config.attention_bias)
|
178 |
+
self.dense = nn.Linear(config.hidden_size, config.hidden_size, bias=config.attention_bias)
|
179 |
+
self.attention_dropout = nn.Dropout(config.attention_dropout)
|
180 |
+
self.is_causal = True
|
181 |
+
self.layer_idx = layer_idx
|
182 |
+
|
183 |
+
def _init_bias(self, max_positions, device=None):
|
184 |
+
self.register_buffer(
|
185 |
+
"bias",
|
186 |
+
torch.tril(torch.ones((max_positions, max_positions), dtype=torch.bool)).view(
|
187 |
+
1, 1, max_positions, max_positions
|
188 |
+
),
|
189 |
+
persistent=False,
|
190 |
+
)
|
191 |
+
if device is not None:
|
192 |
+
self.bias = self.bias.to(device)
|
193 |
+
|
194 |
+
def forward(
|
195 |
+
self,
|
196 |
+
hidden_states: torch.FloatTensor,
|
197 |
+
attention_mask: torch.FloatTensor,
|
198 |
+
position_ids: torch.LongTensor,
|
199 |
+
head_mask: Optional[torch.FloatTensor] = None,
|
200 |
+
layer_past: Optional[Cache] = None,
|
201 |
+
use_cache: Optional[bool] = False,
|
202 |
+
output_attentions: Optional[bool] = False,
|
203 |
+
padding_mask: Optional[torch.Tensor] = None,
|
204 |
+
cache_position: Optional[torch.LongTensor] = None,
|
205 |
+
position_embeddings: Optional[Tuple[torch.Tensor, torch.Tensor]] = None, # will become mandatory in v4.46
|
206 |
+
):
|
207 |
+
# Apply attention-specific projections and rope
|
208 |
+
query, key, value, present = self._attn_projections_and_rope(
|
209 |
+
hidden_states=hidden_states,
|
210 |
+
position_ids=position_ids,
|
211 |
+
layer_past=layer_past,
|
212 |
+
use_cache=use_cache,
|
213 |
+
position_embeddings=position_embeddings,
|
214 |
+
)
|
215 |
+
|
216 |
+
# Compute attention
|
217 |
+
attn_output, attn_weights = self._attn(query, key, value, attention_mask, head_mask)
|
218 |
+
|
219 |
+
# Reshape outputs
|
220 |
+
attn_output = self._merge_heads(attn_output, self.num_attention_heads, self.head_size)
|
221 |
+
attn_output = self.dense(attn_output)
|
222 |
+
|
223 |
+
outputs = (attn_output, present)
|
224 |
+
if output_attentions:
|
225 |
+
outputs += (attn_weights,)
|
226 |
+
|
227 |
+
return outputs
|
228 |
+
|
229 |
+
@classmethod
|
230 |
+
def _split_heads(cls, tensor, num_attention_heads, attn_head_size):
|
231 |
+
"""
|
232 |
+
Splits hidden dim into attn_head_size and num_attention_heads
|
233 |
+
"""
|
234 |
+
# tensor: [bs, seq_len, hidden_size]
|
235 |
+
new_shape = tensor.size()[:-1] + (num_attention_heads, attn_head_size)
|
236 |
+
# -> [bs, seq_len, num_attention_heads, attn_head_size]
|
237 |
+
tensor = tensor.view(new_shape)
|
238 |
+
# -> [bs, num_attention_heads, seq_len, attn_head_size]
|
239 |
+
tensor = tensor.permute(0, 2, 1, 3)
|
240 |
+
return tensor
|
241 |
+
|
242 |
+
@classmethod
|
243 |
+
def _merge_heads(cls, tensor, num_attention_heads, attn_head_size):
|
244 |
+
"""
|
245 |
+
Merges attn_head_size dim and num_attn_heads dim into hidden dim
|
246 |
+
"""
|
247 |
+
# tensor [bs, num_attention_heads, seq_len, attn_head_size]
|
248 |
+
tensor = tensor.permute(0, 2, 1, 3).contiguous()
|
249 |
+
# -> [bs, seq_len, num_attention_heads, attn_head_size]
|
250 |
+
tensor = tensor.view(tensor.size(0), tensor.size(1), num_attention_heads * attn_head_size)
|
251 |
+
# -> [bs, seq_len, hidden_size]
|
252 |
+
return tensor
|
253 |
+
|
254 |
+
def _attn_projections_and_rope(
|
255 |
+
self,
|
256 |
+
hidden_states: torch.FloatTensor,
|
257 |
+
position_ids: torch.LongTensor,
|
258 |
+
layer_past: Optional[Tuple[torch.Tensor]] = None,
|
259 |
+
use_cache: Optional[bool] = False,
|
260 |
+
cache_position: Optional[torch.LongTensor] = None,
|
261 |
+
position_embeddings: Optional[Tuple[torch.Tensor, torch.Tensor]] = None, # will become mandatory in v4.46
|
262 |
+
):
|
263 |
+
# Compute QKV
|
264 |
+
# Attention heads [batch, seq_len, hidden_size]
|
265 |
+
# --> [batch, seq_len, (np * 3 * head_size)]
|
266 |
+
qkv = self.query_key_value(hidden_states)
|
267 |
+
|
268 |
+
# [batch, seq_len, (num_heads * 3 * head_size)]
|
269 |
+
# --> [batch, seq_len, num_heads, 3 * head_size]
|
270 |
+
new_qkv_shape = qkv.size()[:-1] + (self.num_attention_heads, 3 * self.head_size)
|
271 |
+
qkv = qkv.view(*new_qkv_shape)
|
272 |
+
|
273 |
+
# [batch, seq_len, num_attention_heads, 3 * head_size] --> 3 [batch, num_attention_heads, seq_len, head_size]
|
274 |
+
query = qkv[..., : self.head_size].permute(0, 2, 1, 3)
|
275 |
+
key = qkv[..., self.head_size : 2 * self.head_size].permute(0, 2, 1, 3)
|
276 |
+
value = qkv[..., 2 * self.head_size :].permute(0, 2, 1, 3)
|
277 |
+
|
278 |
+
# Compute rotary embeddings on rotary_ndims
|
279 |
+
query_rot = query[..., : self.rotary_ndims]
|
280 |
+
query_pass = query[..., self.rotary_ndims :]
|
281 |
+
key_rot = key[..., : self.rotary_ndims]
|
282 |
+
key_pass = key[..., self.rotary_ndims :]
|
283 |
+
|
284 |
+
if position_embeddings is None:
|
285 |
+
logger.warning_once(
|
286 |
+
"The attention layers in this model are transitioning from computing the RoPE embeddings internally "
|
287 |
+
"through `position_ids` (2D tensor with the indexes of the tokens), to using externally computed "
|
288 |
+
"`position_embeddings` (Tuple of tensors, containing cos and sin). In v4.46 `position_ids` will be "
|
289 |
+
"removed and `position_embeddings` will be mandatory."
|
290 |
+
)
|
291 |
+
cos, sin = self.rotary_emb(value, position_ids)
|
292 |
+
else:
|
293 |
+
cos, sin = position_embeddings
|
294 |
+
query, key = apply_rotary_pos_emb(query_rot, key_rot, cos, sin)
|
295 |
+
query = torch.cat((query, query_pass), dim=-1)
|
296 |
+
key = torch.cat((key, key_pass), dim=-1)
|
297 |
+
|
298 |
+
# Cache QKV values
|
299 |
+
if layer_past is not None:
|
300 |
+
cache_kwargs = {
|
301 |
+
"sin": sin,
|
302 |
+
"cos": cos,
|
303 |
+
"partial_rotation_size": self.rotary_ndims,
|
304 |
+
"cache_position": cache_position,
|
305 |
+
}
|
306 |
+
key, value = layer_past.update(key, value, self.layer_idx, cache_kwargs)
|
307 |
+
|
308 |
+
return query, key, value, layer_past
|
309 |
+
|
310 |
+
def _attn(self, query, key, value, attention_mask=None, head_mask=None):
|
311 |
+
# q, k, v: [bs, num_attention_heads, seq_len, attn_head_size]
|
312 |
+
# compute causal mask from causal mask buffer
|
313 |
+
batch_size, num_attention_heads, query_length, attn_head_size = query.size()
|
314 |
+
key_length = key.size(-2)
|
315 |
+
|
316 |
+
# dynamically increase the causal mask with the key length, if needed.
|
317 |
+
if key_length > self.bias.shape[-1]:
|
318 |
+
self._init_bias(key_length, device=key.device)
|
319 |
+
causal_mask = self.bias[:, :, key_length - query_length : key_length, :key_length]
|
320 |
+
|
321 |
+
query = query.view(batch_size * num_attention_heads, query_length, attn_head_size)
|
322 |
+
key = key.view(batch_size * num_attention_heads, key_length, attn_head_size)
|
323 |
+
attn_scores = torch.zeros(
|
324 |
+
batch_size * num_attention_heads,
|
325 |
+
query_length,
|
326 |
+
key_length,
|
327 |
+
dtype=query.dtype,
|
328 |
+
device=key.device,
|
329 |
+
)
|
330 |
+
attn_scores = torch.baddbmm(
|
331 |
+
attn_scores,
|
332 |
+
query,
|
333 |
+
key.transpose(1, 2),
|
334 |
+
beta=1.0,
|
335 |
+
alpha=self.norm_factor,
|
336 |
+
)
|
337 |
+
attn_scores = attn_scores.view(batch_size, num_attention_heads, query_length, key_length)
|
338 |
+
|
339 |
+
mask_value = torch.finfo(attn_scores.dtype).min
|
340 |
+
# Need to be a tensor, otherwise we get error: `RuntimeError: expected scalar type float but found double`.
|
341 |
+
# Need to be on the same device, otherwise `RuntimeError: ..., x and y to be on the same device`
|
342 |
+
mask_value = torch.tensor(mask_value, dtype=attn_scores.dtype).to(attn_scores.device)
|
343 |
+
attn_scores = torch.where(causal_mask, attn_scores, mask_value)
|
344 |
+
|
345 |
+
if attention_mask is not None: # no matter the length, we just slice it
|
346 |
+
causal_mask = attention_mask[:, :, :, : key.shape[-2]]
|
347 |
+
attn_scores = attn_scores + causal_mask
|
348 |
+
|
349 |
+
attn_weights = nn.functional.softmax(attn_scores, dim=-1)
|
350 |
+
attn_weights = attn_weights.to(value.dtype)
|
351 |
+
|
352 |
+
# Mask heads if we want to
|
353 |
+
if head_mask is not None:
|
354 |
+
attn_weights = attn_weights * head_mask
|
355 |
+
|
356 |
+
attn_weights = self.attention_dropout(attn_weights)
|
357 |
+
|
358 |
+
attn_output = torch.matmul(attn_weights, value)
|
359 |
+
return attn_output, attn_weights
|
360 |
+
|
361 |
+
|
362 |
+
class GPTNeoXFlashAttention2(GPTNeoXAttention):
|
363 |
+
"""
|
364 |
+
GPTNeoX flash attention module. This module inherits from GPTNeoXAttention as the weights of the module stay
|
365 |
+
untouched. The only required change would be on the forward pass where it needs to correctly call the public API of
|
366 |
+
flash attention and deal with padding tokens in case the input contains any of them.
|
367 |
+
"""
|
368 |
+
|
369 |
+
# Copied from transformers.models.llama.modeling_llama.LlamaFlashAttention2.__init__
|
370 |
+
def __init__(self, *args, **kwargs):
|
371 |
+
super().__init__(*args, **kwargs)
|
372 |
+
|
373 |
+
# Compatibility check for Flash Attention mask alignment
|
374 |
+
self._flash_attn_uses_top_left_mask = not is_flash_attn_greater_or_equal_2_10()
|
375 |
+
|
376 |
+
def forward(
|
377 |
+
self,
|
378 |
+
hidden_states: torch.FloatTensor,
|
379 |
+
attention_mask: torch.FloatTensor,
|
380 |
+
position_ids: torch.LongTensor,
|
381 |
+
head_mask: Optional[torch.FloatTensor] = None,
|
382 |
+
layer_past: Optional[Cache] = None,
|
383 |
+
use_cache: Optional[bool] = False,
|
384 |
+
output_attentions: Optional[bool] = False,
|
385 |
+
cache_position: Optional[torch.LongTensor] = None,
|
386 |
+
position_embeddings: Optional[Tuple[torch.Tensor, torch.Tensor]] = None, # will become mandatory in v4.46
|
387 |
+
):
|
388 |
+
# Apply attention-specific projections and rope
|
389 |
+
query, key, value, present = self._attn_projections_and_rope(
|
390 |
+
hidden_states=hidden_states,
|
391 |
+
position_ids=position_ids,
|
392 |
+
layer_past=layer_past,
|
393 |
+
use_cache=use_cache,
|
394 |
+
cache_position=cache_position,
|
395 |
+
position_embeddings=position_embeddings,
|
396 |
+
)
|
397 |
+
|
398 |
+
query_length = query.shape[-2]
|
399 |
+
target_dtype = value.dtype
|
400 |
+
|
401 |
+
# Ensure dtype consistency
|
402 |
+
if query.dtype != target_dtype:
|
403 |
+
query = query.to(target_dtype)
|
404 |
+
if key.dtype != target_dtype:
|
405 |
+
key = key.to(target_dtype)
|
406 |
+
|
407 |
+
# Permute to match Flash Attention requirements
|
408 |
+
# Assumes shape: (batch_size, num_heads, seq_length, head_dim)
|
409 |
+
query = query.permute(0, 2, 1, 3)
|
410 |
+
key = key.permute(0, 2, 1, 3)
|
411 |
+
value = value.permute(0, 2, 1, 3)
|
412 |
+
|
413 |
+
attention_dropout = self.config.attention_dropout if self.training else 0.0
|
414 |
+
|
415 |
+
# Compute attention with Flash Attention forward pass
|
416 |
+
attn_weights = flash_attn_func(
|
417 |
+
q=query,
|
418 |
+
k=key,
|
419 |
+
v=value,
|
420 |
+
dropout_p=attention_dropout,
|
421 |
+
causal=self._flash_attn_uses_top_left_mask,
|
422 |
+
)
|
423 |
+
|
424 |
+
# Reshape attention output
|
425 |
+
# Assumes the output shape required by `dense` is (batch_size, seq_length, hidden_dim)
|
426 |
+
attn_output = attn_weights.permute(0, 2, 1, 3).contiguous().view(hidden_states.size())
|
427 |
+
|
428 |
+
# Apply final linear projection
|
429 |
+
attn_output = self.dense(attn_output)
|
430 |
+
|
431 |
+
outputs = (attn_output, present)
|
432 |
+
if output_attentions:
|
433 |
+
outputs += (attn_weights,)
|
434 |
+
|
435 |
+
return outputs
|
436 |
+
|
437 |
+
|
438 |
+
class GPTNeoXSdpaAttention(GPTNeoXAttention):
|
439 |
+
"""
|
440 |
+
GPTNeoX attention module using torch.nn.functional.scaled_dot_product_attention. This module inherits from
|
441 |
+
`GPTNeoXAttention` as the weights of the module stays untouched. The only changes are on the forward pass
|
442 |
+
to adapt to the SDPA API.
|
443 |
+
"""
|
444 |
+
|
445 |
+
def __init__(self, config, layer_idx=None):
|
446 |
+
super().__init__(config, layer_idx=layer_idx)
|
447 |
+
|
448 |
+
# SDPA with memory-efficient backend is broken in torch==2.1.2 when using non-contiguous inputs and a custom
|
449 |
+
# attn_mask, so we need to call `.contiguous()`. This was fixed in torch==2.2.0.
|
450 |
+
# Reference: https://github.com/pytorch/pytorch/issues/112577
|
451 |
+
self.require_contiguous_qkv = version.parse(get_torch_version()) < version.parse("2.2.0")
|
452 |
+
|
453 |
+
def forward(
|
454 |
+
self,
|
455 |
+
hidden_states: torch.FloatTensor,
|
456 |
+
attention_mask: torch.FloatTensor,
|
457 |
+
position_ids: torch.LongTensor,
|
458 |
+
head_mask: Optional[torch.FloatTensor] = None,
|
459 |
+
layer_past: Optional[Tuple[torch.Tensor]] = None,
|
460 |
+
use_cache: Optional[bool] = False,
|
461 |
+
output_attentions: Optional[bool] = False,
|
462 |
+
cache_position: Optional[torch.LongTensor] = None,
|
463 |
+
position_embeddings: Optional[Tuple[torch.Tensor, torch.Tensor]] = None, # will become mandatory in v4.46
|
464 |
+
):
|
465 |
+
if output_attentions or head_mask is not None:
|
466 |
+
logger.warning_once(
|
467 |
+
"`GPTNeoXSdpaAttention` is used but `torch.nn.functional.scaled_dot_product_attention` does not support "
|
468 |
+
"`output_attentions=True` or `head_mask`. Falling back to the manual attention implementation, but "
|
469 |
+
"specifying the manual implementation will be required from Transformers version v5.0.0 onwards. "
|
470 |
+
'This warning can be removed using the argument `attn_implementation="eager"` when loading the model.'
|
471 |
+
)
|
472 |
+
return super().forward(
|
473 |
+
hidden_states=hidden_states,
|
474 |
+
attention_mask=attention_mask,
|
475 |
+
position_ids=position_ids,
|
476 |
+
head_mask=head_mask,
|
477 |
+
layer_past=layer_past,
|
478 |
+
use_cache=use_cache,
|
479 |
+
output_attentions=output_attentions,
|
480 |
+
cache_position=cache_position,
|
481 |
+
)
|
482 |
+
|
483 |
+
bsz, q_len, _ = hidden_states.size()
|
484 |
+
|
485 |
+
# Apply attention-specific projections and rope
|
486 |
+
query, key, value, present = self._attn_projections_and_rope(
|
487 |
+
hidden_states=hidden_states,
|
488 |
+
position_ids=position_ids,
|
489 |
+
layer_past=layer_past,
|
490 |
+
use_cache=use_cache,
|
491 |
+
cache_position=cache_position,
|
492 |
+
position_embeddings=position_embeddings,
|
493 |
+
)
|
494 |
+
|
495 |
+
causal_mask = attention_mask
|
496 |
+
if attention_mask is not None:
|
497 |
+
causal_mask = causal_mask[:, :, :, : key.shape[-2]]
|
498 |
+
|
499 |
+
# GPT-neo-X casts query and key in fp32 to apply rotary embedding in full precision
|
500 |
+
target_dtype = value.dtype
|
501 |
+
if query.dtype != target_dtype:
|
502 |
+
query = query.to(target_dtype)
|
503 |
+
if key.dtype != target_dtype:
|
504 |
+
key = key.to(target_dtype)
|
505 |
+
|
506 |
+
# Avoid torch==2.1.2 specific bug for the memory-efficient backend in SDPA
|
507 |
+
if self.require_contiguous_qkv and query.device.type == "cuda" and attention_mask is not None:
|
508 |
+
query = query.contiguous()
|
509 |
+
key = key.contiguous()
|
510 |
+
value = value.contiguous()
|
511 |
+
|
512 |
+
# We dispatch to SDPA's Flash Attention or Efficient kernels via this `is_causal` if statement instead of an inline conditional assignment
|
513 |
+
# in SDPA to support both torch.compile's dynamic shapes and full graph options. An inline conditional prevents dynamic shapes from compiling.
|
514 |
+
is_causal = True if causal_mask is None and q_len > 1 else False
|
515 |
+
|
516 |
+
attn_output = torch.nn.functional.scaled_dot_product_attention(
|
517 |
+
query=query,
|
518 |
+
key=key,
|
519 |
+
value=value,
|
520 |
+
attn_mask=causal_mask,
|
521 |
+
dropout_p=self.attention_dropout.p if self.training else 0.0,
|
522 |
+
is_causal=is_causal,
|
523 |
+
)
|
524 |
+
|
525 |
+
# Reshape outputs
|
526 |
+
attn_output = attn_output.transpose(1, 2).contiguous()
|
527 |
+
attn_output = attn_output.view(bsz, q_len, self.hidden_size)
|
528 |
+
|
529 |
+
attn_output = self.dense(attn_output)
|
530 |
+
|
531 |
+
return attn_output, present, None
|
532 |
+
|
533 |
+
|
534 |
+
def attention_mask_func(attention_scores, ltor_mask):
|
535 |
+
attention_scores.masked_fill_(~ltor_mask, torch.finfo(attention_scores.dtype).min)
|
536 |
+
return attention_scores
|
537 |
+
|
538 |
+
|
539 |
+
# Copied from transformers.models.llama.modeling_llama.LlamaRotaryEmbedding with Llama->GPTNeoX
|
540 |
+
class GPTNeoXRotaryEmbedding(nn.Module):
|
541 |
+
def __init__(
|
542 |
+
self,
|
543 |
+
dim=None,
|
544 |
+
max_position_embeddings=2048,
|
545 |
+
base=10000,
|
546 |
+
device=None,
|
547 |
+
scaling_factor=1.0,
|
548 |
+
rope_type="default",
|
549 |
+
config: Optional[GPTNeoXConfig] = None,
|
550 |
+
):
|
551 |
+
super().__init__()
|
552 |
+
# TODO (joao): remove the `if` below, only used for BC
|
553 |
+
self.rope_kwargs = {}
|
554 |
+
if config is None:
|
555 |
+
logger.warning_once(
|
556 |
+
"`GPTNeoXRotaryEmbedding` can now be fully parameterized by passing the model config through the "
|
557 |
+
"`config` argument. All other arguments will be removed in v4.46"
|
558 |
+
)
|
559 |
+
self.rope_kwargs = {
|
560 |
+
"rope_type": rope_type,
|
561 |
+
"factor": scaling_factor,
|
562 |
+
"dim": dim,
|
563 |
+
"base": base,
|
564 |
+
"max_position_embeddings": max_position_embeddings,
|
565 |
+
}
|
566 |
+
self.rope_type = rope_type
|
567 |
+
self.max_seq_len_cached = max_position_embeddings
|
568 |
+
self.original_max_seq_len = max_position_embeddings
|
569 |
+
else:
|
570 |
+
# BC: "rope_type" was originally "type"
|
571 |
+
if config.rope_scaling is not None:
|
572 |
+
self.rope_type = config.rope_scaling.get("rope_type", config.rope_scaling.get("type"))
|
573 |
+
else:
|
574 |
+
self.rope_type = "default"
|
575 |
+
self.max_seq_len_cached = config.max_position_embeddings
|
576 |
+
self.original_max_seq_len = config.max_position_embeddings
|
577 |
+
|
578 |
+
self.config = config
|
579 |
+
self.rope_init_fn = ROPE_INIT_FUNCTIONS[self.rope_type]
|
580 |
+
|
581 |
+
inv_freq, self.attention_scaling = self.rope_init_fn(self.config, device, **self.rope_kwargs)
|
582 |
+
self.register_buffer("inv_freq", inv_freq, persistent=False)
|
583 |
+
self.original_inv_freq = self.inv_freq
|
584 |
+
|
585 |
+
def _dynamic_frequency_update(self, position_ids, device):
|
586 |
+
"""
|
587 |
+
dynamic RoPE layers should recompute `inv_freq` in the following situations:
|
588 |
+
1 - growing beyond the cached sequence length (allow scaling)
|
589 |
+
2 - the current sequence length is in the original scale (avoid losing precision with small sequences)
|
590 |
+
"""
|
591 |
+
seq_len = torch.max(position_ids) + 1
|
592 |
+
if seq_len > self.max_seq_len_cached: # growth
|
593 |
+
inv_freq, self.attention_scaling = self.rope_init_fn(
|
594 |
+
self.config, device, seq_len=seq_len, **self.rope_kwargs
|
595 |
+
)
|
596 |
+
self.register_buffer("inv_freq", inv_freq, persistent=False) # TODO joao: may break with compilation
|
597 |
+
self.max_seq_len_cached = seq_len
|
598 |
+
|
599 |
+
if seq_len < self.original_max_seq_len and self.max_seq_len_cached > self.original_max_seq_len: # reset
|
600 |
+
self.register_buffer("inv_freq", self.original_inv_freq, persistent=False)
|
601 |
+
self.max_seq_len_cached = self.original_max_seq_len
|
602 |
+
|
603 |
+
@torch.no_grad()
|
604 |
+
def forward(self, x, position_ids):
|
605 |
+
if "dynamic" in self.rope_type:
|
606 |
+
self._dynamic_frequency_update(position_ids, device=x.device)
|
607 |
+
|
608 |
+
# Core RoPE block
|
609 |
+
inv_freq_expanded = self.inv_freq[None, :, None].float().expand(position_ids.shape[0], -1, 1)
|
610 |
+
position_ids_expanded = position_ids[:, None, :].float()
|
611 |
+
# Force float32 (see https://github.com/huggingface/transformers/pull/29285)
|
612 |
+
device_type = x.device.type
|
613 |
+
device_type = device_type if isinstance(device_type, str) and device_type != "mps" else "cpu"
|
614 |
+
with torch.autocast(device_type=device_type, enabled=False):
|
615 |
+
freqs = (inv_freq_expanded.float() @ position_ids_expanded.float()).transpose(1, 2)
|
616 |
+
emb = torch.cat((freqs, freqs), dim=-1)
|
617 |
+
cos = emb.cos()
|
618 |
+
sin = emb.sin()
|
619 |
+
|
620 |
+
# Advanced RoPE types (e.g. yarn) apply a post-processing scaling factor, equivalent to scaling attention
|
621 |
+
cos = cos * self.attention_scaling
|
622 |
+
sin = sin * self.attention_scaling
|
623 |
+
|
624 |
+
return cos.to(dtype=x.dtype), sin.to(dtype=x.dtype)
|
625 |
+
|
626 |
+
|
627 |
+
# Copied from transformers.models.llama.modeling_llama.LlamaLinearScalingRotaryEmbedding with Llama->GPTNeoX
|
628 |
+
class GPTNeoXLinearScalingRotaryEmbedding(GPTNeoXRotaryEmbedding):
|
629 |
+
"""GPTNeoXRotaryEmbedding extended with linear scaling. Credits to the Reddit user /u/kaiokendev"""
|
630 |
+
|
631 |
+
def __init__(self, *args, **kwargs):
|
632 |
+
logger.warning_once(
|
633 |
+
"`GPTNeoXLinearScalingRotaryEmbedding` is deprecated an will be removed in v4.46. Please use "
|
634 |
+
"`GPTNeoXRotaryEmbedding`, which now also does linear scaling (simply pass the model config to __init__)."
|
635 |
+
)
|
636 |
+
kwargs["rope_type"] = "linear"
|
637 |
+
super().__init__(*args, **kwargs)
|
638 |
+
|
639 |
+
|
640 |
+
# Copied from transformers.models.llama.modeling_llama.LlamaDynamicNTKScalingRotaryEmbedding with Llama->GPTNeoX
|
641 |
+
class GPTNeoXDynamicNTKScalingRotaryEmbedding(GPTNeoXRotaryEmbedding):
|
642 |
+
"""GPTNeoXRotaryEmbedding extended with Dynamic NTK scaling. Credits to the Reddit users /u/bloc97 and /u/emozilla"""
|
643 |
+
|
644 |
+
def __init__(self, *args, **kwargs):
|
645 |
+
logger.warning_once(
|
646 |
+
"`GPTNeoXDynamicNTKScalingRotaryEmbedding` is deprecated an will be removed in v4.46. Please use "
|
647 |
+
"`GPTNeoXRotaryEmbedding`, which now also does dynamic ntk scaling (simply pass the model config to "
|
648 |
+
"__init__)."
|
649 |
+
)
|
650 |
+
kwargs["rope_type"] = "dynamic"
|
651 |
+
super().__init__(*args, **kwargs)
|
652 |
+
|
653 |
+
|
654 |
+
def rotate_half(x):
|
655 |
+
"""Rotates half the hidden dims of the input."""
|
656 |
+
x1 = x[..., : x.shape[-1] // 2]
|
657 |
+
x2 = x[..., x.shape[-1] // 2 :]
|
658 |
+
return torch.cat((-x2, x1), dim=-1)
|
659 |
+
|
660 |
+
|
661 |
+
# Copied from transformers.models.llama.modeling_llama.apply_rotary_pos_emb
|
662 |
+
def apply_rotary_pos_emb(q, k, cos, sin, position_ids=None, unsqueeze_dim=1):
|
663 |
+
"""Applies Rotary Position Embedding to the query and key tensors.
|
664 |
+
|
665 |
+
Args:
|
666 |
+
q (`torch.Tensor`): The query tensor.
|
667 |
+
k (`torch.Tensor`): The key tensor.
|
668 |
+
cos (`torch.Tensor`): The cosine part of the rotary embedding.
|
669 |
+
sin (`torch.Tensor`): The sine part of the rotary embedding.
|
670 |
+
position_ids (`torch.Tensor`, *optional*):
|
671 |
+
Deprecated and unused.
|
672 |
+
unsqueeze_dim (`int`, *optional*, defaults to 1):
|
673 |
+
The 'unsqueeze_dim' argument specifies the dimension along which to unsqueeze cos[position_ids] and
|
674 |
+
sin[position_ids] so that they can be properly broadcasted to the dimensions of q and k. For example, note
|
675 |
+
that cos[position_ids] and sin[position_ids] have the shape [batch_size, seq_len, head_dim]. Then, if q and
|
676 |
+
k have the shape [batch_size, heads, seq_len, head_dim], then setting unsqueeze_dim=1 makes
|
677 |
+
cos[position_ids] and sin[position_ids] broadcastable to the shapes of q and k. Similarly, if q and k have
|
678 |
+
the shape [batch_size, seq_len, heads, head_dim], then set unsqueeze_dim=2.
|
679 |
+
Returns:
|
680 |
+
`tuple(torch.Tensor)` comprising of the query and key tensors rotated using the Rotary Position Embedding.
|
681 |
+
"""
|
682 |
+
cos = cos.unsqueeze(unsqueeze_dim)
|
683 |
+
sin = sin.unsqueeze(unsqueeze_dim)
|
684 |
+
q_embed = (q * cos) + (rotate_half(q) * sin)
|
685 |
+
k_embed = (k * cos) + (rotate_half(k) * sin)
|
686 |
+
return q_embed, k_embed
|
687 |
+
|
688 |
+
|
689 |
+
class GPTNeoXMLP(nn.Module):
|
690 |
+
def __init__(self, config):
|
691 |
+
super().__init__()
|
692 |
+
self.dense_h_to_4h = nn.Linear(config.hidden_size, config.intermediate_size)
|
693 |
+
self.dense_4h_to_h = nn.Linear(config.intermediate_size, config.hidden_size)
|
694 |
+
self.act = ACT2FN[config.hidden_act]
|
695 |
+
|
696 |
+
def forward(self, hidden_states):
|
697 |
+
hidden_states = self.dense_h_to_4h(hidden_states)
|
698 |
+
hidden_states = self.act(hidden_states)
|
699 |
+
hidden_states = self.dense_4h_to_h(hidden_states)
|
700 |
+
return hidden_states
|
701 |
+
|
702 |
+
|
703 |
+
GPT_NEOX_ATTENTION_CLASSES = {
|
704 |
+
"eager": GPTNeoXAttention,
|
705 |
+
"flash_attention_2": GPTNeoXFlashAttention2,
|
706 |
+
"sdpa": GPTNeoXSdpaAttention,
|
707 |
+
}
|
708 |
+
|
709 |
+
|
710 |
+
class GPTNeoXLayer(nn.Module):
|
711 |
+
def __init__(self, config, layer_idx):
|
712 |
+
super().__init__()
|
713 |
+
self.use_parallel_residual = config.use_parallel_residual
|
714 |
+
self.input_layernorm = nn.LayerNorm(config.hidden_size, eps=config.layer_norm_eps)
|
715 |
+
self.post_attention_layernorm = nn.LayerNorm(config.hidden_size, eps=config.layer_norm_eps)
|
716 |
+
self.post_attention_dropout = nn.Dropout(config.hidden_dropout)
|
717 |
+
self.post_mlp_dropout = nn.Dropout(config.hidden_dropout)
|
718 |
+
self.attention = GPT_NEOX_ATTENTION_CLASSES[config._attn_implementation](config, layer_idx)
|
719 |
+
self.mlp = GPTNeoXMLP(config)
|
720 |
+
|
721 |
+
def forward(
|
722 |
+
self,
|
723 |
+
hidden_states: Optional[torch.FloatTensor],
|
724 |
+
attention_mask: Optional[torch.FloatTensor] = None,
|
725 |
+
position_ids: Optional[torch.LongTensor] = None,
|
726 |
+
head_mask: Optional[torch.FloatTensor] = None,
|
727 |
+
use_cache: Optional[bool] = False,
|
728 |
+
layer_past: Optional[Cache] = None,
|
729 |
+
output_attentions: Optional[bool] = False,
|
730 |
+
cache_position: Optional[torch.LongTensor] = None,
|
731 |
+
position_embeddings: Optional[Tuple[torch.Tensor, torch.Tensor]] = None, # will become mandatory in v4.46
|
732 |
+
):
|
733 |
+
attention_layer_outputs = self.attention(
|
734 |
+
self.input_layernorm(hidden_states),
|
735 |
+
attention_mask=attention_mask,
|
736 |
+
position_ids=position_ids,
|
737 |
+
layer_past=layer_past,
|
738 |
+
head_mask=head_mask,
|
739 |
+
use_cache=use_cache,
|
740 |
+
output_attentions=output_attentions,
|
741 |
+
cache_position=cache_position,
|
742 |
+
position_embeddings=position_embeddings,
|
743 |
+
)
|
744 |
+
attn_output = attention_layer_outputs[0] # output_attn: attn_output, present, (attn_weights)
|
745 |
+
attn_output = self.post_attention_dropout(attn_output)
|
746 |
+
outputs = attention_layer_outputs[1:]
|
747 |
+
|
748 |
+
if self.use_parallel_residual:
|
749 |
+
# pseudocode:
|
750 |
+
# x = x + attn(ln1(x)) + mlp(ln2(x))
|
751 |
+
mlp_output = self.mlp(self.post_attention_layernorm(hidden_states))
|
752 |
+
mlp_output = self.post_mlp_dropout(mlp_output)
|
753 |
+
hidden_states = mlp_output + attn_output + hidden_states
|
754 |
+
else:
|
755 |
+
# pseudocode:
|
756 |
+
# x = x + attn(ln1(x))
|
757 |
+
# x = x + mlp(ln2(x))
|
758 |
+
attn_output = attn_output + hidden_states
|
759 |
+
mlp_output = self.mlp(self.post_attention_layernorm(attn_output))
|
760 |
+
mlp_output = self.post_mlp_dropout(mlp_output)
|
761 |
+
hidden_states = mlp_output + attn_output
|
762 |
+
|
763 |
+
if use_cache:
|
764 |
+
outputs = (hidden_states,) + outputs # hidden_states, present, (attn_weights)
|
765 |
+
else:
|
766 |
+
outputs = (hidden_states,) + outputs[1:] # hidden_states, (attn_weights)
|
767 |
+
|
768 |
+
return outputs
|
769 |
+
|
770 |
+
|
771 |
+
GPT_NEOX_START_DOCSTRING = r"""
|
772 |
+
This model is a PyTorch [torch.nn.Module](https://pytorch.org/docs/stable/nn.html#torch.nn.Module) sub-class. Use
|
773 |
+
it as a regular PyTorch Module and refer to the PyTorch documentation for all matter related to general usage and
|
774 |
+
behavior.
|
775 |
+
|
776 |
+
Parameters:
|
777 |
+
config ([`~GPTNeoXConfig`]): Model configuration class with all the parameters of the model.
|
778 |
+
Initializing with a config file does not load the weights associated with the model, only the
|
779 |
+
configuration. Check out the [`~PreTrainedModel.from_pretrained`] method to load the model weights.
|
780 |
+
"""
|
781 |
+
|
782 |
+
GPT_NEOX_INPUTS_DOCSTRING = r"""
|
783 |
+
Args:
|
784 |
+
input_ids (`torch.LongTensor` of shape `({0})`):
|
785 |
+
Indices of input sequence tokens in the vocabulary.
|
786 |
+
|
787 |
+
Indices can be obtained using [`AutoTokenizer`]. See [`PreTrainedTokenizer.encode`] and
|
788 |
+
[`PreTrainedTokenizer.__call__`] for details.
|
789 |
+
|
790 |
+
[What are input IDs?](../glossary#input-ids)
|
791 |
+
attention_mask (`torch.FloatTensor` of shape `({0})`, *optional*):
|
792 |
+
Mask to avoid performing attention on padding token indices. Mask values selected in `[0, 1]`:
|
793 |
+
|
794 |
+
- 1 for tokens that are **not masked**,
|
795 |
+
- 0 for tokens that are **masked**.
|
796 |
+
|
797 |
+
[What are attention masks?](../glossary#attention-mask)
|
798 |
+
position_ids (`torch.LongTensor` of shape `({0})`, *optional*):
|
799 |
+
Indices of positions of each input sequence tokens in the position embeddings. Selected in the range `[0,
|
800 |
+
config.n_positions - 1]`.
|
801 |
+
|
802 |
+
[What are position IDs?](../glossary#position-ids)
|
803 |
+
head_mask (`torch.FloatTensor` of shape `(num_heads,)` or `(num_layers, num_heads)`, *optional*):
|
804 |
+
Mask to nullify selected heads of the self-attention modules. Mask values selected in `[0, 1]`:
|
805 |
+
|
806 |
+
- 1 indicates the head is **not masked**,
|
807 |
+
- 0 indicates the head is **masked**.
|
808 |
+
|
809 |
+
inputs_embeds (`torch.FloatTensor` of shape `({0}, hidden_size)`, *optional*):
|
810 |
+
Optionally, instead of passing `input_ids` you can choose to directly pass an embedded representation. This
|
811 |
+
is useful if you want more control over how to convert *input_ids* indices into associated vectors than the
|
812 |
+
model's internal embedding lookup matrix.
|
813 |
+
past_key_values (`Cache` or `tuple(tuple(torch.FloatTensor))`, *optional*):
|
814 |
+
Pre-computed hidden-states (key and values in the self-attention blocks and in the cross-attention
|
815 |
+
blocks) that can be used to speed up sequential decoding. This typically consists in the `past_key_values`
|
816 |
+
returned by the model at a previous stage of decoding, when `use_cache=True` or `config.use_cache=True`.
|
817 |
+
|
818 |
+
Two formats are allowed:
|
819 |
+
- a [`~cache_utils.Cache`] instance, see our
|
820 |
+
[kv cache guide](https://huggingface.co/docs/transformers/en/kv_cache);
|
821 |
+
- Tuple of `tuple(torch.FloatTensor)` of length `config.n_layers`, with each tuple having 2 tensors of
|
822 |
+
shape `(batch_size, num_heads, sequence_length, embed_size_per_head)`). This is also known as the legacy
|
823 |
+
cache format.
|
824 |
+
|
825 |
+
The model will output the same cache format that is fed as input. If no `past_key_values` are passed, the
|
826 |
+
legacy cache format will be returned.
|
827 |
+
|
828 |
+
If `past_key_values` are used, the user can optionally input only the last `input_ids` (those that don't
|
829 |
+
have their past key value states given to this model) of shape `(batch_size, 1)` instead of all `input_ids`
|
830 |
+
of shape `(batch_size, sequence_length)`.
|
831 |
+
output_attentions (`bool`, *optional*):
|
832 |
+
Whether or not to return the attentions tensors of all attention layers. See `attentions` under returned
|
833 |
+
tensors for more detail.
|
834 |
+
output_hidden_states (`bool`, *optional*):
|
835 |
+
Whether or not to return the hidden states of all layers. See `hidden_states` under returned tensors for
|
836 |
+
more detail.
|
837 |
+
return_dict (`bool`, *optional*):
|
838 |
+
Whether or not to return a [`~file_utils.ModelOutput`] instead of a plain tuple.
|
839 |
+
cache_position (`torch.LongTensor` of shape `(sequence_length)`, *optional*):
|
840 |
+
Indices depicting the position of the input sequence tokens in the sequence. Contrarily to `position_ids`,
|
841 |
+
this tensor is not affected by padding. It is used to update the cache in the correct position and to infer
|
842 |
+
the complete sequence length.
|
843 |
+
"""
|
844 |
+
|
845 |
+
|
846 |
+
@add_start_docstrings(
|
847 |
+
"The bare GPTNeoX Model transformer outputting raw hidden-states without any specific head on top.",
|
848 |
+
GPT_NEOX_START_DOCSTRING,
|
849 |
+
)
|
850 |
+
class GPTNeoXModel(GPTNeoXPreTrainedModel):
|
851 |
+
def __init__(self, config):
|
852 |
+
super().__init__(config)
|
853 |
+
self.config = config
|
854 |
+
|
855 |
+
self.embed_in = nn.Embedding(config.vocab_size, config.hidden_size)
|
856 |
+
self.emb_dropout = nn.Dropout(config.hidden_dropout)
|
857 |
+
self.layers = nn.ModuleList([GPTNeoXLayer(config, i) for i in range(config.num_hidden_layers)])
|
858 |
+
self.final_layer_norm = nn.LayerNorm(config.hidden_size, eps=config.layer_norm_eps)
|
859 |
+
self.rotary_emb = GPTNeoXRotaryEmbedding(config=config)
|
860 |
+
|
861 |
+
self._attn_implementation = config._attn_implementation
|
862 |
+
|
863 |
+
self.gradient_checkpointing = False
|
864 |
+
|
865 |
+
# Initialize weights and apply final processing
|
866 |
+
self.post_init()
|
867 |
+
|
868 |
+
def get_input_embeddings(self):
|
869 |
+
return self.embed_in
|
870 |
+
|
871 |
+
def set_input_embeddings(self, value):
|
872 |
+
self.embed_in = value
|
873 |
+
|
874 |
+
@add_start_docstrings_to_model_forward(GPT_NEOX_INPUTS_DOCSTRING.format("batch_size, sequence_length"))
|
875 |
+
@add_code_sample_docstrings(
|
876 |
+
checkpoint=_CHECKPOINT_FOR_DOC,
|
877 |
+
real_checkpoint=_REAL_CHECKPOINT_FOR_DOC,
|
878 |
+
output_type=BaseModelOutputWithPast,
|
879 |
+
config_class=_CONFIG_FOR_DOC,
|
880 |
+
)
|
881 |
+
def forward(
|
882 |
+
self,
|
883 |
+
input_ids: Optional[torch.LongTensor] = None,
|
884 |
+
attention_mask: Optional[torch.FloatTensor] = None,
|
885 |
+
position_ids: Optional[torch.LongTensor] = None,
|
886 |
+
head_mask: Optional[torch.FloatTensor] = None,
|
887 |
+
inputs_embeds: Optional[torch.FloatTensor] = None,
|
888 |
+
past_key_values: Optional[Union[Cache, Tuple[Tuple[torch.FloatTensor]]]] = None,
|
889 |
+
use_cache: Optional[bool] = None,
|
890 |
+
output_attentions: Optional[bool] = None,
|
891 |
+
output_hidden_states: Optional[bool] = None,
|
892 |
+
return_dict: Optional[bool] = None,
|
893 |
+
cache_position: Optional[torch.LongTensor] = None,
|
894 |
+
) -> Union[Tuple, BaseModelOutputWithPast]:
|
895 |
+
r"""
|
896 |
+
use_cache (`bool`, *optional*):
|
897 |
+
If set to `True`, `past_key_values` key value states are returned and can be used to speed up decoding (see
|
898 |
+
`past_key_values`).
|
899 |
+
"""
|
900 |
+
output_attentions = output_attentions if output_attentions is not None else self.config.output_attentions
|
901 |
+
output_hidden_states = (
|
902 |
+
output_hidden_states if output_hidden_states is not None else self.config.output_hidden_states
|
903 |
+
)
|
904 |
+
return_dict = return_dict if return_dict is not None else self.config.use_return_dict
|
905 |
+
use_cache = use_cache if use_cache is not None else self.config.use_cache
|
906 |
+
|
907 |
+
if (input_ids is None) ^ (inputs_embeds is not None):
|
908 |
+
raise ValueError(
|
909 |
+
"You cannot specify both input_ids and inputs_embeds at the same time, and must specify either one"
|
910 |
+
)
|
911 |
+
|
912 |
+
if self.gradient_checkpointing and self.training:
|
913 |
+
if use_cache:
|
914 |
+
logger.warning_once(
|
915 |
+
"`use_cache=True` is incompatible with gradient checkpointing. Setting `use_cache=False`..."
|
916 |
+
)
|
917 |
+
use_cache = False
|
918 |
+
|
919 |
+
if inputs_embeds is None:
|
920 |
+
inputs_embeds = self.embed_in(input_ids)
|
921 |
+
|
922 |
+
# kept for BC (non `Cache` `past_key_values` inputs)
|
923 |
+
return_legacy_cache = False
|
924 |
+
if use_cache and not isinstance(past_key_values, Cache):
|
925 |
+
return_legacy_cache = True
|
926 |
+
if past_key_values is None:
|
927 |
+
past_key_values = DynamicCache()
|
928 |
+
else:
|
929 |
+
past_key_values = DynamicCache.from_legacy_cache(past_key_values)
|
930 |
+
logger.warning_once(
|
931 |
+
"We detected that you are passing `past_key_values` as a tuple of tuples. This is deprecated and "
|
932 |
+
"will be removed in v4.47. Please convert your cache or use an appropriate `Cache` class "
|
933 |
+
"(https://huggingface.co/docs/transformers/kv_cache#legacy-cache-format)"
|
934 |
+
)
|
935 |
+
|
936 |
+
seq_length = inputs_embeds.shape[1]
|
937 |
+
if cache_position is None:
|
938 |
+
past_seen_tokens = past_key_values.get_seq_length() if past_key_values is not None else 0
|
939 |
+
cache_position = torch.arange(past_seen_tokens, past_seen_tokens + seq_length, device=inputs_embeds.device)
|
940 |
+
|
941 |
+
if position_ids is None:
|
942 |
+
position_ids = cache_position.unsqueeze(0)
|
943 |
+
|
944 |
+
causal_mask = self._update_causal_mask(
|
945 |
+
attention_mask, inputs_embeds, cache_position, past_key_values, output_attentions
|
946 |
+
)
|
947 |
+
|
948 |
+
# Prepare head mask if needed
|
949 |
+
# 1.0 in head_mask indicate we keep the head
|
950 |
+
# attention_probs has shape bsz x n_heads x N x N
|
951 |
+
# input head_mask has shape [num_heads] or [num_hidden_layers x num_heads]
|
952 |
+
# and head_mask is converted to shape [num_hidden_layers x batch x num_heads x seq_length x seq_length]
|
953 |
+
head_mask = self.get_head_mask(head_mask, self.config.num_hidden_layers)
|
954 |
+
hidden_states = self.emb_dropout(inputs_embeds)
|
955 |
+
|
956 |
+
# create position embeddings to be shared across the decoder layers
|
957 |
+
position_embeddings = self.rotary_emb(hidden_states, position_ids)
|
958 |
+
|
959 |
+
next_decoder_cache = None
|
960 |
+
all_attentions = () if output_attentions else None
|
961 |
+
all_hidden_states = () if output_hidden_states else None
|
962 |
+
for i, layer in enumerate(
|
963 |
+
self.layers,
|
964 |
+
):
|
965 |
+
if output_hidden_states:
|
966 |
+
all_hidden_states = all_hidden_states + (hidden_states,)
|
967 |
+
|
968 |
+
if self.gradient_checkpointing and self.training:
|
969 |
+
outputs = self._gradient_checkpointing_func(
|
970 |
+
layer.__call__,
|
971 |
+
hidden_states,
|
972 |
+
causal_mask,
|
973 |
+
position_ids,
|
974 |
+
head_mask[i],
|
975 |
+
use_cache,
|
976 |
+
None,
|
977 |
+
output_attentions,
|
978 |
+
cache_position,
|
979 |
+
position_embeddings,
|
980 |
+
)
|
981 |
+
else:
|
982 |
+
outputs = layer(
|
983 |
+
hidden_states,
|
984 |
+
attention_mask=causal_mask,
|
985 |
+
position_ids=position_ids,
|
986 |
+
head_mask=head_mask[i],
|
987 |
+
layer_past=past_key_values,
|
988 |
+
use_cache=use_cache,
|
989 |
+
output_attentions=output_attentions,
|
990 |
+
cache_position=cache_position,
|
991 |
+
position_embeddings=position_embeddings,
|
992 |
+
)
|
993 |
+
hidden_states = outputs[0]
|
994 |
+
if use_cache is True:
|
995 |
+
next_decoder_cache = outputs[1]
|
996 |
+
if output_attentions:
|
997 |
+
all_attentions = all_attentions + (outputs[2 if use_cache else 1],)
|
998 |
+
|
999 |
+
hidden_states = self.final_layer_norm(hidden_states)
|
1000 |
+
# Add last hidden state
|
1001 |
+
if output_hidden_states:
|
1002 |
+
all_hidden_states = all_hidden_states + (hidden_states,)
|
1003 |
+
|
1004 |
+
next_cache = next_decoder_cache if use_cache else None
|
1005 |
+
if return_legacy_cache:
|
1006 |
+
next_cache = next_cache.to_legacy_cache()
|
1007 |
+
|
1008 |
+
if not return_dict:
|
1009 |
+
return tuple(v for v in [hidden_states, next_cache, all_hidden_states, all_attentions] if v is not None)
|
1010 |
+
|
1011 |
+
return BaseModelOutputWithPast(
|
1012 |
+
last_hidden_state=hidden_states,
|
1013 |
+
past_key_values=next_cache,
|
1014 |
+
hidden_states=all_hidden_states,
|
1015 |
+
attentions=all_attentions,
|
1016 |
+
)
|
1017 |
+
|
1018 |
+
# Copied from transformers.models.llama.modeling_llama.LlamaModel._update_causal_mask
|
1019 |
+
def _update_causal_mask(
|
1020 |
+
self,
|
1021 |
+
attention_mask: torch.Tensor,
|
1022 |
+
input_tensor: torch.Tensor,
|
1023 |
+
cache_position: torch.Tensor,
|
1024 |
+
past_key_values: Cache,
|
1025 |
+
output_attentions: bool,
|
1026 |
+
):
|
1027 |
+
if self.config._attn_implementation == "flash_attention_2":
|
1028 |
+
if attention_mask is not None and 0.0 in attention_mask:
|
1029 |
+
return attention_mask
|
1030 |
+
return None
|
1031 |
+
|
1032 |
+
# For SDPA, when possible, we will rely on its `is_causal` argument instead of its `attn_mask` argument, in
|
1033 |
+
# order to dispatch on Flash Attention 2. This feature is not compatible with static cache, as SDPA will fail
|
1034 |
+
# to infer the attention mask.
|
1035 |
+
past_seen_tokens = past_key_values.get_seq_length() if past_key_values is not None else 0
|
1036 |
+
using_static_cache = isinstance(past_key_values, StaticCache)
|
1037 |
+
|
1038 |
+
# When output attentions is True, sdpa implementation's forward method calls the eager implementation's forward
|
1039 |
+
if self.config._attn_implementation == "sdpa" and not using_static_cache and not output_attentions:
|
1040 |
+
if AttentionMaskConverter._ignore_causal_mask_sdpa(
|
1041 |
+
attention_mask,
|
1042 |
+
inputs_embeds=input_tensor,
|
1043 |
+
past_key_values_length=past_seen_tokens,
|
1044 |
+
is_training=self.training,
|
1045 |
+
):
|
1046 |
+
return None
|
1047 |
+
|
1048 |
+
dtype, device = input_tensor.dtype, input_tensor.device
|
1049 |
+
min_dtype = torch.finfo(dtype).min
|
1050 |
+
sequence_length = input_tensor.shape[1]
|
1051 |
+
if using_static_cache:
|
1052 |
+
target_length = past_key_values.get_max_length()
|
1053 |
+
else:
|
1054 |
+
target_length = (
|
1055 |
+
attention_mask.shape[-1]
|
1056 |
+
if isinstance(attention_mask, torch.Tensor)
|
1057 |
+
else past_seen_tokens + sequence_length + 1
|
1058 |
+
)
|
1059 |
+
|
1060 |
+
# In case the provided `attention` mask is 2D, we generate a causal mask here (4D).
|
1061 |
+
causal_mask = _prepare_4d_causal_attention_mask_with_cache_position(
|
1062 |
+
attention_mask,
|
1063 |
+
sequence_length=sequence_length,
|
1064 |
+
target_length=target_length,
|
1065 |
+
dtype=dtype,
|
1066 |
+
device=device,
|
1067 |
+
min_dtype=min_dtype,
|
1068 |
+
cache_position=cache_position,
|
1069 |
+
batch_size=input_tensor.shape[0],
|
1070 |
+
)
|
1071 |
+
|
1072 |
+
if (
|
1073 |
+
self.config._attn_implementation == "sdpa"
|
1074 |
+
and attention_mask is not None
|
1075 |
+
and attention_mask.device.type == "cuda"
|
1076 |
+
and not output_attentions
|
1077 |
+
):
|
1078 |
+
# Attend to all tokens in fully masked rows in the causal_mask, for example the relevant first rows when
|
1079 |
+
# using left padding. This is required by F.scaled_dot_product_attention memory-efficient attention path.
|
1080 |
+
# Details: https://github.com/pytorch/pytorch/issues/110213
|
1081 |
+
causal_mask = AttentionMaskConverter._unmask_unattended(causal_mask, min_dtype)
|
1082 |
+
|
1083 |
+
return causal_mask
|
1084 |
+
|
1085 |
+
|
1086 |
+
@add_start_docstrings(
|
1087 |
+
"""GPTNeoX Model with a `language modeling` head on top for CLM fine-tuning.""", GPT_NEOX_START_DOCSTRING
|
1088 |
+
)
|
1089 |
+
class GPTNeoXForCausalLM(GPTNeoXPreTrainedModel, GenerationMixin):
|
1090 |
+
_tied_weights_keys = ["embed_out.weight"]
|
1091 |
+
|
1092 |
+
def __init__(self, config):
|
1093 |
+
super().__init__(config)
|
1094 |
+
|
1095 |
+
self.gpt_neox = GPTNeoXModel(config)
|
1096 |
+
self.embed_out = nn.Linear(config.hidden_size, config.vocab_size, bias=False)
|
1097 |
+
|
1098 |
+
# Initialize weights and apply final processing
|
1099 |
+
self.post_init()
|
1100 |
+
|
1101 |
+
def get_output_embeddings(self):
|
1102 |
+
return self.embed_out
|
1103 |
+
|
1104 |
+
def set_output_embeddings(self, new_embeddings):
|
1105 |
+
self.embed_out = new_embeddings
|
1106 |
+
|
1107 |
+
@add_start_docstrings_to_model_forward(GPT_NEOX_INPUTS_DOCSTRING.format("batch_size, sequence_length"))
|
1108 |
+
@replace_return_docstrings(output_type=CausalLMOutputWithPast, config_class=_CONFIG_FOR_DOC)
|
1109 |
+
def forward(
|
1110 |
+
self,
|
1111 |
+
input_ids: Optional[torch.LongTensor] = None,
|
1112 |
+
attention_mask: Optional[torch.FloatTensor] = None,
|
1113 |
+
position_ids: Optional[torch.LongTensor] = None,
|
1114 |
+
inputs_embeds: Optional[torch.FloatTensor] = None,
|
1115 |
+
head_mask: Optional[torch.FloatTensor] = None,
|
1116 |
+
past_key_values: Optional[Union[Cache, Tuple[Tuple[torch.FloatTensor]]]] = None,
|
1117 |
+
labels: Optional[torch.LongTensor] = None,
|
1118 |
+
use_cache: Optional[bool] = None,
|
1119 |
+
output_attentions: Optional[bool] = None,
|
1120 |
+
output_hidden_states: Optional[bool] = None,
|
1121 |
+
return_dict: Optional[bool] = None,
|
1122 |
+
cache_position: Optional[torch.LongTensor] = None,
|
1123 |
+
) -> Union[Tuple, CausalLMOutputWithPast]:
|
1124 |
+
r"""
|
1125 |
+
labels (`torch.LongTensor` of shape `(batch_size, sequence_length)`, *optional*):
|
1126 |
+
Labels for computing the left-to-right language modeling loss (next word prediction). Indices should be in
|
1127 |
+
`[-100, 0, ..., config.vocab_size]` (see `input_ids` docstring) Tokens with indices set to `-100` are
|
1128 |
+
ignored (masked), the loss is only computed for the tokens with labels n `[0, ..., config.vocab_size]`.
|
1129 |
+
use_cache (`bool`, *optional*):
|
1130 |
+
If set to `True`, `past_key_values` key value states are returned and can be used to speed up decoding (see
|
1131 |
+
`past_key_values`).
|
1132 |
+
|
1133 |
+
Returns:
|
1134 |
+
|
1135 |
+
Example:
|
1136 |
+
|
1137 |
+
```python
|
1138 |
+
>>> from transformers import AutoTokenizer, GPTNeoXForCausalLM, GPTNeoXConfig
|
1139 |
+
>>> import torch
|
1140 |
+
|
1141 |
+
>>> tokenizer = AutoTokenizer.from_pretrained("EleutherAI/gpt-neox-20b")
|
1142 |
+
>>> config = GPTNeoXConfig.from_pretrained("EleutherAI/gpt-neox-20b")
|
1143 |
+
>>> config.is_decoder = True
|
1144 |
+
>>> model = GPTNeoXForCausalLM.from_pretrained("EleutherAI/gpt-neox-20b", config=config)
|
1145 |
+
|
1146 |
+
>>> inputs = tokenizer("Hello, my dog is cute", return_tensors="pt")
|
1147 |
+
>>> outputs = model(**inputs)
|
1148 |
+
|
1149 |
+
>>> prediction_logits = outputs.logits
|
1150 |
+
```"""
|
1151 |
+
return_dict = return_dict if return_dict is not None else self.config.use_return_dict
|
1152 |
+
|
1153 |
+
outputs = self.gpt_neox(
|
1154 |
+
input_ids,
|
1155 |
+
attention_mask=attention_mask,
|
1156 |
+
position_ids=position_ids,
|
1157 |
+
head_mask=head_mask,
|
1158 |
+
inputs_embeds=inputs_embeds,
|
1159 |
+
past_key_values=past_key_values,
|
1160 |
+
use_cache=use_cache,
|
1161 |
+
output_attentions=output_attentions,
|
1162 |
+
output_hidden_states=output_hidden_states,
|
1163 |
+
return_dict=return_dict,
|
1164 |
+
cache_position=cache_position,
|
1165 |
+
)
|
1166 |
+
|
1167 |
+
hidden_states = outputs[0]
|
1168 |
+
lm_logits = self.embed_out(hidden_states)
|
1169 |
+
|
1170 |
+
lm_loss = None
|
1171 |
+
if labels is not None:
|
1172 |
+
# move labels to correct device to enable model parallelism
|
1173 |
+
labels = labels.to(lm_logits.device)
|
1174 |
+
# we are doing next-token prediction; shift prediction scores and input ids by one
|
1175 |
+
shift_logits = lm_logits[:, :-1, :].contiguous()
|
1176 |
+
labels = labels[:, 1:].contiguous()
|
1177 |
+
loss_fct = CrossEntropyLoss()
|
1178 |
+
lm_loss = loss_fct(shift_logits.view(-1, shift_logits.size(-1)), labels.view(-1))
|
1179 |
+
|
1180 |
+
if not return_dict:
|
1181 |
+
output = (lm_logits,) + outputs[1:]
|
1182 |
+
return ((lm_loss,) + output) if lm_loss is not None else output
|
1183 |
+
|
1184 |
+
return CausalLMOutputWithPast(
|
1185 |
+
loss=lm_loss,
|
1186 |
+
logits=lm_logits,
|
1187 |
+
past_key_values=outputs.past_key_values,
|
1188 |
+
hidden_states=outputs.hidden_states,
|
1189 |
+
attentions=outputs.attentions,
|
1190 |
+
)
|
1191 |
+
|
1192 |
+
# can't be copied from llama, gpt-neox has embed_out and not lm_head
|
1193 |
+
def prepare_inputs_for_generation(
|
1194 |
+
self,
|
1195 |
+
input_ids,
|
1196 |
+
past_key_values=None,
|
1197 |
+
attention_mask=None,
|
1198 |
+
inputs_embeds=None,
|
1199 |
+
cache_position=None,
|
1200 |
+
position_ids=None,
|
1201 |
+
use_cache=True,
|
1202 |
+
**kwargs,
|
1203 |
+
):
|
1204 |
+
# If we have cache: let's slice `input_ids` through `cache_position`, to keep only the unprocessed tokens
|
1205 |
+
# Exception 1: when passing input_embeds, input_ids may be missing entries
|
1206 |
+
# Exception 2: some generation methods do special slicing of input_ids, so we don't need to do it here
|
1207 |
+
if past_key_values is not None:
|
1208 |
+
if inputs_embeds is not None: # Exception 1
|
1209 |
+
input_ids = input_ids[:, -cache_position.shape[0] :]
|
1210 |
+
elif input_ids.shape[1] != cache_position.shape[0]: # Default case (the "else", a no op, is Exception 2)
|
1211 |
+
input_ids = input_ids[:, cache_position]
|
1212 |
+
|
1213 |
+
if attention_mask is not None and position_ids is None:
|
1214 |
+
# create position_ids on the fly for batch generation
|
1215 |
+
position_ids = attention_mask.long().cumsum(-1) - 1
|
1216 |
+
position_ids.masked_fill_(attention_mask == 0, 1)
|
1217 |
+
if past_key_values:
|
1218 |
+
position_ids = position_ids[:, -input_ids.shape[1] :]
|
1219 |
+
|
1220 |
+
# This `clone` call is needed to avoid recapturing cuda graphs with `torch.compile`'s `mode="reduce-overhead`, as otherwise the input `position_ids` would have various stride during the decoding. Here, simply using `.contiguous()` is not sufficient as in the batch size = 1 case, `position_ids` is already contiguous but with varying stride which retriggers a capture.
|
1221 |
+
position_ids = position_ids.clone(memory_format=torch.contiguous_format)
|
1222 |
+
|
1223 |
+
# if `inputs_embeds` are passed, we only want to use them in the 1st generation step
|
1224 |
+
if inputs_embeds is not None and cache_position[0] == 0:
|
1225 |
+
model_inputs = {"inputs_embeds": inputs_embeds, "input_ids": None}
|
1226 |
+
else:
|
1227 |
+
# The clone here is for the same reason as for `position_ids`.
|
1228 |
+
model_inputs = {"input_ids": input_ids.clone(memory_format=torch.contiguous_format), "inputs_embeds": None}
|
1229 |
+
|
1230 |
+
if isinstance(past_key_values, StaticCache) and attention_mask.ndim == 2:
|
1231 |
+
if model_inputs["inputs_embeds"] is not None:
|
1232 |
+
batch_size, sequence_length, _ = model_inputs["inputs_embeds"].shape
|
1233 |
+
device = model_inputs["inputs_embeds"].device
|
1234 |
+
else:
|
1235 |
+
batch_size, sequence_length = model_inputs["input_ids"].shape
|
1236 |
+
device = model_inputs["input_ids"].device
|
1237 |
+
|
1238 |
+
dtype = self.embed_out.weight.dtype
|
1239 |
+
min_dtype = torch.finfo(dtype).min
|
1240 |
+
|
1241 |
+
attention_mask = _prepare_4d_causal_attention_mask_with_cache_position(
|
1242 |
+
attention_mask,
|
1243 |
+
sequence_length=sequence_length,
|
1244 |
+
target_length=past_key_values.get_max_length(),
|
1245 |
+
dtype=dtype,
|
1246 |
+
device=device,
|
1247 |
+
min_dtype=min_dtype,
|
1248 |
+
cache_position=cache_position,
|
1249 |
+
batch_size=batch_size,
|
1250 |
+
)
|
1251 |
+
|
1252 |
+
model_inputs.update(
|
1253 |
+
{
|
1254 |
+
"position_ids": position_ids,
|
1255 |
+
"cache_position": cache_position,
|
1256 |
+
"past_key_values": past_key_values,
|
1257 |
+
"use_cache": use_cache,
|
1258 |
+
"attention_mask": attention_mask,
|
1259 |
+
}
|
1260 |
+
)
|
1261 |
+
return model_inputs
|
1262 |
+
|
1263 |
+
def _reorder_cache(self, past_key_values, beam_idx):
|
1264 |
+
reordered_past = ()
|
1265 |
+
for layer_past in past_key_values:
|
1266 |
+
reordered_past += (
|
1267 |
+
tuple(past_state.index_select(0, beam_idx.to(past_state.device)) for past_state in layer_past[:2])
|
1268 |
+
+ layer_past[2:],
|
1269 |
+
)
|
1270 |
+
return reordered_past
|
1271 |
+
|
1272 |
+
|
1273 |
+
@add_start_docstrings(
|
1274 |
+
"""
|
1275 |
+
The GPTNeoX Model transformer with a sequence classification head on top (linear layer).
|
1276 |
+
|
1277 |
+
[`GPTNeoXForSequenceClassification`] uses the last token in order to do the classification, as other causal models
|
1278 |
+
(e.g. GPT-1) do.
|
1279 |
+
|
1280 |
+
Since it does classification on the last token, it requires to know the position of the last token. If a
|
1281 |
+
`pad_token_id` is defined in the configuration, it finds the last token that is not a padding token in each row. If
|
1282 |
+
no `pad_token_id` is defined, it simply takes the last value in each row of the batch. Since it cannot guess the
|
1283 |
+
padding tokens when `inputs_embeds` are passed instead of `input_ids`, it does the same (take the last value in
|
1284 |
+
each row of the batch).
|
1285 |
+
""",
|
1286 |
+
GPT_NEOX_START_DOCSTRING,
|
1287 |
+
)
|
1288 |
+
class GPTNeoXForSequenceClassification(GPTNeoXPreTrainedModel):
|
1289 |
+
def __init__(self, config):
|
1290 |
+
super().__init__(config)
|
1291 |
+
self.num_labels = config.num_labels
|
1292 |
+
self.gpt_neox = GPTNeoXModel(config)
|
1293 |
+
self.score = nn.Linear(config.hidden_size, self.num_labels, bias=False)
|
1294 |
+
|
1295 |
+
# Initialize weights and apply final processing
|
1296 |
+
self.post_init()
|
1297 |
+
|
1298 |
+
@add_start_docstrings_to_model_forward(GPT_NEOX_INPUTS_DOCSTRING)
|
1299 |
+
@add_code_sample_docstrings(
|
1300 |
+
checkpoint=_CHECKPOINT_FOR_DOC,
|
1301 |
+
output_type=SequenceClassifierOutputWithPast,
|
1302 |
+
config_class=_CONFIG_FOR_DOC,
|
1303 |
+
)
|
1304 |
+
def forward(
|
1305 |
+
self,
|
1306 |
+
input_ids: Optional[torch.LongTensor] = None,
|
1307 |
+
attention_mask: Optional[torch.FloatTensor] = None,
|
1308 |
+
position_ids: Optional[torch.LongTensor] = None,
|
1309 |
+
inputs_embeds: Optional[torch.FloatTensor] = None,
|
1310 |
+
head_mask: Optional[torch.FloatTensor] = None,
|
1311 |
+
past_key_values: Optional[Union[Cache, Tuple[Tuple[torch.FloatTensor]]]] = None,
|
1312 |
+
labels: Optional[torch.LongTensor] = None,
|
1313 |
+
use_cache: Optional[bool] = None,
|
1314 |
+
output_attentions: Optional[bool] = None,
|
1315 |
+
output_hidden_states: Optional[bool] = None,
|
1316 |
+
return_dict: Optional[bool] = None,
|
1317 |
+
) -> Union[Tuple[torch.Tensor], SequenceClassifierOutputWithPast]:
|
1318 |
+
r"""
|
1319 |
+
labels (`torch.LongTensor` of shape `(batch_size,)`, *optional*):
|
1320 |
+
Labels for computing the sequence classification/regression loss. Indices should be in `[0, ...,
|
1321 |
+
config.num_labels - 1]`. If `config.num_labels == 1` a regression loss is computed (Mean-Square loss), If
|
1322 |
+
`config.num_labels > 1` a classification loss is computed (Cross-Entropy).
|
1323 |
+
"""
|
1324 |
+
return_dict = return_dict if return_dict is not None else self.config.use_return_dict
|
1325 |
+
|
1326 |
+
outputs = self.gpt_neox(
|
1327 |
+
input_ids,
|
1328 |
+
attention_mask=attention_mask,
|
1329 |
+
position_ids=position_ids,
|
1330 |
+
head_mask=head_mask,
|
1331 |
+
inputs_embeds=inputs_embeds,
|
1332 |
+
past_key_values=past_key_values,
|
1333 |
+
use_cache=use_cache,
|
1334 |
+
output_attentions=output_attentions,
|
1335 |
+
output_hidden_states=output_hidden_states,
|
1336 |
+
return_dict=return_dict,
|
1337 |
+
)
|
1338 |
+
hidden_states = outputs[0]
|
1339 |
+
logits = self.score(hidden_states)
|
1340 |
+
|
1341 |
+
if input_ids is not None:
|
1342 |
+
batch_size, sequence_length = input_ids.shape[:2]
|
1343 |
+
else:
|
1344 |
+
batch_size, sequence_length = inputs_embeds.shape[:2]
|
1345 |
+
|
1346 |
+
if self.config.pad_token_id is None and batch_size != 1:
|
1347 |
+
raise ValueError("Cannot handle batch sizes > 1 if no padding token is defined.")
|
1348 |
+
if self.config.pad_token_id is None:
|
1349 |
+
sequence_lengths = -1
|
1350 |
+
else:
|
1351 |
+
if input_ids is not None:
|
1352 |
+
# if no pad token found, use modulo instead of reverse indexing for ONNX compatibility
|
1353 |
+
sequence_lengths = torch.eq(input_ids, self.config.pad_token_id).int().argmax(-1) - 1
|
1354 |
+
sequence_lengths = sequence_lengths % input_ids.shape[-1]
|
1355 |
+
sequence_lengths = sequence_lengths.to(logits.device)
|
1356 |
+
else:
|
1357 |
+
sequence_lengths = -1
|
1358 |
+
logger.warning_once(
|
1359 |
+
f"{self.__class__.__name__} will not detect padding tokens in `inputs_embeds`. Results may be "
|
1360 |
+
"unexpected if using padding tokens in conjunction with `inputs_embeds.`"
|
1361 |
+
)
|
1362 |
+
|
1363 |
+
pooled_logits = logits[torch.arange(batch_size, device=logits.device), sequence_lengths]
|
1364 |
+
|
1365 |
+
loss = None
|
1366 |
+
if labels is not None:
|
1367 |
+
labels = labels.to(logits.device)
|
1368 |
+
if self.config.problem_type is None:
|
1369 |
+
if self.num_labels == 1:
|
1370 |
+
self.config.problem_type = "regression"
|
1371 |
+
elif self.num_labels > 1 and (labels.dtype == torch.long or labels.dtype == torch.int):
|
1372 |
+
self.config.problem_type = "single_label_classification"
|
1373 |
+
else:
|
1374 |
+
self.config.problem_type = "multi_label_classification"
|
1375 |
+
|
1376 |
+
if self.config.problem_type == "regression":
|
1377 |
+
loss_fct = MSELoss()
|
1378 |
+
if self.num_labels == 1:
|
1379 |
+
loss = loss_fct(pooled_logits.squeeze(), labels.squeeze())
|
1380 |
+
else:
|
1381 |
+
loss = loss_fct(pooled_logits, labels)
|
1382 |
+
elif self.config.problem_type == "single_label_classification":
|
1383 |
+
loss_fct = CrossEntropyLoss()
|
1384 |
+
loss = loss_fct(pooled_logits.view(-1, self.num_labels), labels.view(-1))
|
1385 |
+
elif self.config.problem_type == "multi_label_classification":
|
1386 |
+
loss_fct = BCEWithLogitsLoss()
|
1387 |
+
loss = loss_fct(pooled_logits, labels)
|
1388 |
+
if not return_dict:
|
1389 |
+
output = (pooled_logits,) + outputs[1:]
|
1390 |
+
return ((loss,) + output) if loss is not None else output
|
1391 |
+
|
1392 |
+
return SequenceClassifierOutputWithPast(
|
1393 |
+
loss=loss,
|
1394 |
+
logits=pooled_logits,
|
1395 |
+
past_key_values=outputs.past_key_values,
|
1396 |
+
hidden_states=outputs.hidden_states,
|
1397 |
+
attentions=outputs.attentions,
|
1398 |
+
)
|
1399 |
+
|
1400 |
+
|
1401 |
+
class GPTNeoXForTokenClassification(GPTNeoXPreTrainedModel):
|
1402 |
+
def __init__(self, config):
|
1403 |
+
super().__init__(config)
|
1404 |
+
self.num_labels = config.num_labels
|
1405 |
+
|
1406 |
+
self.gpt_neox = GPTNeoXModel(config)
|
1407 |
+
self.dropout = nn.Dropout(config.classifier_dropout)
|
1408 |
+
self.classifier = nn.Linear(config.hidden_size, config.num_labels)
|
1409 |
+
|
1410 |
+
# Initialize weights and apply final processing
|
1411 |
+
self.post_init()
|
1412 |
+
|
1413 |
+
@add_start_docstrings_to_model_forward(GPT_NEOX_INPUTS_DOCSTRING)
|
1414 |
+
@add_code_sample_docstrings(
|
1415 |
+
checkpoint="LarsJonasson/pythia-410m-deduped-sft-swedish",
|
1416 |
+
output_type=TokenClassifierOutput,
|
1417 |
+
config_class=_CONFIG_FOR_DOC,
|
1418 |
+
expected_loss=0.25,
|
1419 |
+
)
|
1420 |
+
def forward(
|
1421 |
+
self,
|
1422 |
+
input_ids: Optional[torch.LongTensor] = None,
|
1423 |
+
past_key_values: Optional[Union[Cache, Tuple[Tuple[torch.Tensor]]]] = None,
|
1424 |
+
attention_mask: Optional[torch.FloatTensor] = None,
|
1425 |
+
token_type_ids: Optional[torch.LongTensor] = None,
|
1426 |
+
position_ids: Optional[torch.LongTensor] = None,
|
1427 |
+
head_mask: Optional[torch.FloatTensor] = None,
|
1428 |
+
inputs_embeds: Optional[torch.FloatTensor] = None,
|
1429 |
+
labels: Optional[torch.LongTensor] = None,
|
1430 |
+
use_cache: Optional[bool] = None,
|
1431 |
+
output_attentions: Optional[bool] = None,
|
1432 |
+
output_hidden_states: Optional[bool] = None,
|
1433 |
+
return_dict: Optional[bool] = None,
|
1434 |
+
) -> Union[Tuple, TokenClassifierOutput]:
|
1435 |
+
r"""
|
1436 |
+
labels (`torch.LongTensor` of shape `(batch_size, sequence_length)`, *optional*):
|
1437 |
+
Labels for computing the sequence classification/regression loss. Indices should be in `[0, ...,
|
1438 |
+
config.num_labels - 1]`. If `config.num_labels == 1` a regression loss is computed (Mean-Square loss), If
|
1439 |
+
`config.num_labels > 1` a classification loss is computed (Cross-Entropy).
|
1440 |
+
"""
|
1441 |
+
return_dict = return_dict if return_dict is not None else self.config.use_return_dict
|
1442 |
+
|
1443 |
+
outputs = self.gpt_neox(
|
1444 |
+
input_ids,
|
1445 |
+
past_key_values=past_key_values,
|
1446 |
+
attention_mask=attention_mask,
|
1447 |
+
position_ids=position_ids,
|
1448 |
+
head_mask=head_mask,
|
1449 |
+
inputs_embeds=inputs_embeds,
|
1450 |
+
use_cache=use_cache,
|
1451 |
+
output_attentions=output_attentions,
|
1452 |
+
output_hidden_states=output_hidden_states,
|
1453 |
+
return_dict=return_dict,
|
1454 |
+
)
|
1455 |
+
|
1456 |
+
hidden_states = outputs[0]
|
1457 |
+
hidden_states = self.dropout(hidden_states)
|
1458 |
+
logits = self.classifier(hidden_states)
|
1459 |
+
|
1460 |
+
loss = None
|
1461 |
+
if labels is not None:
|
1462 |
+
labels = labels.to(logits.device)
|
1463 |
+
loss_fct = CrossEntropyLoss()
|
1464 |
+
loss = loss_fct(logits.view(-1, self.num_labels), labels.view(-1))
|
1465 |
+
|
1466 |
+
if not return_dict:
|
1467 |
+
output = (logits,) + outputs[2:]
|
1468 |
+
return ((loss,) + output) if loss is not None else output
|
1469 |
+
|
1470 |
+
return TokenClassifierOutput(
|
1471 |
+
loss=loss,
|
1472 |
+
logits=logits,
|
1473 |
+
hidden_states=outputs.hidden_states,
|
1474 |
+
attentions=outputs.attentions,
|
1475 |
+
)
|
1476 |
+
|
1477 |
+
|
1478 |
+
@add_start_docstrings(
|
1479 |
+
"""
|
1480 |
+
The GPT-NeoX Model transformer with a span classification head on top for extractive question-answering tasks like
|
1481 |
+
SQuAD (a linear layer on top of the hidden-states output to compute `span start logits` and `span end logits`).
|
1482 |
+
""",
|
1483 |
+
GPT_NEOX_START_DOCSTRING,
|
1484 |
+
)
|
1485 |
+
class GPTNeoXForQuestionAnswering(GPTNeoXPreTrainedModel):
|
1486 |
+
def __init__(self, config):
|
1487 |
+
super().__init__(config)
|
1488 |
+
self.num_labels = config.num_labels
|
1489 |
+
self.gpt_neox = GPTNeoXModel(config)
|
1490 |
+
self.qa_outputs = nn.Linear(config.hidden_size, 2)
|
1491 |
+
|
1492 |
+
# Initialize weights and apply final processing
|
1493 |
+
self.post_init()
|
1494 |
+
|
1495 |
+
@add_start_docstrings_to_model_forward(GPT_NEOX_INPUTS_DOCSTRING.format("batch_size, sequence_length"))
|
1496 |
+
@add_code_sample_docstrings(
|
1497 |
+
checkpoint=_CHECKPOINT_FOR_DOC,
|
1498 |
+
output_type=QuestionAnsweringModelOutput,
|
1499 |
+
config_class=_CONFIG_FOR_DOC,
|
1500 |
+
real_checkpoint=_REAL_CHECKPOINT_FOR_DOC,
|
1501 |
+
)
|
1502 |
+
def forward(
|
1503 |
+
self,
|
1504 |
+
input_ids: Optional[torch.LongTensor] = None,
|
1505 |
+
attention_mask: Optional[torch.FloatTensor] = None,
|
1506 |
+
token_type_ids: Optional[torch.LongTensor] = None,
|
1507 |
+
position_ids: Optional[torch.LongTensor] = None,
|
1508 |
+
head_mask: Optional[torch.FloatTensor] = None,
|
1509 |
+
inputs_embeds: Optional[torch.FloatTensor] = None,
|
1510 |
+
start_positions: Optional[torch.LongTensor] = None,
|
1511 |
+
end_positions: Optional[torch.LongTensor] = None,
|
1512 |
+
output_attentions: Optional[bool] = None,
|
1513 |
+
output_hidden_states: Optional[bool] = None,
|
1514 |
+
return_dict: Optional[bool] = None,
|
1515 |
+
) -> Union[Tuple, QuestionAnsweringModelOutput]:
|
1516 |
+
r"""
|
1517 |
+
start_positions (`torch.LongTensor` of shape `(batch_size,)`, *optional*):
|
1518 |
+
Labels for position (index) of the start of the labelled span for computing the token classification loss.
|
1519 |
+
Positions are clamped to the length of the sequence (`sequence_length`). Position outside of the sequence
|
1520 |
+
are not taken into account for computing the loss.
|
1521 |
+
end_positions (`torch.LongTensor` of shape `(batch_size,)`, *optional*):
|
1522 |
+
Labels for position (index) of the end of the labelled span for computing the token classification loss.
|
1523 |
+
Positions are clamped to the length of the sequence (`sequence_length`). Position outside of the sequence
|
1524 |
+
are not taken into account for computing the loss.
|
1525 |
+
"""
|
1526 |
+
return_dict = return_dict if return_dict is not None else self.config.use_return_dict
|
1527 |
+
|
1528 |
+
outputs = self.gpt_neox(
|
1529 |
+
input_ids,
|
1530 |
+
attention_mask=attention_mask,
|
1531 |
+
position_ids=position_ids,
|
1532 |
+
head_mask=head_mask,
|
1533 |
+
inputs_embeds=inputs_embeds,
|
1534 |
+
output_attentions=output_attentions,
|
1535 |
+
output_hidden_states=output_hidden_states,
|
1536 |
+
return_dict=return_dict,
|
1537 |
+
)
|
1538 |
+
|
1539 |
+
sequence_output = outputs[0]
|
1540 |
+
|
1541 |
+
logits = self.qa_outputs(sequence_output)
|
1542 |
+
start_logits, end_logits = logits.split(1, dim=-1)
|
1543 |
+
start_logits = start_logits.squeeze(-1).contiguous()
|
1544 |
+
end_logits = end_logits.squeeze(-1).contiguous()
|
1545 |
+
|
1546 |
+
total_loss = None
|
1547 |
+
if start_positions is not None and end_positions is not None:
|
1548 |
+
# If we are on multi-GPU, split add a dimension
|
1549 |
+
if len(start_positions.size()) > 1:
|
1550 |
+
start_positions = start_positions.squeeze(-1).to(start_logits.device)
|
1551 |
+
if len(end_positions.size()) > 1:
|
1552 |
+
end_positions = end_positions.squeeze(-1).to(end_logits.device)
|
1553 |
+
# sometimes the start/end positions are outside our model inputs, we ignore these terms
|
1554 |
+
ignored_index = start_logits.size(1)
|
1555 |
+
start_positions = start_positions.clamp(0, ignored_index)
|
1556 |
+
end_positions = end_positions.clamp(0, ignored_index)
|
1557 |
+
|
1558 |
+
loss_fct = CrossEntropyLoss(ignore_index=ignored_index)
|
1559 |
+
start_loss = loss_fct(start_logits, start_positions)
|
1560 |
+
end_loss = loss_fct(end_logits, end_positions)
|
1561 |
+
total_loss = (start_loss + end_loss) / 2
|
1562 |
+
|
1563 |
+
if not return_dict:
|
1564 |
+
output = (start_logits, end_logits) + outputs[2:]
|
1565 |
+
return ((total_loss,) + output) if total_loss is not None else output
|
1566 |
+
|
1567 |
+
return QuestionAnsweringModelOutput(
|
1568 |
+
loss=total_loss,
|
1569 |
+
start_logits=start_logits,
|
1570 |
+
end_logits=end_logits,
|
1571 |
+
hidden_states=outputs.hidden_states,
|
1572 |
+
attentions=outputs.attentions,
|
1573 |
+
)
|
special_tokens_map.json
ADDED
@@ -0,0 +1,24 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bos_token": {
|
3 |
+
"content": "<|endoftext|>",
|
4 |
+
"lstrip": false,
|
5 |
+
"normalized": false,
|
6 |
+
"rstrip": false,
|
7 |
+
"single_word": false
|
8 |
+
},
|
9 |
+
"eos_token": {
|
10 |
+
"content": "<|endoftext|>",
|
11 |
+
"lstrip": false,
|
12 |
+
"normalized": false,
|
13 |
+
"rstrip": false,
|
14 |
+
"single_word": false
|
15 |
+
},
|
16 |
+
"pad_token": "<|endoftext|>",
|
17 |
+
"unk_token": {
|
18 |
+
"content": "<|endoftext|>",
|
19 |
+
"lstrip": false,
|
20 |
+
"normalized": false,
|
21 |
+
"rstrip": false,
|
22 |
+
"single_word": false
|
23 |
+
}
|
24 |
+
}
|
tokenizer.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|
tokenizer_config.json
ADDED
@@ -0,0 +1,214 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"add_bos_token": false,
|
3 |
+
"add_eos_token": false,
|
4 |
+
"add_prefix_space": false,
|
5 |
+
"added_tokens_decoder": {
|
6 |
+
"0": {
|
7 |
+
"content": "<|endoftext|>",
|
8 |
+
"lstrip": false,
|
9 |
+
"normalized": false,
|
10 |
+
"rstrip": false,
|
11 |
+
"single_word": false,
|
12 |
+
"special": true
|
13 |
+
},
|
14 |
+
"1": {
|
15 |
+
"content": "<|padding|>",
|
16 |
+
"lstrip": false,
|
17 |
+
"normalized": false,
|
18 |
+
"rstrip": false,
|
19 |
+
"single_word": false,
|
20 |
+
"special": true
|
21 |
+
},
|
22 |
+
"50254": {
|
23 |
+
"content": " ",
|
24 |
+
"lstrip": false,
|
25 |
+
"normalized": true,
|
26 |
+
"rstrip": false,
|
27 |
+
"single_word": false,
|
28 |
+
"special": false
|
29 |
+
},
|
30 |
+
"50255": {
|
31 |
+
"content": " ",
|
32 |
+
"lstrip": false,
|
33 |
+
"normalized": true,
|
34 |
+
"rstrip": false,
|
35 |
+
"single_word": false,
|
36 |
+
"special": false
|
37 |
+
},
|
38 |
+
"50256": {
|
39 |
+
"content": " ",
|
40 |
+
"lstrip": false,
|
41 |
+
"normalized": true,
|
42 |
+
"rstrip": false,
|
43 |
+
"single_word": false,
|
44 |
+
"special": false
|
45 |
+
},
|
46 |
+
"50257": {
|
47 |
+
"content": " ",
|
48 |
+
"lstrip": false,
|
49 |
+
"normalized": true,
|
50 |
+
"rstrip": false,
|
51 |
+
"single_word": false,
|
52 |
+
"special": false
|
53 |
+
},
|
54 |
+
"50258": {
|
55 |
+
"content": " ",
|
56 |
+
"lstrip": false,
|
57 |
+
"normalized": true,
|
58 |
+
"rstrip": false,
|
59 |
+
"single_word": false,
|
60 |
+
"special": false
|
61 |
+
},
|
62 |
+
"50259": {
|
63 |
+
"content": " ",
|
64 |
+
"lstrip": false,
|
65 |
+
"normalized": true,
|
66 |
+
"rstrip": false,
|
67 |
+
"single_word": false,
|
68 |
+
"special": false
|
69 |
+
},
|
70 |
+
"50260": {
|
71 |
+
"content": " ",
|
72 |
+
"lstrip": false,
|
73 |
+
"normalized": true,
|
74 |
+
"rstrip": false,
|
75 |
+
"single_word": false,
|
76 |
+
"special": false
|
77 |
+
},
|
78 |
+
"50261": {
|
79 |
+
"content": " ",
|
80 |
+
"lstrip": false,
|
81 |
+
"normalized": true,
|
82 |
+
"rstrip": false,
|
83 |
+
"single_word": false,
|
84 |
+
"special": false
|
85 |
+
},
|
86 |
+
"50262": {
|
87 |
+
"content": " ",
|
88 |
+
"lstrip": false,
|
89 |
+
"normalized": true,
|
90 |
+
"rstrip": false,
|
91 |
+
"single_word": false,
|
92 |
+
"special": false
|
93 |
+
},
|
94 |
+
"50263": {
|
95 |
+
"content": " ",
|
96 |
+
"lstrip": false,
|
97 |
+
"normalized": true,
|
98 |
+
"rstrip": false,
|
99 |
+
"single_word": false,
|
100 |
+
"special": false
|
101 |
+
},
|
102 |
+
"50264": {
|
103 |
+
"content": " ",
|
104 |
+
"lstrip": false,
|
105 |
+
"normalized": true,
|
106 |
+
"rstrip": false,
|
107 |
+
"single_word": false,
|
108 |
+
"special": false
|
109 |
+
},
|
110 |
+
"50265": {
|
111 |
+
"content": " ",
|
112 |
+
"lstrip": false,
|
113 |
+
"normalized": true,
|
114 |
+
"rstrip": false,
|
115 |
+
"single_word": false,
|
116 |
+
"special": false
|
117 |
+
},
|
118 |
+
"50266": {
|
119 |
+
"content": " ",
|
120 |
+
"lstrip": false,
|
121 |
+
"normalized": true,
|
122 |
+
"rstrip": false,
|
123 |
+
"single_word": false,
|
124 |
+
"special": false
|
125 |
+
},
|
126 |
+
"50267": {
|
127 |
+
"content": " ",
|
128 |
+
"lstrip": false,
|
129 |
+
"normalized": true,
|
130 |
+
"rstrip": false,
|
131 |
+
"single_word": false,
|
132 |
+
"special": false
|
133 |
+
},
|
134 |
+
"50268": {
|
135 |
+
"content": " ",
|
136 |
+
"lstrip": false,
|
137 |
+
"normalized": true,
|
138 |
+
"rstrip": false,
|
139 |
+
"single_word": false,
|
140 |
+
"special": false
|
141 |
+
},
|
142 |
+
"50269": {
|
143 |
+
"content": " ",
|
144 |
+
"lstrip": false,
|
145 |
+
"normalized": true,
|
146 |
+
"rstrip": false,
|
147 |
+
"single_word": false,
|
148 |
+
"special": false
|
149 |
+
},
|
150 |
+
"50270": {
|
151 |
+
"content": " ",
|
152 |
+
"lstrip": false,
|
153 |
+
"normalized": true,
|
154 |
+
"rstrip": false,
|
155 |
+
"single_word": false,
|
156 |
+
"special": false
|
157 |
+
},
|
158 |
+
"50271": {
|
159 |
+
"content": " ",
|
160 |
+
"lstrip": false,
|
161 |
+
"normalized": true,
|
162 |
+
"rstrip": false,
|
163 |
+
"single_word": false,
|
164 |
+
"special": false
|
165 |
+
},
|
166 |
+
"50272": {
|
167 |
+
"content": " ",
|
168 |
+
"lstrip": false,
|
169 |
+
"normalized": true,
|
170 |
+
"rstrip": false,
|
171 |
+
"single_word": false,
|
172 |
+
"special": false
|
173 |
+
},
|
174 |
+
"50273": {
|
175 |
+
"content": " ",
|
176 |
+
"lstrip": false,
|
177 |
+
"normalized": true,
|
178 |
+
"rstrip": false,
|
179 |
+
"single_word": false,
|
180 |
+
"special": false
|
181 |
+
},
|
182 |
+
"50274": {
|
183 |
+
"content": " ",
|
184 |
+
"lstrip": false,
|
185 |
+
"normalized": true,
|
186 |
+
"rstrip": false,
|
187 |
+
"single_word": false,
|
188 |
+
"special": false
|
189 |
+
},
|
190 |
+
"50275": {
|
191 |
+
"content": " ",
|
192 |
+
"lstrip": false,
|
193 |
+
"normalized": true,
|
194 |
+
"rstrip": false,
|
195 |
+
"single_word": false,
|
196 |
+
"special": false
|
197 |
+
},
|
198 |
+
"50276": {
|
199 |
+
"content": " ",
|
200 |
+
"lstrip": false,
|
201 |
+
"normalized": true,
|
202 |
+
"rstrip": false,
|
203 |
+
"single_word": false,
|
204 |
+
"special": false
|
205 |
+
}
|
206 |
+
},
|
207 |
+
"bos_token": "<|endoftext|>",
|
208 |
+
"clean_up_tokenization_spaces": true,
|
209 |
+
"eos_token": "<|endoftext|>",
|
210 |
+
"model_max_length": 1000000000000000019884624838656,
|
211 |
+
"pad_token": "<|endoftext|>",
|
212 |
+
"tokenizer_class": "GPTNeoXTokenizer",
|
213 |
+
"unk_token": "<|endoftext|>"
|
214 |
+
}
|
training_args.bin
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:df3e20252c6ddd1d945187d74a8aa5c9a71242d83de6c4b27e49b618ade3f3f6
|
3 |
+
size 5368
|