zhanghanxiao commited on
Commit
284fcb8
·
verified ·
1 Parent(s): 71dd444

Add files using upload-large-folder tool

Browse files
This view is limited to 50 files because it contains too many changes.   See raw diff
Files changed (50) hide show
  1. .gitattributes +1 -0
  2. chat_template.jinja +91 -0
  3. config.json +116 -0
  4. configuration_bailing_moe_v2_5.py +120 -0
  5. generation_config.json +7 -0
  6. model-00005-of-00160.safetensors +3 -0
  7. model-00007-of-00160.safetensors +3 -0
  8. model-00008-of-00160.safetensors +3 -0
  9. model-00021-of-00160.safetensors +3 -0
  10. model-00026-of-00160.safetensors +3 -0
  11. model-00028-of-00160.safetensors +3 -0
  12. model-00034-of-00160.safetensors +3 -0
  13. model-00038-of-00160.safetensors +3 -0
  14. model-00042-of-00160.safetensors +3 -0
  15. model-00058-of-00160.safetensors +3 -0
  16. model-00060-of-00160.safetensors +3 -0
  17. model-00067-of-00160.safetensors +3 -0
  18. model-00075-of-00160.safetensors +3 -0
  19. model-00076-of-00160.safetensors +3 -0
  20. model-00080-of-00160.safetensors +3 -0
  21. model-00082-of-00160.safetensors +3 -0
  22. model-00084-of-00160.safetensors +3 -0
  23. model-00085-of-00160.safetensors +3 -0
  24. model-00092-of-00160.safetensors +3 -0
  25. model-00097-of-00160.safetensors +3 -0
  26. model-00098-of-00160.safetensors +3 -0
  27. model-00105-of-00160.safetensors +3 -0
  28. model-00108-of-00160.safetensors +3 -0
  29. model-00113-of-00160.safetensors +3 -0
  30. model-00115-of-00160.safetensors +3 -0
  31. model-00119-of-00160.safetensors +3 -0
  32. model-00120-of-00160.safetensors +3 -0
  33. model-00122-of-00160.safetensors +3 -0
  34. model-00125-of-00160.safetensors +3 -0
  35. model-00130-of-00160.safetensors +3 -0
  36. model-00131-of-00160.safetensors +3 -0
  37. model-00132-of-00160.safetensors +3 -0
  38. model-00134-of-00160.safetensors +3 -0
  39. model-00137-of-00160.safetensors +3 -0
  40. model-00139-of-00160.safetensors +3 -0
  41. model-00142-of-00160.safetensors +3 -0
  42. model-00143-of-00160.safetensors +3 -0
  43. model-00145-of-00160.safetensors +3 -0
  44. model-00146-of-00160.safetensors +3 -0
  45. model-00152-of-00160.safetensors +3 -0
  46. model-00157-of-00160.safetensors +3 -0
  47. model-00158-of-00160.safetensors +3 -0
  48. modeling_bailing_moe_v2_5.py +1603 -0
  49. special_tokens_map.json +30 -0
  50. tokenizer.json +3 -0
.gitattributes CHANGED
@@ -33,3 +33,4 @@ saved_model/**/* filter=lfs diff=lfs merge=lfs -text
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
 
 
33
  *.zip filter=lfs diff=lfs merge=lfs -text
34
  *.zst filter=lfs diff=lfs merge=lfs -text
35
  *tfevents* filter=lfs diff=lfs merge=lfs -text
36
+ tokenizer.json filter=lfs diff=lfs merge=lfs -text
chat_template.jinja ADDED
@@ -0,0 +1,91 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {%- if messages[0].role == 'system' %}
2
+ {%- if messages[0].content != '' %}
3
+ {{- '<role>SYSTEM</role>\n' + messages[0].content + '\n\n' }}
4
+ {%- elif tools %}
5
+ {{- '<role>SYSTEM</role>\n' }}
6
+ {%- endif %}
7
+ {%- elif tools %}
8
+ {{- '<role>SYSTEM</role>\n' }}
9
+ {%- endif %}
10
+ {%- if tools %}
11
+ {{- "# Tools\nYou may call one or more functions to assist with the user query.\nYou are provided with function signatures within <tools></tools> XML tags:\n<tools>" }}
12
+ {%- for tool in tools %}
13
+ {{- "\n" }}
14
+ {{- tool | tojson }}
15
+ {%- endfor %}
16
+ {{- "\n</tools>\nFor each function call, return a json object with function name and arguments within <tool_call></tool_call> XML tags:\n<tool_call>\n{\"name\": <function-name>, \"arguments\": <args-json-object>}\n</tool_call>\n\n" }}
17
+ {%- endif %}
18
+ {%- set ns = namespace(multi_step_tool=true, last_query_index=messages|length - 1) %}
19
+ {%- for message in messages[::-1] %}
20
+ {%- set index = (messages|length - 1) - loop.index0 %}
21
+ {%- if ns.multi_step_tool and message.role == "user" and message.content is string and not(message.content.startswith('<tool_response>') and message.content.endswith('</tool_response>')) %}
22
+ {%- set ns.multi_step_tool = false %}
23
+ {%- set ns.last_query_index = index %}
24
+ {%- endif %}
25
+ {%- endfor %}
26
+ {%- for message in messages %}
27
+ {%- if message.content is string %}
28
+ {%- set content = message.content %}
29
+ {%- else %}
30
+ {%- set content = '' %}
31
+ {%- endif %}
32
+ {%- if message.role == "user" %}
33
+ {{- '<role>HUMAN</role>\n' + message.content + '<|role_end|>\n\n' }}
34
+ {%- elif message.role == "system" and not loop.first %}
35
+ {{- '<role>SYSTEM</role>\n' + message.content + '<|role_end|>\n\n' }}
36
+ {%- elif message.role == "assistant" %}
37
+ {%- set reasoning_content = '' %}
38
+ {%- if message.reasoning_content is string %}
39
+ {%- if message.reasoning_content !='' %}
40
+ {%- set reasoning_content = message.reasoning_content %}
41
+ {%- endif %}
42
+ {%- else %}
43
+ {%- if '</think>' in content %}
44
+ {%- set reasoning_content = content.split('</think>')[0].rstrip('\n').split('<think>')[-1].lstrip('\n') %}
45
+ {%- set content = content.split('</think>')[-1].lstrip('\n') %}
46
+ {%- endif %}
47
+ {%- endif %}
48
+ {%- if loop.index0 > ns.last_query_index %}
49
+ {%- if reasoning_content != '' %}
50
+ {{- '<role>ASSISTANT</role>\n' + '<think>\n' + reasoning_content.strip('\n') + '\n</think>\n\n' + content.lstrip('\n') }}
51
+ {%- else %}
52
+ {{- '<role>ASSISTANT</role>\n' + content }}
53
+ {%- endif %}
54
+ {%- else %}
55
+ {{- '<role>ASSISTANT</role>\n' + content }}
56
+ {%- endif %}
57
+ {%- if message.tool_calls %}
58
+ {%- for tool_call in message.tool_calls %}
59
+ {%- if (loop.first and content) or (not loop.first) %}
60
+ {{- '\n' }}
61
+ {%- endif %}
62
+ {%- if tool_call.function %}
63
+ {%- set tool_call = tool_call.function %}
64
+ {%- endif %}
65
+ {{- '<tool_call>\n{"name": "' }}
66
+ {{- tool_call.name }}
67
+ {{- '", "arguments": ' }}
68
+ {%- if tool_call.arguments is string %}
69
+ {{- tool_call.arguments }}
70
+ {%- else %}
71
+ {{- tool_call.arguments | tojson }}
72
+ {%- endif %}
73
+ {{- '}\n</tool_call>' }}
74
+ {%- endfor %}
75
+ {%- endif %}
76
+ {{- '<|role_end|>\n\n' }}
77
+ {%- elif message.role == "tool" %}
78
+ {%- if loop.first or (messages[loop.index0 - 1].role != "tool") %}
79
+ {{- '<role>OBSERVATION</role>' }}
80
+ {%- endif %}
81
+ {{- '\n<tool_response>\n' }}
82
+ {{- content }}
83
+ {{- '\n</tool_response>' }}
84
+ {%- if loop.last or (messages[loop.index0 + 1].role != "tool") %}
85
+ {{- '<|role_end|>\n\n' }}
86
+ {%- endif %}
87
+ {%- endif %}
88
+ {%- endfor %}
89
+ {%- if add_generation_prompt %}
90
+ {{- '<role>ASSISTANT</role>' }}
91
+ {%- endif %}
config.json ADDED
@@ -0,0 +1,116 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "BailingMoeV2_5ForCausalLM"
4
+ ],
5
+ "attention_dropout": 0.0,
6
+ "auto_map": {
7
+ "AutoConfig": "configuration_bailing_moe_v2_5.BailingMoeV2_5Config",
8
+ "AutoModel": "modeling_bailing_moe_v2_5.BailingMoeV2_5Model",
9
+ "AutoModelForCausalLM": "modeling_bailing_moe_v2_5.BailingMoeV2_5ForCausalLM"
10
+ },
11
+ "embedding_dropout": 0.0,
12
+ "eos_token_id": 156892,
13
+ "first_k_dense_replace": 4,
14
+ "group_norm_size": 8,
15
+ "head_dim": 128,
16
+ "hidden_act": "silu",
17
+ "hidden_size": 8192,
18
+ "initializer_range": 0.02,
19
+ "intermediate_size": 18432,
20
+ "kv_lora_rank": 512,
21
+ "layer_group_size": 8,
22
+ "linear_silu": false,
23
+ "max_position_embeddings": 131072,
24
+ "max_window_layers": 20,
25
+ "model_type": "bailing_hybrid",
26
+ "moe_intermediate_size": 2048,
27
+ "moe_router_enable_expert_bias": true,
28
+ "moe_shared_expert_intermediate_size": 2048,
29
+ "mtp_loss_scaling_factor": 0,
30
+ "n_group": 8,
31
+ "num_attention_heads": 64,
32
+ "num_experts": 256,
33
+ "num_experts_per_tok": 8,
34
+ "num_hidden_layers": 80,
35
+ "num_key_value_heads": 64,
36
+ "num_kv_heads_for_linear_attn": 64,
37
+ "num_nextn_predict_layers": 0,
38
+ "num_shared_experts": 1,
39
+ "output_dropout": 0.0,
40
+ "output_router_logits": false,
41
+ "pad_token_id": 156892,
42
+ "partial_rotary_factor": 0.5,
43
+ "q_lora_rank": 1536,
44
+ "qk_head_dim": 192,
45
+ "qk_nope_head_dim": 128,
46
+ "qk_rope_head_dim": 64,
47
+ "quantization_config": {
48
+ "config_groups": {
49
+ "FP8_DYNAMIC": {
50
+ "format": "float-quantized",
51
+ "input_activations": {
52
+ "actorder": null,
53
+ "block_structure": null,
54
+ "dynamic": true,
55
+ "group_size": null,
56
+ "num_bits": 8,
57
+ "observer": null,
58
+ "observer_kwargs": {},
59
+ "strategy": "token",
60
+ "symmetric": true,
61
+ "type": "float"
62
+ },
63
+ "output_activations": null,
64
+ "targets": [
65
+ "Linear"
66
+ ],
67
+ "weights": {
68
+ "actorder": null,
69
+ "block_structure": null,
70
+ "dynamic": false,
71
+ "group_size": null,
72
+ "num_bits": 8,
73
+ "observer": "static_minmax",
74
+ "observer_kwargs": {},
75
+ "strategy": "channel",
76
+ "symmetric": true,
77
+ "type": "float"
78
+ }
79
+ }
80
+ },
81
+ "format": "float-quantized",
82
+ "global_compression_ratio": null,
83
+ "ignore": [
84
+ "re:.*mlp.gate$",
85
+ "lm_head",
86
+ "model.word_embeddings"
87
+ ],
88
+ "kv_cache_scheme": null,
89
+ "quant_method": "compressed-tensors",
90
+ "quantization_status": "compressed",
91
+ "sparsity_config": {},
92
+ "transform_config": {},
93
+ "version": "0.13.0"
94
+ },
95
+ "rms_norm_eps": 1e-06,
96
+ "rope_interleave": true,
97
+ "rope_scaling": null,
98
+ "rope_theta": 6000000,
99
+ "rotary_dim": 64,
100
+ "routed_scaling_factor": 2.5,
101
+ "router_dtype": "fp32",
102
+ "score_function": "sigmoid",
103
+ "scoring_func": "sigmoid",
104
+ "seq_aux": true,
105
+ "tie_word_embeddings": false,
106
+ "topk_group": 4,
107
+ "topk_method": "noaux_tc",
108
+ "torch_dtype": "bfloat16",
109
+ "transformers_version": "4.56.2",
110
+ "use_bias": false,
111
+ "use_cache": true,
112
+ "use_qk_norm": true,
113
+ "use_qkv_bias": false,
114
+ "v_head_dim": 128,
115
+ "vocab_size": 157184
116
+ }
configuration_bailing_moe_v2_5.py ADDED
@@ -0,0 +1,120 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ """Bailing MoE V2 model configuration"""
2
+
3
+ from transformers.configuration_utils import PretrainedConfig
4
+
5
+
6
+ class BailingMoeV2_5Config(PretrainedConfig):
7
+
8
+ def __init__(
9
+ self,
10
+ vocab_size=157184,
11
+ hidden_size=2048,
12
+ intermediate_size=5120,
13
+ num_hidden_layers=20,
14
+ num_attention_heads=16,
15
+ num_key_value_heads=4,
16
+ hidden_act="silu",
17
+ use_qkv_bias=False, # bailing only
18
+ use_bias=False, # bailing only
19
+ rms_norm_eps=1e-06,
20
+ tie_word_embeddings=False, # PretrainedConfig key, here change default value.
21
+ embedding_dropout=0.0,
22
+ attention_dropout=0.0,
23
+ output_dropout=0.0,
24
+ initializer_range=0.02,
25
+ max_position_embeddings=32768,
26
+ rope_theta=600000.0,
27
+ use_cache=True,
28
+ max_window_layers=20,
29
+ rope_scaling=None,
30
+ pad_token_id=156892,
31
+ eos_token_id=156892,
32
+ num_experts=256,
33
+ num_shared_experts=1,
34
+ num_experts_per_tok=8,
35
+ n_group=8,
36
+ topk_group=4,
37
+ moe_intermediate_size=512,
38
+ first_k_dense_replace=1,
39
+ head_dim=128,
40
+ output_router_logits=False,
41
+ use_qk_norm=True,
42
+ num_nextn_predict_layers=0,
43
+ mtp_loss_scaling_factor=0,
44
+ moe_router_enable_expert_bias=True,
45
+ routed_scaling_factor=1.0,
46
+ layer_group_size=5,
47
+ group_norm_size=4,
48
+ linear_silu=False,
49
+ kv_lora_rank=512,
50
+ q_lora_rank=None,
51
+ qk_rope_head_dim=64,
52
+ v_head_dim=128,
53
+ qk_nope_head_dim=128,
54
+ rope_interleave=True,
55
+ partial_rotary_factor=0.5,
56
+ score_function="sigmoid",
57
+ scoring_func="sigmoid",
58
+ seq_aux=True,
59
+ topk_method="noaux_tc",
60
+ router_dtype="fp32",
61
+ **kwargs,
62
+ ):
63
+ self.num_hidden_layers = num_hidden_layers
64
+ self.vocab_size = vocab_size
65
+ self.hidden_size = hidden_size
66
+ self.intermediate_size = intermediate_size
67
+ self.num_attention_heads = num_attention_heads
68
+ self.num_key_value_heads = num_key_value_heads
69
+ self.hidden_act = hidden_act
70
+ self.use_qkv_bias = use_qkv_bias
71
+ self.use_bias = use_bias
72
+ self.rms_norm_eps = rms_norm_eps
73
+ self.embedding_dropout = embedding_dropout
74
+ self.attention_dropout = attention_dropout
75
+ self.output_dropout = output_dropout
76
+ self.num_nextn_predict_layers = num_nextn_predict_layers
77
+ self.mtp_loss_scaling_factor = mtp_loss_scaling_factor
78
+ self.initializer_range = initializer_range
79
+ self.max_position_embeddings = max_position_embeddings
80
+ self.rope_theta = rope_theta
81
+ self.use_cache = use_cache
82
+ self.max_window_layers = max_window_layers
83
+ self.head_dim = head_dim or self.hidden_size // self.num_attention_heads
84
+ self.rope_scaling = rope_scaling
85
+ self.use_qk_norm = use_qk_norm
86
+ self.moe_router_enable_expert_bias = moe_router_enable_expert_bias
87
+ self.routed_scaling_factor = routed_scaling_factor
88
+
89
+ # MoE configs
90
+ self.num_experts = num_experts
91
+ self.num_shared_experts = num_shared_experts
92
+ self.num_experts_per_tok = num_experts_per_tok
93
+ self.n_group = n_group
94
+ self.topk_group = topk_group
95
+ self.moe_intermediate_size = moe_intermediate_size
96
+ self.first_k_dense_replace = first_k_dense_replace
97
+ self.output_router_logits = output_router_logits
98
+
99
+ # Linear configs
100
+ self.layer_group_size = layer_group_size
101
+ self.group_norm_size = group_norm_size
102
+ self.linear_silu = linear_silu
103
+ # mla
104
+ self.kv_lora_rank = kv_lora_rank
105
+ self.q_lora_rank = q_lora_rank
106
+ self.qk_rope_head_dim = qk_rope_head_dim
107
+
108
+ self.score_function = score_function
109
+ self.scoring_func = scoring_func
110
+ self.seq_aux = seq_aux
111
+ self.topk_method = topk_method
112
+ self.v_head_dim = v_head_dim
113
+ self.qk_nope_head_dim = qk_nope_head_dim
114
+ self.qk_head_dim = qk_nope_head_dim + qk_rope_head_dim
115
+ self.rope_interleave = rope_interleave
116
+ self.router_dtype = router_dtype
117
+ self.partial_rotary_factor = partial_rotary_factor
118
+ super().__init__(
119
+ pad_token_id=pad_token_id, eos_token_id=eos_token_id, tie_word_embeddings=tie_word_embeddings, **kwargs
120
+ )
generation_config.json ADDED
@@ -0,0 +1,7 @@
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token_id": 156891,
3
+ "eos_token_id": [
4
+ 156895
5
+ ],
6
+ "pad_token_id": 156892
7
+ }
model-00005-of-00160.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:6d39cd3a0fb0770f48ff4db5c988948b368e73cfa6c4960a8e78ac9b62933c0a
3
+ size 3222846072
model-00007-of-00160.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7cfae59a6508f0a8caea39a73e8ed76a18733fbaf42f453ec4802324950fcc13
3
+ size 3222846072
model-00008-of-00160.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a2e9e62b56f0d18a063ca56e8af4d2e1bdc159784ef09f8744b1c7ebbeafb01a
3
+ size 7782723480
model-00021-of-00160.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:10940e895d2abc27ab29a2dc385feb52a8b5bb9e75e385254b73b27a5f65dd1a
3
+ size 6445693304
model-00026-of-00160.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:9d2f767b47708e477468db23e3f927a0e560d0ae6fa446a81dbdc03794f0b7f6
3
+ size 6445692536
model-00028-of-00160.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7bc80a508a028915aaed252321c37a9028d061be9c2e1f1347dfbb3b0e2efb31
3
+ size 6445693304
model-00034-of-00160.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1caa3fc796bb7c198baf8ea322a52e1341bb3610cb837440175cbeb0da8d3dd3
3
+ size 6445692536
model-00038-of-00160.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5ec1ea895a35c1acd00cf51379519857aabf627d56ad356b46f7a7d01e717e4f
3
+ size 6445693304
model-00042-of-00160.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:5b28157c1d6ca687c789d7de7d34d28a07a793377969b8b097478b9ee2743547
3
+ size 6445692536
model-00058-of-00160.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ecdd3054a2f1b4da2bc116403ec00884a7df12b26a5fd3f8d133c04f36ddc0f0
3
+ size 6445692536
model-00060-of-00160.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:ea65650b2c2fb2a82c9c40d8dbbd8a90d838c5cb1a1067e637e6b5756bf00fd7
3
+ size 6445693304
model-00067-of-00160.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:92f1c288f4680eef6e1204b556f8dc462b6ab31acc528a25c375f2221b86fec4
3
+ size 6445693208
model-00075-of-00160.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:371f087c6100873a58c9a5d58a05b9ec75d0a783b498b80e3535786957eff987
3
+ size 6445693208
model-00076-of-00160.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1ed09860c9f696e3e4687b879fc71e7f185a3d4cdc46df4922e5d9c7df01985a
3
+ size 6445693304
model-00080-of-00160.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:83e763627c9246187528523ca0e66095fc5aca8399e87f7486beafdf5a87c02e
3
+ size 8006611688
model-00082-of-00160.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:28804cda65aace4020370c58c40d1a74ed33063d926c039fe420caec81ad539b
3
+ size 6445692536
model-00084-of-00160.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:591f2715213c242469f895e5d7fbc48778ac25c3d70aa7045ca54c30e4d2f1a4
3
+ size 6445693304
model-00085-of-00160.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:97342c501c2debf215d8a19572a16ca3ee72c932f547b38c848552c01f06d9e5
3
+ size 6445693304
model-00092-of-00160.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e7ab102571fe6971c2316b6649e82335a8b1bba18f8b8ce37a9382850789eb30
3
+ size 6445693304
model-00097-of-00160.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:533e6c2493cba48765847610eeb81d5797e85756c66222676d553250f910cd35
3
+ size 6445692536
model-00098-of-00160.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3877304be86bbb8ab02699a25505c2d41f37677852f313883239191f1d387f15
3
+ size 6445692536
model-00105-of-00160.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a216635fd5af018cf7be931ce488d5ea013ed7a2700771f5ef9185de99dc3cdb
3
+ size 6445692536
model-00108-of-00160.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a0f6c1b34b703cb0a5832dd8f847b87fc8335d4e7791f0fae6c72a57677162a9
3
+ size 6445693304
model-00113-of-00160.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:98d25ae89d30c32b9c3048af66cefd77d03e0b6e5480292279a196663df70642
3
+ size 6445692536
model-00115-of-00160.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:39689310d9f61af4f6f69051afb3fb44476339fd05515973637faca748b861d0
3
+ size 6445693208
model-00119-of-00160.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b273d8ad701e874ed21884a605ef964a318a1c35cf51f2a5a1536369dd21deaf
3
+ size 6445693304
model-00120-of-00160.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:a7a4aa14dc7e3837b0fa62fd9e1b84fb77ab00f8b33bf4e6d4e96fa5793c0c22
3
+ size 7782724328
model-00122-of-00160.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:47d67ae7c9cf2c2ee923cd754419a2a2d7f377e8e783b09deab2583622150944
3
+ size 6445692536
model-00125-of-00160.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e5ff95e3c317b81c61c7aa43d598de0c992ddad63e9da18915ae5c8a8185c0e1
3
+ size 6445693304
model-00130-of-00160.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:97aecca9f4cb3e927f7d5ea22ad0b982c42d8027614d56cc2cf08bf2c295dc7f
3
+ size 6445692536
model-00131-of-00160.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:d2835a770c72a9c3d97e59306fd3b0c1d4af6172093ee6ee7c6e6b09b5352c5f
3
+ size 6445693208
model-00132-of-00160.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:b50533c0bc0d16a03f547c282242bb8b862501d93c95415ec5e27178ec167281
3
+ size 6445693304
model-00134-of-00160.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c322e5ae3d2161998220747b66759ad67586a62d3dd70565466bf4ddacd3669a
3
+ size 6445693304
model-00137-of-00160.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:3109cd8ec4995d6fdf3c34a0cecbd1e4c4dc6935aacf9fa79fb8be80761c952a
3
+ size 6445692536
model-00139-of-00160.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c76b362b053f9c828501041f84da08c71659ab33526d08cb82eabdbf9e3248ff
3
+ size 6445693208
model-00142-of-00160.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:2991b749715ac19912caea5d084bc226b83247e95e611e0a49eb03217e3fda18
3
+ size 6445693304
model-00143-of-00160.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1bef39884a61d1d7555a1f012a4a99381fa0685cf26960e93cc267e8d05fbe08
3
+ size 6445693304
model-00145-of-00160.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:baf52f2f5fc766501b4a20e9b5e272e7f52f4d27e1b486015923969f8d1a3142
3
+ size 6445692536
model-00146-of-00160.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f270ba9dc96d0d96ac42f314ba94d9f114431e852a9d27a647f5ca49d404a3f0
3
+ size 6445692536
model-00152-of-00160.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:09a9e96f8f43c7865b830ee158a19744ccb3e10995dd25c92046eb179ae3532d
3
+ size 6354738944
model-00157-of-00160.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:cc934686b32eb8f1ab86e2091e3204ab5321dca1a4a5138811d08a0a8e6769fe
3
+ size 3222846456
model-00158-of-00160.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:7b4bc5cfc410e8a77a39956a3ddd451c2cf5b4a42cca3fdd8a4e6749aa5a39a3
3
+ size 3222846456
modeling_bailing_moe_v2_5.py ADDED
@@ -0,0 +1,1603 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # coding=utf-8
2
+ # Copyright 2025 Antgroup 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 BailingMoE model."""
21
+
22
+ import math
23
+ import warnings
24
+ from typing import List, Optional, Tuple, Union, Callable
25
+
26
+ import torch
27
+ import torch.nn.functional as F
28
+ from torch import nn
29
+
30
+ from transformers.activations import ACT2FN
31
+ from transformers.cache_utils import Cache, DynamicCache
32
+ from transformers.modeling_attn_mask_utils import (
33
+ AttentionMaskConverter,
34
+ _prepare_4d_attention_mask,
35
+ _prepare_4d_causal_attention_mask,
36
+ _prepare_4d_causal_attention_mask_for_sdpa,
37
+ )
38
+ from transformers.modeling_outputs import MoeModelOutputWithPast
39
+ from transformers.modeling_rope_utils import ROPE_INIT_FUNCTIONS, dynamic_rope_update
40
+ from transformers.modeling_utils import PreTrainedModel
41
+ from transformers.pytorch_utils import ALL_LAYERNORM_LAYERS, is_torch_greater_or_equal_than_1_13
42
+ from transformers.utils import (
43
+ add_start_docstrings,
44
+ add_start_docstrings_to_model_forward,
45
+ logging,
46
+ replace_return_docstrings,
47
+ )
48
+ from transformers.utils.import_utils import is_torch_fx_available
49
+ from .configuration_bailing_moe_v2_5 import BailingMoeV2_5Config
50
+ from transformers.generation.utils import GenerationMixin
51
+ from dataclasses import dataclass
52
+ from transformers.utils import ModelOutput
53
+ from transformers import DynamicLayer
54
+ from transformers.processing_utils import Unpack
55
+ from transformers.utils import TransformersKwargs
56
+ from transformers.utils.deprecation import deprecate_kwarg
57
+ from transformers.modeling_flash_attention_utils import FlashAttentionKwargs
58
+
59
+ from fla.ops.simple_gla.fused_recurrent import fused_recurrent_simple_gla
60
+ from fla.ops.simple_gla.chunk import chunk_simple_gla
61
+
62
+
63
+ # This makes `_prepare_4d_causal_attention_mask` a leaf function in the FX graph.
64
+ # It means that the function will not be traced through and simply appear as a node in the graph.
65
+ if is_torch_fx_available():
66
+ if not is_torch_greater_or_equal_than_1_13:
67
+ import torch.fx
68
+
69
+ _prepare_4d_causal_attention_mask = torch.fx.wrap(_prepare_4d_causal_attention_mask)
70
+
71
+
72
+ logger = logging.get_logger(__name__)
73
+
74
+ _CONFIG_FOR_DOC = "BailingMoeV2_5Config"
75
+
76
+
77
+ def roll_tensor(tensor, shifts=-1, dims=-1, fill_value=0):
78
+ """Roll the tensor input along the given dimension(s).
79
+ Inserted elements are set to be 0.0.
80
+ """
81
+ rolled_tensor = torch.roll(tensor, shifts=shifts, dims=dims)
82
+ rolled_tensor.select(dims, shifts).fill_(fill_value)
83
+ return rolled_tensor, rolled_tensor.sum()
84
+
85
+
86
+ @dataclass
87
+ class MoEV2_5CausalLMOutputWithPast(ModelOutput):
88
+ """
89
+ Base class for causal language model (or autoregressive) outputs as well as Mixture of Expert's router hidden
90
+ states terms, to train a MoE model.
91
+ Args:
92
+ loss (`torch.FloatTensor` of shape `(1,)`, *optional*, returned when `labels` is provided):
93
+ Language modeling loss (for next-token prediction).
94
+ logits (`torch.FloatTensor` of shape `(batch_size, sequence_length, config.vocab_size)`):
95
+ Prediction scores of the language modeling head (scores for each vocabulary token before SoftMax).
96
+ past_key_values (`Cache`, *optional*, returned when `use_cache=True` is passed or when `config.use_cache=True`):
97
+ It is a [`~cache_utils.Cache`] instance. For more details, see our [kv cache guide](https://huggingface.co/docs/transformers/en/kv_cache).
98
+ Contains pre-computed hidden-states (key and values in the self-attention blocks) that can be used (see
99
+ `past_key_values` input) to speed up sequential decoding.
100
+ hidden_states (`tuple(torch.FloatTensor)`, *optional*, returned when `output_hidden_states=True` is passed or when `config.output_hidden_states=True`):
101
+ Tuple of `torch.FloatTensor` (one for the output of the embeddings, if the model has an embedding layer, +
102
+ one for the output of each layer) of shape `(batch_size, sequence_length, hidden_size)`.
103
+ Hidden-states of the model at the output of each layer plus the optional initial embedding outputs.
104
+ attentions (`tuple(torch.FloatTensor)`, *optional*, returned when `output_attentions=True` is passed or when `config.output_attentions=True`):
105
+ Tuple of `torch.FloatTensor` (one for each layer) of shape `(batch_size, num_heads, sequence_length,
106
+ sequence_length)`.
107
+ Attentions weights after the attention softmax, used to compute the weighted average in the self-attention
108
+ heads.
109
+ z_loss (`torch.FloatTensor`, *optional*, returned when `labels` is provided):
110
+ z_loss for the sparse modules.
111
+ aux_loss (`torch.FloatTensor`, *optional*, returned when `labels` is provided):
112
+ aux_loss for the sparse modules.
113
+ router_logits (`tuple(torch.FloatTensor)`, *optional*, returned when `output_router_logits=True` is passed or when `config.add_router_probs=True`):
114
+ Tuple of `torch.FloatTensor` (one for each layer) of shape `(batch_size, sequence_length, num_experts)`.
115
+ Router logits of the encoder model, useful to compute the auxiliary loss and the z_loss for the sparse
116
+ modules.
117
+ """
118
+
119
+ loss: Optional[torch.FloatTensor] = None
120
+ logits: Optional[torch.FloatTensor] = None
121
+ past_key_values: Optional[Cache] = None
122
+ hidden_states: Optional[tuple[torch.FloatTensor, ...]] = None
123
+ attentions: Optional[tuple[torch.FloatTensor, ...]] = None
124
+ z_loss: Optional[torch.FloatTensor] = None
125
+ aux_loss: Optional[torch.FloatTensor] = None
126
+ router_logits: Optional[tuple[torch.FloatTensor]] = None
127
+ mtp_loss: Optional[torch.FloatTensor] = None
128
+ mtp_logits: Optional[tuple[torch.FloatTensor, ...]] = None
129
+
130
+
131
+ class MoeV2_5ModelOutputWithPast(MoeModelOutputWithPast):
132
+
133
+ def __init__(self, mtp_hidden_states=None, **kwargs):
134
+ super().__init__(**kwargs)
135
+ self.mtp_hidden_states = mtp_hidden_states
136
+
137
+
138
+ def _get_unpad_data(attention_mask):
139
+ seqlens_in_batch = attention_mask.sum(dim=-1, dtype=torch.int32)
140
+ indices = torch.nonzero(attention_mask.flatten(), as_tuple=False).flatten()
141
+ max_seqlen_in_batch = seqlens_in_batch.max().item()
142
+ cu_seqlens = F.pad(torch.cumsum(seqlens_in_batch, dim=0, dtype=torch.torch.int32), (1, 0))
143
+ return (
144
+ indices,
145
+ cu_seqlens,
146
+ max_seqlen_in_batch,
147
+ )
148
+
149
+
150
+ def _expand_mask(mask: torch.Tensor, dtype: torch.dtype, tgt_len: Optional[int] = None):
151
+ warnings.warn(
152
+ "Calling `transformers.models.BailingMoeV2_5.modeling_BailingMoeV2_5._prepare_4d_attention_mask` is deprecated and will be removed in v4.37. Use `transformers.modeling_attn_mask_utils._prepare_4d_attention_mask"
153
+ )
154
+ return _prepare_4d_attention_mask(mask=mask, dtype=dtype, tgt_len=tgt_len)
155
+
156
+
157
+ def _make_causal_mask(
158
+ input_ids_shape: torch.Size, dtype: torch.dtype, device: torch.device, past_key_values_length: int = 0
159
+ ):
160
+ warnings.warn(
161
+ "Calling `transformers.models.BailingMoeV2_5.modeling_BailingMoeV2_5._make_causal_mask` is deprecated and will be removed in v4.37. Use `transformers.models.BailingMoeV2_5.modeling_BailingMoeV2_5.AttentionMaskConverter._make_causal_mask"
162
+ )
163
+ return AttentionMaskConverter._make_causal_mask(
164
+ input_ids_shape=input_ids_shape, dtype=dtype, device=device, past_key_values_length=past_key_values_length
165
+ )
166
+
167
+
168
+ class BailingMoeV2_5RMSNorm(nn.Module):
169
+ def __init__(self, hidden_size, eps=1e-6):
170
+ """
171
+ BailingMoeV2_5RMSNorm is equivalent to T5LayerNorm
172
+ """
173
+ super().__init__()
174
+ self.weight = nn.Parameter(torch.ones(hidden_size))
175
+ self.variance_epsilon = eps
176
+
177
+ def forward(self, hidden_states):
178
+ input_dtype = hidden_states.dtype
179
+ hidden_states = hidden_states.to(torch.float32)
180
+ variance = hidden_states.pow(2).mean(-1, keepdim=True)
181
+ hidden_states = hidden_states * torch.rsqrt(variance + self.variance_epsilon)
182
+ return self.weight * hidden_states.to(input_dtype)
183
+
184
+
185
+ class BailingMoeV2_5GroupRMSNorm(nn.Module):
186
+ def __init__(self, hidden_size, group_norm_size, eps=1e-6):
187
+ """
188
+ BailingMoeV2_5RMSNorm is equivalent to T5LayerNorm
189
+ """
190
+ super().__init__()
191
+ self.weight = nn.Parameter(torch.ones(hidden_size))
192
+ self.group_norm_size = group_norm_size
193
+ assert hidden_size % group_norm_size == 0, "hidden_size must be divisible by group_norm_size"
194
+ self.variance_epsilon = eps
195
+
196
+ def forward(self, hidden_states):
197
+ input_dtype = hidden_states.dtype
198
+ input_shape = hidden_states.size()
199
+ group_input_shape = input_shape[:-1] + (self.group_norm_size, input_shape[-1] // self.group_norm_size)
200
+ hidden_states = hidden_states.view(group_input_shape)
201
+ hidden_states = hidden_states.to(torch.float32)
202
+ variance = hidden_states.pow(2).mean(-1, keepdim=True)
203
+ hidden_states = hidden_states * torch.rsqrt(variance + self.variance_epsilon)
204
+ return self.weight * hidden_states.to(input_dtype).view(input_shape)
205
+
206
+
207
+ ALL_LAYERNORM_LAYERS.append(BailingMoeV2_5RMSNorm)
208
+
209
+
210
+ class BailingMoeV2_5RotaryEmbedding(nn.Module):
211
+ def __init__(self, config: BailingMoeV2_5Config, device=None):
212
+ super().__init__()
213
+ # BC: "rope_type" was originally "type"
214
+ if hasattr(config, "rope_scaling") and config.rope_scaling is not None:
215
+ self.rope_type = config.rope_scaling.get("rope_type", config.rope_scaling.get("type"))
216
+ else:
217
+ self.rope_type = "default"
218
+ self.max_seq_len_cached = config.max_position_embeddings
219
+ self.original_max_seq_len = config.max_position_embeddings
220
+
221
+ self.config = config
222
+ self.rope_init_fn = ROPE_INIT_FUNCTIONS[self.rope_type]
223
+
224
+ inv_freq, self.attention_scaling = self.rope_init_fn(self.config, device)
225
+ self.register_buffer("inv_freq", inv_freq, persistent=False)
226
+ self.original_inv_freq = self.inv_freq
227
+
228
+ @torch.no_grad()
229
+ @dynamic_rope_update # power user: used with advanced RoPE types (e.g. dynamic rope)
230
+ def forward(self, x, position_ids):
231
+ inv_freq_expanded = self.inv_freq[None, :, None].float().expand(position_ids.shape[0], -1, 1).to(x.device)
232
+ position_ids_expanded = position_ids[:, None, :].float()
233
+
234
+ device_type = x.device.type if isinstance(x.device.type, str) and x.device.type != "mps" else "cpu"
235
+ with torch.autocast(device_type=device_type, enabled=False): # Force float32
236
+ freqs = (inv_freq_expanded.float() @ position_ids_expanded.float()).transpose(1, 2)
237
+ emb = torch.cat((freqs, freqs), dim=-1)
238
+ cos = emb.cos() * self.attention_scaling
239
+ sin = emb.sin() * self.attention_scaling
240
+
241
+ return cos.to(dtype=x.dtype), sin.to(dtype=x.dtype)
242
+
243
+
244
+ # Copied from transformers.models.llama.modeling_llama.rotate_half
245
+ def rotate_half(x):
246
+ """Rotates half the hidden dims of the input."""
247
+ x1 = x[..., : x.shape[-1] // 2]
248
+ x2 = x[..., x.shape[-1] // 2 :]
249
+ return torch.cat((-x2, x1), dim=-1)
250
+
251
+
252
+ # Copied from transformers.models.llama.modeling_llama.apply_rotary_pos_emb
253
+ def apply_rotary_pos_emb(q, k, cos, sin, unsqueeze_dim=1):
254
+ """Applies Rotary Position Embedding to the query and key tensors.
255
+ Args:
256
+ q (`torch.Tensor`): The query tensor.
257
+ k (`torch.Tensor`): The key tensor.
258
+ cos (`torch.Tensor`): The cosine part of the rotary embedding.
259
+ sin (`torch.Tensor`): The sine part of the rotary embedding.
260
+ unsqueeze_dim (`int`, *optional*, defaults to 1):
261
+ The 'unsqueeze_dim' argument specifies the dimension along which to unsqueeze cos[position_ids] and
262
+ sin[position_ids] so that they can be properly broadcasted to the dimensions of q and k. For example, note
263
+ that cos[position_ids] and sin[position_ids] have the shape [batch_size, seq_len, head_dim]. Then, if q and
264
+ k have the shape [batch_size, heads, seq_len, head_dim], then setting unsqueeze_dim=1 makes
265
+ cos[position_ids] and sin[position_ids] broadcastable to the shapes of q and k. Similarly, if q and k have
266
+ the shape [batch_size, seq_len, heads, head_dim], then set unsqueeze_dim=2.
267
+ Returns:
268
+ `tuple(torch.Tensor)` comprising the query and key tensors rotated using the Rotary Position Embedding.
269
+ """
270
+ cos = cos.unsqueeze(unsqueeze_dim)
271
+ sin = sin.unsqueeze(unsqueeze_dim)
272
+
273
+ # Keep half or full tensor for later concatenation
274
+ rotary_dim = cos.shape[-1]
275
+ q_rot, q_pass = q[..., :rotary_dim], q[..., rotary_dim:]
276
+ k_rot, k_pass = k[..., :rotary_dim], k[..., rotary_dim:]
277
+
278
+ # Apply rotary embeddings on the first half or full tensor
279
+ q_embed = (q_rot * cos) + (rotate_half(q_rot) * sin)
280
+ k_embed = (k_rot * cos) + (rotate_half(k_rot) * sin)
281
+
282
+ # Concatenate back to full shape
283
+ q_embed = torch.cat([q_embed, q_pass], dim=-1)
284
+ k_embed = torch.cat([k_embed, k_pass], dim=-1)
285
+ return q_embed, k_embed
286
+
287
+
288
+ class BailingMoeV2_5MLP(nn.Module):
289
+ def __init__(self, config: BailingMoeV2_5Config, intermediate_size: int):
290
+ super().__init__()
291
+ self.config = config
292
+ self.hidden_size = config.hidden_size
293
+ self.intermediate_size = intermediate_size
294
+
295
+ self.gate_proj = nn.Linear(self.hidden_size, self.intermediate_size, bias=False)
296
+ self.up_proj = nn.Linear(self.hidden_size, self.intermediate_size, bias=False)
297
+ self.down_proj = nn.Linear(self.intermediate_size, self.hidden_size, bias=False)
298
+ self.act_fn = ACT2FN[config.hidden_act]
299
+
300
+ def forward(self, x):
301
+ return self.down_proj(self.act_fn(self.gate_proj(x)) * self.up_proj(x))
302
+
303
+
304
+ class BailingMoeV2_5Gate(nn.Module):
305
+ def __init__(self, config):
306
+ super().__init__()
307
+ self.config = config
308
+ self.top_k = config.num_experts_per_tok
309
+ self.num_experts = config.num_experts
310
+
311
+ self.n_group = config.n_group
312
+ self.topk_group = config.topk_group
313
+
314
+ # topk selection algorithm
315
+ self.gating_dim = config.hidden_size
316
+ self.weight = nn.Parameter(torch.empty((self.num_experts, self.gating_dim)))
317
+ self.routed_scaling_factor = config.routed_scaling_factor
318
+
319
+ self.register_buffer("expert_bias", torch.zeros((self.num_experts)))
320
+ self.reset_parameters()
321
+
322
+ def reset_parameters(self) -> None:
323
+ import torch.nn.init as init
324
+
325
+ init.kaiming_uniform_(self.weight, a=math.sqrt(5))
326
+
327
+ def group_limited_topk(
328
+ self,
329
+ scores: torch.Tensor,
330
+ ):
331
+ num_tokens, _ = scores.size()
332
+ # Organize the experts into groups
333
+ group_scores = scores.view(num_tokens, self.n_group, -1).topk(2, dim=-1)[0].sum(dim=-1)
334
+ group_idx = torch.topk(group_scores, k=self.topk_group, dim=-1, sorted=False)[1]
335
+ group_mask = torch.zeros_like(group_scores)
336
+ group_mask.scatter_(1, group_idx, 1)
337
+
338
+ # Mask the experts based on selection groups
339
+ score_mask = (
340
+ group_mask.unsqueeze(-1)
341
+ .expand(num_tokens, self.n_group, self.num_experts // self.n_group)
342
+ .reshape(num_tokens, -1)
343
+ )
344
+
345
+ masked_scores = scores.masked_fill(~score_mask.bool(), float('-inf'))
346
+ probs, top_indices = torch.topk(masked_scores, k=self.top_k, dim=-1)
347
+
348
+ return probs, top_indices
349
+
350
+ def forward(self, hidden_states):
351
+ # compute gating score
352
+ hidden_states = hidden_states.view(-1, hidden_states.shape[-1])
353
+ logits = F.linear(hidden_states.type(torch.float32), self.weight.type(torch.float32))
354
+
355
+ scores = torch.sigmoid(logits.float()).type_as(logits)
356
+
357
+ scores_for_routing = scores + self.expert_bias
358
+ _, topk_idx = self.group_limited_topk(scores_for_routing)
359
+
360
+ scores = torch.gather(scores, dim=1, index=topk_idx).type_as(logits)
361
+
362
+ topk_weight = scores / (scores.sum(dim=-1, keepdim=True) + 1e-20) if self.top_k > 1 else scores
363
+ topk_weight = topk_weight * self.routed_scaling_factor
364
+
365
+ return topk_idx, topk_weight, logits
366
+
367
+
368
+ class BailingMoeV2_5SparseMoeBlock(nn.Module):
369
+ """
370
+ A mixed expert module containing shared experts.
371
+ """
372
+
373
+ def __init__(self, config: BailingMoeV2_5Config):
374
+ super().__init__()
375
+ self.config = config
376
+ self.num_experts_per_tok = config.num_experts_per_tok
377
+ self._setup_experts()
378
+ self.gate = BailingMoeV2_5Gate(config)
379
+ if config.num_shared_experts is not None:
380
+ self.shared_experts = BailingMoeV2_5MLP(
381
+ config=config, intermediate_size=config.moe_intermediate_size * config.num_shared_experts
382
+ )
383
+
384
+ def _setup_experts(self):
385
+ self.experts = nn.ModuleList(
386
+ [
387
+ BailingMoeV2_5MLP(config=self.config, intermediate_size=self.config.moe_intermediate_size)
388
+ for _ in range(self.config.num_experts)
389
+ ]
390
+ )
391
+
392
+ def forward(self, hidden_states):
393
+ identity = hidden_states
394
+ bsz, seq_len, h = hidden_states.shape
395
+ topk_idx, topk_weight, router_logits = self.gate(hidden_states)
396
+ hidden_states = hidden_states.view(-1, hidden_states.shape[-1])
397
+ flat_topk_idx = topk_idx.view(-1)
398
+ if self.training:
399
+ hidden_states = hidden_states.repeat_interleave(self.num_experts_per_tok, dim=0)
400
+ y = torch.empty_like(hidden_states)
401
+ for i, expert in enumerate(self.experts):
402
+ y[flat_topk_idx == i] = expert(hidden_states[flat_topk_idx == i])
403
+ y = (y.view(*topk_weight.shape, -1) * topk_weight.unsqueeze(-1)).sum(dim=1)
404
+ y = y.to(hidden_states.dtype).view(bsz, seq_len, h)
405
+ else:
406
+ y = self.moe_infer(hidden_states, topk_idx, topk_weight).view(bsz, seq_len, h)
407
+ if self.config.num_shared_experts is not None:
408
+ y = y + self.shared_experts(identity)
409
+ return y, (router_logits.view(bsz, seq_len, -1), topk_idx.view(bsz, seq_len, -1))
410
+
411
+ @torch.no_grad()
412
+ def moe_infer(self, x, topk_ids, topk_weight):
413
+ cnts = topk_ids.new_zeros((topk_ids.shape[0], len(self.experts)))
414
+ cnts.scatter_(1, topk_ids, 1)
415
+ tokens_per_expert = cnts.sum(dim=0)
416
+ idxs = topk_ids.view(-1).argsort()
417
+ sorted_tokens = x[idxs // topk_ids.shape[1]]
418
+ tokens_per_expert = tokens_per_expert.cpu().numpy()
419
+ outputs = []
420
+ start_idx = 0
421
+ for i, num_tokens in enumerate(tokens_per_expert):
422
+ end_idx = start_idx + num_tokens
423
+ if num_tokens == 0:
424
+ continue
425
+ expert = self.experts[i]
426
+ tokens_for_this_expert = sorted_tokens[start_idx:end_idx]
427
+ expert_out = expert(tokens_for_this_expert)
428
+ outputs.append(expert_out.to(x.device))
429
+ start_idx = end_idx
430
+
431
+ outs = torch.cat(outputs, dim=0) if len(outputs) else sorted_tokens.new_empty(0)
432
+ new_x = torch.empty_like(outs)
433
+ new_x[idxs] = outs
434
+ final_out = (
435
+ new_x.view(*topk_ids.shape, -1)
436
+ .type(topk_weight.dtype)
437
+ .mul_(topk_weight.unsqueeze(dim=-1))
438
+ .sum(dim=1)
439
+ .type(new_x.dtype)
440
+ )
441
+ return final_out
442
+
443
+
444
+ # Copied from transformers.models.llama.modeling_llama.repeat_kv
445
+ def repeat_kv(hidden_states: torch.Tensor, n_rep: int, head_first: bool = True) -> torch.Tensor:
446
+ """
447
+ This is the equivalent of torch.repeat_interleave(x, dim=1, repeats=n_rep). If head_first is True, the hidden states go from (batch,
448
+ num_key_value_heads, seqlen, head_dim) to (batch, num_attention_heads, seqlen, head_dim)
449
+ """
450
+ if n_rep == 1:
451
+ return hidden_states
452
+ if head_first:
453
+ batch, num_key_value_heads, slen, head_dim = hidden_states.shape
454
+ hidden_states = hidden_states[:, :, None, :, :].expand(batch, num_key_value_heads, n_rep, slen, head_dim)
455
+ return hidden_states.reshape(batch, num_key_value_heads * n_rep, slen, head_dim)
456
+ else:
457
+ batch, slen, num_key_value_heads, head_dim = hidden_states.shape
458
+ hidden_states = hidden_states[:, :, :, None, :].expand(batch, slen, num_key_value_heads, n_rep, head_dim)
459
+ return hidden_states.reshape(batch, slen, num_key_value_heads * n_rep, head_dim)
460
+
461
+
462
+ def repeat_kv2(hidden_states: torch.Tensor, n_rep: int) -> torch.Tensor:
463
+ """
464
+ This is the equivalent of torch.repeat_interleave(x, dim=1, repeats=n_rep). The hidden states go from (batch,
465
+ num_key_value_heads, seqlen, head_dim) to (batch, num_attention_heads, seqlen, head_dim)
466
+ """
467
+ batch, num_key_value_heads, slen, head_dim = hidden_states.shape
468
+ if n_rep == 1:
469
+ return hidden_states
470
+ hidden_states = hidden_states[:, :, None, :, :].expand(batch, num_key_value_heads, n_rep, slen, head_dim)
471
+ return hidden_states.reshape(batch, num_key_value_heads * n_rep, slen, head_dim)
472
+
473
+
474
+ def eager_attention_forward(
475
+ module: nn.Module,
476
+ query: torch.Tensor,
477
+ key: torch.Tensor,
478
+ value: torch.Tensor,
479
+ attention_mask: Optional[torch.Tensor],
480
+ scaling: float,
481
+ dropout: float = 0.0,
482
+ **kwargs: Unpack[TransformersKwargs],
483
+ ):
484
+ key_states = repeat_kv2(key, module.num_key_value_groups)
485
+ value_states = repeat_kv2(value, module.num_key_value_groups)
486
+
487
+ attn_weights = torch.matmul(query, key_states.transpose(2, 3)) * scaling
488
+ if attention_mask is not None:
489
+ causal_mask = attention_mask[:, :, :, : key_states.shape[-2]]
490
+ attn_weights = attn_weights + causal_mask
491
+
492
+ attn_weights = nn.functional.softmax(attn_weights, dim=-1, dtype=torch.float32).to(query.dtype)
493
+ attn_weights = nn.functional.dropout(attn_weights, p=dropout, training=module.training)
494
+ attn_output = torch.matmul(attn_weights, value_states)
495
+ attn_output = attn_output.transpose(1, 2).contiguous()
496
+
497
+ return attn_output, attn_weights
498
+
499
+
500
+ def apply_rotary_pos_emb_interleave(q, k, cos, sin, position_ids=None, unsqueeze_dim=1):
501
+ r"""
502
+ TODO let's just use the original freqcis computation to not have the view
503
+ transpose + reshape! This is not optimized!
504
+ Applies Rotary Position Embedding to the query and key tensors.
505
+
506
+ Args:
507
+ q (`torch.Tensor`): The query tensor.
508
+ k (`torch.Tensor`): The key tensor.
509
+ cos (`torch.Tensor`): The cosine part of the rotary embedding.
510
+ sin (`torch.Tensor`): The sine part of the rotary embedding.
511
+ position_ids (`torch.Tensor`):
512
+ The position indices of the tokens corresponding to the query and key tensors. For example, this can be
513
+ used to pass offsetted position ids when working with a KV-cache.
514
+ unsqueeze_dim (`int`, *optional*, defaults to 1):
515
+ The 'unsqueeze_dim' argument specifies the dimension along which to unsqueeze cos[position_ids] and
516
+ sin[position_ids] so that they can be properly broadcasted to the dimensions of q and k. For example, note
517
+ that cos[position_ids] and sin[position_ids] have the shape [batch_size, seq_len, head_dim]. Then, if q and
518
+ k have the shape [batch_size, heads, seq_len, head_dim], then setting unsqueeze_dim=1 makes
519
+ cos[position_ids] and sin[position_ids] broadcastable to the shapes of q and k. Similarly, if q and k have
520
+ the shape [batch_size, seq_len, heads, head_dim], then set unsqueeze_dim=2.
521
+ Returns:
522
+ `tuple(torch.Tensor)` comprising of the query and key tensors rotated using the Rotary Position Embedding.
523
+ """
524
+ cos = cos.unsqueeze(unsqueeze_dim)
525
+ sin = sin.unsqueeze(unsqueeze_dim)
526
+
527
+ b, h, s, d = q.shape
528
+ q = q.view(b, h, s, d // 2, 2).transpose(4, 3).reshape(b, h, s, d)
529
+
530
+ b, h, s, d = k.shape
531
+ k = k.view(b, h, s, d // 2, 2).transpose(4, 3).reshape(b, h, s, d)
532
+
533
+ q_embed = (q * cos) + (rotate_half(q) * sin)
534
+ k_embed = (k * cos) + (rotate_half(k) * sin)
535
+ return q_embed, k_embed
536
+
537
+
538
+ class BailingMoeV2_5MLARotaryEmbedding(nn.Module):
539
+ inv_freq: torch.Tensor # fix linting for `register_buffer`
540
+
541
+ def __init__(self, config: BailingMoeV2_5Config, device=None):
542
+ super().__init__()
543
+ # BC: "rope_type" was originally "type"
544
+ if hasattr(config, "rope_scaling") and isinstance(config.rope_scaling, dict):
545
+ self.rope_type = config.rope_scaling.get("rope_type", config.rope_scaling.get("type"))
546
+ else:
547
+ self.rope_type = "default"
548
+ self.max_seq_len_cached = config.max_position_embeddings
549
+ self.original_max_seq_len = config.max_position_embeddings
550
+
551
+ self.config = config
552
+ self.rope_init_fn = ROPE_INIT_FUNCTIONS[self.rope_type]
553
+
554
+ inv_freq, self.attention_scaling = self.rope_init_fn(self.config, device)
555
+ self.register_buffer("inv_freq", inv_freq, persistent=False)
556
+ self.original_inv_freq = self.inv_freq
557
+
558
+ @torch.no_grad()
559
+ @dynamic_rope_update # power user: used with advanced RoPE types (e.g. dynamic rope)
560
+ def forward(self, x, position_ids):
561
+ inv_freq_expanded = self.inv_freq[None, :, None].float().expand(position_ids.shape[0], -1, 1).to(x.device)
562
+ position_ids_expanded = position_ids[:, None, :].float()
563
+
564
+ device_type = x.device.type if isinstance(x.device.type, str) and x.device.type != "mps" else "cpu"
565
+ with torch.autocast(device_type=device_type, enabled=False): # Force float32
566
+ freqs = (inv_freq_expanded.float() @ position_ids_expanded.float()).transpose(1, 2)
567
+ emb = torch.cat((freqs, freqs), dim=-1)
568
+ cos = emb.cos() * self.attention_scaling
569
+ sin = emb.sin() * self.attention_scaling
570
+
571
+ return cos.to(dtype=x.dtype), sin.to(dtype=x.dtype)
572
+
573
+
574
+ def yarn_get_mscale(scale=1, mscale=1):
575
+ if scale <= 1:
576
+ return 1.0
577
+ return 0.1 * mscale * math.log(scale) + 1.0
578
+
579
+
580
+ class BailingMoeV2_5MultiLatentAttention(nn.Module):
581
+ """Multi-headed attention from 'Attention Is All You Need' paper"""
582
+
583
+ def __init__(self, config: BailingMoeV2_5Config, layer_idx: int):
584
+ super().__init__()
585
+ self.config = config
586
+ self.layer_idx = layer_idx
587
+ self.num_key_value_groups = config.num_attention_heads // config.num_key_value_heads
588
+ self.attention_dropout = config.attention_dropout
589
+ self.num_heads = config.num_attention_heads
590
+ self.rope_theta = config.rope_theta
591
+ self.q_lora_rank = config.q_lora_rank
592
+ self.qk_rope_head_dim = config.qk_rope_head_dim
593
+ self.kv_lora_rank = config.kv_lora_rank
594
+ self.v_head_dim = config.v_head_dim
595
+ self.qk_nope_head_dim = config.qk_nope_head_dim
596
+ self.qk_head_dim = config.qk_head_dim
597
+
598
+ self.is_causal = True
599
+ if self.q_lora_rank is None:
600
+ self.q_proj = nn.Linear(config.hidden_size, self.num_heads * self.qk_head_dim, bias=False)
601
+ else:
602
+ self.q_a_proj = nn.Linear(config.hidden_size, config.q_lora_rank, bias=config.use_qkv_bias)
603
+ self.q_a_layernorm = BailingMoeV2_5RMSNorm(config.q_lora_rank)
604
+ self.q_b_proj = nn.Linear(config.q_lora_rank, self.num_heads * self.qk_head_dim, bias=False)
605
+
606
+ self.kv_a_proj_with_mqa = nn.Linear(
607
+ config.hidden_size,
608
+ self.kv_lora_rank + self.qk_rope_head_dim,
609
+ bias=config.use_qkv_bias,
610
+ )
611
+ self.kv_a_layernorm = BailingMoeV2_5RMSNorm(self.kv_lora_rank)
612
+ self.kv_b_proj = nn.Linear(
613
+ self.kv_lora_rank,
614
+ self.num_heads * (self.qk_nope_head_dim + self.v_head_dim),
615
+ bias=False,
616
+ )
617
+
618
+ self.dense = nn.Linear(
619
+ self.num_heads * self.v_head_dim,
620
+ config.hidden_size,
621
+ bias=config.use_qkv_bias,
622
+ )
623
+
624
+ self.scaling = self.qk_head_dim ** (-0.5)
625
+ if self.config.rope_scaling is not None:
626
+ mscale_all_dim = self.config.rope_scaling.get("mscale_all_dim", 0)
627
+ scaling_factor = self.config.rope_scaling["factor"]
628
+ if mscale_all_dim:
629
+ mscale = yarn_get_mscale(scaling_factor, mscale_all_dim)
630
+ self.scaling = self.scaling * mscale * mscale
631
+
632
+ @deprecate_kwarg("past_key_value", new_name="past_key_values", version="4.58")
633
+ def forward(
634
+ self,
635
+ hidden_states: torch.Tensor,
636
+ position_embeddings: tuple[torch.Tensor, torch.Tensor],
637
+ attention_mask: Optional[torch.Tensor],
638
+ past_key_values: Optional[Cache] = None,
639
+ cache_position: Optional[torch.LongTensor] = None,
640
+ **kwargs: Unpack[FlashAttentionKwargs],
641
+ ) -> tuple[torch.Tensor, Optional[torch.Tensor], Optional[tuple[torch.Tensor]]]:
642
+
643
+ batch_size, seq_length = hidden_states.shape[:-1]
644
+ query_shape = (batch_size, seq_length, -1, self.qk_head_dim)
645
+ key_shape = (batch_size, seq_length, -1, self.qk_nope_head_dim + self.v_head_dim)
646
+
647
+ if self.q_lora_rank is None:
648
+ q_states = self.q_proj(hidden_states)
649
+ else:
650
+ q_states = self.q_b_proj(self.q_a_layernorm(self.q_a_proj(hidden_states)))
651
+ q_states = q_states.view(query_shape).transpose(1, 2)
652
+ q_pass, q_rot = torch.split(q_states, [self.qk_nope_head_dim, self.qk_rope_head_dim], dim=-1)
653
+
654
+ compressed_kv = self.kv_a_proj_with_mqa(hidden_states)
655
+ k_pass, k_rot = torch.split(compressed_kv, [self.kv_lora_rank, self.qk_rope_head_dim], dim=-1)
656
+
657
+ k_pass = self.kv_b_proj(self.kv_a_layernorm(k_pass)).view(key_shape).transpose(1, 2)
658
+ k_pass, value_states = torch.split(k_pass, [self.qk_nope_head_dim, self.v_head_dim], dim=-1)
659
+
660
+ k_rot = k_rot.view(batch_size, 1, seq_length, self.qk_rope_head_dim)
661
+
662
+ cos, sin = position_embeddings # tptest
663
+ if self.config.rope_interleave: # support using interleaved weights for efficiency
664
+ q_rot, k_rot = apply_rotary_pos_emb_interleave(q_rot, k_rot, cos, sin)
665
+ else:
666
+ x = 1 / 0
667
+ q_rot, k_rot = apply_rotary_pos_emb(q_rot, k_rot, cos, sin)
668
+ k_rot = k_rot.expand(*k_pass.shape[:-1], -1)
669
+
670
+ query_states = torch.cat((q_pass, q_rot), dim=-1)
671
+ key_states = torch.cat((k_pass, k_rot), dim=-1)
672
+
673
+ if past_key_values is not None:
674
+ # sin and cos are specific to RoPE models; cache_position needed for the static cache
675
+ cache_kwargs = {"sin": sin, "cos": cos, "cache_position": cache_position}
676
+ key_states, value_states = past_key_values.update(key_states, value_states, self.layer_idx, cache_kwargs)
677
+
678
+ if self.config._attn_implementation == "flash_attention_2" and self.qk_head_dim != self.v_head_dim:
679
+ value_states = F.pad(value_states, [0, self.qk_head_dim - self.v_head_dim])
680
+
681
+ attention_interface: Callable = eager_attention_forward
682
+
683
+ attn_output, attn_weights = attention_interface(
684
+ self,
685
+ query_states,
686
+ key_states,
687
+ value_states,
688
+ attention_mask,
689
+ dropout=0.0 if not self.training else self.attention_dropout,
690
+ scaling=self.scaling,
691
+ **kwargs,
692
+ )
693
+
694
+ if self.config._attn_implementation == "flash_attention_2" and self.qk_head_dim != self.v_head_dim:
695
+ attn_output = attn_output[:, :, :, : self.v_head_dim]
696
+
697
+ attn_output = attn_output.reshape(batch_size, seq_length, -1).contiguous()
698
+ attn_output = self.dense(attn_output)
699
+ return attn_output, attn_weights, past_key_values
700
+
701
+
702
+ class BailingMoeV2_5LinearAttention(nn.Module):
703
+ """
704
+ BailingMoeAttention implements a linear attention mechanism based on Lightning Attention-2
705
+ (https://arxiv.org/abs/2401.04658) with efficient computation using flash-linear-attention operators.
706
+
707
+ The implementation leverages optimized kernels from the flash-linear-attention library
708
+ (https://github.com/fla-org/flash-linear-attention) for maximum performance.
709
+ """
710
+
711
+ def __init__(self, config: BailingMoeV2_5Config, layer_idx: Optional[int] = None):
712
+ super().__init__()
713
+ self.config = config
714
+ self.layer_idx = layer_idx
715
+ if layer_idx is None:
716
+ logger.warning_once(
717
+ f"Instantiating {self.__class__.__name__} without passing `layer_idx` is not recommended and will "
718
+ "to errors during the forward call, if caching is used. Please make sure to provide a `layer_idx` "
719
+ "when creating this class."
720
+ )
721
+ self.hidden_size = config.hidden_size
722
+ self.num_heads = config.num_attention_heads
723
+ self.head_dim = config.head_dim or self.hidden_size // self.num_heads
724
+ self.num_key_value_heads = config.num_attention_heads
725
+ self.num_key_value_groups = self.num_heads // self.num_key_value_heads
726
+ partial_rotary_factor = config.partial_rotary_factor if hasattr(config, "partial_rotary_factor") else 1.0
727
+ self.rope_dim = int(self.head_dim * partial_rotary_factor)
728
+
729
+ self.use_qk_norm = getattr(config, "use_qk_norm", False)
730
+ self.rms_norm_eps = getattr(config, "rms_norm_eps", 1e-5)
731
+ self.mode = 'chunk'
732
+
733
+ self.query_key_value = nn.Linear(
734
+ self.hidden_size,
735
+ (self.num_heads + 2 * self.num_key_value_heads) * self.head_dim,
736
+ bias=config.use_qkv_bias,
737
+ )
738
+
739
+ if self.config.use_qk_norm:
740
+ self.query_layernorm = BailingMoeV2_5RMSNorm(self.head_dim, eps=config.rms_norm_eps)
741
+ self.key_layernorm = BailingMoeV2_5RMSNorm(self.head_dim, eps=config.rms_norm_eps)
742
+
743
+ self.rotary_emb = BailingMoeV2_5RotaryEmbedding(config=config)
744
+
745
+ self.dense = nn.Linear(self.num_heads * self.head_dim, self.hidden_size, bias=config.use_bias)
746
+
747
+ self.g_proj = nn.Linear(self.hidden_size, self.num_heads * self.head_dim, bias=False)
748
+ self.g_norm = BailingMoeV2_5GroupRMSNorm(
749
+ self.num_heads * self.head_dim, group_norm_size=config.group_norm_size, eps=self.rms_norm_eps
750
+ )
751
+ slope = -BailingMoeV2_5LinearAttention.build_slope_tensor(self.num_heads) * (
752
+ 1 - (self.layer_idx - 1) / (self.config.num_hidden_layers - 1) + 1e-5
753
+ )
754
+ self.register_buffer('slope', slope, persistent=False)
755
+
756
+ self.lightning_attn_ops = {'chunk': chunk_simple_gla, 'fused_recurrent': fused_recurrent_simple_gla}
757
+
758
+ @staticmethod
759
+ def build_slope_tensor(n_attention_heads: int):
760
+ """
761
+ Build a tensor of slopes for Lightning Attention-2 as described in the paper:
762
+ "Lightning Attention-2: A Free Lunch for Handling Unlimited Sequence Lengths in Large Language Models"
763
+ (https://arxiv.org/abs/2401.04658)
764
+
765
+ This function computes the slope values that control the decay rate of attention scores
766
+ based on the number of attention heads. The slopes are designed to have specific
767
+ mathematical properties that work optimally when the number of heads is a power of 2.
768
+
769
+ For non-power-of-2 head counts, a workaround is implemented to maintain similar properties.
770
+
771
+ Args:
772
+ n_attention_heads (int): Number of attention heads in the model
773
+
774
+ Returns:
775
+ torch.Tensor: A tensor of shape [n_attention_heads] containing the computed slopes
776
+
777
+ Note:
778
+ Code copied from: https://github.com/OpenNLPLab/lightning-attention/blob/d15c38529bbd5c2c82b44ddda3cac885825aa873/lightning_attn/utils/utils.py#L6
779
+ """
780
+
781
+ def get_slopes(n):
782
+ def get_slopes_power_of_2(n):
783
+ start = 2 ** (-(2 ** -(math.log2(n) - 3)))
784
+ ratio = start
785
+ return [start * ratio**i for i in range(n)]
786
+
787
+ if math.log2(n).is_integer():
788
+ return get_slopes_power_of_2(
789
+ n
790
+ ) # In the paper, we only train models that have 2^a heads for some a. This function has
791
+ else: # some good properties that only occur when the input is a power of 2. To maintain that even
792
+ closest_power_of_2 = 2 ** math.floor(
793
+ math.log2(n)
794
+ ) # when the number of heads is not a power of 2, we use this workaround.
795
+ return (
796
+ get_slopes_power_of_2(closest_power_of_2)
797
+ + get_slopes(2 * closest_power_of_2)[0::2][: n - closest_power_of_2]
798
+ )
799
+
800
+ slopes = torch.tensor(get_slopes(n_attention_heads), dtype=torch.float)
801
+ return slopes
802
+
803
+ def forward(
804
+ self,
805
+ hidden_states: torch.Tensor,
806
+ attention_mask: Optional[torch.Tensor] = None,
807
+ position_ids: Optional[torch.LongTensor] = None,
808
+ past_key_value: Optional[Cache] = None,
809
+ output_attentions: bool = False,
810
+ use_cache: bool = False,
811
+ position_embeddings: Optional[Tuple[torch.Tensor, torch.Tensor]] = None,
812
+ **kwargs,
813
+ ) -> Tuple[torch.Tensor, Optional[torch.Tensor], Optional[Tuple[torch.Tensor]]]:
814
+ if attention_mask is not None:
815
+ assert len(attention_mask.shape) == 2, (
816
+ "Expected attention_mask as a 0-1 matrix with shape [batch_size, seq_len] "
817
+ "for padding purposes (0 indicating padding). "
818
+ "Arbitrary attention masks of shape [batch_size, seq_len, seq_len] are not allowed."
819
+ )
820
+
821
+ # launching the triton kernel for just one token will actually be slower
822
+ mode = 'fused_recurrent' if hidden_states.shape[1] <= 64 else self.mode
823
+
824
+ # Currently output_attentions can only be False, returning attention weights is not supported
825
+ assert (
826
+ not output_attentions
827
+ ), "output_attentions can only be False, returning attention weights is not supported"
828
+
829
+ bsz, q_len, _ = hidden_states.size()
830
+ device = hidden_states.device
831
+
832
+ qkv = self.query_key_value(hidden_states)
833
+ qkv = qkv.view(bsz, q_len, self.num_heads + 2 * self.num_key_value_heads, self.head_dim)
834
+ query_states, key_states, value_states = qkv.split(
835
+ [self.num_heads, self.num_key_value_heads, self.num_key_value_heads], dim=-2
836
+ )
837
+ if self.config.use_qk_norm:
838
+ query_states = self.query_layernorm(query_states)
839
+ key_states = self.key_layernorm(key_states)
840
+
841
+ cos, sin = position_embeddings
842
+ query_states, key_states = apply_rotary_pos_emb(query_states, key_states, cos, sin, unsqueeze_dim=2)
843
+
844
+ if self.num_key_value_groups > 1:
845
+ # [bsz, q_len, n_kv_heads, head_dim] -> [bsz, q_len, n_heads, head_dim]
846
+ key_states = repeat_kv(key_states, self.num_key_value_groups, head_first=False)
847
+ value_states = repeat_kv(value_states, self.num_key_value_groups, head_first=False)
848
+
849
+ recurrent_state = None
850
+ if past_key_value is not None and isinstance(past_key_value, Cache):
851
+ # ensure the cache list is long enough
852
+ while len(past_key_value.layers) <= self.layer_idx:
853
+ past_key_value.layers.append(DynamicLayer())
854
+
855
+ if past_key_value.layers[self.layer_idx].keys is not None:
856
+ recurrent_state = past_key_value.layers[self.layer_idx].keys
857
+ # ensure recurrent_state is on the same device as hidden_states
858
+ if recurrent_state.device != hidden_states.device:
859
+ recurrent_state = recurrent_state.to(device).contiguous()
860
+
861
+ if recurrent_state is None:
862
+ # dealing with left-padding
863
+ if attention_mask is not None and use_cache:
864
+ value_states = value_states.mul_(attention_mask[:, -q_len:, None, None])
865
+
866
+ o, recurrent_state = self.lightning_attn_ops[mode](
867
+ q=query_states,
868
+ k=key_states,
869
+ v=value_states,
870
+ g=self.slope[None, None, :].expand(bsz, q_len, self.num_heads),
871
+ initial_state=recurrent_state,
872
+ output_final_state=use_cache,
873
+ )
874
+
875
+ o = o.reshape(bsz, q_len, -1)
876
+ o = self.g_norm(o)
877
+ g_proj = self.g_proj(hidden_states)
878
+ o = o * torch.sigmoid_(g_proj)
879
+ o = self.dense(o)
880
+
881
+ if use_cache and past_key_value is not None and isinstance(past_key_value, Cache):
882
+ target_device = None
883
+ for cache in past_key_value.layers:
884
+ if cache.keys is not None:
885
+ target_device = cache.keys.device
886
+ break
887
+ if target_device is None:
888
+ target_device = recurrent_state.device
889
+
890
+ # move to target device
891
+ if recurrent_state.device != target_device:
892
+ recurrent_state = recurrent_state.to(target_device)
893
+
894
+ past_key_value.layers[self.layer_idx].keys = recurrent_state
895
+
896
+ return o, None, past_key_value
897
+
898
+
899
+ class BailingMoeV2_5MTPLayer(nn.Module):
900
+ def __init__(self, config: BailingMoeV2_5Config, layer_idx: int):
901
+ super().__init__()
902
+ self.layer_idx = layer_idx
903
+ self.input_layernorm = BailingMoeV2_5RMSNorm(config.hidden_size, eps=config.rms_norm_eps)
904
+ self.enorm = BailingMoeV2_5RMSNorm(config.hidden_size, eps=config.rms_norm_eps)
905
+
906
+ self.eh_proj = nn.Linear(config.hidden_size * 2, config.hidden_size, bias=False)
907
+ self.post_attention_layernorm = BailingMoeV2_5RMSNorm(config.hidden_size, eps=config.rms_norm_eps)
908
+ self.attention = BailingMoeV2_5MultiLatentAttention(config=config, layer_idx=layer_idx)
909
+ self.mlp = BailingMoeV2_5SparseMoeBlock(config)
910
+
911
+ self.hnorm = BailingMoeV2_5RMSNorm(config.hidden_size, eps=config.rms_norm_eps)
912
+ self.final_layernorm = BailingMoeV2_5RMSNorm(config.hidden_size, eps=config.rms_norm_eps)
913
+
914
+ def forward(
915
+ self,
916
+ input_embeds,
917
+ hidden_states: torch.Tensor,
918
+ attention_mask: Optional[torch.Tensor] = None,
919
+ position_ids: Optional[torch.LongTensor] = None,
920
+ past_key_value: Optional[Tuple[torch.Tensor]] = None,
921
+ output_attentions: Optional[bool] = False,
922
+ output_router_logits: Optional[bool] = False,
923
+ use_cache: Optional[bool] = False,
924
+ position_embeddings: Optional[Tuple[torch.Tensor, torch.Tensor]] = None, # necessary, but kept here for BC
925
+ **kwargs,
926
+ ) -> Tuple[torch.FloatTensor, Optional[Tuple[torch.FloatTensor, torch.FloatTensor]]]:
927
+ input_embeds = self.enorm(input_embeds)
928
+ hidden_states = self.hnorm(hidden_states)
929
+ hidden_states = self.eh_proj(torch.cat([input_embeds, hidden_states], dim=-1))
930
+ residual = hidden_states
931
+
932
+ hidden_states = self.input_layernorm(hidden_states)
933
+
934
+ # Self Attention
935
+ hidden_states, self_attn_weights, present_key_value = self.attention(
936
+ hidden_states=hidden_states,
937
+ attention_mask=attention_mask,
938
+ position_ids=position_ids,
939
+ past_key_value=past_key_value,
940
+ output_attentions=output_attentions,
941
+ position_embeddings=position_embeddings,
942
+ use_cache=use_cache,
943
+ )
944
+ hidden_states = residual + hidden_states
945
+
946
+ # Fully Connected
947
+ residual = hidden_states
948
+ hidden_states = self.post_attention_layernorm(hidden_states)
949
+ hidden_states = self.mlp(hidden_states)
950
+ if isinstance(hidden_states, tuple):
951
+ hidden_states, router_logits = hidden_states
952
+ else:
953
+ router_logits = None
954
+ hidden_states = residual + hidden_states.to(residual.device)
955
+ hidden_states = self.final_layernorm(hidden_states)
956
+
957
+ outputs = (hidden_states,)
958
+
959
+ if output_attentions:
960
+ outputs += (self_attn_weights,)
961
+
962
+ if use_cache:
963
+ outputs += (present_key_value,)
964
+
965
+ if output_router_logits:
966
+ outputs += (router_logits,)
967
+
968
+ return outputs
969
+
970
+
971
+ class BailingMoeV2_5DecoderLayer(nn.Module):
972
+ def __init__(self, config: BailingMoeV2_5Config, layer_idx: int):
973
+ super().__init__()
974
+ self.hidden_size = config.hidden_size
975
+ self.layer_idx = layer_idx
976
+ self.attention_layer_type = (
977
+ "attention"
978
+ if (layer_idx + 1) % config.layer_group_size == 0
979
+ or layer_idx >= config.num_hidden_layers // config.layer_group_size * config.layer_group_size
980
+ else "linear_attention"
981
+ )
982
+
983
+ if self.attention_layer_type == "attention":
984
+ self.attention = BailingMoeV2_5MultiLatentAttention(config=config, layer_idx=layer_idx)
985
+ else:
986
+ self.attention = BailingMoeV2_5LinearAttention(config=config, layer_idx=layer_idx)
987
+
988
+ self.mlp = (
989
+ BailingMoeV2_5SparseMoeBlock(config)
990
+ if (config.num_experts is not None and layer_idx >= config.first_k_dense_replace)
991
+ else BailingMoeV2_5MLP(config=config, intermediate_size=config.intermediate_size)
992
+ )
993
+ self.input_layernorm = BailingMoeV2_5RMSNorm(config.hidden_size, eps=config.rms_norm_eps)
994
+ self.post_attention_layernorm = BailingMoeV2_5RMSNorm(config.hidden_size, eps=config.rms_norm_eps)
995
+
996
+ def forward(
997
+ self,
998
+ hidden_states: torch.Tensor,
999
+ attention_mask: Optional[torch.Tensor] = None,
1000
+ position_ids: Optional[torch.LongTensor] = None,
1001
+ past_key_value: Optional[Tuple[torch.Tensor]] = None,
1002
+ cache_position: Optional[torch.LongTensor] = None,
1003
+ output_attentions: Optional[bool] = False,
1004
+ output_router_logits: Optional[bool] = False,
1005
+ use_cache: Optional[bool] = False,
1006
+ position_embeddings: Optional[Tuple[torch.Tensor, torch.Tensor]] = None, # necessary, but kept here for BC
1007
+ position_embeddings_mla: Optional[Tuple[torch.Tensor, torch.Tensor]] = None, # necessary, but kept here for BC
1008
+ **kwargs,
1009
+ ) -> Tuple[torch.FloatTensor, Optional[Tuple[torch.FloatTensor, torch.FloatTensor]]]:
1010
+ """
1011
+ Args:
1012
+ hidden_states (`torch.FloatTensor`): input to the layer of shape `(batch, seq_len, embed_dim)`
1013
+ attention_mask (`torch.FloatTensor`, *optional*):
1014
+ attention mask of size `(batch_size, sequence_length)` if flash attention is used or `(batch_size, 1,
1015
+ query_sequence_length, key_sequence_length)` if default attention is used.
1016
+ position_ids (`torch.LongTensor` of shape `(batch_size, sequence_length)`, *optional*):
1017
+ Indices of positions of each input sequence tokens in the position embeddings. Selected in the range `[0,
1018
+ config.n_positions - 1]`.
1019
+ past_key_value (`Tuple(torch.FloatTensor)`, *optional*):
1020
+ cached past key and value projection states
1021
+ output_attentions (`bool`, *optional*):
1022
+ Whether to return the attentions tensors of all attention layers. See `attentions` under
1023
+ returned tensors for more detail.
1024
+ output_router_logits (`bool`, *optional*):
1025
+ Whether or not to return the logits of all the routers. They are useful for computing the router loss,
1026
+ and should not be returned during inference.
1027
+ use_cache (`bool`, *optional*):
1028
+ If set to `True`, `past_key_values` key value states are returned and can be used to speed up decoding
1029
+ (see `past_key_values`).
1030
+ """
1031
+ residual = hidden_states
1032
+
1033
+ hidden_states = self.input_layernorm(hidden_states)
1034
+
1035
+ # Self Attention
1036
+ if self.attention_layer_type == "attention":
1037
+ hidden_states, self_attn_weights, present_key_value = self.attention(
1038
+ hidden_states=hidden_states,
1039
+ attention_mask=attention_mask,
1040
+ position_ids=position_ids,
1041
+ past_key_values=past_key_value,
1042
+ use_cache=use_cache,
1043
+ cache_position=cache_position, #
1044
+ position_embeddings=position_embeddings_mla, #
1045
+ **kwargs,
1046
+ )
1047
+ else:
1048
+ batch_size, seq_len = hidden_states.shape[0], hidden_states.shape[1]
1049
+ device = hidden_states.device
1050
+
1051
+ if attention_mask is None:
1052
+ # if attention_mask is None, create a full mask
1053
+ attention_mask = torch.ones((batch_size, seq_len), dtype=torch.int32, device=device)
1054
+ elif attention_mask.dim() == 4 and attention_mask.shape[1] == 1:
1055
+ attention_mask = attention_mask[:, 0, -1, :].to(torch.int32)
1056
+ attention_mask = (attention_mask > -1e4).to(torch.int32)
1057
+ elif attention_mask.dim() == 2:
1058
+ attention_mask = attention_mask.to(torch.int32)
1059
+ else:
1060
+ raise ValueError(f"Unsupported mask dimension: {attention_mask.shape}")
1061
+
1062
+ hidden_states, self_attn_weights, present_key_value = self.attention(
1063
+ hidden_states=hidden_states,
1064
+ attention_mask=attention_mask,
1065
+ past_key_value=past_key_value,
1066
+ position_ids=position_ids,
1067
+ use_cache=use_cache,
1068
+ output_attentions=output_attentions,
1069
+ position_embeddings=position_embeddings,
1070
+ )
1071
+
1072
+ hidden_states = residual + hidden_states
1073
+
1074
+ # Fully Connected
1075
+ residual = hidden_states
1076
+ hidden_states = self.post_attention_layernorm(hidden_states)
1077
+ hidden_states = self.mlp(hidden_states)
1078
+ if isinstance(hidden_states, tuple):
1079
+ hidden_states, router_logits = hidden_states
1080
+ else:
1081
+ router_logits = None
1082
+ hidden_states = residual + hidden_states.to(residual.device)
1083
+
1084
+ outputs = (hidden_states,)
1085
+
1086
+ if output_attentions:
1087
+ outputs += (self_attn_weights,)
1088
+
1089
+ if use_cache:
1090
+ outputs += (present_key_value,)
1091
+
1092
+ if output_router_logits:
1093
+ outputs += (router_logits,)
1094
+
1095
+ return outputs
1096
+
1097
+
1098
+ BAILINGMOEV2_5_START_DOCSTRING = r"""
1099
+ This model inherits from [`PreTrainedModel`]. Check the superclass documentation for the generic methods the
1100
+ library implements for all its model (such as downloading or saving, resizing the input embeddings, pruning heads
1101
+ etc.)
1102
+ This model is also a PyTorch [torch.nn.Module](https://pytorch.org/docs/stable/nn.html#torch.nn.Module) subclass.
1103
+ Use it as a regular PyTorch Module and refer to the PyTorch documentation for all matter related to general usage
1104
+ and behavior.
1105
+ Parameters:
1106
+ config ([`BailingMoeV2_5Config`]):
1107
+ Model configuration class with all the parameters of the model. Initializing with a config file does not
1108
+ load the weights associated with the model, only the configuration. Check out the
1109
+ [`~PreTrainedModel.from_pretrained`] method to load the model weights.
1110
+ """
1111
+
1112
+
1113
+ @add_start_docstrings(
1114
+ "The bare BailingMoeV2_5 Model outputting raw hidden-states without any specific head on top.",
1115
+ BAILINGMOEV2_5_START_DOCSTRING,
1116
+ )
1117
+ class BailingMoeV2_5PreTrainedModel(PreTrainedModel):
1118
+ config_class = BailingMoeV2_5Config
1119
+ base_model_prefix = "model"
1120
+ supports_gradient_checkpointing = True
1121
+ _no_split_modules = ["BailingMoeV2_5DecoderLayer"]
1122
+ _skip_keys_device_placement = "past_key_values"
1123
+ _supports_flash_attn_2 = True
1124
+ _supports_sdpa = True
1125
+ _supports_cache_class = True
1126
+
1127
+ def _init_weights(self, module):
1128
+ std = self.config.initializer_range
1129
+ if isinstance(module, nn.Linear):
1130
+ module.weight.data.normal_(mean=0.0, std=std)
1131
+ if module.bias is not None:
1132
+ module.bias.data.zero_()
1133
+ elif isinstance(module, nn.Embedding):
1134
+ module.weight.data.normal_(mean=0.0, std=std)
1135
+ if module.padding_idx is not None:
1136
+ module.weight.data[module.padding_idx].zero_()
1137
+
1138
+
1139
+ BAILINGMOEV2_5_INPUTS_DOCSTRING = r"""
1140
+ Args:
1141
+ input_ids (`torch.LongTensor` of shape `(batch_size, sequence_length)`):
1142
+ Indices of input sequence tokens in the vocabulary. Padding will be ignored by default should you provide
1143
+ it.
1144
+ Indices can be obtained using [`AutoTokenizer`]. See [`PreTrainedTokenizer.encode`] and
1145
+ [`PreTrainedTokenizer.__call__`] for details.
1146
+ [What are input IDs?](../glossary#input-ids)
1147
+ attention_mask (`torch.Tensor` of shape `(batch_size, sequence_length)`, *optional*):
1148
+ Mask to avoid performing attention on padding token indices. Mask values selected in `[0, 1]`:
1149
+ - 1 for tokens that are **not masked**,
1150
+ - 0 for tokens that are **masked**.
1151
+ [What are attention masks?](../glossary#attention-mask)
1152
+ Indices can be obtained using [`AutoTokenizer`]. See [`PreTrainedTokenizer.encode`] and
1153
+ [`PreTrainedTokenizer.__call__`] for details.
1154
+ If `past_key_values` is used, optionally only the last `input_ids` have to be input (see
1155
+ `past_key_values`).
1156
+ If you want to change padding behavior, you should read [`modeling_opt._prepare_decoder_attention_mask`]
1157
+ and modify to your needs. See diagram 1 in [the paper](https://arxiv.org/abs/1910.13461) for more
1158
+ information on the default strategy.
1159
+ - 1 indicates the head is **not masked**,
1160
+ - 0 indicates the head is **masked**.
1161
+ position_ids (`torch.LongTensor` of shape `(batch_size, sequence_length)`, *optional*):
1162
+ Indices of positions of each input sequence tokens in the position embeddings. Selected in the range `[0,
1163
+ config.n_positions - 1]`.
1164
+ [What are position IDs?](../glossary#position-ids)
1165
+ past_key_values (`Cache` or `tuple(tuple(torch.FloatTensor))`, *optional*):
1166
+ Pre-computed hidden-states (key and values in the self-attention blocks and in the cross-attention
1167
+ blocks) that can be used to speed up sequential decoding. This typically consists in the `past_key_values`
1168
+ returned by the model at a previous stage of decoding, when `use_cache=True` or `config.use_cache=True`.
1169
+ Two formats are allowed:
1170
+ - a [`~cache_utils.Cache`] instance;
1171
+ - Tuple of `tuple(torch.FloatTensor)` of length `config.n_layers`, with each tuple having 2 tensors of
1172
+ shape `(batch_size, num_heads, sequence_length, embed_size_per_head)`). This is also known as the legacy
1173
+ cache format.
1174
+ The model will output the same cache format that is fed as input. If no `past_key_values` are passed, the
1175
+ legacy cache format will be returned.
1176
+ If `past_key_values` are used, the user can optionally input only the last `input_ids` (those that don't
1177
+ have their past key value states given to this model) of shape `(batch_size, 1)` instead of all `input_ids`
1178
+ of shape `(batch_size, sequence_length)`.
1179
+ inputs_embeds (`torch.FloatTensor` of shape `(batch_size, sequence_length, hidden_size)`, *optional*):
1180
+ Optionally, instead of passing `input_ids` you can choose to directly pass an embedded representation. This
1181
+ is useful if you want more control over how to convert `input_ids` indices into associated vectors than the
1182
+ model's internal embedding lookup matrix.
1183
+ use_cache (`bool`, *optional*):
1184
+ If set to `True`, `past_key_values` key value states are returned and can be used to speed up decoding (see
1185
+ `past_key_values`).
1186
+ output_attentions (`bool`, *optional*):
1187
+ Whether or not to return the attentions tensors of all attention layers. See `attentions` under returned
1188
+ tensors for more detail.
1189
+ output_hidden_states (`bool`, *optional*):
1190
+ Whether or not to return the hidden states of all layers. See `hidden_states` under returned tensors for
1191
+ more detail.
1192
+ return_dict (`bool`, *optional*):
1193
+ Whether or not to return a [`~utils.ModelOutput`] instead of a plain tuple.
1194
+ """
1195
+
1196
+
1197
+ @add_start_docstrings(
1198
+ "The bare BailingMoeV2_5 Model outputting raw hidden-states without any specific head on top.",
1199
+ BAILINGMOEV2_5_START_DOCSTRING,
1200
+ )
1201
+ class BailingMoeV2_5Model(BailingMoeV2_5PreTrainedModel):
1202
+ """
1203
+ Transformer decoder consisting of *config.num_hidden_layers* layers. Each layer is a [`BailingMoeV2_5DecoderLayer`]
1204
+ Args:
1205
+ config: BailingMoeV2_5Config
1206
+ """
1207
+
1208
+ def __init__(self, config: BailingMoeV2_5Config):
1209
+ super().__init__(config)
1210
+ self.padding_idx = config.pad_token_id
1211
+ self.vocab_size = config.vocab_size
1212
+ self.num_nextn_predict_layers = config.num_nextn_predict_layers
1213
+
1214
+ self.word_embeddings = nn.Embedding(config.vocab_size, config.hidden_size, self.padding_idx)
1215
+ self.layers = []
1216
+ for layer_idx in range(config.num_hidden_layers + config.num_nextn_predict_layers):
1217
+ layer_cls = BailingMoeV2_5DecoderLayer if layer_idx < config.num_hidden_layers else BailingMoeV2_5MTPLayer
1218
+ self.layers.append(layer_cls(config, layer_idx))
1219
+
1220
+ self.layers = nn.ModuleList(self.layers)
1221
+
1222
+ self._use_sdpa = config._attn_implementation == "sdpa"
1223
+ self._use_flash_attention_2 = config._attn_implementation == "flash_attention_2"
1224
+ self.norm = BailingMoeV2_5RMSNorm(config.hidden_size, eps=config.rms_norm_eps)
1225
+ self.rotary_emb = BailingMoeV2_5RotaryEmbedding(config=config)
1226
+ self.rotary_emb_mla = BailingMoeV2_5MLARotaryEmbedding(config=config)
1227
+ self.gradient_checkpointing = False
1228
+ # Initialize weights and apply final processing
1229
+ self.post_init()
1230
+
1231
+ def get_input_embeddings(self):
1232
+ return self.word_embeddings
1233
+
1234
+ def set_input_embeddings(self, value):
1235
+ self.word_embeddings = value
1236
+
1237
+ @add_start_docstrings_to_model_forward(BAILINGMOEV2_5_INPUTS_DOCSTRING)
1238
+ def forward(
1239
+ self,
1240
+ input_ids: torch.LongTensor = None,
1241
+ attention_mask: Optional[torch.Tensor] = None,
1242
+ position_ids: Optional[torch.LongTensor] = None,
1243
+ past_key_values: Optional[List[torch.FloatTensor]] = None,
1244
+ inputs_embeds: Optional[torch.FloatTensor] = None,
1245
+ cache_position: Optional[torch.LongTensor] = None,
1246
+ use_cache: Optional[bool] = None,
1247
+ output_attentions: Optional[bool] = None,
1248
+ output_hidden_states: Optional[bool] = None,
1249
+ output_router_logits: Optional[bool] = None,
1250
+ return_dict: Optional[bool] = None,
1251
+ **kwargs,
1252
+ ) -> Union[Tuple, MoeV2_5ModelOutputWithPast]:
1253
+ output_attentions = output_attentions if output_attentions is not None else self.config.output_attentions
1254
+ output_hidden_states = (
1255
+ output_hidden_states if output_hidden_states is not None else self.config.output_hidden_states
1256
+ )
1257
+ output_router_logits = (
1258
+ output_router_logits if output_router_logits is not None else self.config.output_router_logits
1259
+ )
1260
+ use_cache = use_cache if use_cache is not None else self.config.use_cache
1261
+
1262
+ return_dict = return_dict if return_dict is not None else self.config.use_return_dict
1263
+
1264
+ # retrieve input_ids and inputs_embeds
1265
+ if input_ids is not None and inputs_embeds is not None:
1266
+ raise ValueError("You cannot specify both input_ids and inputs_embeds at the same time")
1267
+ elif input_ids is not None:
1268
+ batch_size, seq_length = input_ids.shape[:2]
1269
+ elif inputs_embeds is not None:
1270
+ batch_size, seq_length = inputs_embeds.shape[:2]
1271
+ else:
1272
+ raise ValueError("You have to specify either input_ids or inputs_embeds")
1273
+
1274
+ if self.gradient_checkpointing and self.training:
1275
+ if use_cache:
1276
+ logger.warning_once(
1277
+ "`use_cache=True` is incompatible with gradient checkpointing. Setting `use_cache=False`transformers."
1278
+ )
1279
+ use_cache = False
1280
+
1281
+ if use_cache and past_key_values is None:
1282
+ past_key_values = DynamicCache()
1283
+
1284
+ if inputs_embeds is None:
1285
+ inputs_embeds = self.word_embeddings(input_ids)
1286
+
1287
+ if cache_position is None:
1288
+ past_seen_tokens = past_key_values.get_seq_length() if past_key_values is not None else 0
1289
+ cache_position: torch.Tensor = torch.arange(
1290
+ past_seen_tokens, past_seen_tokens + inputs_embeds.shape[1], device=inputs_embeds.device
1291
+ )
1292
+
1293
+ if position_ids is None:
1294
+ position_ids = cache_position.unsqueeze(0)
1295
+
1296
+ softmax_attention_layer_id = self.config.layer_group_size - 1
1297
+ past_seen_tokens = (
1298
+ past_key_values.get_seq_length(layer_idx=softmax_attention_layer_id) if past_key_values is not None else 0
1299
+ )
1300
+
1301
+ if position_ids is None:
1302
+ position_ids = torch.arange(
1303
+ past_seen_tokens, past_seen_tokens + inputs_embeds.shape[1], device=inputs_embeds.device
1304
+ )
1305
+ position_ids = position_ids.unsqueeze(0)
1306
+
1307
+ if self._use_flash_attention_2:
1308
+ # 2d mask is passed through the layers
1309
+ attention_mask = attention_mask if (attention_mask is not None and 0 in attention_mask) else None
1310
+ elif self._use_sdpa and not output_attentions:
1311
+ # output_attentions=True can not be supported when using SDPA, and we fall back on
1312
+ # the manual implementation that requires a 4D causal mask in all cases.
1313
+ attention_mask = _prepare_4d_causal_attention_mask_for_sdpa(
1314
+ attention_mask,
1315
+ (batch_size, seq_length),
1316
+ inputs_embeds,
1317
+ past_seen_tokens,
1318
+ )
1319
+ else:
1320
+ # 4d mask is passed through the layers
1321
+ attention_mask = _prepare_4d_causal_attention_mask(
1322
+ attention_mask, (batch_size, seq_length), inputs_embeds, past_seen_tokens
1323
+ )
1324
+
1325
+ # embed positions
1326
+ hidden_states = inputs_embeds
1327
+
1328
+ # create position embeddings to be shared across the decoder layers
1329
+ position_embeddings = self.rotary_emb(hidden_states, position_ids)
1330
+ position_embeddings_mla = self.rotary_emb_mla(hidden_states, position_ids)
1331
+
1332
+ # decoder layers
1333
+ all_hidden_states = () if output_hidden_states else None
1334
+ all_self_attns = () if output_attentions else None
1335
+ all_router_logits = () if output_router_logits else None
1336
+ next_decoder_cache = None
1337
+ layers = self.layers[: -self.num_nextn_predict_layers] if self.num_nextn_predict_layers > 0 else self.layers
1338
+ mtp_layers = self.layers[-self.num_nextn_predict_layers :] if self.num_nextn_predict_layers > 0 else None
1339
+
1340
+ # tptest miss causal_mask = create_causal_mask(
1341
+
1342
+ for decoder_layer in layers:
1343
+ if output_hidden_states:
1344
+ all_hidden_states += (hidden_states,)
1345
+
1346
+ if self.gradient_checkpointing and self.training:
1347
+ layer_outputs = self._gradient_checkpointing_func(
1348
+ decoder_layer.__call__,
1349
+ hidden_states,
1350
+ attention_mask,
1351
+ position_ids,
1352
+ past_key_values,
1353
+ cache_position,
1354
+ output_attentions,
1355
+ output_router_logits,
1356
+ use_cache,
1357
+ position_embeddings,
1358
+ position_embeddings_mla,
1359
+ )
1360
+ else:
1361
+ layer_outputs = decoder_layer(
1362
+ hidden_states,
1363
+ attention_mask=attention_mask,
1364
+ position_ids=position_ids,
1365
+ past_key_value=past_key_values,
1366
+ cache_position=cache_position,
1367
+ output_attentions=output_attentions,
1368
+ output_router_logits=output_router_logits,
1369
+ use_cache=use_cache,
1370
+ position_embeddings=position_embeddings,
1371
+ position_embeddings_mla=position_embeddings_mla,
1372
+ )
1373
+ hidden_states = layer_outputs[0]
1374
+
1375
+ if use_cache:
1376
+ next_decoder_cache = layer_outputs[2 if output_attentions else 1]
1377
+
1378
+ if output_attentions:
1379
+ all_self_attns += (layer_outputs[1],)
1380
+
1381
+ if output_router_logits and layer_outputs[-1] is not None:
1382
+ all_router_logits += (layer_outputs[-1],)
1383
+
1384
+ hidden_states = self.norm(hidden_states)
1385
+ main_hidden_states = hidden_states
1386
+
1387
+ # add hidden states from the last decoder layer
1388
+ if output_hidden_states:
1389
+ all_hidden_states += (main_hidden_states,)
1390
+
1391
+ mtp_hidden_states = None
1392
+
1393
+ if mtp_layers:
1394
+ for decoder_layer in mtp_layers:
1395
+ input_ids, _ = roll_tensor(input_ids, shifts=-1, dims=-1)
1396
+ inputs_embeds = self.word_embeddings(input_ids)
1397
+
1398
+ if self.gradient_checkpointing and self.training:
1399
+ layer_outputs = self._gradient_checkpointing_func(
1400
+ decoder_layer.__call__,
1401
+ inputs_embeds,
1402
+ hidden_states,
1403
+ attention_mask,
1404
+ position_ids,
1405
+ past_key_values,
1406
+ output_attentions,
1407
+ output_router_logits,
1408
+ use_cache,
1409
+ position_embeddings,
1410
+ )
1411
+ else:
1412
+ layer_outputs = decoder_layer(
1413
+ inputs_embeds,
1414
+ hidden_states,
1415
+ attention_mask=attention_mask,
1416
+ position_ids=position_ids,
1417
+ past_key_value=past_key_values,
1418
+ output_attentions=output_attentions,
1419
+ output_router_logits=output_router_logits,
1420
+ use_cache=use_cache,
1421
+ position_embeddings=position_embeddings,
1422
+ )
1423
+ if mtp_hidden_states is None:
1424
+ mtp_hidden_states = []
1425
+ hidden_states = layer_outputs[0]
1426
+ mtp_hidden_states.append(hidden_states)
1427
+
1428
+ if output_hidden_states:
1429
+ all_hidden_states += (hidden_states,)
1430
+
1431
+ if use_cache:
1432
+ next_decoder_cache = layer_outputs[2 if output_attentions else 1]
1433
+
1434
+ if output_attentions:
1435
+ all_self_attns += (layer_outputs[1],)
1436
+
1437
+ if output_router_logits and layer_outputs[-1] is not None:
1438
+ all_router_logits += (layer_outputs[-1],)
1439
+
1440
+ next_cache = None
1441
+ if use_cache:
1442
+ next_cache = next_decoder_cache
1443
+ if not return_dict:
1444
+ return tuple(
1445
+ v
1446
+ for v in [main_hidden_states, next_cache, all_hidden_states, all_self_attns, all_router_logits]
1447
+ if v is not None
1448
+ )
1449
+ return MoeV2_5ModelOutputWithPast(
1450
+ last_hidden_state=main_hidden_states,
1451
+ past_key_values=next_cache,
1452
+ hidden_states=all_hidden_states,
1453
+ mtp_hidden_states=mtp_hidden_states,
1454
+ attentions=all_self_attns,
1455
+ router_logits=all_router_logits,
1456
+ )
1457
+
1458
+
1459
+ class BailingMoeV2_5ForCausalLM(BailingMoeV2_5PreTrainedModel, GenerationMixin):
1460
+ _tied_weights_keys = ["lm_head.weight"]
1461
+
1462
+ def __init__(self, config: BailingMoeV2_5Config):
1463
+ super().__init__(config)
1464
+ self.model = BailingMoeV2_5Model(config)
1465
+ self.vocab_size = config.vocab_size
1466
+ self.lm_head = nn.Linear(config.hidden_size, config.vocab_size, bias=False)
1467
+ self.num_nextn_predict_layers = config.num_nextn_predict_layers
1468
+ self.mtp_loss_scaling_factor = config.mtp_loss_scaling_factor
1469
+
1470
+ # Initialize weights and apply final processing
1471
+ self.post_init()
1472
+
1473
+ def get_input_embeddings(self):
1474
+ return self.model.word_embeddings
1475
+
1476
+ def set_input_embeddings(self, value):
1477
+ self.model.word_embeddings = value
1478
+
1479
+ def get_output_embeddings(self):
1480
+ return self.lm_head
1481
+
1482
+ def set_output_embeddings(self, new_embeddings):
1483
+ self.lm_head = new_embeddings
1484
+
1485
+ def set_decoder(self, decoder):
1486
+ self.model = decoder
1487
+
1488
+ def get_decoder(self):
1489
+ return self.model
1490
+
1491
+ @add_start_docstrings_to_model_forward(BAILINGMOEV2_5_INPUTS_DOCSTRING)
1492
+ @replace_return_docstrings(output_type=MoEV2_5CausalLMOutputWithPast, config_class=_CONFIG_FOR_DOC)
1493
+ def forward(
1494
+ self,
1495
+ input_ids: torch.LongTensor = None,
1496
+ attention_mask: Optional[torch.Tensor] = None,
1497
+ position_ids: Optional[torch.LongTensor] = None,
1498
+ past_key_values: Optional[List[torch.FloatTensor]] = None,
1499
+ inputs_embeds: Optional[torch.FloatTensor] = None,
1500
+ labels: Optional[torch.LongTensor] = None,
1501
+ use_cache: Optional[bool] = None,
1502
+ output_attentions: Optional[bool] = None,
1503
+ output_hidden_states: Optional[bool] = None,
1504
+ output_router_logits: Optional[bool] = None,
1505
+ return_dict: Optional[bool] = None,
1506
+ **kwargs,
1507
+ ) -> Union[Tuple, MoEV2_5CausalLMOutputWithPast]:
1508
+ r"""
1509
+ Args:
1510
+ labels (`torch.LongTensor` of shape `(batch_size, sequence_length)`, *optional*):
1511
+ Labels for computing the masked language modeling loss. Indices should either be in `[0, ...,
1512
+ config.vocab_size]` or -100 (see `input_ids` docstring). Tokens with indices set to `-100` are ignored
1513
+ (masked), the loss is only computed for the tokens with labels in `[0, ..., config.vocab_size]`.
1514
+ Returns:
1515
+ Example:
1516
+ ```python
1517
+ >>> from transformers import AutoTokenizer
1518
+ >>> model = BailingMoeV2_5ForCausalLM.from_pretrained(PATH_TO_CONVERTED_WEIGHTS)
1519
+ >>> tokenizer = AutoTokenizer.from_pretrained(PATH_TO_CONVERTED_TOKENIZER)
1520
+ >>> prompt = "Hey, are you conscious? Can you talk to me?"
1521
+ >>> inputs = tokenizer(prompt, return_tensors="pt")
1522
+ >>> # Generate
1523
+ >>> generate_ids = model.generate(inputs.input_ids, max_length=30)
1524
+ >>> tokenizer.batch_decode(generate_ids, skip_special_tokens=True, clean_up_tokenization_spaces=False)[0]
1525
+ "Hey, are you conscious? Can you talk to me?\nI'm not conscious, but I can talk to you."
1526
+ ```"""
1527
+ output_attentions = output_attentions if output_attentions is not None else self.config.output_attentions
1528
+ output_hidden_states = (
1529
+ output_hidden_states if output_hidden_states is not None else self.config.output_hidden_states
1530
+ )
1531
+ output_router_logits = (
1532
+ output_router_logits if output_router_logits is not None else self.config.output_router_logits
1533
+ )
1534
+ return_dict = return_dict if return_dict is not None else self.config.use_return_dict
1535
+ # decoder outputs consists of (dec_features, layer_state, dec_hidden, dec_attn)
1536
+ outputs = self.model(
1537
+ input_ids=input_ids,
1538
+ attention_mask=attention_mask,
1539
+ position_ids=position_ids,
1540
+ past_key_values=past_key_values,
1541
+ inputs_embeds=inputs_embeds,
1542
+ use_cache=use_cache,
1543
+ output_attentions=output_attentions,
1544
+ output_hidden_states=output_hidden_states,
1545
+ output_router_logits=output_router_logits,
1546
+ return_dict=return_dict,
1547
+ **kwargs,
1548
+ )
1549
+
1550
+ loss = None
1551
+ all_mtp_loss = None
1552
+ aux_loss = None
1553
+ hidden_states = outputs[0]
1554
+ logits = self.lm_head(hidden_states)
1555
+ logits = logits.float()
1556
+
1557
+ if labels is not None:
1558
+ loss = self.loss_function(logits, labels, self.config.vocab_size, **kwargs)
1559
+
1560
+ all_mtp_logits = None
1561
+ if self.num_nextn_predict_layers > 0:
1562
+ mtp_hidden_states = outputs.mtp_hidden_states
1563
+ shift_labels_mtp = None
1564
+ for i in range(self.num_nextn_predict_layers):
1565
+ mtp_hidden_states = mtp_hidden_states[i]
1566
+ mtp_logits = self.lm_head(mtp_hidden_states).float()
1567
+ if all_mtp_logits is None:
1568
+ all_mtp_logits = []
1569
+ all_mtp_logits.append(mtp_logits)
1570
+ if labels is not None:
1571
+ if shift_labels_mtp is None:
1572
+ shift_labels_mtp = labels.clone()
1573
+ shift_labels_mtp, _ = roll_tensor(shift_labels_mtp, shifts=-1, dims=-1, fill_value=-100)
1574
+ mtp_logits_ = mtp_logits.view(-1, self.config.vocab_size)
1575
+ mtp_loss = self.loss_function(
1576
+ mtp_logits_, shift_labels_mtp.to(mtp_logits_.device).view(-1), self.config.vocab_size, **kwargs
1577
+ )
1578
+ if loss is not None:
1579
+ loss += self.mtp_loss_scaling_factor * mtp_loss
1580
+ else:
1581
+ loss = self.mtp_loss_scaling_factor * mtp_loss
1582
+
1583
+ if all_mtp_loss is None:
1584
+ all_mtp_loss = []
1585
+ all_mtp_loss.append(mtp_loss)
1586
+
1587
+ if not return_dict:
1588
+ output = (logits,) + outputs[1:]
1589
+ if output_router_logits:
1590
+ output = (aux_loss,) + output
1591
+ return (loss,) + output if loss is not None else output
1592
+
1593
+ return MoEV2_5CausalLMOutputWithPast(
1594
+ loss=loss,
1595
+ mtp_loss=all_mtp_loss,
1596
+ aux_loss=aux_loss,
1597
+ logits=logits,
1598
+ mtp_logits=all_mtp_logits,
1599
+ past_key_values=outputs.past_key_values,
1600
+ hidden_states=outputs.hidden_states,
1601
+ attentions=outputs.attentions,
1602
+ router_logits=outputs.router_logits,
1603
+ )
special_tokens_map.json ADDED
@@ -0,0 +1,30 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "bos_token": {
3
+ "content": "<|startoftext|>",
4
+ "lstrip": false,
5
+ "normalized": false,
6
+ "rstrip": false,
7
+ "single_word": false
8
+ },
9
+ "cls_token": {
10
+ "content": "[CLS]",
11
+ "lstrip": false,
12
+ "normalized": false,
13
+ "rstrip": false,
14
+ "single_word": false
15
+ },
16
+ "eos_token": {
17
+ "content": "<|endoftext|>",
18
+ "lstrip": false,
19
+ "normalized": false,
20
+ "rstrip": false,
21
+ "single_word": false
22
+ },
23
+ "pad_token": {
24
+ "content": "<|endoftext|>",
25
+ "lstrip": false,
26
+ "normalized": false,
27
+ "rstrip": false,
28
+ "single_word": false
29
+ }
30
+ }
tokenizer.json ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:1ce9d2d10f1d6da7b2439bc9655e51a00a8c5970f7dd015ae8407ca3962199f4
3
+ size 12205770