autoprogrammer commited on
Commit
e57b87d
·
verified ·
1 Parent(s): 264b40a

Upload checkpoint from checkpoint-57

Browse files
config.json ADDED
@@ -0,0 +1,60 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "DeepseekV2ForCausalLM"
4
+ ],
5
+ "attention_bias": false,
6
+ "attention_dropout": 0.0,
7
+ "auto_map": {
8
+ "AutoConfig": "configuration_deepseek.DeepseekV2Config",
9
+ "AutoModel": "modeling_deepseek.DeepseekV2ForCausalLM",
10
+ "AutoModelForCausalLM": "autoprogrammer/deepseekv2lite_densemixer--modeling_deepseek.DeepseekV2ForCausalLM"
11
+ },
12
+ "aux_loss_alpha": 0.001,
13
+ "bos_token_id": 100000,
14
+ "eos_token_id": 100001,
15
+ "ep_size": 1,
16
+ "first_k_dense_replace": 1,
17
+ "hidden_act": "silu",
18
+ "hidden_size": 2048,
19
+ "initializer_range": 0.02,
20
+ "intermediate_size": 10944,
21
+ "kv_lora_rank": 512,
22
+ "max_position_embeddings": 163840,
23
+ "model_type": "deepseek_v2",
24
+ "moe_intermediate_size": 1408,
25
+ "moe_layer_freq": 1,
26
+ "n_group": 1,
27
+ "n_routed_experts": 64,
28
+ "n_shared_experts": 2,
29
+ "norm_topk_prob": false,
30
+ "num_attention_heads": 16,
31
+ "num_experts_per_tok": 6,
32
+ "num_hidden_layers": 27,
33
+ "num_key_value_heads": 16,
34
+ "pretraining_tp": 1,
35
+ "q_lora_rank": null,
36
+ "qk_nope_head_dim": 128,
37
+ "qk_rope_head_dim": 64,
38
+ "rms_norm_eps": 1e-06,
39
+ "rope_scaling": {
40
+ "beta_fast": 32,
41
+ "beta_slow": 1,
42
+ "factor": 40,
43
+ "mscale": 0.707,
44
+ "mscale_all_dim": 0.707,
45
+ "original_max_position_embeddings": 4096,
46
+ "type": "yarn"
47
+ },
48
+ "rope_theta": 10000,
49
+ "routed_scaling_factor": 1.0,
50
+ "scoring_func": "softmax",
51
+ "seq_aux": true,
52
+ "tie_word_embeddings": false,
53
+ "topk_group": 1,
54
+ "topk_method": "greedy",
55
+ "torch_dtype": "bfloat16",
56
+ "transformers_version": "4.51.3",
57
+ "use_cache": false,
58
+ "v_head_dim": 128,
59
+ "vocab_size": 102400
60
+ }
configuration_deepseek.py ADDED
@@ -0,0 +1,206 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from transformers.configuration_utils import PretrainedConfig
2
+ from transformers.utils import logging
3
+
4
+ logger = logging.get_logger(__name__)
5
+
6
+ DEEPSEEK_PRETRAINED_CONFIG_ARCHIVE_MAP = {}
7
+ class DeepseekV2Config(PretrainedConfig):
8
+ r"""
9
+ This is the configuration class to store the configuration of a [`DeepseekV2Model`]. It is used to instantiate an DeepSeek
10
+ model according to the specified arguments, defining the model architecture. Instantiating a configuration with the
11
+ defaults will yield a similar configuration to that of the DeepSeek-V2.
12
+
13
+ Configuration objects inherit from [`PretrainedConfig`] and can be used to control the model outputs. Read the
14
+ documentation from [`PretrainedConfig`] for more information.
15
+
16
+
17
+ Args:
18
+ vocab_size (`int`, *optional*, defaults to 102400):
19
+ Vocabulary size of the Deep model. Defines the number of different tokens that can be represented by the
20
+ `inputs_ids` passed when calling [`DeepseekV2Model`]
21
+ hidden_size (`int`, *optional*, defaults to 4096):
22
+ Dimension of the hidden representations.
23
+ intermediate_size (`int`, *optional*, defaults to 11008):
24
+ Dimension of the MLP representations.
25
+ moe_intermediate_size (`int`, *optional*, defaults to 1407):
26
+ Dimension of the MoE representations.
27
+ num_hidden_layers (`int`, *optional*, defaults to 32):
28
+ Number of hidden layers in the Transformer decoder.
29
+ num_attention_heads (`int`, *optional*, defaults to 32):
30
+ Number of attention heads for each attention layer in the Transformer decoder.
31
+ n_shared_experts (`int`, *optional*, defaults to None):
32
+ Number of shared experts, None means dense model.
33
+ n_routed_experts (`int`, *optional*, defaults to None):
34
+ Number of routed experts, None means dense model.
35
+ routed_scaling_factor (`float`, *optional*, defaults to 1.0):
36
+ Scaling factor or routed experts.
37
+ topk_method (`str`, *optional*, defaults to `gready`):
38
+ Topk method used in routed gate.
39
+ n_group (`int`, *optional*, defaults to None):
40
+ Number of groups for routed experts.
41
+ topk_group (`int`, *optional*, defaults to None):
42
+ Number of selected groups for each token(for each token, ensuring the selected experts is only within `topk_group` groups).
43
+ num_experts_per_tok (`int`, *optional*, defaults to None):
44
+ Number of selected experts, None means dense model.
45
+ moe_layer_freq (`int`, *optional*, defaults to 1):
46
+ The frequency of the MoE layer: one expert layer for every `moe_layer_freq - 1` dense layers.
47
+ first_k_dense_replace (`int`, *optional*, defaults to 0):
48
+ Number of dense layers in shallow layers(embed->dense->dense->...->dense->moe->moe...->lm_head).
49
+ \--k dense layers--/
50
+ norm_topk_prob (`bool`, *optional*, defaults to False):
51
+ Whether to normalize the weights of the routed experts.
52
+ scoring_func (`str`, *optional*, defaults to 'softmax'):
53
+ Method of computing expert weights.
54
+ aux_loss_alpha (`float`, *optional*, defaults to 0.001):
55
+ Auxiliary loss weight coefficient.
56
+ seq_aux = (`bool`, *optional*, defaults to True):
57
+ Whether to compute the auxiliary loss for each individual sample.
58
+ num_key_value_heads (`int`, *optional*):
59
+ This is the number of key_value heads that should be used to implement Grouped Query Attention. If
60
+ `num_key_value_heads=num_attention_heads`, the model will use Multi Head Attention (MHA), if
61
+ `num_key_value_heads=1 the model will use Multi Query Attention (MQA) otherwise GQA is used. When
62
+ converting a multi-head checkpoint to a GQA checkpoint, each group key and value head should be constructed
63
+ by meanpooling all the original heads within that group. For more details checkout [this
64
+ paper](https://arxiv.org/pdf/2305.13245.pdf). If it is not specified, will default to
65
+ `num_attention_heads`.
66
+ hidden_act (`str` or `function`, *optional*, defaults to `"silu"`):
67
+ The non-linear activation function (function or string) in the decoder.
68
+ max_position_embeddings (`int`, *optional*, defaults to 2048):
69
+ The maximum sequence length that this model might ever be used with.
70
+ initializer_range (`float`, *optional*, defaults to 0.02):
71
+ The standard deviation of the truncated_normal_initializer for initializing all weight matrices.
72
+ rms_norm_eps (`float`, *optional*, defaults to 1e-06):
73
+ The epsilon used by the rms normalization layers.
74
+ use_cache (`bool`, *optional*, defaults to `True`):
75
+ Whether or not the model should return the last key/values attentions (not used by all models). Only
76
+ relevant if `config.is_decoder=True`.
77
+ pad_token_id (`int`, *optional*):
78
+ Padding token id.
79
+ bos_token_id (`int`, *optional*, defaults to 1):
80
+ Beginning of stream token id.
81
+ eos_token_id (`int`, *optional*, defaults to 2):
82
+ End of stream token id.
83
+ pretraining_tp (`int`, *optional*, defaults to 1):
84
+ Experimental feature. Tensor parallelism rank used during pretraining. Please refer to [this
85
+ document](https://huggingface.co/docs/transformers/parallelism) to understand more about it. This value is
86
+ necessary to ensure exact reproducibility of the pretraining results. Please refer to [this
87
+ issue](https://github.com/pytorch/pytorch/issues/76232).
88
+ tie_word_embeddings (`bool`, *optional*, defaults to `False`):
89
+ Whether to tie weight embeddings
90
+ rope_theta (`float`, *optional*, defaults to 10000.0):
91
+ The base period of the RoPE embeddings.
92
+ rope_scaling (`Dict`, *optional*):
93
+ Dictionary containing the scaling configuration for the RoPE embeddings. Currently supports two scaling
94
+ strategies: linear and dynamic. Their scaling factor must be a float greater than 1. The expected format is
95
+ `{"type": strategy name, "factor": scaling factor}`. When using this flag, don't update
96
+ `max_position_embeddings` to the expected new maximum.
97
+ attention_bias (`bool`, defaults to `False`, *optional*, defaults to `False`):
98
+ Whether to use a bias in the query, key, value and output projection layers during self-attention.
99
+ attention_dropout (`float`, *optional*, defaults to 0.0):
100
+ The dropout ratio for the attention probabilities.
101
+
102
+ ```python
103
+ >>> from transformers import DeepseekV2Model, DeepseekV2Config
104
+
105
+ >>> # Initializing a Deepseek-V2 style configuration
106
+ >>> configuration = DeepseekV2Config()
107
+
108
+ >>> # Accessing the model configuration
109
+ >>> configuration = model.config
110
+ ```"""
111
+
112
+ model_type = "deepseek_v2"
113
+ keys_to_ignore_at_inference = ["past_key_values"]
114
+
115
+ def __init__(
116
+ self,
117
+ vocab_size=102400,
118
+ hidden_size=4096,
119
+ intermediate_size=11008,
120
+ moe_intermediate_size = 1407,
121
+ num_hidden_layers=30,
122
+ num_attention_heads=32,
123
+ num_key_value_heads=32,
124
+ n_shared_experts = None,
125
+ n_routed_experts = None,
126
+ ep_size = 1,
127
+ routed_scaling_factor = 1.0,
128
+ kv_lora_rank = 512,
129
+ q_lora_rank = 1536,
130
+ qk_rope_head_dim = 64,
131
+ v_head_dim = 128,
132
+ qk_nope_head_dim = 128,
133
+ topk_method = 'gready',
134
+ n_group = None,
135
+ topk_group = None,
136
+ num_experts_per_tok = None,
137
+ moe_layer_freq = 1,
138
+ first_k_dense_replace = 0,
139
+ norm_topk_prob = False,
140
+ scoring_func = 'softmax',
141
+ aux_loss_alpha = 0.001,
142
+ seq_aux = True,
143
+ hidden_act="silu",
144
+ max_position_embeddings=2048,
145
+ initializer_range=0.02,
146
+ rms_norm_eps=1e-6,
147
+ use_cache=True,
148
+ pad_token_id=None,
149
+ bos_token_id=100000,
150
+ eos_token_id=100001,
151
+ pretraining_tp=1,
152
+ tie_word_embeddings=False,
153
+ rope_theta=10000.0,
154
+ rope_scaling=None,
155
+ attention_bias=False,
156
+ attention_dropout=0.0,
157
+ **kwargs,
158
+ ):
159
+ self.vocab_size = vocab_size
160
+ self.max_position_embeddings = max_position_embeddings
161
+ self.hidden_size = hidden_size
162
+ self.intermediate_size = intermediate_size
163
+ self.moe_intermediate_size = moe_intermediate_size
164
+ self.num_hidden_layers = num_hidden_layers
165
+ self.num_attention_heads = num_attention_heads
166
+ self.n_shared_experts = n_shared_experts
167
+ self.n_routed_experts = n_routed_experts
168
+ self.ep_size = ep_size
169
+ self.routed_scaling_factor = routed_scaling_factor
170
+ self.kv_lora_rank = kv_lora_rank
171
+ self.q_lora_rank = q_lora_rank
172
+ self.qk_rope_head_dim = qk_rope_head_dim
173
+ self.v_head_dim = v_head_dim
174
+ self.qk_nope_head_dim = qk_nope_head_dim
175
+ self.topk_method = topk_method
176
+ self.n_group = n_group
177
+ self.topk_group = topk_group
178
+ self.num_experts_per_tok = num_experts_per_tok
179
+ self.moe_layer_freq = moe_layer_freq
180
+ self.first_k_dense_replace = first_k_dense_replace
181
+ self.norm_topk_prob = norm_topk_prob
182
+ self.scoring_func = scoring_func
183
+ self.aux_loss_alpha = aux_loss_alpha
184
+ self.seq_aux = seq_aux
185
+ # for backward compatibility
186
+ if num_key_value_heads is None:
187
+ num_key_value_heads = num_attention_heads
188
+
189
+ self.num_key_value_heads = num_key_value_heads
190
+ self.hidden_act = hidden_act
191
+ self.initializer_range = initializer_range
192
+ self.rms_norm_eps = rms_norm_eps
193
+ self.pretraining_tp = pretraining_tp
194
+ self.use_cache = use_cache
195
+ self.rope_theta = rope_theta
196
+ self.rope_scaling = rope_scaling
197
+ self.attention_bias = attention_bias
198
+ self.attention_dropout = attention_dropout
199
+
200
+ super().__init__(
201
+ pad_token_id=pad_token_id,
202
+ bos_token_id=bos_token_id,
203
+ eos_token_id=eos_token_id,
204
+ tie_word_embeddings=tie_word_embeddings,
205
+ **kwargs,
206
+ )
generation_config.json ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "_from_model_config": true,
3
+ "bos_token_id": 100000,
4
+ "do_sample": true,
5
+ "eos_token_id": 100001,
6
+ "temperature": 0.3,
7
+ "top_p": 0.95,
8
+ "transformers_version": "4.51.3"
9
+ }
model-00001-of-00007.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:641a60c84ac7aeebee3dd1d59d7a8ca5e288641068644e678765a176fb1493bb
3
+ size 4994763632
model-00002-of-00007.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3b97b56ff2c7454711892bce7d90e6d94c72942ccafeb50db2c16690ba0d66e3
3
+ size 4995044944
model-00003-of-00007.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a9ccfa0f0de9fcb2b32316d60b2ab5c3f58090f2e6fe08c502d06f21951e156a
3
+ size 4996085000
model-00004-of-00007.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c23fccb6d3fa162dbb0065263ca2c1d10575d4ba0c7d253ecabcdbd7f49e3c54
3
+ size 4996085224
model-00005-of-00007.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:18ba62f5f932793966a8e56a326746dbbff2e777facfe646492f7acb4851b630
3
+ size 4996085224
model-00006-of-00007.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3cfa492a8d9e1f16fb006fd7b2842423506820241602a15159cae31abd40a8ee
3
+ size 4995045792
model-00007-of-00007.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9bb2d64a277ff8c4c90c55975f4db95f978bc5709e1c3d52e02eeb44e67969b7
3
+ size 1440515736
model.safetensors.index.json ADDED
The diff for this file is too large to render. See raw diff
 
modeling_deepseek.py ADDED
@@ -0,0 +1,2030 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # coding=utf-8
2
+ # Copyright 2023 DeepSeek-AI and The HuggingFace Inc. team. All rights reserved.
3
+ #
4
+ # This code is based on EleutherAI's GPT-NeoX library and the GPT-NeoX
5
+ # and OPT implementations in this library. It has been modified from its
6
+ # original forms to accommodate minor architectural differences compared
7
+ # to GPT-NeoX and OPT used by the Meta AI team that trained the model.
8
+ #
9
+ # Licensed under the Apache License, Version 2.0 (the "License");
10
+ # you may not use this file except in compliance with the License.
11
+ # You may obtain a copy of the License at
12
+ #
13
+ # http://www.apache.org/licenses/LICENSE-2.0
14
+ #
15
+ # Unless required by applicable law or agreed to in writing, software
16
+ # distributed under the License is distributed on an "AS IS" BASIS,
17
+ # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18
+ # See the License for the specific language governing permissions and
19
+ # limitations under the License.
20
+ """ PyTorch DeepSeek model."""
21
+ import math
22
+ import warnings
23
+ from typing import List, Optional, Tuple, Union
24
+
25
+ import torch
26
+ import torch.nn.functional as F
27
+ import torch.utils.checkpoint
28
+ from torch import nn
29
+ from torch.nn import BCEWithLogitsLoss, CrossEntropyLoss, MSELoss
30
+
31
+ from transformers.activations import ACT2FN
32
+ from transformers.cache_utils import Cache, DynamicCache
33
+ from transformers.modeling_attn_mask_utils import (
34
+ AttentionMaskConverter,
35
+ _prepare_4d_attention_mask,
36
+ _prepare_4d_causal_attention_mask,
37
+ )
38
+ from transformers.modeling_outputs import (
39
+ BaseModelOutputWithPast,
40
+ CausalLMOutputWithPast,
41
+ SequenceClassifierOutputWithPast,
42
+ )
43
+ from transformers.modeling_utils import PreTrainedModel
44
+ from transformers.pytorch_utils import (
45
+ ALL_LAYERNORM_LAYERS,
46
+ is_torch_greater_or_equal_than_1_13,
47
+ )
48
+ from transformers.utils import (
49
+ add_start_docstrings,
50
+ add_start_docstrings_to_model_forward,
51
+ is_flash_attn_2_available,
52
+ is_flash_attn_greater_or_equal_2_10,
53
+ logging,
54
+ replace_return_docstrings,
55
+ )
56
+ from transformers.utils.import_utils import is_torch_fx_available
57
+ from .configuration_deepseek import DeepseekV2Config
58
+ import torch.distributed as dist
59
+ import numpy as np
60
+
61
+ if is_flash_attn_2_available():
62
+ from flash_attn import flash_attn_func, flash_attn_varlen_func
63
+ from flash_attn.bert_padding import index_first_axis, pad_input, unpad_input # noqa
64
+
65
+
66
+ # This makes `_prepare_4d_causal_attention_mask` a leaf function in the FX graph.
67
+ # It means that the function will not be traced through and simply appear as a node in the graph.
68
+ if is_torch_fx_available():
69
+ if not is_torch_greater_or_equal_than_1_13:
70
+ import torch.fx
71
+
72
+ _prepare_4d_causal_attention_mask = torch.fx.wrap(_prepare_4d_causal_attention_mask)
73
+
74
+
75
+ logger = logging.get_logger(__name__)
76
+
77
+ _CONFIG_FOR_DOC = "DeepseekV2Config"
78
+
79
+
80
+ def _get_unpad_data(attention_mask):
81
+ seqlens_in_batch = attention_mask.sum(dim=-1, dtype=torch.int32)
82
+ indices = torch.nonzero(attention_mask.flatten(), as_tuple=False).flatten()
83
+ max_seqlen_in_batch = seqlens_in_batch.max().item()
84
+ cu_seqlens = F.pad(
85
+ torch.cumsum(seqlens_in_batch, dim=0, dtype=torch.torch.int32), (1, 0)
86
+ )
87
+ return (
88
+ indices,
89
+ cu_seqlens,
90
+ max_seqlen_in_batch,
91
+ )
92
+
93
+
94
+ class DeepseekV2RMSNorm(nn.Module):
95
+ def __init__(self, hidden_size, eps=1e-6):
96
+ """
97
+ DeepseekV2RMSNorm is equivalent to T5LayerNorm
98
+ """
99
+ super().__init__()
100
+ self.weight = nn.Parameter(torch.ones(hidden_size))
101
+ self.variance_epsilon = eps
102
+
103
+ def forward(self, hidden_states):
104
+ input_dtype = hidden_states.dtype
105
+ hidden_states = hidden_states.to(torch.float32)
106
+ variance = hidden_states.pow(2).mean(-1, keepdim=True)
107
+ hidden_states = hidden_states * torch.rsqrt(variance + self.variance_epsilon)
108
+ return self.weight * hidden_states.to(input_dtype)
109
+
110
+
111
+ ALL_LAYERNORM_LAYERS.append(DeepseekV2RMSNorm)
112
+
113
+
114
+ class DeepseekV2RotaryEmbedding(nn.Module):
115
+ def __init__(self, dim, max_position_embeddings=2048, base=10000, device=None):
116
+ super().__init__()
117
+
118
+ self.dim = dim
119
+ self.max_position_embeddings = max_position_embeddings
120
+ self.base = base
121
+ inv_freq = 1.0 / (
122
+ self.base ** (torch.arange(0, self.dim, 2).float().to(device) / self.dim)
123
+ )
124
+ self.register_buffer("inv_freq", inv_freq, persistent=False)
125
+
126
+ # Build here to make `torch.jit.trace` work.
127
+ self._set_cos_sin_cache(
128
+ seq_len=max_position_embeddings,
129
+ device=self.inv_freq.device,
130
+ dtype=torch.get_default_dtype(),
131
+ )
132
+ self.max_seq_len_cached = None
133
+
134
+ def _set_cos_sin_cache(self, seq_len, device, dtype):
135
+ self.max_seq_len_cached = seq_len
136
+ t = torch.arange(
137
+ self.max_seq_len_cached, device=device, dtype=self.inv_freq.dtype
138
+ )
139
+
140
+ freqs = torch.outer(t, self.inv_freq.to(t.device))
141
+ # Different from paper, but it uses a different permutation in order to obtain the same calculation
142
+ emb = torch.cat((freqs, freqs), dim=-1)
143
+ self.register_buffer("cos_cached", emb.cos().to(dtype), persistent=False)
144
+ self.register_buffer("sin_cached", emb.sin().to(dtype), persistent=False)
145
+
146
+ def forward(self, x, seq_len=None):
147
+ # x: [bs, num_attention_heads, seq_len, head_size]
148
+ if self.max_seq_len_cached is None or seq_len > self.max_seq_len_cached:
149
+ self._set_cos_sin_cache(seq_len=seq_len, device=x.device, dtype=x.dtype)
150
+
151
+ return (
152
+ self.cos_cached[:seq_len].to(dtype=x.dtype),
153
+ self.sin_cached[:seq_len].to(dtype=x.dtype),
154
+ )
155
+
156
+
157
+ # Copied from transformers.models.llama.modeling_llama.LlamaLinearScalingRotaryEmbedding with Llama->DeepseekV2
158
+ class DeepseekV2LinearScalingRotaryEmbedding(DeepseekV2RotaryEmbedding):
159
+ """DeepseekV2RotaryEmbedding extended with linear scaling. Credits to the Reddit user /u/kaiokendev"""
160
+
161
+ def __init__(
162
+ self,
163
+ dim,
164
+ max_position_embeddings=2048,
165
+ base=10000,
166
+ device=None,
167
+ scaling_factor=1.0,
168
+ ):
169
+ self.scaling_factor = scaling_factor
170
+ super().__init__(dim, max_position_embeddings, base, device)
171
+
172
+ def _set_cos_sin_cache(self, seq_len, device, dtype):
173
+ self.max_seq_len_cached = seq_len
174
+ t = torch.arange(
175
+ self.max_seq_len_cached, device=device, dtype=self.inv_freq.dtype
176
+ )
177
+ t = t / self.scaling_factor
178
+
179
+ freqs = torch.outer(t, self.inv_freq)
180
+ # Different from paper, but it uses a different permutation in order to obtain the same calculation
181
+ emb = torch.cat((freqs, freqs), dim=-1)
182
+ self.register_buffer("cos_cached", emb.cos().to(dtype), persistent=False)
183
+ self.register_buffer("sin_cached", emb.sin().to(dtype), persistent=False)
184
+
185
+
186
+ # Copied from transformers.models.llama.modeling_llama.LlamaDynamicNTKScalingRotaryEmbedding with Llama->DeepseekV2
187
+ class DeepseekV2DynamicNTKScalingRotaryEmbedding(DeepseekV2RotaryEmbedding):
188
+ """DeepseekV2RotaryEmbedding extended with Dynamic NTK scaling. Credits to the Reddit users /u/bloc97 and /u/emozilla"""
189
+
190
+ def __init__(
191
+ self,
192
+ dim,
193
+ max_position_embeddings=2048,
194
+ base=10000,
195
+ device=None,
196
+ scaling_factor=1.0,
197
+ ):
198
+ self.scaling_factor = scaling_factor
199
+ super().__init__(dim, max_position_embeddings, base, device)
200
+
201
+ def _set_cos_sin_cache(self, seq_len, device, dtype):
202
+ self.max_seq_len_cached = seq_len
203
+
204
+ if seq_len > self.max_position_embeddings:
205
+ base = self.base * (
206
+ (self.scaling_factor * seq_len / self.max_position_embeddings)
207
+ - (self.scaling_factor - 1)
208
+ ) ** (self.dim / (self.dim - 2))
209
+ inv_freq = 1.0 / (
210
+ base ** (torch.arange(0, self.dim, 2).float().to(device) / self.dim)
211
+ )
212
+ self.register_buffer("inv_freq", inv_freq, persistent=False)
213
+
214
+ t = torch.arange(
215
+ self.max_seq_len_cached, device=device, dtype=self.inv_freq.dtype
216
+ )
217
+
218
+ freqs = torch.outer(t, self.inv_freq)
219
+ # Different from paper, but it uses a different permutation in order to obtain the same calculation
220
+ emb = torch.cat((freqs, freqs), dim=-1)
221
+ self.register_buffer("cos_cached", emb.cos().to(dtype), persistent=False)
222
+ self.register_buffer("sin_cached", emb.sin().to(dtype), persistent=False)
223
+
224
+
225
+ # Inverse dim formula to find dim based on number of rotations
226
+ def yarn_find_correction_dim(
227
+ num_rotations, dim, base=10000, max_position_embeddings=2048
228
+ ):
229
+ return (dim * math.log(max_position_embeddings / (num_rotations * 2 * math.pi))) / (
230
+ 2 * math.log(base)
231
+ )
232
+
233
+
234
+ # Find dim range bounds based on rotations
235
+ def yarn_find_correction_range(
236
+ low_rot, high_rot, dim, base=10000, max_position_embeddings=2048
237
+ ):
238
+ low = math.floor(
239
+ yarn_find_correction_dim(low_rot, dim, base, max_position_embeddings)
240
+ )
241
+ high = math.ceil(
242
+ yarn_find_correction_dim(high_rot, dim, base, max_position_embeddings)
243
+ )
244
+ return max(low, 0), min(high, dim - 1) # Clamp values just in case
245
+
246
+
247
+ def yarn_get_mscale(scale=1, mscale=1):
248
+ if scale <= 1:
249
+ return 1.0
250
+ return 0.1 * mscale * math.log(scale) + 1.0
251
+
252
+
253
+ def yarn_linear_ramp_mask(min, max, dim):
254
+ if min == max:
255
+ max += 0.001 # Prevent singularity
256
+
257
+ linear_func = (torch.arange(dim, dtype=torch.float32) - min) / (max - min)
258
+ ramp_func = torch.clamp(linear_func, 0, 1)
259
+ return ramp_func
260
+
261
+
262
+ class DeepseekV2YarnRotaryEmbedding(DeepseekV2RotaryEmbedding):
263
+
264
+ def __init__(
265
+ self,
266
+ dim,
267
+ max_position_embeddings=2048,
268
+ base=10000,
269
+ device=None,
270
+ scaling_factor=1.0,
271
+ original_max_position_embeddings=4096,
272
+ beta_fast=32,
273
+ beta_slow=1,
274
+ mscale=1,
275
+ mscale_all_dim=0,
276
+ ):
277
+ self.scaling_factor = scaling_factor
278
+ self.original_max_position_embeddings = original_max_position_embeddings
279
+ self.beta_fast = beta_fast
280
+ self.beta_slow = beta_slow
281
+ self.mscale = mscale
282
+ self.mscale_all_dim = mscale_all_dim
283
+ super().__init__(dim, max_position_embeddings, base, device)
284
+
285
+ def _set_cos_sin_cache(self, seq_len, device, dtype):
286
+ self.max_seq_len_cached = seq_len
287
+ dim = self.dim
288
+
289
+ freq_extra = 1.0 / (
290
+ self.base
291
+ ** (torch.arange(0, dim, 2, dtype=torch.float32, device=device) / dim)
292
+ )
293
+ freq_inter = 1.0 / (
294
+ self.scaling_factor
295
+ * self.base
296
+ ** (torch.arange(0, dim, 2, dtype=torch.float32, device=device) / dim)
297
+ )
298
+
299
+ low, high = yarn_find_correction_range(
300
+ self.beta_fast,
301
+ self.beta_slow,
302
+ dim,
303
+ self.base,
304
+ self.original_max_position_embeddings,
305
+ )
306
+ inv_freq_mask = 1.0 - yarn_linear_ramp_mask(low, high, dim // 2).to(
307
+ device=device, dtype=torch.float32
308
+ )
309
+ inv_freq = freq_inter * (1 - inv_freq_mask) + freq_extra * inv_freq_mask
310
+ self.register_buffer("inv_freq", inv_freq, persistent=False)
311
+
312
+ t = torch.arange(seq_len, device=device, dtype=torch.float32)
313
+
314
+ freqs = torch.outer(t, inv_freq)
315
+
316
+ _mscale = float(
317
+ yarn_get_mscale(self.scaling_factor, self.mscale)
318
+ / yarn_get_mscale(self.scaling_factor, self.mscale_all_dim)
319
+ )
320
+
321
+ emb = torch.cat((freqs, freqs), dim=-1)
322
+ self.register_buffer(
323
+ "cos_cached", (emb.cos() * _mscale).to(dtype), persistent=False
324
+ )
325
+ self.register_buffer(
326
+ "sin_cached", (emb.sin() * _mscale).to(dtype), persistent=False
327
+ )
328
+
329
+
330
+ # Copied from transformers.models.llama.modeling_llama.rotate_half
331
+ def rotate_half(x):
332
+ """Rotates half the hidden dims of the input."""
333
+ x1 = x[..., : x.shape[-1] // 2]
334
+ x2 = x[..., x.shape[-1] // 2 :]
335
+ return torch.cat((-x2, x1), dim=-1)
336
+
337
+
338
+ # Copied from transformers.models.llama.modeling_llama.apply_rotary_pos_emb
339
+ def apply_rotary_pos_emb(q, k, cos, sin, position_ids, unsqueeze_dim=1):
340
+ """Applies Rotary Position Embedding to the query and key tensors.
341
+
342
+ Args:
343
+ q (`torch.Tensor`): The query tensor.
344
+ k (`torch.Tensor`): The key tensor.
345
+ cos (`torch.Tensor`): The cosine part of the rotary embedding.
346
+ sin (`torch.Tensor`): The sine part of the rotary embedding.
347
+ position_ids (`torch.Tensor`):
348
+ The position indices of the tokens corresponding to the query and key tensors. For example, this can be
349
+ used to pass offsetted position ids when working with a KV-cache.
350
+ unsqueeze_dim (`int`, *optional*, defaults to 1):
351
+ The 'unsqueeze_dim' argument specifies the dimension along which to unsqueeze cos[position_ids] and
352
+ sin[position_ids] so that they can be properly broadcasted to the dimensions of q and k. For example, note
353
+ that cos[position_ids] and sin[position_ids] have the shape [batch_size, seq_len, head_dim]. Then, if q and
354
+ k have the shape [batch_size, heads, seq_len, head_dim], then setting unsqueeze_dim=1 makes
355
+ cos[position_ids] and sin[position_ids] broadcastable to the shapes of q and k. Similarly, if q and k have
356
+ the shape [batch_size, seq_len, heads, head_dim], then set unsqueeze_dim=2.
357
+ Returns:
358
+ `tuple(torch.Tensor)` comprising of the query and key tensors rotated using the Rotary Position Embedding.
359
+ """
360
+ cos = cos[position_ids].unsqueeze(unsqueeze_dim)
361
+ sin = sin[position_ids].unsqueeze(unsqueeze_dim)
362
+
363
+ b, h, s, d = q.shape
364
+ q = q.view(b, h, s, d // 2, 2).transpose(4, 3).reshape(b, h, s, d)
365
+
366
+ b, h, s, d = k.shape
367
+ k = k.view(b, h, s, d // 2, 2).transpose(4, 3).reshape(b, h, s, d)
368
+
369
+ q_embed = (q * cos) + (rotate_half(q) * sin)
370
+ k_embed = (k * cos) + (rotate_half(k) * sin)
371
+ return q_embed, k_embed
372
+
373
+
374
+ class DeepseekV2MLP(nn.Module):
375
+ def __init__(self, config, hidden_size=None, intermediate_size=None):
376
+ super().__init__()
377
+ self.config = config
378
+ self.hidden_size = config.hidden_size if hidden_size is None else hidden_size
379
+ self.intermediate_size = (
380
+ config.intermediate_size if intermediate_size is None else intermediate_size
381
+ )
382
+
383
+ self.gate_proj = nn.Linear(self.hidden_size, self.intermediate_size, bias=False)
384
+ self.up_proj = nn.Linear(self.hidden_size, self.intermediate_size, bias=False)
385
+ self.down_proj = nn.Linear(self.intermediate_size, self.hidden_size, bias=False)
386
+ self.act_fn = ACT2FN[config.hidden_act]
387
+
388
+ def forward(self, x):
389
+ down_proj = self.down_proj(self.act_fn(self.gate_proj(x)) * self.up_proj(x))
390
+ return down_proj
391
+
392
+
393
+ class MoEGate(nn.Module):
394
+ def __init__(self, config):
395
+ super().__init__()
396
+ self.config = config
397
+ self.top_k = config.num_experts_per_tok
398
+ self.n_routed_experts = config.n_routed_experts
399
+ self.routed_scaling_factor = config.routed_scaling_factor
400
+ self.scoring_func = config.scoring_func
401
+ self.alpha = config.aux_loss_alpha
402
+ self.seq_aux = config.seq_aux
403
+ self.topk_method = config.topk_method
404
+ self.n_group = config.n_group
405
+ self.topk_group = config.topk_group
406
+
407
+ # topk selection algorithm
408
+ self.norm_topk_prob = config.norm_topk_prob
409
+ self.gating_dim = config.hidden_size
410
+ self.weight = nn.Parameter(
411
+ torch.empty((self.n_routed_experts, self.gating_dim))
412
+ )
413
+ self.reset_parameters()
414
+
415
+ def reset_parameters(self) -> None:
416
+ import torch.nn.init as init
417
+
418
+ init.kaiming_uniform_(self.weight, a=math.sqrt(5))
419
+
420
+ def forward(self, hidden_states):
421
+ bsz, seq_len, h = hidden_states.shape
422
+ ### compute gating score
423
+ hidden_states = hidden_states.view(-1, h)
424
+ logits = F.linear(
425
+ hidden_states.type(torch.float32), self.weight.type(torch.float32), None
426
+ )
427
+ if self.scoring_func == "softmax":
428
+ scores = logits.softmax(dim=-1, dtype=torch.float32)
429
+ else:
430
+ raise NotImplementedError(
431
+ f"insupportable scoring function for MoE gating: {self.scoring_func}"
432
+ )
433
+
434
+ ### select top-k experts
435
+ if self.topk_method == "greedy":
436
+ topk_weight, topk_idx = torch.topk(
437
+ scores, k=self.top_k, dim=-1, sorted=False
438
+ )
439
+ elif self.topk_method == "group_limited_greedy":
440
+ group_scores = (
441
+ scores.view(bsz * seq_len, self.n_group, -1).max(dim=-1).values
442
+ ) # [n, n_group]
443
+ group_idx = torch.topk(
444
+ group_scores, k=self.topk_group, dim=-1, sorted=False
445
+ )[
446
+ 1
447
+ ] # [n, top_k_group]
448
+ group_mask = torch.zeros_like(group_scores) # [n, n_group]
449
+ group_mask.scatter_(1, group_idx, 1) # [n, n_group]
450
+ score_mask = (
451
+ group_mask.unsqueeze(-1)
452
+ .expand(
453
+ bsz * seq_len, self.n_group, self.n_routed_experts // self.n_group
454
+ )
455
+ .reshape(bsz * seq_len, -1)
456
+ ) # [n, e]
457
+ tmp_scores = scores.masked_fill(~score_mask.bool(), 0.0) # [n, e]
458
+ topk_weight, topk_idx = torch.topk(
459
+ tmp_scores, k=self.top_k, dim=-1, sorted=False
460
+ )
461
+
462
+ ### norm gate to sum 1
463
+ if self.top_k > 1 and self.norm_topk_prob:
464
+ denominator = topk_weight.sum(dim=-1, keepdim=True) + 1e-20
465
+ topk_weight = topk_weight / denominator
466
+ else:
467
+ topk_weight = topk_weight * self.routed_scaling_factor
468
+ ### expert-level computation auxiliary loss
469
+ if self.training and self.alpha > 0.0:
470
+ scores_for_aux = scores
471
+ aux_topk = self.top_k
472
+ # always compute aux loss based on the naive greedy topk method
473
+ topk_idx_for_aux_loss = topk_idx.view(bsz, -1)
474
+ if self.seq_aux:
475
+ scores_for_seq_aux = scores_for_aux.view(bsz, seq_len, -1)
476
+ ce = torch.zeros(
477
+ bsz, self.n_routed_experts, device=hidden_states.device
478
+ )
479
+ ce.scatter_add_(
480
+ 1,
481
+ topk_idx_for_aux_loss,
482
+ torch.ones(bsz, seq_len * aux_topk, device=hidden_states.device),
483
+ ).div_(seq_len * aux_topk / self.n_routed_experts)
484
+ aux_loss = (ce * scores_for_seq_aux.mean(dim=1)).sum(
485
+ dim=1
486
+ ).mean() * self.alpha
487
+ else:
488
+ mask_ce = F.one_hot(
489
+ topk_idx_for_aux_loss.view(-1), num_classes=self.n_routed_experts
490
+ )
491
+ ce = mask_ce.float().mean(0)
492
+ Pi = scores_for_aux.mean(0)
493
+ fi = ce * self.n_routed_experts
494
+ aux_loss = (Pi * fi).sum() * self.alpha
495
+ else:
496
+ aux_loss = None
497
+ return topk_idx, topk_weight, aux_loss
498
+
499
+
500
+ class AddAuxiliaryLoss(torch.autograd.Function):
501
+ """
502
+ The trick function of adding auxiliary (aux) loss,
503
+ which includes the gradient of the aux loss during backpropagation.
504
+ """
505
+
506
+ @staticmethod
507
+ def forward(ctx, x, loss):
508
+ assert loss.numel() == 1
509
+ ctx.dtype = loss.dtype
510
+ ctx.required_aux_loss = loss.requires_grad
511
+ return x
512
+
513
+ @staticmethod
514
+ def backward(ctx, grad_output):
515
+ grad_loss = None
516
+ if ctx.required_aux_loss:
517
+ grad_loss = torch.ones(1, dtype=ctx.dtype, device=grad_output.device)
518
+ return grad_output, grad_loss
519
+
520
+
521
+ class DeepseekV2MoE(nn.Module):
522
+ """
523
+ A mixed expert module containing shared experts.
524
+ """
525
+
526
+ def __init__(self, config):
527
+ super().__init__()
528
+ self.config = config
529
+ self.num_experts_per_tok = config.num_experts_per_tok
530
+
531
+ if hasattr(config, "ep_size") and config.ep_size > 1:
532
+ assert config.ep_size == dist.get_world_size()
533
+ self.ep_size = config.ep_size
534
+ self.experts_per_rank = config.n_routed_experts // config.ep_size
535
+ self.ep_rank = dist.get_rank()
536
+ self.experts = nn.ModuleList(
537
+ [
538
+ (
539
+ DeepseekV2MLP(
540
+ config, intermediate_size=config.moe_intermediate_size
541
+ )
542
+ if i >= self.ep_rank * self.experts_per_rank
543
+ and i < (self.ep_rank + 1) * self.experts_per_rank
544
+ else None
545
+ )
546
+ for i in range(config.n_routed_experts)
547
+ ]
548
+ )
549
+ else:
550
+ self.ep_size = 1
551
+ self.experts_per_rank = config.n_routed_experts
552
+ self.ep_rank = 0
553
+ self.experts = nn.ModuleList(
554
+ [
555
+ DeepseekV2MLP(
556
+ config, intermediate_size=config.moe_intermediate_size
557
+ )
558
+ for i in range(config.n_routed_experts)
559
+ ]
560
+ )
561
+ self.gate = MoEGate(config)
562
+ if config.n_shared_experts is not None:
563
+ intermediate_size = config.moe_intermediate_size * config.n_shared_experts
564
+ self.shared_experts = DeepseekV2MLP(
565
+ config=config, intermediate_size=intermediate_size
566
+ )
567
+
568
+ def forward_original(self, hidden_states):
569
+ """原始的forward方法,保留用于对比和回滚"""
570
+ identity = hidden_states
571
+ orig_shape = hidden_states.shape
572
+ topk_idx, topk_weight, aux_loss = self.gate(hidden_states)
573
+ hidden_states = hidden_states.view(-1, hidden_states.shape[-1])
574
+ flat_topk_idx = topk_idx.view(-1)
575
+ if self.training:
576
+ hidden_states = hidden_states.repeat_interleave(
577
+ self.num_experts_per_tok, dim=0
578
+ )
579
+ y = torch.empty_like(hidden_states)
580
+ for i, expert in enumerate(self.experts):
581
+ y[flat_topk_idx == i] = expert(hidden_states[flat_topk_idx == i])
582
+ y = (y.view(*topk_weight.shape, -1) * topk_weight.unsqueeze(-1)).sum(dim=1)
583
+ y = y.to(hidden_states.dtype).view(*orig_shape)
584
+ y = AddAuxiliaryLoss.apply(y, aux_loss)
585
+ else:
586
+ y = self.moe_infer(hidden_states, topk_idx, topk_weight).view(*orig_shape)
587
+ if self.config.n_shared_experts is not None:
588
+ y = y + self.shared_experts(identity)
589
+ return y
590
+
591
+ def forward(self, hidden_states):
592
+ """
593
+ 实现dense backward功能的前向传播:
594
+ 前向输出保持与官方相同(稀疏计算结果),但在反向传播时通过dense计算的梯度传递回来
595
+
596
+ Dense Backward机制说明:
597
+ 1. 前向传播时,只有top-k专家参与计算(稀疏前向)
598
+ 2. 反向传播时,所有专家都接收梯度(密集反向)
599
+ 3. 使用直通梯度技术:sparse_output.detach() + (dense_output - dense_output.detach())
600
+ 4. 通过register_hook确保只有被激活的专家才真正更新参数
601
+
602
+ Args:
603
+ hidden_states: 输入张量,形状为 (batch_size, seq_length, hidden_dim)
604
+
605
+ Returns:
606
+ 输出张量,形状为 (batch_size, seq_length, hidden_dim)
607
+ """
608
+ batch_size, seq_length, hidden_dim = hidden_states.shape
609
+ dtype = hidden_states.dtype
610
+ device = hidden_states.device
611
+
612
+ identity = hidden_states
613
+ orig_shape = hidden_states.shape
614
+
615
+ # Step 1: 计算路由逻辑,选择top-k专家
616
+ topk_idx, topk_weight, aux_loss = self.gate(hidden_states)
617
+ flat_hidden = hidden_states.view(-1, hidden_dim) # (B*seq_len, hidden_dim)
618
+ N_tokens = flat_hidden.size(0)
619
+ flat_topk_idx = topk_idx.view(-1)
620
+
621
+ # Step 2: 计算完整的路由权重(用于dense backward)
622
+ # 注意V2版本强制使用float32计算
623
+ router_logits = F.linear(
624
+ flat_hidden.type(torch.float32),
625
+ self.gate.weight.type(torch.float32),
626
+ None
627
+ )
628
+ if self.gate.scoring_func == 'softmax':
629
+ routing_weights = F.softmax(router_logits, dim=1, dtype=torch.float32) # (N_tokens, n_routed_experts)
630
+ else:
631
+ raise NotImplementedError(f'Unsupported scoring function: {self.gate.scoring_func}')
632
+
633
+ routing_weights = routing_weights.to(dtype=dtype)
634
+
635
+ # Step 3: 准备输出累加器
636
+ dense_outputs = torch.zeros((N_tokens, hidden_dim), dtype=dtype, device=device)
637
+ sparse_outputs = torch.zeros((N_tokens, hidden_dim), dtype=dtype, device=device)
638
+
639
+ # Step 4: 对每个专家进行计算
640
+ if self.training:
641
+ # 训练模式:实现dense backward
642
+ for expert_idx in range(self.config.n_routed_experts):
643
+ # V2版本的专家可能为None(在EP模式下)
644
+ if self.experts[expert_idx] is None:
645
+ continue
646
+
647
+ expert_layer = self.experts[expert_idx]
648
+
649
+ # 为所有tokens计算当前专家的输出(dense计算)
650
+ expert_output = expert_layer(flat_hidden) # (N_tokens, hidden_dim)
651
+
652
+ # 创建激活掩码:标记哪些token选择了该专家
653
+ activation_mask = (topk_idx == expert_idx).any(dim=1).float().unsqueeze(-1).to(dtype)
654
+
655
+ # 注册hook:只有被选中的token才能向该专家传递梯度
656
+ if expert_output.requires_grad:
657
+ expert_output.register_hook(lambda grad, mask=activation_mask: grad * mask)
658
+
659
+ expert_output = expert_output.to(dtype=dtype)
660
+
661
+ # Dense accumulation: 使用完整的路由权重
662
+ weight_full = routing_weights[:, expert_idx].unsqueeze(-1) # (N_tokens, 1)
663
+ dense_outputs = dense_outputs + expert_output * weight_full
664
+
665
+ # Sparse accumulation: 只累加被选中的专家输出
666
+ matches = (topk_idx == expert_idx)
667
+ if matches.any():
668
+ token_indices, k_indices = torch.where(matches)
669
+ weights_topk = topk_weight[token_indices, k_indices].unsqueeze(-1).to(sparse_outputs.dtype) # (num_matches, 1)
670
+ sparse_outputs[token_indices] = sparse_outputs[token_indices] + expert_output[token_indices] * weights_topk
671
+ else:
672
+ # 推理模式:使用原始的稀疏计算逻辑
673
+ sparse_outputs = self.moe_infer(flat_hidden, topk_idx, topk_weight)
674
+ # 推理时不需要dense_outputs
675
+ dense_outputs = sparse_outputs
676
+
677
+ # Step 5: 添加共享专家(如果有)
678
+ if self.config.n_shared_experts is not None:
679
+ shared_expert_output = self.shared_experts(identity)
680
+ sparse_outputs = sparse_outputs.view(*orig_shape) + shared_expert_output
681
+ dense_outputs = dense_outputs.view(*orig_shape) + shared_expert_output
682
+ else:
683
+ sparse_outputs = sparse_outputs.view(*orig_shape)
684
+ dense_outputs = dense_outputs.view(*orig_shape)
685
+
686
+ # Step 6: 使用直通梯度技术组合sparse前向和dense反向
687
+ if self.training:
688
+ # 前向用sparse,反向用dense
689
+ final_output = sparse_outputs.detach() + (dense_outputs - dense_outputs.detach())
690
+ # 添加辅助损失
691
+ final_output = AddAuxiliaryLoss.apply(final_output, aux_loss)
692
+ else:
693
+ final_output = sparse_outputs
694
+
695
+ return final_output
696
+
697
+ @torch.no_grad()
698
+ def moe_infer(self, x, topk_ids, topk_weight):
699
+ cnts = topk_ids.new_zeros((topk_ids.shape[0], len(self.experts)))
700
+ cnts.scatter_(1, topk_ids, 1)
701
+ tokens_per_expert = cnts.sum(dim=0)
702
+ idxs = topk_ids.view(-1).argsort()
703
+ sorted_tokens = x[idxs // topk_ids.shape[1]]
704
+ sorted_tokens_shape = sorted_tokens.shape
705
+ if self.ep_size > 1:
706
+ tokens_per_ep_rank = tokens_per_expert.view(self.ep_size, -1).sum(dim=1)
707
+ tokens_per_expert_group = tokens_per_expert.new_empty(
708
+ tokens_per_expert.shape[0]
709
+ )
710
+ dist.all_to_all_single(tokens_per_expert_group, tokens_per_expert)
711
+ output_splits = (
712
+ tokens_per_expert_group.view(self.ep_size, -1)
713
+ .sum(1)
714
+ .cpu()
715
+ .numpy()
716
+ .tolist()
717
+ )
718
+ gathered_tokens = sorted_tokens.new_empty(
719
+ tokens_per_expert_group.sum(dim=0).cpu().item(), sorted_tokens.shape[1]
720
+ )
721
+ input_split_sizes = tokens_per_ep_rank.cpu().numpy().tolist()
722
+ dist.all_to_all(
723
+ list(gathered_tokens.split(output_splits)),
724
+ list(sorted_tokens.split(input_split_sizes)),
725
+ )
726
+ tokens_per_expert_post_gather = tokens_per_expert_group.view(
727
+ self.ep_size, self.experts_per_rank
728
+ ).sum(dim=0)
729
+ gatherd_idxs = np.zeros(shape=(gathered_tokens.shape[0],), dtype=np.int32)
730
+ s = 0
731
+ for i, k in enumerate(tokens_per_expert_group.cpu().numpy()):
732
+ gatherd_idxs[s : s + k] = i % self.experts_per_rank
733
+ s += k
734
+ gatherd_idxs = gatherd_idxs.argsort()
735
+ sorted_tokens = gathered_tokens[gatherd_idxs]
736
+ tokens_per_expert = tokens_per_expert_post_gather
737
+ tokens_per_expert = tokens_per_expert.cpu().numpy()
738
+
739
+ outputs = []
740
+ start_idx = 0
741
+ for i, num_tokens in enumerate(tokens_per_expert):
742
+ end_idx = start_idx + num_tokens
743
+ if num_tokens == 0:
744
+ continue
745
+ expert = self.experts[i + self.ep_rank * self.experts_per_rank]
746
+ tokens_for_this_expert = sorted_tokens[start_idx:end_idx]
747
+ expert_out = expert(tokens_for_this_expert)
748
+ outputs.append(expert_out)
749
+ start_idx = end_idx
750
+
751
+ outs = torch.cat(outputs, dim=0) if len(outputs) else sorted_tokens.new_empty(0)
752
+ if self.ep_size > 1:
753
+ new_x = torch.empty_like(outs)
754
+ new_x[gatherd_idxs] = outs
755
+ gathered_tokens = new_x.new_empty(*sorted_tokens_shape)
756
+ dist.all_to_all(
757
+ list(gathered_tokens.split(input_split_sizes)),
758
+ list(new_x.split(output_splits)),
759
+ )
760
+ outs = gathered_tokens
761
+
762
+ new_x = torch.empty_like(outs)
763
+ new_x[idxs] = outs
764
+ final_out = (
765
+ new_x.view(*topk_ids.shape, -1)
766
+ .type(topk_weight.dtype)
767
+ .mul_(topk_weight.unsqueeze(dim=-1))
768
+ .sum(dim=1)
769
+ .type(new_x.dtype)
770
+ )
771
+ return final_out
772
+
773
+
774
+ # Copied from transformers.models.llama.modeling_llama.repeat_kv
775
+ def repeat_kv(hidden_states: torch.Tensor, n_rep: int) -> torch.Tensor:
776
+ """
777
+ This is the equivalent of torch.repeat_interleave(x, dim=1, repeats=n_rep). The hidden states go from (batch,
778
+ num_key_value_heads, seqlen, head_dim) to (batch, num_attention_heads, seqlen, head_dim)
779
+ """
780
+ batch, num_key_value_heads, slen, head_dim = hidden_states.shape
781
+ if n_rep == 1:
782
+ return hidden_states
783
+ hidden_states = hidden_states[:, :, None, :, :].expand(
784
+ batch, num_key_value_heads, n_rep, slen, head_dim
785
+ )
786
+ return hidden_states.reshape(batch, num_key_value_heads * n_rep, slen, head_dim)
787
+
788
+
789
+ # Copied from transformers.models.llama.modeling_llama.LlamaAttention with Llama->DeepseekV2
790
+ class DeepseekV2Attention(nn.Module):
791
+ """Multi-headed attention from 'Attention Is All You Need' paper"""
792
+
793
+ def __init__(self, config: DeepseekV2Config, layer_idx: Optional[int] = None):
794
+ super().__init__()
795
+ self.config = config
796
+ self.layer_idx = layer_idx
797
+ if layer_idx is None:
798
+ logger.warning_once(
799
+ f"Instantiating {self.__class__.__name__} without passing `layer_idx` is not recommended and will "
800
+ "to errors during the forward call, if caching is used. Please make sure to provide a `layer_idx` "
801
+ "when creating this class."
802
+ )
803
+
804
+ self.attention_dropout = config.attention_dropout
805
+ self.hidden_size = config.hidden_size
806
+ self.num_heads = config.num_attention_heads
807
+
808
+ self.max_position_embeddings = config.max_position_embeddings
809
+ self.rope_theta = config.rope_theta
810
+ self.q_lora_rank = config.q_lora_rank
811
+ self.qk_rope_head_dim = config.qk_rope_head_dim
812
+ self.kv_lora_rank = config.kv_lora_rank
813
+ self.v_head_dim = config.v_head_dim
814
+ self.qk_nope_head_dim = config.qk_nope_head_dim
815
+ self.q_head_dim = config.qk_nope_head_dim + config.qk_rope_head_dim
816
+
817
+ self.is_causal = True
818
+
819
+ if self.q_lora_rank is None:
820
+ self.q_proj = nn.Linear(
821
+ self.hidden_size, self.num_heads * self.q_head_dim, bias=False
822
+ )
823
+ else:
824
+ self.q_a_proj = nn.Linear(
825
+ self.hidden_size, config.q_lora_rank, bias=config.attention_bias
826
+ )
827
+ self.q_a_layernorm = DeepseekV2RMSNorm(config.q_lora_rank)
828
+ self.q_b_proj = nn.Linear(
829
+ config.q_lora_rank, self.num_heads * self.q_head_dim, bias=False
830
+ )
831
+
832
+ self.kv_a_proj_with_mqa = nn.Linear(
833
+ self.hidden_size,
834
+ config.kv_lora_rank + config.qk_rope_head_dim,
835
+ bias=config.attention_bias,
836
+ )
837
+ self.kv_a_layernorm = DeepseekV2RMSNorm(config.kv_lora_rank)
838
+ self.kv_b_proj = nn.Linear(
839
+ config.kv_lora_rank,
840
+ self.num_heads
841
+ * (self.q_head_dim - self.qk_rope_head_dim + self.v_head_dim),
842
+ bias=False,
843
+ )
844
+
845
+ self.o_proj = nn.Linear(
846
+ self.num_heads * self.v_head_dim,
847
+ self.hidden_size,
848
+ bias=config.attention_bias,
849
+ )
850
+ self._init_rope()
851
+
852
+ self.softmax_scale = self.q_head_dim ** (-0.5)
853
+ if self.config.rope_scaling is not None:
854
+ mscale_all_dim = self.config.rope_scaling.get("mscale_all_dim", 0)
855
+ scaling_factor = self.config.rope_scaling["factor"]
856
+ if mscale_all_dim:
857
+ mscale = yarn_get_mscale(scaling_factor, mscale_all_dim)
858
+ self.softmax_scale = self.softmax_scale * mscale * mscale
859
+
860
+ def _init_rope(self):
861
+ if self.config.rope_scaling is None:
862
+ self.rotary_emb = DeepseekV2RotaryEmbedding(
863
+ self.qk_rope_head_dim,
864
+ max_position_embeddings=self.max_position_embeddings,
865
+ base=self.rope_theta,
866
+ )
867
+ else:
868
+ scaling_type = self.config.rope_scaling["type"]
869
+ scaling_factor = self.config.rope_scaling["factor"]
870
+ if scaling_type == "linear":
871
+ self.rotary_emb = DeepseekV2LinearScalingRotaryEmbedding(
872
+ self.qk_rope_head_dim,
873
+ max_position_embeddings=self.max_position_embeddings,
874
+ scaling_factor=scaling_factor,
875
+ base=self.rope_theta,
876
+ )
877
+ elif scaling_type == "dynamic":
878
+ self.rotary_emb = DeepseekV2DynamicNTKScalingRotaryEmbedding(
879
+ self.qk_rope_head_dim,
880
+ max_position_embeddings=self.max_position_embeddings,
881
+ scaling_factor=scaling_factor,
882
+ base=self.rope_theta,
883
+ )
884
+ elif scaling_type == "yarn":
885
+ kwargs = {
886
+ key: self.config.rope_scaling[key]
887
+ for key in [
888
+ "original_max_position_embeddings",
889
+ "beta_fast",
890
+ "beta_slow",
891
+ "mscale",
892
+ "mscale_all_dim",
893
+ ]
894
+ if key in self.config.rope_scaling
895
+ }
896
+ self.rotary_emb = DeepseekV2YarnRotaryEmbedding(
897
+ self.qk_rope_head_dim,
898
+ max_position_embeddings=self.max_position_embeddings,
899
+ scaling_factor=scaling_factor,
900
+ base=self.rope_theta,
901
+ **kwargs,
902
+ )
903
+ else:
904
+ raise ValueError(f"Unknown RoPE scaling type {scaling_type}")
905
+
906
+ def _shape(self, tensor: torch.Tensor, seq_len: int, bsz: int):
907
+ return (
908
+ tensor.view(bsz, seq_len, self.num_heads, self.v_head_dim)
909
+ .transpose(1, 2)
910
+ .contiguous()
911
+ )
912
+
913
+ def forward(
914
+ self,
915
+ hidden_states: torch.Tensor,
916
+ attention_mask: Optional[torch.Tensor] = None,
917
+ position_ids: Optional[torch.LongTensor] = None,
918
+ past_key_value: Optional[Cache] = None,
919
+ output_attentions: bool = False,
920
+ use_cache: bool = False,
921
+ **kwargs,
922
+ ) -> Tuple[torch.Tensor, Optional[torch.Tensor], Optional[Tuple[torch.Tensor]]]:
923
+ if "padding_mask" in kwargs:
924
+ warnings.warn(
925
+ "Passing `padding_mask` is deprecated and will be removed in v4.37. Please make sure use `attention_mask` instead.`"
926
+ )
927
+ bsz, q_len, _ = hidden_states.size()
928
+
929
+ if self.q_lora_rank is None:
930
+ q = self.q_proj(hidden_states)
931
+ else:
932
+ q = self.q_b_proj(self.q_a_layernorm(self.q_a_proj(hidden_states)))
933
+ q = q.view(bsz, q_len, self.num_heads, self.q_head_dim).transpose(1, 2)
934
+ q_nope, q_pe = torch.split(
935
+ q, [self.qk_nope_head_dim, self.qk_rope_head_dim], dim=-1
936
+ )
937
+
938
+ compressed_kv = self.kv_a_proj_with_mqa(hidden_states)
939
+ compressed_kv, k_pe = torch.split(
940
+ compressed_kv, [self.kv_lora_rank, self.qk_rope_head_dim], dim=-1
941
+ )
942
+ k_pe = k_pe.view(bsz, q_len, 1, self.qk_rope_head_dim).transpose(1, 2)
943
+ kv = (
944
+ self.kv_b_proj(self.kv_a_layernorm(compressed_kv))
945
+ .view(bsz, q_len, self.num_heads, self.qk_nope_head_dim + self.v_head_dim)
946
+ .transpose(1, 2)
947
+ )
948
+
949
+ k_nope, value_states = torch.split(
950
+ kv, [self.qk_nope_head_dim, self.v_head_dim], dim=-1
951
+ )
952
+ kv_seq_len = value_states.shape[-2]
953
+ if past_key_value is not None:
954
+ if self.layer_idx is None:
955
+ raise ValueError(
956
+ f"The cache structure has changed since version v4.36. If you are using {self.__class__.__name__} "
957
+ "for auto-regressive decoding with k/v caching, please make sure to initialize the attention class "
958
+ "with a layer index."
959
+ )
960
+ kv_seq_len += past_key_value.get_usable_length(kv_seq_len, self.layer_idx)
961
+ cos, sin = self.rotary_emb(value_states, seq_len=kv_seq_len)
962
+
963
+ q_pe, k_pe = apply_rotary_pos_emb(q_pe, k_pe, cos, sin, position_ids)
964
+
965
+ query_states = k_pe.new_empty(bsz, self.num_heads, q_len, self.q_head_dim)
966
+ query_states[:, :, :, : self.qk_nope_head_dim] = q_nope
967
+ query_states[:, :, :, self.qk_nope_head_dim :] = q_pe
968
+
969
+ key_states = k_pe.new_empty(bsz, self.num_heads, q_len, self.q_head_dim)
970
+ key_states[:, :, :, : self.qk_nope_head_dim] = k_nope
971
+ key_states[:, :, :, self.qk_nope_head_dim :] = k_pe
972
+ if past_key_value is not None:
973
+ cache_kwargs = {"sin": sin, "cos": cos} # Specific to RoPE models
974
+ key_states, value_states = past_key_value.update(
975
+ key_states, value_states, self.layer_idx, cache_kwargs
976
+ )
977
+
978
+ attn_weights = (
979
+ torch.matmul(query_states, key_states.transpose(2, 3)) * self.softmax_scale
980
+ )
981
+
982
+ if attn_weights.size() != (bsz, self.num_heads, q_len, kv_seq_len):
983
+ raise ValueError(
984
+ f"Attention weights should be of size {(bsz, self.num_heads, q_len, kv_seq_len)}, but is"
985
+ f" {attn_weights.size()}"
986
+ )
987
+ assert attention_mask is not None
988
+ if attention_mask is not None:
989
+ if attention_mask.size() != (bsz, 1, q_len, kv_seq_len):
990
+ raise ValueError(
991
+ f"Attention mask should be of size {(bsz, 1, q_len, kv_seq_len)}, but is {attention_mask.size()}"
992
+ )
993
+ attn_weights = attn_weights + attention_mask
994
+
995
+ # upcast attention to fp32
996
+ attn_weights = nn.functional.softmax(
997
+ attn_weights, dim=-1, dtype=torch.float32
998
+ ).to(query_states.dtype)
999
+ attn_weights = nn.functional.dropout(
1000
+ attn_weights, p=self.attention_dropout, training=self.training
1001
+ )
1002
+ attn_output = torch.matmul(attn_weights, value_states)
1003
+
1004
+ if attn_output.size() != (bsz, self.num_heads, q_len, self.v_head_dim):
1005
+ raise ValueError(
1006
+ f"`attn_output` should be of size {(bsz, self.num_heads, q_len, self.v_head_dim)}, but is"
1007
+ f" {attn_output.size()}"
1008
+ )
1009
+
1010
+ attn_output = attn_output.transpose(1, 2).contiguous()
1011
+
1012
+ attn_output = attn_output.reshape(bsz, q_len, self.num_heads * self.v_head_dim)
1013
+
1014
+ attn_output = self.o_proj(attn_output)
1015
+
1016
+ if not output_attentions:
1017
+ attn_weights = None
1018
+
1019
+ return attn_output, attn_weights, past_key_value
1020
+
1021
+
1022
+ # Copied from transformers.models.llama.modeling_llama.LlamaFlashAttention2 with Llama->DeepseekV2
1023
+ class DeepseekV2FlashAttention2(DeepseekV2Attention):
1024
+ """
1025
+ DeepseekV2 flash attention module. This module inherits from `DeepseekV2Attention` as the weights of the module stays
1026
+ untouched. The only required change would be on the forward pass where it needs to correctly call the public API of
1027
+ flash attention and deal with padding tokens in case the input contains any of them.
1028
+ """
1029
+
1030
+ def __init__(self, *args, **kwargs):
1031
+ super().__init__(*args, **kwargs)
1032
+
1033
+ # TODO: Should be removed once Flash Attention for RoCm is bumped to 2.1.
1034
+ # flash_attn<2.1 generates top-left aligned causal mask, while what is needed here is bottom-right alignement, that was made default for flash_attn>=2.1. This attribute is used to handle this difference. Reference: https://github.com/Dao-AILab/flash-attention/releases/tag/v2.1.0.
1035
+ # Beware that with flash_attn<2.1, using q_seqlen != k_seqlen (except for the case q_seqlen == 1) produces a wrong mask (top-left).
1036
+ self._flash_attn_uses_top_left_mask = not is_flash_attn_greater_or_equal_2_10()
1037
+
1038
+ def forward(
1039
+ self,
1040
+ hidden_states: torch.Tensor,
1041
+ attention_mask: Optional[torch.LongTensor] = None,
1042
+ position_ids: Optional[torch.LongTensor] = None,
1043
+ past_key_value: Optional[Cache] = None,
1044
+ output_attentions: bool = False,
1045
+ use_cache: bool = False,
1046
+ **kwargs,
1047
+ ) -> Tuple[torch.Tensor, Optional[torch.Tensor], Optional[Tuple[torch.Tensor]]]:
1048
+ # DeepseekV2FlashAttention2 attention does not support output_attentions
1049
+ if "padding_mask" in kwargs:
1050
+ warnings.warn(
1051
+ "Passing `padding_mask` is deprecated and will be removed in v4.37. Please make sure use `attention_mask` instead.`"
1052
+ )
1053
+
1054
+ # overwrite attention_mask with padding_mask
1055
+ attention_mask = kwargs.pop("padding_mask")
1056
+
1057
+ output_attentions = False
1058
+
1059
+ bsz, q_len, _ = hidden_states.size()
1060
+
1061
+ if self.q_lora_rank is None:
1062
+ q = self.q_proj(hidden_states)
1063
+ else:
1064
+ q = self.q_b_proj(self.q_a_layernorm(self.q_a_proj(hidden_states)))
1065
+ q = q.view(bsz, q_len, self.num_heads, self.q_head_dim).transpose(1, 2)
1066
+ q_nope, q_pe = torch.split(
1067
+ q, [self.qk_nope_head_dim, self.qk_rope_head_dim], dim=-1
1068
+ )
1069
+
1070
+ # Flash attention requires the input to have the shape
1071
+ # batch_size x seq_length x head_dim x hidden_dim
1072
+ # therefore we just need to keep the original shape
1073
+ compressed_kv = self.kv_a_proj_with_mqa(hidden_states)
1074
+ compressed_kv, k_pe = torch.split(
1075
+ compressed_kv, [self.kv_lora_rank, self.qk_rope_head_dim], dim=-1
1076
+ )
1077
+ k_pe = k_pe.view(bsz, q_len, 1, self.qk_rope_head_dim).transpose(1, 2)
1078
+ kv = (
1079
+ self.kv_b_proj(self.kv_a_layernorm(compressed_kv))
1080
+ .view(bsz, q_len, self.num_heads, self.qk_nope_head_dim + self.v_head_dim)
1081
+ .transpose(1, 2)
1082
+ )
1083
+
1084
+ k_nope, value_states = torch.split(
1085
+ kv, [self.qk_nope_head_dim, self.v_head_dim], dim=-1
1086
+ )
1087
+ kv_seq_len = value_states.shape[-2]
1088
+
1089
+ kv_seq_len = value_states.shape[-2]
1090
+ if past_key_value is not None:
1091
+ kv_seq_len += past_key_value.get_usable_length(kv_seq_len, self.layer_idx)
1092
+
1093
+ cos, sin = self.rotary_emb(value_states, seq_len=kv_seq_len)
1094
+ q_pe, k_pe = apply_rotary_pos_emb(q_pe, k_pe, cos, sin, position_ids)
1095
+
1096
+ query_states = k_pe.new_empty(bsz, self.num_heads, q_len, self.q_head_dim)
1097
+ query_states[:, :, :, : self.qk_nope_head_dim] = q_nope
1098
+ query_states[:, :, :, self.qk_nope_head_dim :] = q_pe
1099
+
1100
+ key_states = k_pe.new_empty(bsz, self.num_heads, q_len, self.q_head_dim)
1101
+ key_states[:, :, :, : self.qk_nope_head_dim] = k_nope
1102
+ key_states[:, :, :, self.qk_nope_head_dim :] = k_pe
1103
+
1104
+ if self.q_head_dim != self.v_head_dim:
1105
+ value_states = F.pad(value_states, [0, self.q_head_dim - self.v_head_dim])
1106
+
1107
+ if past_key_value is not None:
1108
+ cache_kwargs = {"sin": sin, "cos": cos} # Specific to RoPE models
1109
+ key_states, value_states = past_key_value.update(
1110
+ key_states, value_states, self.layer_idx, cache_kwargs
1111
+ )
1112
+
1113
+ # TODO: These transpose are quite inefficient but Flash Attention requires the layout [batch_size, sequence_length, num_heads, head_dim]. We would need to refactor the KV cache
1114
+ # to be able to avoid many of these transpose/reshape/view.
1115
+ query_states = query_states.transpose(1, 2)
1116
+ key_states = key_states.transpose(1, 2)
1117
+ value_states = value_states.transpose(1, 2)
1118
+
1119
+ dropout_rate = self.attention_dropout if self.training else 0.0
1120
+
1121
+ # In PEFT, usually we cast the layer norms in float32 for training stability reasons
1122
+ # therefore the input hidden states gets silently casted in float32. Hence, we need
1123
+ # cast them back in the correct dtype just to be sure everything works as expected.
1124
+ # This might slowdown training & inference so it is recommended to not cast the LayerNorms
1125
+ # in fp32. (DeepseekV2RMSNorm handles it correctly)
1126
+
1127
+ input_dtype = query_states.dtype
1128
+ if input_dtype == torch.float32:
1129
+ # Handle the case where the model is quantized
1130
+ if hasattr(self.config, "_pre_quantization_dtype"):
1131
+ target_dtype = self.config._pre_quantization_dtype
1132
+ elif torch.is_autocast_enabled():
1133
+ target_dtype = torch.get_autocast_gpu_dtype()
1134
+ else:
1135
+ target_dtype = (
1136
+ self.q_proj.weight.dtype
1137
+ if self.q_lora_rank is None
1138
+ else self.q_a_proj.weight.dtype
1139
+ )
1140
+
1141
+ logger.warning_once(
1142
+ f"The input hidden states seems to be silently casted in float32, this might be related to"
1143
+ f" the fact you have upcasted embedding or layer norm layers in float32. We will cast back the input in"
1144
+ f" {target_dtype}."
1145
+ )
1146
+
1147
+ query_states = query_states.to(target_dtype)
1148
+ key_states = key_states.to(target_dtype)
1149
+ value_states = value_states.to(target_dtype)
1150
+
1151
+ attn_output = self._flash_attention_forward(
1152
+ query_states,
1153
+ key_states,
1154
+ value_states,
1155
+ attention_mask,
1156
+ q_len,
1157
+ dropout=dropout_rate,
1158
+ softmax_scale=self.softmax_scale,
1159
+ )
1160
+ if self.q_head_dim != self.v_head_dim:
1161
+ attn_output = attn_output[:, :, :, : self.v_head_dim]
1162
+
1163
+ attn_output = attn_output.reshape(
1164
+ bsz, q_len, self.num_heads * self.v_head_dim
1165
+ ).contiguous()
1166
+ attn_output = self.o_proj(attn_output)
1167
+
1168
+ if not output_attentions:
1169
+ attn_weights = None
1170
+
1171
+ return attn_output, attn_weights, past_key_value
1172
+
1173
+ def _flash_attention_forward(
1174
+ self,
1175
+ query_states,
1176
+ key_states,
1177
+ value_states,
1178
+ attention_mask,
1179
+ query_length,
1180
+ dropout=0.0,
1181
+ softmax_scale=None,
1182
+ ):
1183
+ """
1184
+ Calls the forward method of Flash Attention - if the input hidden states contain at least one padding token
1185
+ first unpad the input, then computes the attention scores and pad the final attention scores.
1186
+
1187
+ Args:
1188
+ query_states (`torch.Tensor`):
1189
+ Input query states to be passed to Flash Attention API
1190
+ key_states (`torch.Tensor`):
1191
+ Input key states to be passed to Flash Attention API
1192
+ value_states (`torch.Tensor`):
1193
+ Input value states to be passed to Flash Attention API
1194
+ attention_mask (`torch.Tensor`):
1195
+ The padding mask - corresponds to a tensor of size `(batch_size, seq_len)` where 0 stands for the
1196
+ position of padding tokens and 1 for the position of non-padding tokens.
1197
+ dropout (`int`, *optional*):
1198
+ Attention dropout
1199
+ softmax_scale (`float`, *optional*):
1200
+ The scaling of QK^T before applying softmax. Default to 1 / sqrt(head_dim)
1201
+ """
1202
+ if not self._flash_attn_uses_top_left_mask:
1203
+ causal = self.is_causal
1204
+ else:
1205
+ # TODO: Remove the `query_length != 1` check once Flash Attention for RoCm is bumped to 2.1. For details, please see the comment in DeepseekV2FlashAttention2 __init__.
1206
+ causal = self.is_causal and query_length != 1
1207
+
1208
+ # Contains at least one padding token in the sequence
1209
+ if attention_mask is not None:
1210
+ batch_size = query_states.shape[0]
1211
+ (
1212
+ query_states,
1213
+ key_states,
1214
+ value_states,
1215
+ indices_q,
1216
+ cu_seq_lens,
1217
+ max_seq_lens,
1218
+ ) = self._upad_input(
1219
+ query_states, key_states, value_states, attention_mask, query_length
1220
+ )
1221
+
1222
+ cu_seqlens_q, cu_seqlens_k = cu_seq_lens
1223
+ max_seqlen_in_batch_q, max_seqlen_in_batch_k = max_seq_lens
1224
+
1225
+ attn_output_unpad = flash_attn_varlen_func(
1226
+ query_states,
1227
+ key_states,
1228
+ value_states,
1229
+ cu_seqlens_q=cu_seqlens_q,
1230
+ cu_seqlens_k=cu_seqlens_k,
1231
+ max_seqlen_q=max_seqlen_in_batch_q,
1232
+ max_seqlen_k=max_seqlen_in_batch_k,
1233
+ dropout_p=dropout,
1234
+ softmax_scale=softmax_scale,
1235
+ causal=causal,
1236
+ )
1237
+
1238
+ attn_output = pad_input(
1239
+ attn_output_unpad, indices_q, batch_size, query_length
1240
+ )
1241
+ else:
1242
+ attn_output = flash_attn_func(
1243
+ query_states,
1244
+ key_states,
1245
+ value_states,
1246
+ dropout,
1247
+ softmax_scale=softmax_scale,
1248
+ causal=causal,
1249
+ )
1250
+
1251
+ return attn_output
1252
+
1253
+ def _upad_input(
1254
+ self, query_layer, key_layer, value_layer, attention_mask, query_length
1255
+ ):
1256
+ indices_k, cu_seqlens_k, max_seqlen_in_batch_k = _get_unpad_data(attention_mask)
1257
+ batch_size, kv_seq_len, num_key_value_heads, head_dim = key_layer.shape
1258
+
1259
+ key_layer = index_first_axis(
1260
+ key_layer.reshape(batch_size * kv_seq_len, num_key_value_heads, head_dim),
1261
+ indices_k,
1262
+ )
1263
+ value_layer = index_first_axis(
1264
+ value_layer.reshape(batch_size * kv_seq_len, num_key_value_heads, head_dim),
1265
+ indices_k,
1266
+ )
1267
+ if query_length == kv_seq_len:
1268
+ query_layer = index_first_axis(
1269
+ query_layer.reshape(batch_size * kv_seq_len, self.num_heads, head_dim),
1270
+ indices_k,
1271
+ )
1272
+ cu_seqlens_q = cu_seqlens_k
1273
+ max_seqlen_in_batch_q = max_seqlen_in_batch_k
1274
+ indices_q = indices_k
1275
+ elif query_length == 1:
1276
+ max_seqlen_in_batch_q = 1
1277
+ cu_seqlens_q = torch.arange(
1278
+ batch_size + 1, dtype=torch.int32, device=query_layer.device
1279
+ ) # There is a memcpy here, that is very bad.
1280
+ indices_q = cu_seqlens_q[:-1]
1281
+ query_layer = query_layer.squeeze(1)
1282
+ else:
1283
+ # The -q_len: slice assumes left padding.
1284
+ attention_mask = attention_mask[:, -query_length:]
1285
+ query_layer, indices_q, cu_seqlens_q, max_seqlen_in_batch_q = unpad_input(
1286
+ query_layer, attention_mask
1287
+ )
1288
+
1289
+ return (
1290
+ query_layer,
1291
+ key_layer,
1292
+ value_layer,
1293
+ indices_q,
1294
+ (cu_seqlens_q, cu_seqlens_k),
1295
+ (max_seqlen_in_batch_q, max_seqlen_in_batch_k),
1296
+ )
1297
+
1298
+
1299
+ ATTENTION_CLASSES = {
1300
+ "eager": DeepseekV2Attention,
1301
+ "flash_attention_2": DeepseekV2FlashAttention2,
1302
+ }
1303
+
1304
+
1305
+ class DeepseekV2DecoderLayer(nn.Module):
1306
+ def __init__(self, config: DeepseekV2Config, layer_idx: int):
1307
+ super().__init__()
1308
+ self.hidden_size = config.hidden_size
1309
+
1310
+ self.self_attn = ATTENTION_CLASSES[config._attn_implementation](
1311
+ config=config, layer_idx=layer_idx
1312
+ )
1313
+
1314
+ self.mlp = (
1315
+ DeepseekV2MoE(config)
1316
+ if (
1317
+ config.n_routed_experts is not None
1318
+ and layer_idx >= config.first_k_dense_replace
1319
+ and layer_idx % config.moe_layer_freq == 0
1320
+ )
1321
+ else DeepseekV2MLP(config)
1322
+ )
1323
+ self.input_layernorm = DeepseekV2RMSNorm(
1324
+ config.hidden_size, eps=config.rms_norm_eps
1325
+ )
1326
+ self.post_attention_layernorm = DeepseekV2RMSNorm(
1327
+ config.hidden_size, eps=config.rms_norm_eps
1328
+ )
1329
+
1330
+ def forward(
1331
+ self,
1332
+ hidden_states: torch.Tensor,
1333
+ attention_mask: Optional[torch.Tensor] = None,
1334
+ position_ids: Optional[torch.LongTensor] = None,
1335
+ past_key_value: Optional[Tuple[torch.Tensor]] = None,
1336
+ output_attentions: Optional[bool] = False,
1337
+ use_cache: Optional[bool] = False,
1338
+ **kwargs,
1339
+ ) -> Tuple[
1340
+ torch.FloatTensor, Optional[Tuple[torch.FloatTensor, torch.FloatTensor]]
1341
+ ]:
1342
+ """
1343
+ Args:
1344
+ hidden_states (`torch.FloatTensor`): input to the layer of shape `(batch, seq_len, embed_dim)`
1345
+ attention_mask (`torch.FloatTensor`, *optional*):
1346
+ attention mask of size `(batch_size, sequence_length)` if flash attention is used or `(batch_size, 1,
1347
+ query_sequence_length, key_sequence_length)` if default attention is used.
1348
+ output_attentions (`bool`, *optional*):
1349
+ Whether or not to return the attentions tensors of all attention layers. See `attentions` under
1350
+ returned tensors for more detail.
1351
+ use_cache (`bool`, *optional*):
1352
+ If set to `True`, `past_key_values` key value states are returned and can be used to speed up decoding
1353
+ (see `past_key_values`).
1354
+ past_key_value (`Tuple(torch.FloatTensor)`, *optional*): cached past key and value projection states
1355
+ """
1356
+ if "padding_mask" in kwargs:
1357
+ warnings.warn(
1358
+ "Passing `padding_mask` is deprecated and will be removed in v4.37. Please make sure use `attention_mask` instead.`"
1359
+ )
1360
+ residual = hidden_states
1361
+
1362
+ hidden_states = self.input_layernorm(hidden_states)
1363
+
1364
+ # Self Attention
1365
+ hidden_states, self_attn_weights, present_key_value = self.self_attn(
1366
+ hidden_states=hidden_states,
1367
+ attention_mask=attention_mask,
1368
+ position_ids=position_ids,
1369
+ past_key_value=past_key_value,
1370
+ output_attentions=output_attentions,
1371
+ use_cache=use_cache,
1372
+ **kwargs,
1373
+ )
1374
+ hidden_states = residual + hidden_states
1375
+
1376
+ # Fully Connected
1377
+ residual = hidden_states
1378
+ hidden_states = self.post_attention_layernorm(hidden_states)
1379
+ hidden_states = self.mlp(hidden_states)
1380
+ hidden_states = residual + hidden_states
1381
+
1382
+ outputs = (hidden_states,)
1383
+
1384
+ if output_attentions:
1385
+ outputs += (self_attn_weights,)
1386
+
1387
+ if use_cache:
1388
+ outputs += (present_key_value,)
1389
+
1390
+ return outputs
1391
+
1392
+
1393
+ DeepseekV2_START_DOCSTRING = r"""
1394
+ This model inherits from [`PreTrainedModel`]. Check the superclass documentation for the generic methods the
1395
+ library implements for all its model (such as downloading or saving, resizing the input embeddings, pruning heads
1396
+ etc.)
1397
+
1398
+ This model is also a PyTorch [torch.nn.Module](https://pytorch.org/docs/stable/nn.html#torch.nn.Module) subclass.
1399
+ Use it as a regular PyTorch Module and refer to the PyTorch documentation for all matter related to general usage
1400
+ and behavior.
1401
+
1402
+ Parameters:
1403
+ config ([`DeepseekV2Config`]):
1404
+ Model configuration class with all the parameters of the model. Initializing with a config file does not
1405
+ load the weights associated with the model, only the configuration. Check out the
1406
+ [`~PreTrainedModel.from_pretrained`] method to load the model weights.
1407
+ """
1408
+
1409
+
1410
+ @add_start_docstrings(
1411
+ "The bare DeepseekV2 Model outputting raw hidden-states without any specific head on top.",
1412
+ DeepseekV2_START_DOCSTRING,
1413
+ )
1414
+ class DeepseekV2PreTrainedModel(PreTrainedModel):
1415
+ config_class = DeepseekV2Config
1416
+ base_model_prefix = "model"
1417
+ supports_gradient_checkpointing = True
1418
+ _no_split_modules = ["DeepseekV2DecoderLayer"]
1419
+ _skip_keys_device_placement = "past_key_values"
1420
+ _supports_flash_attn_2 = True
1421
+ _supports_cache_class = True
1422
+
1423
+ def _init_weights(self, module):
1424
+ std = self.config.initializer_range
1425
+ if isinstance(module, nn.Linear):
1426
+ module.weight.data.normal_(mean=0.0, std=std)
1427
+ if module.bias is not None:
1428
+ module.bias.data.zero_()
1429
+ elif isinstance(module, nn.Embedding):
1430
+ module.weight.data.normal_(mean=0.0, std=std)
1431
+ if module.padding_idx is not None:
1432
+ module.weight.data[module.padding_idx].zero_()
1433
+
1434
+
1435
+ DeepseekV2_INPUTS_DOCSTRING = r"""
1436
+ Args:
1437
+ input_ids (`torch.LongTensor` of shape `(batch_size, sequence_length)`):
1438
+ Indices of input sequence tokens in the vocabulary. Padding will be ignored by default should you provide
1439
+ it.
1440
+
1441
+ Indices can be obtained using [`AutoTokenizer`]. See [`PreTrainedTokenizer.encode`] and
1442
+ [`PreTrainedTokenizer.__call__`] for details.
1443
+
1444
+ [What are input IDs?](../glossary#input-ids)
1445
+ attention_mask (`torch.Tensor` of shape `(batch_size, sequence_length)`, *optional*):
1446
+ Mask to avoid performing attention on padding token indices. Mask values selected in `[0, 1]`:
1447
+
1448
+ - 1 for tokens that are **not masked**,
1449
+ - 0 for tokens that are **masked**.
1450
+
1451
+ [What are attention masks?](../glossary#attention-mask)
1452
+
1453
+ Indices can be obtained using [`AutoTokenizer`]. See [`PreTrainedTokenizer.encode`] and
1454
+ [`PreTrainedTokenizer.__call__`] for details.
1455
+
1456
+ If `past_key_values` is used, optionally only the last `input_ids` have to be input (see
1457
+ `past_key_values`).
1458
+
1459
+ If you want to change padding behavior, you should read [`modeling_opt._prepare_decoder_attention_mask`]
1460
+ and modify to your needs. See diagram 1 in [the paper](https://arxiv.org/abs/1910.13461) for more
1461
+ information on the default strategy.
1462
+
1463
+ - 1 indicates the head is **not masked**,
1464
+ - 0 indicates the head is **masked**.
1465
+ position_ids (`torch.LongTensor` of shape `(batch_size, sequence_length)`, *optional*):
1466
+ Indices of positions of each input sequence tokens in the position embeddings. Selected in the range `[0,
1467
+ config.n_positions - 1]`.
1468
+
1469
+ [What are position IDs?](../glossary#position-ids)
1470
+ past_key_values (`Cache` or `tuple(tuple(torch.FloatTensor))`, *optional*):
1471
+ Pre-computed hidden-states (key and values in the self-attention blocks and in the cross-attention
1472
+ blocks) that can be used to speed up sequential decoding. This typically consists in the `past_key_values`
1473
+ returned by the model at a previous stage of decoding, when `use_cache=True` or `config.use_cache=True`.
1474
+
1475
+ Two formats are allowed:
1476
+ - a [`~cache_utils.Cache`] instance;
1477
+ - Tuple of `tuple(torch.FloatTensor)` of length `config.n_layers`, with each tuple having 2 tensors of
1478
+ shape `(batch_size, num_heads, sequence_length, embed_size_per_head)`). This is also known as the legacy
1479
+ cache format.
1480
+
1481
+ The model will output the same cache format that is fed as input. If no `past_key_values` are passed, the
1482
+ legacy cache format will be returned.
1483
+
1484
+ If `past_key_values` are used, the user can optionally input only the last `input_ids` (those that don't
1485
+ have their past key value states given to this model) of shape `(batch_size, 1)` instead of all `input_ids`
1486
+ of shape `(batch_size, sequence_length)`.
1487
+ inputs_embeds (`torch.FloatTensor` of shape `(batch_size, sequence_length, hidden_size)`, *optional*):
1488
+ Optionally, instead of passing `input_ids` you can choose to directly pass an embedded representation. This
1489
+ is useful if you want more control over how to convert `input_ids` indices into associated vectors than the
1490
+ model's internal embedding lookup matrix.
1491
+ use_cache (`bool`, *optional*):
1492
+ If set to `True`, `past_key_values` key value states are returned and can be used to speed up decoding (see
1493
+ `past_key_values`).
1494
+ output_attentions (`bool`, *optional*):
1495
+ Whether or not to return the attentions tensors of all attention layers. See `attentions` under returned
1496
+ tensors for more detail.
1497
+ output_hidden_states (`bool`, *optional*):
1498
+ Whether or not to return the hidden states of all layers. See `hidden_states` under returned tensors for
1499
+ more detail.
1500
+ return_dict (`bool`, *optional*):
1501
+ Whether or not to return a [`~utils.ModelOutput`] instead of a plain tuple.
1502
+ """
1503
+
1504
+
1505
+ @add_start_docstrings(
1506
+ "The bare DeepseekV2 Model outputting raw hidden-states without any specific head on top.",
1507
+ DeepseekV2_START_DOCSTRING,
1508
+ )
1509
+ class DeepseekV2Model(DeepseekV2PreTrainedModel):
1510
+ """
1511
+ Transformer decoder consisting of *config.num_hidden_layers* layers. Each layer is a [`DeepseekV2DecoderLayer`]
1512
+
1513
+ Args:
1514
+ config: DeepseekV2Config
1515
+ """
1516
+
1517
+ def __init__(self, config: DeepseekV2Config):
1518
+ super().__init__(config)
1519
+ print("DeepseekV2Model: using densemixer")
1520
+ self.padding_idx = config.pad_token_id
1521
+ self.vocab_size = config.vocab_size
1522
+
1523
+ self.embed_tokens = nn.Embedding(
1524
+ config.vocab_size, config.hidden_size, self.padding_idx
1525
+ )
1526
+ self.layers = nn.ModuleList(
1527
+ [
1528
+ DeepseekV2DecoderLayer(config, layer_idx)
1529
+ for layer_idx in range(config.num_hidden_layers)
1530
+ ]
1531
+ )
1532
+ self._use_flash_attention_2 = config._attn_implementation == "flash_attention_2"
1533
+ self.norm = DeepseekV2RMSNorm(config.hidden_size, eps=config.rms_norm_eps)
1534
+
1535
+ self.gradient_checkpointing = False
1536
+ # Initialize weights and apply final processing
1537
+ self.post_init()
1538
+
1539
+ def get_input_embeddings(self):
1540
+ return self.embed_tokens
1541
+
1542
+ def set_input_embeddings(self, value):
1543
+ self.embed_tokens = value
1544
+
1545
+ @add_start_docstrings_to_model_forward(DeepseekV2_INPUTS_DOCSTRING)
1546
+ def forward(
1547
+ self,
1548
+ input_ids: torch.LongTensor = None,
1549
+ attention_mask: Optional[torch.Tensor] = None,
1550
+ position_ids: Optional[torch.LongTensor] = None,
1551
+ past_key_values: Optional[List[torch.FloatTensor]] = None,
1552
+ inputs_embeds: Optional[torch.FloatTensor] = None,
1553
+ use_cache: Optional[bool] = None,
1554
+ output_attentions: Optional[bool] = None,
1555
+ output_hidden_states: Optional[bool] = None,
1556
+ return_dict: Optional[bool] = None,
1557
+ ) -> Union[Tuple, BaseModelOutputWithPast]:
1558
+ output_attentions = (
1559
+ output_attentions
1560
+ if output_attentions is not None
1561
+ else self.config.output_attentions
1562
+ )
1563
+ output_hidden_states = (
1564
+ output_hidden_states
1565
+ if output_hidden_states is not None
1566
+ else self.config.output_hidden_states
1567
+ )
1568
+ use_cache = use_cache if use_cache is not None else self.config.use_cache
1569
+
1570
+ return_dict = (
1571
+ return_dict if return_dict is not None else self.config.use_return_dict
1572
+ )
1573
+
1574
+ # retrieve input_ids and inputs_embeds
1575
+ if input_ids is not None and inputs_embeds is not None:
1576
+ raise ValueError(
1577
+ "You cannot specify both input_ids and inputs_embeds at the same time"
1578
+ )
1579
+ elif input_ids is not None:
1580
+ batch_size, seq_length = input_ids.shape[:2]
1581
+ elif inputs_embeds is not None:
1582
+ batch_size, seq_length = inputs_embeds.shape[:2]
1583
+ else:
1584
+ raise ValueError("You have to specify either input_ids or inputs_embeds")
1585
+
1586
+ if self.gradient_checkpointing and self.training:
1587
+ if use_cache:
1588
+ logger.warning_once(
1589
+ "`use_cache=True` is incompatible with gradient checkpointing. Setting `use_cache=False`transformers."
1590
+ )
1591
+ use_cache = False
1592
+
1593
+ past_key_values_length = 0
1594
+ if use_cache:
1595
+ use_legacy_cache = not isinstance(past_key_values, Cache)
1596
+ if use_legacy_cache:
1597
+ past_key_values = DynamicCache.from_legacy_cache(past_key_values)
1598
+ past_key_values_length = past_key_values.get_usable_length(seq_length)
1599
+
1600
+ if position_ids is None:
1601
+ device = input_ids.device if input_ids is not None else inputs_embeds.device
1602
+ position_ids = torch.arange(
1603
+ past_key_values_length,
1604
+ seq_length + past_key_values_length,
1605
+ dtype=torch.long,
1606
+ device=device,
1607
+ )
1608
+ position_ids = position_ids.unsqueeze(0)
1609
+
1610
+ if inputs_embeds is None:
1611
+ inputs_embeds = self.embed_tokens(input_ids)
1612
+
1613
+ if self._use_flash_attention_2:
1614
+ # 2d mask is passed through the layers
1615
+ attention_mask = (
1616
+ attention_mask
1617
+ if (attention_mask is not None and 0 in attention_mask)
1618
+ else None
1619
+ )
1620
+ else:
1621
+ # 4d mask is passed through the layers
1622
+ attention_mask = _prepare_4d_causal_attention_mask(
1623
+ attention_mask,
1624
+ (batch_size, seq_length),
1625
+ inputs_embeds,
1626
+ past_key_values_length,
1627
+ )
1628
+
1629
+ # embed positions
1630
+ hidden_states = inputs_embeds
1631
+
1632
+ # decoder layers
1633
+ all_hidden_states = () if output_hidden_states else None
1634
+ all_self_attns = () if output_attentions else None
1635
+ next_decoder_cache = None
1636
+
1637
+ for decoder_layer in self.layers:
1638
+ if output_hidden_states:
1639
+ all_hidden_states += (hidden_states,)
1640
+
1641
+ if self.gradient_checkpointing and self.training:
1642
+ layer_outputs = self._gradient_checkpointing_func(
1643
+ decoder_layer.__call__,
1644
+ hidden_states,
1645
+ attention_mask,
1646
+ position_ids,
1647
+ past_key_values,
1648
+ output_attentions,
1649
+ use_cache,
1650
+ )
1651
+ else:
1652
+ layer_outputs = decoder_layer(
1653
+ hidden_states,
1654
+ attention_mask=attention_mask,
1655
+ position_ids=position_ids,
1656
+ past_key_value=past_key_values,
1657
+ output_attentions=output_attentions,
1658
+ use_cache=use_cache,
1659
+ )
1660
+
1661
+ hidden_states = layer_outputs[0]
1662
+
1663
+ if use_cache:
1664
+ next_decoder_cache = layer_outputs[2 if output_attentions else 1]
1665
+
1666
+ if output_attentions:
1667
+ all_self_attns += (layer_outputs[1],)
1668
+
1669
+ hidden_states = self.norm(hidden_states)
1670
+
1671
+ # add hidden states from the last decoder layer
1672
+ if output_hidden_states:
1673
+ all_hidden_states += (hidden_states,)
1674
+
1675
+ next_cache = None
1676
+ if use_cache:
1677
+ next_cache = (
1678
+ next_decoder_cache.to_legacy_cache()
1679
+ if use_legacy_cache
1680
+ else next_decoder_cache
1681
+ )
1682
+ if not return_dict:
1683
+ return tuple(
1684
+ v
1685
+ for v in [hidden_states, next_cache, all_hidden_states, all_self_attns]
1686
+ if v is not None
1687
+ )
1688
+ return BaseModelOutputWithPast(
1689
+ last_hidden_state=hidden_states,
1690
+ past_key_values=next_cache,
1691
+ hidden_states=all_hidden_states,
1692
+ attentions=all_self_attns,
1693
+ )
1694
+
1695
+
1696
+ class DeepseekV2ForCausalLM(DeepseekV2PreTrainedModel):
1697
+ _tied_weights_keys = ["lm_head.weight"]
1698
+
1699
+ def __init__(self, config):
1700
+ super().__init__(config)
1701
+ self.model = DeepseekV2Model(config)
1702
+ self.vocab_size = config.vocab_size
1703
+ self.lm_head = nn.Linear(config.hidden_size, config.vocab_size, bias=False)
1704
+
1705
+ # Initialize weights and apply final processing
1706
+ self.post_init()
1707
+
1708
+ def get_input_embeddings(self):
1709
+ return self.model.embed_tokens
1710
+
1711
+ def set_input_embeddings(self, value):
1712
+ self.model.embed_tokens = value
1713
+
1714
+ def get_output_embeddings(self):
1715
+ return self.lm_head
1716
+
1717
+ def set_output_embeddings(self, new_embeddings):
1718
+ self.lm_head = new_embeddings
1719
+
1720
+ def set_decoder(self, decoder):
1721
+ self.model = decoder
1722
+
1723
+ def get_decoder(self):
1724
+ return self.model
1725
+
1726
+ @add_start_docstrings_to_model_forward(DeepseekV2_INPUTS_DOCSTRING)
1727
+ @replace_return_docstrings(
1728
+ output_type=CausalLMOutputWithPast, config_class=_CONFIG_FOR_DOC
1729
+ )
1730
+ def forward(
1731
+ self,
1732
+ input_ids: torch.LongTensor = None,
1733
+ attention_mask: Optional[torch.Tensor] = None,
1734
+ position_ids: Optional[torch.LongTensor] = None,
1735
+ past_key_values: Optional[List[torch.FloatTensor]] = None,
1736
+ inputs_embeds: Optional[torch.FloatTensor] = None,
1737
+ labels: Optional[torch.LongTensor] = None,
1738
+ use_cache: Optional[bool] = None,
1739
+ output_attentions: Optional[bool] = None,
1740
+ output_hidden_states: Optional[bool] = None,
1741
+ return_dict: Optional[bool] = None,
1742
+ ) -> Union[Tuple, CausalLMOutputWithPast]:
1743
+ r"""
1744
+ Args:
1745
+ labels (`torch.LongTensor` of shape `(batch_size, sequence_length)`, *optional*):
1746
+ Labels for computing the masked language modeling loss. Indices should either be in `[0, transformers.,
1747
+ config.vocab_size]` or -100 (see `input_ids` docstring). Tokens with indices set to `-100` are ignored
1748
+ (masked), the loss is only computed for the tokens with labels in `[0, transformers., config.vocab_size]`.
1749
+
1750
+ Returns:
1751
+
1752
+ Example:
1753
+
1754
+ ```python
1755
+ >>> from transformers import AutoTokenizer, DeepseekV2ForCausalLM
1756
+
1757
+ >>> model = DeepseekV2ForCausalLM.from_pretrained(PATH_TO_CONVERTED_WEIGHTS)
1758
+ >>> tokenizer = AutoTokenizer.from_pretrained(PATH_TO_CONVERTED_TOKENIZER)
1759
+
1760
+ >>> prompt = "Hey, are you conscious? Can you talk to me?"
1761
+ >>> inputs = tokenizer(prompt, return_tensors="pt")
1762
+
1763
+ >>> # Generate
1764
+ >>> generate_ids = model.generate(inputs.input_ids, max_length=30)
1765
+ >>> tokenizer.batch_decode(generate_ids, skip_special_tokens=True, clean_up_tokenization_spaces=False)[0]
1766
+ "Hey, are you conscious? Can you talk to me?\nI'm not conscious, but I can talk to you."
1767
+ ```"""
1768
+ output_attentions = (
1769
+ output_attentions
1770
+ if output_attentions is not None
1771
+ else self.config.output_attentions
1772
+ )
1773
+ output_hidden_states = (
1774
+ output_hidden_states
1775
+ if output_hidden_states is not None
1776
+ else self.config.output_hidden_states
1777
+ )
1778
+ return_dict = (
1779
+ return_dict if return_dict is not None else self.config.use_return_dict
1780
+ )
1781
+
1782
+ # decoder outputs consists of (dec_features, layer_state, dec_hidden, dec_attn)
1783
+ outputs = self.model(
1784
+ input_ids=input_ids,
1785
+ attention_mask=attention_mask,
1786
+ position_ids=position_ids,
1787
+ past_key_values=past_key_values,
1788
+ inputs_embeds=inputs_embeds,
1789
+ use_cache=use_cache,
1790
+ output_attentions=output_attentions,
1791
+ output_hidden_states=output_hidden_states,
1792
+ return_dict=return_dict,
1793
+ )
1794
+
1795
+ hidden_states = outputs[0]
1796
+ logits = self.lm_head(hidden_states)
1797
+ logits = logits.float()
1798
+
1799
+ loss = None
1800
+ if labels is not None:
1801
+ # Shift so that tokens < n predict n
1802
+ shift_logits = logits[..., :-1, :].contiguous()
1803
+ shift_labels = labels[..., 1:].contiguous()
1804
+ # Flatten the tokens
1805
+ loss_fct = CrossEntropyLoss()
1806
+ shift_logits = shift_logits.view(-1, self.config.vocab_size)
1807
+ shift_labels = shift_labels.view(-1)
1808
+ # Enable model parallelism
1809
+ shift_labels = shift_labels.to(shift_logits.device)
1810
+ loss = loss_fct(shift_logits, shift_labels)
1811
+
1812
+ if not return_dict:
1813
+ output = (logits,) + outputs[1:]
1814
+ return (loss,) + output if loss is not None else output
1815
+
1816
+ return CausalLMOutputWithPast(
1817
+ loss=loss,
1818
+ logits=logits,
1819
+ past_key_values=outputs.past_key_values,
1820
+ hidden_states=outputs.hidden_states,
1821
+ attentions=outputs.attentions,
1822
+ )
1823
+
1824
+ def prepare_inputs_for_generation(
1825
+ self,
1826
+ input_ids,
1827
+ past_key_values=None,
1828
+ attention_mask=None,
1829
+ inputs_embeds=None,
1830
+ **kwargs,
1831
+ ):
1832
+ if past_key_values is not None:
1833
+ if isinstance(past_key_values, Cache):
1834
+ cache_length = past_key_values.get_seq_length()
1835
+ past_length = past_key_values.seen_tokens
1836
+ max_cache_length = past_key_values.get_max_length()
1837
+ else:
1838
+ cache_length = past_length = past_key_values[0][0].shape[2]
1839
+ max_cache_length = None
1840
+
1841
+ # Keep only the unprocessed tokens:
1842
+ # 1 - If the length of the attention_mask exceeds the length of input_ids, then we are in a setting where
1843
+ # some of the inputs are exclusivelly passed as part of the cache (e.g. when passing input_embeds as
1844
+ # input)
1845
+ if (
1846
+ attention_mask is not None
1847
+ and attention_mask.shape[1] > input_ids.shape[1]
1848
+ ):
1849
+ input_ids = input_ids[:, -(attention_mask.shape[1] - past_length) :]
1850
+ # 2 - If the past_length is smaller than input_ids', then input_ids holds all input tokens. We can discard
1851
+ # input_ids based on the past_length.
1852
+ elif past_length < input_ids.shape[1]:
1853
+ input_ids = input_ids[:, past_length:]
1854
+ # 3 - Otherwise (past_length >= input_ids.shape[1]), let's assume input_ids only has unprocessed tokens.
1855
+
1856
+ # If we are about to go beyond the maximum cache length, we need to crop the input attention mask.
1857
+ if (
1858
+ max_cache_length is not None
1859
+ and attention_mask is not None
1860
+ and cache_length + input_ids.shape[1] > max_cache_length
1861
+ ):
1862
+ attention_mask = attention_mask[:, -max_cache_length:]
1863
+
1864
+ position_ids = kwargs.get("position_ids", None)
1865
+ if attention_mask is not None and position_ids is None:
1866
+ # create position_ids on the fly for batch generation
1867
+ position_ids = attention_mask.long().cumsum(-1) - 1
1868
+ position_ids.masked_fill_(attention_mask == 0, 1)
1869
+ if past_key_values:
1870
+ position_ids = position_ids[:, -input_ids.shape[1] :]
1871
+
1872
+ # if `inputs_embeds` are passed, we only want to use them in the 1st generation step
1873
+ if inputs_embeds is not None and past_key_values is None:
1874
+ model_inputs = {"inputs_embeds": inputs_embeds}
1875
+ else:
1876
+ model_inputs = {"input_ids": input_ids}
1877
+
1878
+ model_inputs.update(
1879
+ {
1880
+ "position_ids": position_ids,
1881
+ "past_key_values": past_key_values,
1882
+ "use_cache": kwargs.get("use_cache"),
1883
+ "attention_mask": attention_mask,
1884
+ }
1885
+ )
1886
+ return model_inputs
1887
+
1888
+ @staticmethod
1889
+ def _reorder_cache(past_key_values, beam_idx):
1890
+ reordered_past = ()
1891
+ for layer_past in past_key_values:
1892
+ reordered_past += (
1893
+ tuple(
1894
+ past_state.index_select(0, beam_idx.to(past_state.device))
1895
+ for past_state in layer_past
1896
+ ),
1897
+ )
1898
+ return reordered_past
1899
+
1900
+
1901
+ @add_start_docstrings(
1902
+ """
1903
+ The DeepseekV2 Model transformer with a sequence classification head on top (linear layer).
1904
+
1905
+ [`DeepseekV2ForSequenceClassification`] uses the last token in order to do the classification, as other causal models
1906
+ (e.g. GPT-2) do.
1907
+
1908
+ Since it does classification on the last token, it requires to know the position of the last token. If a
1909
+ `pad_token_id` is defined in the configuration, it finds the last token that is not a padding token in each row. If
1910
+ no `pad_token_id` is defined, it simply takes the last value in each row of the batch. Since it cannot guess the
1911
+ padding tokens when `inputs_embeds` are passed instead of `input_ids`, it does the same (take the last value in
1912
+ each row of the batch).
1913
+ """,
1914
+ DeepseekV2_START_DOCSTRING,
1915
+ )
1916
+ class DeepseekV2ForSequenceClassification(DeepseekV2PreTrainedModel):
1917
+ def __init__(self, config):
1918
+ super().__init__(config)
1919
+ self.num_labels = config.num_labels
1920
+ self.model = DeepseekV2Model(config)
1921
+ self.score = nn.Linear(config.hidden_size, self.num_labels, bias=False)
1922
+
1923
+ # Initialize weights and apply final processing
1924
+ self.post_init()
1925
+
1926
+ def get_input_embeddings(self):
1927
+ return self.model.embed_tokens
1928
+
1929
+ def set_input_embeddings(self, value):
1930
+ self.model.embed_tokens = value
1931
+
1932
+ @add_start_docstrings_to_model_forward(DeepseekV2_INPUTS_DOCSTRING)
1933
+ def forward(
1934
+ self,
1935
+ input_ids: torch.LongTensor = None,
1936
+ attention_mask: Optional[torch.Tensor] = None,
1937
+ position_ids: Optional[torch.LongTensor] = None,
1938
+ past_key_values: Optional[List[torch.FloatTensor]] = None,
1939
+ inputs_embeds: Optional[torch.FloatTensor] = None,
1940
+ labels: Optional[torch.LongTensor] = None,
1941
+ use_cache: Optional[bool] = None,
1942
+ output_attentions: Optional[bool] = None,
1943
+ output_hidden_states: Optional[bool] = None,
1944
+ return_dict: Optional[bool] = None,
1945
+ ) -> Union[Tuple, SequenceClassifierOutputWithPast]:
1946
+ r"""
1947
+ labels (`torch.LongTensor` of shape `(batch_size,)`, *optional*):
1948
+ Labels for computing the sequence classification/regression loss. Indices should be in `[0, transformers.,
1949
+ config.num_labels - 1]`. If `config.num_labels == 1` a regression loss is computed (Mean-Square loss), If
1950
+ `config.num_labels > 1` a classification loss is computed (Cross-Entropy).
1951
+ """
1952
+ return_dict = (
1953
+ return_dict if return_dict is not None else self.config.use_return_dict
1954
+ )
1955
+
1956
+ transformer_outputs = self.model(
1957
+ input_ids,
1958
+ attention_mask=attention_mask,
1959
+ position_ids=position_ids,
1960
+ past_key_values=past_key_values,
1961
+ inputs_embeds=inputs_embeds,
1962
+ use_cache=use_cache,
1963
+ output_attentions=output_attentions,
1964
+ output_hidden_states=output_hidden_states,
1965
+ return_dict=return_dict,
1966
+ )
1967
+ hidden_states = transformer_outputs[0]
1968
+ logits = self.score(hidden_states)
1969
+
1970
+ if input_ids is not None:
1971
+ batch_size = input_ids.shape[0]
1972
+ else:
1973
+ batch_size = inputs_embeds.shape[0]
1974
+
1975
+ if self.config.pad_token_id is None and batch_size != 1:
1976
+ raise ValueError(
1977
+ "Cannot handle batch sizes > 1 if no padding token is defined."
1978
+ )
1979
+ if self.config.pad_token_id is None:
1980
+ sequence_lengths = -1
1981
+ else:
1982
+ if input_ids is not None:
1983
+ sequence_lengths = (
1984
+ torch.eq(input_ids, self.config.pad_token_id).int().argmax(-1) - 1
1985
+ ).to(logits.device)
1986
+ else:
1987
+ sequence_lengths = -1
1988
+
1989
+ pooled_logits = logits[
1990
+ torch.arange(batch_size, device=logits.device), sequence_lengths
1991
+ ]
1992
+
1993
+ loss = None
1994
+ if labels is not None:
1995
+ labels = labels.to(logits.device)
1996
+ if self.config.problem_type is None:
1997
+ if self.num_labels == 1:
1998
+ self.config.problem_type = "regression"
1999
+ elif self.num_labels > 1 and (
2000
+ labels.dtype == torch.long or labels.dtype == torch.int
2001
+ ):
2002
+ self.config.problem_type = "single_label_classification"
2003
+ else:
2004
+ self.config.problem_type = "multi_label_classification"
2005
+
2006
+ if self.config.problem_type == "regression":
2007
+ loss_fct = MSELoss()
2008
+ if self.num_labels == 1:
2009
+ loss = loss_fct(pooled_logits.squeeze(), labels.squeeze())
2010
+ else:
2011
+ loss = loss_fct(pooled_logits, labels)
2012
+ elif self.config.problem_type == "single_label_classification":
2013
+ loss_fct = CrossEntropyLoss()
2014
+ loss = loss_fct(
2015
+ pooled_logits.view(-1, self.num_labels), labels.view(-1)
2016
+ )
2017
+ elif self.config.problem_type == "multi_label_classification":
2018
+ loss_fct = BCEWithLogitsLoss()
2019
+ loss = loss_fct(pooled_logits, labels)
2020
+ if not return_dict:
2021
+ output = (pooled_logits,) + transformer_outputs[1:]
2022
+ return ((loss,) + output) if loss is not None else output
2023
+
2024
+ return SequenceClassifierOutputWithPast(
2025
+ loss=loss,
2026
+ logits=pooled_logits,
2027
+ past_key_values=transformer_outputs.past_key_values,
2028
+ hidden_states=transformer_outputs.hidden_states,
2029
+ attentions=transformer_outputs.attentions,
2030
+ )
special_tokens_map.json ADDED
@@ -0,0 +1,23 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<|begin▁of▁sentence|>",
4
+ "lstrip": false,
5
+ "normalized": true,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "eos_token": {
10
+ "content": "<|end▁of▁sentence|>",
11
+ "lstrip": false,
12
+ "normalized": true,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "pad_token": {
17
+ "content": "<|end▁of▁sentence|>",
18
+ "lstrip": false,
19
+ "normalized": true,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ }
23
+ }
tokenizer.json ADDED
The diff for this file is too large to render. See raw diff
 
tokenizer_config.json ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "add_bos_token": true,
3
+ "add_eos_token": false,
4
+ "add_prefix_space": null,
5
+ "added_tokens_decoder": {
6
+ "100000": {
7
+ "content": "<|begin▁of▁sentence|>",
8
+ "lstrip": false,
9
+ "normalized": true,
10
+ "rstrip": false,
11
+ "single_word": false,
12
+ "special": true
13
+ },
14
+ "100001": {
15
+ "content": "<|end▁of▁sentence|>",
16
+ "lstrip": false,
17
+ "normalized": true,
18
+ "rstrip": false,
19
+ "single_word": false,
20
+ "special": true
21
+ }
22
+ },
23
+ "bos_token": "<|begin▁of▁sentence|>",
24
+ "chat_template": "{% if not add_generation_prompt is defined %}{% set add_generation_prompt = false %}{% endif %}{{ bos_token }}{% for message in messages %}{% if message['role'] == 'user' %}{{ 'User: ' + message['content'] + '\n\n' }}{% elif message['role'] == 'assistant' %}{{ 'Assistant: ' + message['content'] + eos_token }}{% elif message['role'] == 'system' %}{{ message['content'] + '\n\n' }}{% endif %}{% endfor %}{% if add_generation_prompt %}{{ 'Assistant:' }}{% endif %}",
25
+ "clean_up_tokenization_spaces": false,
26
+ "eos_token": "<|end▁of▁sentence|>",
27
+ "extra_special_tokens": {},
28
+ "legacy": true,
29
+ "model_max_length": 16384,
30
+ "pad_token": "<|end▁of▁sentence|>",
31
+ "padding_side": "right",
32
+ "sp_model_kwargs": {},
33
+ "split_special_tokens": false,
34
+ "tokenizer_class": "LlamaTokenizerFast",
35
+ "unk_token": null,
36
+ "use_default_system_prompt": false
37
+ }
trainer_state.json ADDED
@@ -0,0 +1,433 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "best_global_step": null,
3
+ "best_metric": null,
4
+ "best_model_checkpoint": null,
5
+ "epoch": 1.0,
6
+ "eval_steps": 500,
7
+ "global_step": 57,
8
+ "is_hyper_param_search": false,
9
+ "is_local_process_zero": true,
10
+ "is_world_process_zero": true,
11
+ "log_history": [
12
+ {
13
+ "epoch": 0.017543859649122806,
14
+ "grad_norm": 17.927536594531137,
15
+ "learning_rate": 0.0,
16
+ "loss": 2.1007,
17
+ "step": 1
18
+ },
19
+ {
20
+ "epoch": 0.03508771929824561,
21
+ "grad_norm": 17.72956223339168,
22
+ "learning_rate": 1.6666666666666667e-06,
23
+ "loss": 2.116,
24
+ "step": 2
25
+ },
26
+ {
27
+ "epoch": 0.05263157894736842,
28
+ "grad_norm": 17.672190834265272,
29
+ "learning_rate": 3.3333333333333333e-06,
30
+ "loss": 2.0604,
31
+ "step": 3
32
+ },
33
+ {
34
+ "epoch": 0.07017543859649122,
35
+ "grad_norm": 17.971822366502078,
36
+ "learning_rate": 4.9999999999999996e-06,
37
+ "loss": 1.9503,
38
+ "step": 4
39
+ },
40
+ {
41
+ "epoch": 0.08771929824561403,
42
+ "grad_norm": 15.200406179047267,
43
+ "learning_rate": 6.666666666666667e-06,
44
+ "loss": 1.5436,
45
+ "step": 5
46
+ },
47
+ {
48
+ "epoch": 0.10526315789473684,
49
+ "grad_norm": 9.635795377627382,
50
+ "learning_rate": 8.333333333333334e-06,
51
+ "loss": 0.9739,
52
+ "step": 6
53
+ },
54
+ {
55
+ "epoch": 0.12280701754385964,
56
+ "grad_norm": 7.484253807290315,
57
+ "learning_rate": 9.999999999999999e-06,
58
+ "loss": 0.8399,
59
+ "step": 7
60
+ },
61
+ {
62
+ "epoch": 0.14035087719298245,
63
+ "grad_norm": 11.160826616010961,
64
+ "learning_rate": 1.1666666666666668e-05,
65
+ "loss": 0.4953,
66
+ "step": 8
67
+ },
68
+ {
69
+ "epoch": 0.15789473684210525,
70
+ "grad_norm": 4.0227237250105565,
71
+ "learning_rate": 1.3333333333333333e-05,
72
+ "loss": 0.3685,
73
+ "step": 9
74
+ },
75
+ {
76
+ "epoch": 0.17543859649122806,
77
+ "grad_norm": 3.290757366656229,
78
+ "learning_rate": 1.5e-05,
79
+ "loss": 0.264,
80
+ "step": 10
81
+ },
82
+ {
83
+ "epoch": 0.19298245614035087,
84
+ "grad_norm": 6.664482314759337,
85
+ "learning_rate": 1.6666666666666667e-05,
86
+ "loss": 0.225,
87
+ "step": 11
88
+ },
89
+ {
90
+ "epoch": 0.21052631578947367,
91
+ "grad_norm": 22.471632237708526,
92
+ "learning_rate": 1.8333333333333336e-05,
93
+ "loss": 0.2447,
94
+ "step": 12
95
+ },
96
+ {
97
+ "epoch": 0.22807017543859648,
98
+ "grad_norm": 3.1987973352339774,
99
+ "learning_rate": 1.9999999999999998e-05,
100
+ "loss": 0.1664,
101
+ "step": 13
102
+ },
103
+ {
104
+ "epoch": 0.24561403508771928,
105
+ "grad_norm": 19.6072046010338,
106
+ "learning_rate": 2.1666666666666667e-05,
107
+ "loss": 0.3125,
108
+ "step": 14
109
+ },
110
+ {
111
+ "epoch": 0.2631578947368421,
112
+ "grad_norm": 9.406947647468074,
113
+ "learning_rate": 2.3333333333333336e-05,
114
+ "loss": 0.1869,
115
+ "step": 15
116
+ },
117
+ {
118
+ "epoch": 0.2807017543859649,
119
+ "grad_norm": 1.6860661368155754,
120
+ "learning_rate": 2.5e-05,
121
+ "loss": 0.1189,
122
+ "step": 16
123
+ },
124
+ {
125
+ "epoch": 0.2982456140350877,
126
+ "grad_norm": 3.122660892779454,
127
+ "learning_rate": 2.6666666666666667e-05,
128
+ "loss": 0.1121,
129
+ "step": 17
130
+ },
131
+ {
132
+ "epoch": 0.3157894736842105,
133
+ "grad_norm": 1.8333361642129282,
134
+ "learning_rate": 2.8333333333333332e-05,
135
+ "loss": 0.0835,
136
+ "step": 18
137
+ },
138
+ {
139
+ "epoch": 0.3333333333333333,
140
+ "grad_norm": 1.5042401197881756,
141
+ "learning_rate": 3e-05,
142
+ "loss": 0.0951,
143
+ "step": 19
144
+ },
145
+ {
146
+ "epoch": 0.3508771929824561,
147
+ "grad_norm": 1.2487707350152872,
148
+ "learning_rate": 2.999683799255387e-05,
149
+ "loss": 0.0904,
150
+ "step": 20
151
+ },
152
+ {
153
+ "epoch": 0.3684210526315789,
154
+ "grad_norm": 1.2241049229073928,
155
+ "learning_rate": 2.998735330332096e-05,
156
+ "loss": 0.0767,
157
+ "step": 21
158
+ },
159
+ {
160
+ "epoch": 0.38596491228070173,
161
+ "grad_norm": 1.1631972621213789,
162
+ "learning_rate": 2.9971549931055665e-05,
163
+ "loss": 0.1037,
164
+ "step": 22
165
+ },
166
+ {
167
+ "epoch": 0.40350877192982454,
168
+ "grad_norm": 0.7528466133878474,
169
+ "learning_rate": 2.9949434538475414e-05,
170
+ "loss": 0.0656,
171
+ "step": 23
172
+ },
173
+ {
174
+ "epoch": 0.42105263157894735,
175
+ "grad_norm": 1.2033274664994946,
176
+ "learning_rate": 2.9921016449451695e-05,
177
+ "loss": 0.0726,
178
+ "step": 24
179
+ },
180
+ {
181
+ "epoch": 0.43859649122807015,
182
+ "grad_norm": 0.8005055437749382,
183
+ "learning_rate": 2.9886307645079037e-05,
184
+ "loss": 0.0683,
185
+ "step": 25
186
+ },
187
+ {
188
+ "epoch": 0.45614035087719296,
189
+ "grad_norm": 0.6127230428232889,
190
+ "learning_rate": 2.9845322758623833e-05,
191
+ "loss": 0.0559,
192
+ "step": 26
193
+ },
194
+ {
195
+ "epoch": 0.47368421052631576,
196
+ "grad_norm": 0.7493167535786184,
197
+ "learning_rate": 2.9798079069354893e-05,
198
+ "loss": 0.0502,
199
+ "step": 27
200
+ },
201
+ {
202
+ "epoch": 0.49122807017543857,
203
+ "grad_norm": 0.6576637092715767,
204
+ "learning_rate": 2.974459649525853e-05,
205
+ "loss": 0.0504,
206
+ "step": 28
207
+ },
208
+ {
209
+ "epoch": 0.5087719298245614,
210
+ "grad_norm": 0.7425180117381138,
211
+ "learning_rate": 2.968489758464107e-05,
212
+ "loss": 0.0574,
213
+ "step": 29
214
+ },
215
+ {
216
+ "epoch": 0.5263157894736842,
217
+ "grad_norm": 0.6874437865246206,
218
+ "learning_rate": 2.9619007506622506e-05,
219
+ "loss": 0.046,
220
+ "step": 30
221
+ },
222
+ {
223
+ "epoch": 0.543859649122807,
224
+ "grad_norm": 0.6557910015247116,
225
+ "learning_rate": 2.9546954040525144e-05,
226
+ "loss": 0.0573,
227
+ "step": 31
228
+ },
229
+ {
230
+ "epoch": 0.5614035087719298,
231
+ "grad_norm": 0.7293671239741126,
232
+ "learning_rate": 2.946876756416183e-05,
233
+ "loss": 0.0612,
234
+ "step": 32
235
+ },
236
+ {
237
+ "epoch": 0.5789473684210527,
238
+ "grad_norm": 0.8358219708210677,
239
+ "learning_rate": 2.938448104102862e-05,
240
+ "loss": 0.07,
241
+ "step": 33
242
+ },
243
+ {
244
+ "epoch": 0.5964912280701754,
245
+ "grad_norm": 0.5609269646176284,
246
+ "learning_rate": 2.929413000640735e-05,
247
+ "loss": 0.0401,
248
+ "step": 34
249
+ },
250
+ {
251
+ "epoch": 0.6140350877192983,
252
+ "grad_norm": 0.7733447580125304,
253
+ "learning_rate": 2.919775255238392e-05,
254
+ "loss": 0.0491,
255
+ "step": 35
256
+ },
257
+ {
258
+ "epoch": 0.631578947368421,
259
+ "grad_norm": 0.6175112559170691,
260
+ "learning_rate": 2.9095389311788626e-05,
261
+ "loss": 0.0456,
262
+ "step": 36
263
+ },
264
+ {
265
+ "epoch": 0.6491228070175439,
266
+ "grad_norm": 0.5625805469472364,
267
+ "learning_rate": 2.8987083441065335e-05,
268
+ "loss": 0.0501,
269
+ "step": 37
270
+ },
271
+ {
272
+ "epoch": 0.6666666666666666,
273
+ "grad_norm": 0.6105268268276054,
274
+ "learning_rate": 2.8872880602076675e-05,
275
+ "loss": 0.0589,
276
+ "step": 38
277
+ },
278
+ {
279
+ "epoch": 0.6842105263157895,
280
+ "grad_norm": 0.677601208127951,
281
+ "learning_rate": 2.8752828942852943e-05,
282
+ "loss": 0.0565,
283
+ "step": 39
284
+ },
285
+ {
286
+ "epoch": 0.7017543859649122,
287
+ "grad_norm": 0.6203994318630799,
288
+ "learning_rate": 2.8626979077292856e-05,
289
+ "loss": 0.067,
290
+ "step": 40
291
+ },
292
+ {
293
+ "epoch": 0.7192982456140351,
294
+ "grad_norm": 0.46617840389969134,
295
+ "learning_rate": 2.8495384063824683e-05,
296
+ "loss": 0.0478,
297
+ "step": 41
298
+ },
299
+ {
300
+ "epoch": 0.7368421052631579,
301
+ "grad_norm": 0.6472078184788504,
302
+ "learning_rate": 2.8358099383036745e-05,
303
+ "loss": 0.0552,
304
+ "step": 42
305
+ },
306
+ {
307
+ "epoch": 0.7543859649122807,
308
+ "grad_norm": 0.49757620217057613,
309
+ "learning_rate": 2.8215182914286768e-05,
310
+ "loss": 0.0489,
311
+ "step": 43
312
+ },
313
+ {
314
+ "epoch": 0.7719298245614035,
315
+ "grad_norm": 0.5105792522522927,
316
+ "learning_rate": 2.8066694911299865e-05,
317
+ "loss": 0.0409,
318
+ "step": 44
319
+ },
320
+ {
321
+ "epoch": 0.7894736842105263,
322
+ "grad_norm": 0.5214487988547967,
323
+ "learning_rate": 2.7912697976765516e-05,
324
+ "loss": 0.0596,
325
+ "step": 45
326
+ },
327
+ {
328
+ "epoch": 0.8070175438596491,
329
+ "grad_norm": 0.5580291628155013,
330
+ "learning_rate": 2.7753257035944216e-05,
331
+ "loss": 0.0537,
332
+ "step": 46
333
+ },
334
+ {
335
+ "epoch": 0.8245614035087719,
336
+ "grad_norm": 0.5089210930704078,
337
+ "learning_rate": 2.7588439309294902e-05,
338
+ "loss": 0.0525,
339
+ "step": 47
340
+ },
341
+ {
342
+ "epoch": 0.8421052631578947,
343
+ "grad_norm": 0.4910778671662586,
344
+ "learning_rate": 2.741831428413477e-05,
345
+ "loss": 0.0404,
346
+ "step": 48
347
+ },
348
+ {
349
+ "epoch": 0.8596491228070176,
350
+ "grad_norm": 0.4271630442716451,
351
+ "learning_rate": 2.7242953685343327e-05,
352
+ "loss": 0.0389,
353
+ "step": 49
354
+ },
355
+ {
356
+ "epoch": 0.8771929824561403,
357
+ "grad_norm": 0.6391418863428429,
358
+ "learning_rate": 2.7062431445123127e-05,
359
+ "loss": 0.0595,
360
+ "step": 50
361
+ },
362
+ {
363
+ "epoch": 0.8947368421052632,
364
+ "grad_norm": 0.46113392736560355,
365
+ "learning_rate": 2.6876823671829874e-05,
366
+ "loss": 0.0416,
367
+ "step": 51
368
+ },
369
+ {
370
+ "epoch": 0.9122807017543859,
371
+ "grad_norm": 0.3701609773493845,
372
+ "learning_rate": 2.6686208617885057e-05,
373
+ "loss": 0.0335,
374
+ "step": 52
375
+ },
376
+ {
377
+ "epoch": 0.9298245614035088,
378
+ "grad_norm": 0.7289248423166002,
379
+ "learning_rate": 2.649066664678467e-05,
380
+ "loss": 0.0427,
381
+ "step": 53
382
+ },
383
+ {
384
+ "epoch": 0.9473684210526315,
385
+ "grad_norm": 0.5035049296145055,
386
+ "learning_rate": 2.6290280199217867e-05,
387
+ "loss": 0.0533,
388
+ "step": 54
389
+ },
390
+ {
391
+ "epoch": 0.9649122807017544,
392
+ "grad_norm": 0.42632587608774797,
393
+ "learning_rate": 2.6085133758309887e-05,
394
+ "loss": 0.0356,
395
+ "step": 55
396
+ },
397
+ {
398
+ "epoch": 0.9824561403508771,
399
+ "grad_norm": 0.3641752606139471,
400
+ "learning_rate": 2.5875313814003892e-05,
401
+ "loss": 0.0304,
402
+ "step": 56
403
+ },
404
+ {
405
+ "epoch": 1.0,
406
+ "grad_norm": 0.476692744503315,
407
+ "learning_rate": 2.5660908826596707e-05,
408
+ "loss": 0.0415,
409
+ "step": 57
410
+ }
411
+ ],
412
+ "logging_steps": 1,
413
+ "max_steps": 171,
414
+ "num_input_tokens_seen": 0,
415
+ "num_train_epochs": 3,
416
+ "save_steps": 500,
417
+ "stateful_callbacks": {
418
+ "TrainerControl": {
419
+ "args": {
420
+ "should_epoch_stop": false,
421
+ "should_evaluate": false,
422
+ "should_log": false,
423
+ "should_save": true,
424
+ "should_training_stop": false
425
+ },
426
+ "attributes": {}
427
+ }
428
+ },
429
+ "total_flos": 519809531904.0,
430
+ "train_batch_size": 16,
431
+ "trial_name": null,
432
+ "trial_params": null
433
+ }
training_args.bin ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:eb8c192dd8df40c7682f61e1398550e31a745714a70dfec7c137f48ca18e4031
3
+ size 8145