aolei commited on
Commit
4ef6ab4
·
1 Parent(s): 7784d29

Upload folder using huggingface_hub

Browse files
config.json CHANGED
@@ -1,47 +1,42 @@
1
  {
2
- "_name_or_path": "THUDM/chatglm2-6b",
3
- "add_bias_linear": false,
4
- "add_qkv_bias": true,
5
- "apply_query_key_layer_scaling": true,
6
- "apply_residual_connection_post_layernorm": false,
7
  "architectures": [
8
- "ChatGLMForConditionalGeneration"
9
  ],
10
- "attention_dropout": 0.0,
11
- "attention_softmax_in_fp32": true,
12
  "auto_map": {
13
- "AutoConfig": "configuration_chatglm.ChatGLMConfig",
14
- "AutoModel": "modeling_chatglm.ChatGLMForConditionalGeneration",
15
- "AutoModelForCausalLM": "THUDM/chatglm2-6b--modeling_chatglm.ChatGLMForConditionalGeneration",
16
- "AutoModelForSeq2SeqLM": "THUDM/chatglm2-6b--modeling_chatglm.ChatGLMForConditionalGeneration",
17
- "AutoModelForSequenceClassification": "THUDM/chatglm2-6b--modeling_chatglm.ChatGLMForSequenceClassification"
18
  },
19
- "bias_dropout_fusion": true,
20
- "classifier_dropout": null,
21
- "eos_token_id": 2,
22
- "ffn_hidden_size": 13696,
23
- "fp32_residual_connection": false,
24
- "hidden_dropout": 0.0,
25
  "hidden_size": 4096,
 
 
26
  "kv_channels": 128,
27
- "layernorm_epsilon": 1e-05,
28
- "model_type": "chatglm",
29
- "multi_query_attention": true,
30
- "multi_query_group_num": 2,
31
  "num_attention_heads": 32,
32
- "num_layers": 28,
33
- "original_rope": true,
34
- "pad_token_id": 0,
35
- "padded_vocab_size": 65024,
36
- "post_layer_norm": true,
37
- "pre_seq_len": null,
38
- "prefix_projection": false,
39
- "quantization_bit": 0,
40
- "rmsnorm": true,
41
- "seq_length": 32768,
42
  "tie_word_embeddings": false,
 
43
  "torch_dtype": "bfloat16",
44
- "transformers_version": "4.33.2",
45
  "use_cache": true,
46
- "vocab_size": 65024
 
 
 
 
 
47
  }
 
1
  {
2
+ "_name_or_path": "Qwen/Qwen-7B-Chat",
 
 
 
 
3
  "architectures": [
4
+ "QWenLMHeadModel"
5
  ],
6
+ "attn_dropout_prob": 0.0,
 
7
  "auto_map": {
8
+ "AutoConfig": "configuration_qwen.QWenConfig",
9
+ "AutoModel": "modeling_qwen.QWenLMHeadModel",
10
+ "AutoModelForCausalLM": "Qwen/Qwen-7B-Chat--modeling_qwen.QWenLMHeadModel"
 
 
11
  },
12
+ "bf16": true,
13
+ "emb_dropout_prob": 0.0,
14
+ "fp16": false,
15
+ "fp32": false,
 
 
16
  "hidden_size": 4096,
17
+ "initializer_range": 0.02,
18
+ "intermediate_size": 22016,
19
  "kv_channels": 128,
20
+ "layer_norm_epsilon": 1e-06,
21
+ "max_position_embeddings": 8192,
22
+ "model_type": "qwen",
23
+ "no_bias": true,
24
  "num_attention_heads": 32,
25
+ "num_hidden_layers": 32,
26
+ "onnx_safe": null,
27
+ "rotary_emb_base": 10000,
28
+ "rotary_pct": 1.0,
29
+ "scale_attn_weights": true,
30
+ "seq_length": 8192,
 
 
 
 
31
  "tie_word_embeddings": false,
32
+ "tokenizer_class": "QWenTokenizer",
33
  "torch_dtype": "bfloat16",
34
+ "transformers_version": "4.32.0",
35
  "use_cache": true,
36
+ "use_cache_kernel": false,
37
+ "use_cache_quantization": false,
38
+ "use_dynamic_ntk": true,
39
+ "use_flash_attn": true,
40
+ "use_logn_attn": true,
41
+ "vocab_size": 151936
42
  }
configuration_qwen.py ADDED
@@ -0,0 +1,69 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (c) Alibaba Cloud.
2
+ #
3
+ # This source code is licensed under the license found in the
4
+ # LICENSE file in the root directory of this source tree.
5
+
6
+ from transformers import PretrainedConfig
7
+
8
+
9
+ class QWenConfig(PretrainedConfig):
10
+ model_type = "qwen"
11
+ keys_to_ignore_at_inference = ["past_key_values"]
12
+
13
+ def __init__(
14
+ self,
15
+ vocab_size=151936,
16
+ hidden_size=4096,
17
+ num_hidden_layers=32,
18
+ num_attention_heads=32,
19
+ emb_dropout_prob=0.0,
20
+ attn_dropout_prob=0.0,
21
+ layer_norm_epsilon=1e-6,
22
+ initializer_range=0.02,
23
+ max_position_embeddings=8192,
24
+ scale_attn_weights=True,
25
+ use_cache=True,
26
+ bf16=False,
27
+ fp16=False,
28
+ fp32=False,
29
+ kv_channels=128,
30
+ rotary_pct=1.0,
31
+ rotary_emb_base=10000,
32
+ use_dynamic_ntk=True,
33
+ use_logn_attn=True,
34
+ use_flash_attn="auto",
35
+ intermediate_size=22016,
36
+ no_bias=True,
37
+ tie_word_embeddings=False,
38
+ use_cache_quantization=False,
39
+ use_cache_kernel=False,
40
+ **kwargs,
41
+ ):
42
+ self.vocab_size = vocab_size
43
+ self.hidden_size = hidden_size
44
+ self.intermediate_size = intermediate_size
45
+ self.num_hidden_layers = num_hidden_layers
46
+ self.num_attention_heads = num_attention_heads
47
+ self.emb_dropout_prob = emb_dropout_prob
48
+ self.attn_dropout_prob = attn_dropout_prob
49
+ self.layer_norm_epsilon = layer_norm_epsilon
50
+ self.initializer_range = initializer_range
51
+ self.scale_attn_weights = scale_attn_weights
52
+ self.use_cache = use_cache
53
+ self.max_position_embeddings = max_position_embeddings
54
+ self.bf16 = bf16
55
+ self.fp16 = fp16
56
+ self.fp32 = fp32
57
+ self.kv_channels = kv_channels
58
+ self.rotary_pct = rotary_pct
59
+ self.rotary_emb_base = rotary_emb_base
60
+ self.use_dynamic_ntk = use_dynamic_ntk
61
+ self.use_logn_attn = use_logn_attn
62
+ self.use_flash_attn = use_flash_attn
63
+ self.no_bias = no_bias
64
+ self.use_cache_quantization=use_cache_quantization
65
+ self.use_cache_kernel=use_cache_kernel
66
+ super().__init__(
67
+ tie_word_embeddings=tie_word_embeddings,
68
+ **kwargs
69
+ )
generation_config.json CHANGED
@@ -1,6 +1,11 @@
1
  {
2
- "_from_model_config": true,
3
- "eos_token_id": 2,
4
- "pad_token_id": 0,
5
- "transformers_version": "4.33.2"
 
 
 
 
 
6
  }
 
1
  {
2
+ "chat_format": "chatml",
3
+ "do_sample": true,
4
+ "eos_token_id": 151643,
5
+ "max_new_tokens": 512,
6
+ "max_window_size": 6144,
7
+ "pad_token_id": 151643,
8
+ "top_k": 0,
9
+ "top_p": 0.5,
10
+ "transformers_version": "4.32.0"
11
  }
modeling_qwen.py ADDED
@@ -0,0 +1,1418 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (c) Alibaba Cloud.
2
+ #
3
+ # This source code is licensed under the license found in the
4
+ # LICENSE file in the root directory of this source tree.
5
+
6
+ import importlib
7
+ import math
8
+ from typing import TYPE_CHECKING, Optional, Tuple, Union, Callable, List, Any, Generator
9
+
10
+ import torch
11
+ import torch.nn.functional as F
12
+ import torch.utils.checkpoint
13
+ from torch.cuda.amp import autocast
14
+
15
+ from torch.nn import CrossEntropyLoss
16
+ from transformers import PreTrainedTokenizer, GenerationConfig, StoppingCriteriaList
17
+ from transformers.generation.logits_process import LogitsProcessorList
18
+
19
+ if TYPE_CHECKING:
20
+ from transformers.generation.streamers import BaseStreamer
21
+ from transformers.generation.utils import GenerateOutput
22
+ from transformers.modeling_outputs import (
23
+ BaseModelOutputWithPast,
24
+ CausalLMOutputWithPast,
25
+ )
26
+ from transformers.modeling_utils import PreTrainedModel
27
+ from transformers.utils import logging
28
+
29
+ try:
30
+ from einops import rearrange
31
+ except ImportError:
32
+ rearrange = None
33
+ from torch import nn
34
+
35
+ try:
36
+ from kernels.cpp_kernels import cache_autogptq_cuda_256
37
+ except ImportError:
38
+ cache_autogptq_cuda_256 = None
39
+
40
+ SUPPORT_CUDA = torch.cuda.is_available()
41
+ SUPPORT_BF16 = SUPPORT_CUDA and torch.cuda.is_bf16_supported()
42
+ SUPPORT_FP16 = SUPPORT_CUDA and torch.cuda.get_device_capability(0)[0] >= 7
43
+
44
+ from .configuration_qwen import QWenConfig
45
+ from .qwen_generation_utils import (
46
+ HistoryType,
47
+ make_context,
48
+ decode_tokens,
49
+ get_stop_words_ids,
50
+ StopWordsLogitsProcessor,
51
+ )
52
+
53
+
54
+ logger = logging.get_logger(__name__)
55
+
56
+ _CHECKPOINT_FOR_DOC = "qwen"
57
+ _CONFIG_FOR_DOC = "QWenConfig"
58
+
59
+ QWen_PRETRAINED_MODEL_ARCHIVE_LIST = ["qwen-7b"]
60
+
61
+ _ERROR_BAD_CHAT_FORMAT = """\
62
+ We detect you are probably using the pretrained model (rather than chat model) for chatting, since the chat_format in generation_config is not "chatml".
63
+ If you are directly using the model downloaded from Huggingface, please make sure you are using our "Qwen/Qwen-7B-Chat" Huggingface model (rather than "Qwen/Qwen-7B") when you call model.chat().
64
+ 我们检测到您可能在使用预训练模型(而非chat模型)进行多轮chat,因为您当前在generation_config指定的chat_format,并未设置为我们在对话中所支持的"chatml"格式。
65
+ 如果您在直接使用我们从Huggingface提供的模型,请确保您在调用model.chat()时,使用的是"Qwen/Qwen-7B-Chat"模型(而非"Qwen/Qwen-7B"预训练模型)。
66
+ """
67
+
68
+ _SENTINEL = object()
69
+ _ERROR_STREAM_IN_CHAT = """\
70
+ Pass argument `stream` to model.chat() is buggy, deprecated, and marked for removal. Please use model.chat_stream(...) instead of model.chat(..., stream=True).
71
+ 向model.chat()传入参数stream的用法可能存在Bug,该用法已被废弃,将在未来被移除。请使用model.chat_stream(...)代替model.chat(..., stream=True)。
72
+ """
73
+
74
+ _ERROR_INPUT_CPU_QUERY_WITH_FLASH_ATTN_ACTIVATED = """\
75
+ We detect you have activated flash attention support, but running model computation on CPU. Please make sure that your input data has been placed on GPU. If you actually want to run CPU computation, please following the readme and set device_map="cpu" to disable flash attention when loading the model (calling AutoModelForCausalLM.from_pretrained).
76
+ 检测到您的模型已激活了flash attention支持,但正在执行CPU运算任务。如使用flash attention,请您确认模型输入已经传到GPU上。如果您确认要执行CPU运算,请您在载入模型(调用AutoModelForCausalLM.from_pretrained)时,按照readme说法,指定device_map="cpu"以禁用flash attention。
77
+ """
78
+
79
+ apply_rotary_emb_func = None
80
+ rms_norm = None
81
+ flash_attn_unpadded_func = None
82
+
83
+ def _import_flash_attn():
84
+ global apply_rotary_emb_func, rms_norm, flash_attn_unpadded_func
85
+ try:
86
+ from flash_attn.layers.rotary import apply_rotary_emb_func as __apply_rotary_emb_func
87
+ apply_rotary_emb_func = __apply_rotary_emb_func
88
+ except ImportError:
89
+ logger.warn(
90
+ "Warning: import flash_attn rotary fail, please install FlashAttention rotary to get higher efficiency "
91
+ "https://github.com/Dao-AILab/flash-attention/tree/main/csrc/rotary"
92
+ )
93
+
94
+ try:
95
+ from flash_attn.ops.rms_norm import rms_norm as __rms_norm
96
+ rms_norm = __rms_norm
97
+ except ImportError:
98
+ logger.warn(
99
+ "Warning: import flash_attn rms_norm fail, please install FlashAttention layer_norm to get higher efficiency "
100
+ "https://github.com/Dao-AILab/flash-attention/tree/main/csrc/layer_norm"
101
+ )
102
+
103
+ try:
104
+ import flash_attn
105
+ if not hasattr(flash_attn, '__version__'):
106
+ from flash_attn.flash_attn_interface import flash_attn_unpadded_func as __flash_attn_unpadded_func
107
+ else:
108
+ if int(flash_attn.__version__.split(".")[0]) >= 2:
109
+ from flash_attn.flash_attn_interface import flash_attn_varlen_func as __flash_attn_unpadded_func
110
+ else:
111
+ from flash_attn.flash_attn_interface import flash_attn_unpadded_func as __flash_attn_unpadded_func
112
+ flash_attn_unpadded_func = __flash_attn_unpadded_func
113
+ except ImportError:
114
+ logger.warn(
115
+ "Warning: import flash_attn fail, please install FlashAttention to get higher efficiency "
116
+ "https://github.com/Dao-AILab/flash-attention"
117
+ )
118
+
119
+ def quantize_cache_v(fdata, bits, qmax, qmin):
120
+ # b, s, head, h-dim->b, head, s, h-dim
121
+ qtype = torch.uint8
122
+ device = fdata.device
123
+ shape = fdata.shape
124
+
125
+ fdata_cal = torch.flatten(fdata, 2)
126
+ fmax = torch.amax(fdata_cal, dim=-1, keepdim=True)
127
+ fmin = torch.amin(fdata_cal, dim=-1, keepdim=True)
128
+ # Compute params
129
+ if qmax.device != fmax.device:
130
+ qmax = qmax.to(device)
131
+ qmin = qmin.to(device)
132
+ scale = (fmax - fmin) / (qmax - qmin)
133
+ zero = qmin - fmin / scale
134
+ scale = scale.unsqueeze(-1).repeat(1,1,shape[2],1).contiguous()
135
+ zero = zero.unsqueeze(-1).repeat(1,1,shape[2],1).contiguous()
136
+ # Quantize
137
+ res_data = fdata / scale + zero
138
+ qdata = torch.clamp(res_data, qmin, qmax).to(qtype)
139
+ return qdata.contiguous(), scale, zero
140
+
141
+ def dequantize_cache_torch(qdata, scale, zero):
142
+ data = scale * (qdata - zero)
143
+ return data
144
+
145
+ class FlashSelfAttention(torch.nn.Module):
146
+ def __init__(
147
+ self,
148
+ causal=False,
149
+ softmax_scale=None,
150
+ attention_dropout=0.0,
151
+ ):
152
+ super().__init__()
153
+ assert flash_attn_unpadded_func is not None, (
154
+ "Please install FlashAttention first, " "e.g., with pip install flash-attn"
155
+ )
156
+ assert (
157
+ rearrange is not None
158
+ ), "Please install einops first, e.g., with pip install einops"
159
+ self.causal = causal
160
+ self.softmax_scale = softmax_scale
161
+ self.dropout_p = attention_dropout
162
+
163
+ def unpad_input(self, hidden_states, attention_mask):
164
+ valid_mask = attention_mask.squeeze(1).squeeze(1).eq(0)
165
+ seqlens_in_batch = valid_mask.sum(dim=-1, dtype=torch.int32)
166
+ indices = torch.nonzero(valid_mask.flatten(), as_tuple=False).flatten()
167
+ max_seqlen_in_batch = seqlens_in_batch.max().item()
168
+ cu_seqlens = F.pad(torch.cumsum(seqlens_in_batch, dim=0, dtype=torch.torch.int32), (1, 0))
169
+ hidden_states = hidden_states[indices]
170
+ return hidden_states, indices, cu_seqlens, max_seqlen_in_batch
171
+
172
+ def pad_input(self, hidden_states, indices, batch, seqlen):
173
+ output = torch.zeros(batch * seqlen, *hidden_states.shape[1:], device=hidden_states.device,
174
+ dtype=hidden_states.dtype)
175
+ output[indices] = hidden_states
176
+ return rearrange(output, '(b s) ... -> b s ...', b=batch)
177
+
178
+ def forward(self, q, k, v, attention_mask=None):
179
+ assert all((i.dtype in [torch.float16, torch.bfloat16] for i in (q, k, v)))
180
+ assert all((i.is_cuda for i in (q, k, v)))
181
+ batch_size, seqlen_q = q.shape[0], q.shape[1]
182
+ seqlen_k = k.shape[1]
183
+
184
+ q, k, v = [rearrange(x, "b s ... -> (b s) ...") for x in [q, k, v]]
185
+ cu_seqlens_q = torch.arange(
186
+ 0,
187
+ (batch_size + 1) * seqlen_q,
188
+ step=seqlen_q,
189
+ dtype=torch.int32,
190
+ device=q.device,
191
+ )
192
+
193
+ if attention_mask is not None:
194
+ k, indices_k, cu_seqlens_k, seqlen_k = self.unpad_input(k, attention_mask)
195
+ v = v[indices_k]
196
+ if self.training or q.size(0) == k.size(0):
197
+ q = q[indices_k]
198
+ cu_seqlens_q = cu_seqlens_k
199
+ seqlen_q = seqlen_k
200
+ else:
201
+ cu_seqlens_k = torch.arange(
202
+ 0,
203
+ (batch_size + 1) * seqlen_k,
204
+ step=seqlen_k,
205
+ dtype=torch.int32,
206
+ device=q.device,
207
+ )
208
+
209
+ if self.training:
210
+ assert seqlen_k == seqlen_q
211
+ is_causal = self.causal
212
+ dropout_p = self.dropout_p
213
+ else:
214
+ is_causal = seqlen_q == seqlen_k
215
+ dropout_p = 0
216
+
217
+ output = flash_attn_unpadded_func(
218
+ q,
219
+ k,
220
+ v,
221
+ cu_seqlens_q,
222
+ cu_seqlens_k,
223
+ seqlen_q,
224
+ seqlen_k,
225
+ dropout_p,
226
+ softmax_scale=self.softmax_scale,
227
+ causal=is_causal,
228
+ )
229
+ if attention_mask is not None and seqlen_q == seqlen_k:
230
+ output = self.pad_input(output, indices_k, batch_size, seqlen_q)
231
+ else:
232
+ new_shape = (batch_size, output.shape[0] // batch_size) + output.shape[1:]
233
+ output = output.view(new_shape)
234
+ return output
235
+
236
+
237
+ class QWenAttention(nn.Module):
238
+ def __init__(self, config):
239
+ super().__init__()
240
+
241
+ self.register_buffer("masked_bias", torch.tensor(-1e4), persistent=False)
242
+ self.seq_length = config.seq_length
243
+
244
+ self.hidden_size = config.hidden_size
245
+ self.split_size = config.hidden_size
246
+ self.num_heads = config.num_attention_heads
247
+ self.head_dim = self.hidden_size // self.num_heads
248
+
249
+ self.use_flash_attn = config.use_flash_attn
250
+ self.scale_attn_weights = True
251
+
252
+ self.projection_size = config.kv_channels * config.num_attention_heads
253
+
254
+ assert self.projection_size % config.num_attention_heads == 0
255
+ self.hidden_size_per_attention_head = (
256
+ self.projection_size // config.num_attention_heads
257
+ )
258
+
259
+ self.c_attn = nn.Linear(config.hidden_size, 3 * self.projection_size)
260
+
261
+ self.c_proj = nn.Linear(
262
+ config.hidden_size, self.projection_size, bias=not config.no_bias
263
+ )
264
+
265
+ self.is_fp32 = not (config.bf16 or config.fp16)
266
+ if (
267
+ self.use_flash_attn
268
+ and flash_attn_unpadded_func is not None
269
+ and not self.is_fp32
270
+ ):
271
+ self.core_attention_flash = FlashSelfAttention(
272
+ causal=True, attention_dropout=config.attn_dropout_prob
273
+ )
274
+ self.bf16 = config.bf16
275
+
276
+ self.use_dynamic_ntk = config.use_dynamic_ntk
277
+ self.use_logn_attn = config.use_logn_attn
278
+
279
+ logn_list = [
280
+ math.log(i, self.seq_length) if i > self.seq_length else 1
281
+ for i in range(1, 32768)
282
+ ]
283
+ logn_tensor = torch.tensor(logn_list)[None, :, None, None]
284
+ self.register_buffer("logn_tensor", logn_tensor, persistent=False)
285
+
286
+ self.attn_dropout = nn.Dropout(config.attn_dropout_prob)
287
+ self.use_cache_quantization = config.use_cache_quantization if hasattr(config, 'use_cache_quantization') else False
288
+ self.use_cache_kernel = config.use_cache_kernel if hasattr(config,'use_cache_kernel') else False
289
+ cache_dtype = torch.float
290
+ if self.bf16:
291
+ cache_dtype=torch.bfloat16
292
+ elif config.fp16:
293
+ cache_dtype = torch.float16
294
+ self.cache_qmax = torch.tensor(torch.iinfo(torch.uint8).max, dtype=cache_dtype)
295
+ self.cache_qmin = torch.tensor(torch.iinfo(torch.uint8).min, dtype=cache_dtype)
296
+
297
+ def _attn(self, query, key, value, registered_causal_mask, attention_mask=None, head_mask=None):
298
+ device = query.device
299
+ if self.use_cache_quantization:
300
+ qk, qk_scale, qk_zero = key
301
+ if self.use_cache_kernel and cache_autogptq_cuda_256 is not None:
302
+ shape = query.shape[:-1] + (qk.shape[-2],)
303
+ attn_weights = torch.zeros(shape, dtype=torch.float16, device=device)
304
+ cache_autogptq_cuda_256.vecquant8matmul_batched_faster_old(
305
+ query.contiguous() if query.dtype == torch.float16 else query.to(torch.float16).contiguous(),
306
+ qk.transpose(-1, -2).contiguous(),
307
+ attn_weights,
308
+ qk_scale.contiguous() if qk_scale.dtype == torch.float16 else qk_scale.to(torch.float16).contiguous(),
309
+ qk_zero.contiguous()if qk_zero.dtype == torch.float16 else qk_zero.to(torch.float16).contiguous())
310
+ # attn_weights = attn_weights.to(query.dtype).contiguous()
311
+ else:
312
+ key = dequantize_cache_torch(qk, qk_scale, qk_zero)
313
+ attn_weights = torch.matmul(query, key.transpose(-1, -2))
314
+ else:
315
+ attn_weights = torch.matmul(query, key.transpose(-1, -2))
316
+
317
+ if self.scale_attn_weights:
318
+ if self.use_cache_quantization:
319
+ size_temp = value[0].size(-1)
320
+ else:
321
+ size_temp = value.size(-1)
322
+ attn_weights = attn_weights / torch.full(
323
+ [],
324
+ size_temp ** 0.5,
325
+ dtype=attn_weights.dtype,
326
+ device=attn_weights.device,
327
+ )
328
+ if self.use_cache_quantization:
329
+ query_length, key_length = query.size(-2), key[0].size(-2)
330
+ else:
331
+ query_length, key_length = query.size(-2), key.size(-2)
332
+ causal_mask = registered_causal_mask[
333
+ :, :, key_length - query_length : key_length, :key_length
334
+ ]
335
+ mask_value = torch.finfo(attn_weights.dtype).min
336
+ mask_value = torch.full([], mask_value, dtype=attn_weights.dtype).to(
337
+ attn_weights.device
338
+ )
339
+ attn_weights = torch.where(
340
+ causal_mask, attn_weights.to(attn_weights.dtype), mask_value
341
+ )
342
+
343
+ if attention_mask is not None:
344
+ attn_weights = attn_weights + attention_mask
345
+
346
+ attn_weights = nn.functional.softmax(attn_weights.float(), dim=-1)
347
+
348
+ attn_weights = attn_weights.type(query.dtype)
349
+ attn_weights = self.attn_dropout(attn_weights)
350
+
351
+ if head_mask is not None:
352
+ attn_weights = attn_weights * head_mask
353
+
354
+ if self.use_cache_quantization:
355
+ qv, qv_scale, qv_zero = value
356
+ if self.use_cache_kernel and cache_autogptq_cuda_256 is not None:
357
+ shape = attn_weights.shape[:-1] + (query.shape[-1],)
358
+ attn_output = torch.zeros(shape, dtype=torch.float16, device=device)
359
+ cache_autogptq_cuda_256.vecquant8matmul_batched_column_compression_faster_old(
360
+ attn_weights.contiguous() if attn_weights.dtype == torch.float16 else attn_weights.to(torch.float16).contiguous(),
361
+ qv.contiguous(), # dtype: int32
362
+ attn_output,
363
+ qv_scale.contiguous() if qv_scale.dtype == torch.float16 else qv_scale.to(torch.float16).contiguous(),
364
+ qv_zero.contiguous() if qv_zero.dtype == torch.float16 else qv_zero.to(torch.float16).contiguous())
365
+ if attn_output.dtype != query.dtype:
366
+ attn_output = attn_output.to(query.dtype)
367
+ attn_weights = attn_weights.to(query.dtype)
368
+ else:
369
+ value = dequantize_cache_torch(qv, qv_scale, qv_zero)
370
+ attn_output = torch.matmul(attn_weights, value)
371
+ else:
372
+ attn_output = torch.matmul(attn_weights, value)
373
+
374
+ attn_output = attn_output.transpose(1, 2)
375
+
376
+ return attn_output, attn_weights
377
+
378
+ def _upcast_and_reordered_attn(
379
+ self, query, key, value, registered_causal_mask, attention_mask=None, head_mask=None
380
+ ):
381
+ bsz, num_heads, q_seq_len, dk = query.size()
382
+ _, _, k_seq_len, _ = key.size()
383
+
384
+ attn_weights = torch.empty(
385
+ bsz * num_heads,
386
+ q_seq_len,
387
+ k_seq_len,
388
+ dtype=torch.float32,
389
+ device=query.device,
390
+ )
391
+
392
+ scale_factor = 1.0
393
+ if self.scale_attn_weights:
394
+ scale_factor /= float(value.size(-1)) ** 0.5
395
+
396
+ with autocast(enabled=False):
397
+ q, k = query.reshape(-1, q_seq_len, dk), key.transpose(-1, -2).reshape(
398
+ -1, dk, k_seq_len
399
+ )
400
+ attn_weights = torch.baddbmm(
401
+ attn_weights, q.float(), k.float(), beta=0, alpha=scale_factor
402
+ )
403
+ attn_weights = attn_weights.reshape(bsz, num_heads, q_seq_len, k_seq_len)
404
+
405
+ query_length, key_length = query.size(-2), key.size(-2)
406
+ causal_mask = registered_causal_mask[
407
+ :, :, key_length - query_length : key_length, :key_length
408
+ ]
409
+ mask_value = torch.finfo(attn_weights.dtype).min
410
+ mask_value = torch.tensor(mask_value, dtype=attn_weights.dtype).to(
411
+ attn_weights.device
412
+ )
413
+ attn_weights = torch.where(causal_mask, attn_weights, mask_value)
414
+
415
+ if attention_mask is not None:
416
+ attn_weights = attn_weights + attention_mask
417
+
418
+ attn_weights = nn.functional.softmax(attn_weights, dim=-1)
419
+
420
+ if attn_weights.dtype != torch.float32:
421
+ raise RuntimeError(
422
+ "Error with upcasting, attn_weights does not have dtype torch.float32"
423
+ )
424
+ attn_weights = attn_weights.type(value.dtype)
425
+ attn_weights = self.attn_dropout(attn_weights)
426
+
427
+ if head_mask is not None:
428
+ attn_weights = attn_weights * head_mask
429
+
430
+ attn_output = torch.matmul(attn_weights, value)
431
+
432
+ return attn_output, attn_weights
433
+
434
+ def _split_heads(self, tensor, num_heads, attn_head_size):
435
+ new_shape = tensor.size()[:-1] + (num_heads, attn_head_size)
436
+ tensor = tensor.view(new_shape)
437
+ return tensor
438
+
439
+ def _merge_heads(self, tensor, num_heads, attn_head_size):
440
+ tensor = tensor.contiguous()
441
+ new_shape = tensor.size()[:-2] + (num_heads * attn_head_size,)
442
+ return tensor.view(new_shape)
443
+
444
+ def forward(
445
+ self,
446
+ hidden_states: Optional[Tuple[torch.FloatTensor]],
447
+ rotary_pos_emb_list: Optional[List[torch.Tensor]] = None,
448
+ registered_causal_mask: Optional[torch.Tensor] = None,
449
+ layer_past: Optional[Tuple[torch.Tensor]] = None,
450
+ attention_mask: Optional[torch.FloatTensor] = None,
451
+ head_mask: Optional[torch.FloatTensor] = None,
452
+ encoder_hidden_states: Optional[torch.Tensor] = None,
453
+ encoder_attention_mask: Optional[torch.FloatTensor] = None,
454
+ output_attentions: Optional[bool] = False,
455
+ use_cache: Optional[bool] = False,
456
+ ):
457
+ mixed_x_layer = self.c_attn(hidden_states)
458
+
459
+ query, key, value = mixed_x_layer.split(self.split_size, dim=2)
460
+
461
+ query = self._split_heads(query, self.num_heads, self.head_dim)
462
+ key = self._split_heads(key, self.num_heads, self.head_dim)
463
+ value = self._split_heads(value, self.num_heads, self.head_dim)
464
+
465
+ if rotary_pos_emb_list is not None:
466
+ cur_len = query.shape[1]
467
+ if len(rotary_pos_emb_list) == 1:
468
+ rotary_pos_emb = rotary_pos_emb_list[0]
469
+ rotary_pos_emb = [i[:, -cur_len:, :, :] for i in rotary_pos_emb]
470
+ rotary_pos_emb = (rotary_pos_emb,) * 2
471
+ q_pos_emb, k_pos_emb = rotary_pos_emb
472
+ # Slice the pos emb for current inference
473
+ query = apply_rotary_pos_emb(query, q_pos_emb)
474
+ key = apply_rotary_pos_emb(key, k_pos_emb)
475
+ else:
476
+ query_list = []
477
+ key_list = []
478
+ for i, rotary_pos_emb in enumerate(rotary_pos_emb_list):
479
+ rotary_pos_emb = [i[:, -cur_len:, :, :] for i in rotary_pos_emb]
480
+ rotary_pos_emb = (rotary_pos_emb,) * 2
481
+ q_pos_emb, k_pos_emb = rotary_pos_emb
482
+ # Slice the pos emb for current inference
483
+ query_list += [apply_rotary_pos_emb(query[i:i+1, :, :], q_pos_emb)]
484
+ key_list += [apply_rotary_pos_emb(key[i:i+1, :, :], k_pos_emb)]
485
+ query = torch.cat(query_list, dim=0)
486
+ key = torch.cat(key_list, dim=0)
487
+
488
+ if self.use_cache_quantization:
489
+ key = quantize_cache_v(key.permute(0, 2, 1, 3),
490
+ bits=8,
491
+ qmin=self.cache_qmin,
492
+ qmax=self.cache_qmax)
493
+ value = quantize_cache_v(value.permute(0, 2, 1, 3),
494
+ bits=8,
495
+ qmin=self.cache_qmin,
496
+ qmax=self.cache_qmax)
497
+
498
+
499
+ if layer_past is not None:
500
+ past_key, past_value = layer_past[0], layer_past[1]
501
+ if self.use_cache_quantization:
502
+ # use_cache_quantization:
503
+ # present=((q_key,key_scale,key_zero_point),
504
+ # (q_value,value_scale,value_zero_point))
505
+ key = (torch.cat((past_key[0], key[0]), dim=2),
506
+ torch.cat((past_key[1], key[1]), dim=2),
507
+ torch.cat((past_key[2], key[2]), dim=2))
508
+ value = (torch.cat((past_value[0], value[0]), dim=2),
509
+ torch.cat((past_value[1], value[1]), dim=2),
510
+ torch.cat((past_value[2], value[2]), dim=2))
511
+ else:
512
+ # not use_cache_quantization:
513
+ # present=(key,value)
514
+ key = torch.cat((past_key, key), dim=1)
515
+ value = torch.cat((past_value, value), dim=1)
516
+
517
+ if use_cache:
518
+ present = (key, value)
519
+ else:
520
+ present = None
521
+
522
+ if self.use_logn_attn and not self.training:
523
+ if self.use_cache_quantization:
524
+ seq_start = key[0].size(2) - query.size(1)
525
+ seq_end = key[0].size(2)
526
+ else:
527
+ seq_start = key.size(1) - query.size(1)
528
+ seq_end = key.size(1)
529
+ logn_tensor = self.logn_tensor[:, seq_start:seq_end, :, :]
530
+ query = query * logn_tensor.expand_as(query)
531
+
532
+ if (
533
+ self.use_flash_attn
534
+ and flash_attn_unpadded_func is not None
535
+ and not self.is_fp32
536
+ and query.is_cuda
537
+ ):
538
+ q, k, v = query, key, value
539
+ context_layer = self.core_attention_flash(q, k, v, attention_mask=attention_mask)
540
+
541
+ # b s h d -> b s (h d)
542
+ context_layer = context_layer.flatten(2,3).contiguous()
543
+
544
+ else:
545
+ query = query.permute(0, 2, 1, 3)
546
+ if not self.use_cache_quantization:
547
+ key = key.permute(0, 2, 1, 3)
548
+ value = value.permute(0, 2, 1, 3)
549
+ if (
550
+ registered_causal_mask is None
551
+ and self.use_flash_attn
552
+ and flash_attn_unpadded_func is not None
553
+ and not self.is_fp32
554
+ and not query.is_cuda
555
+ ):
556
+ raise Exception(_ERROR_INPUT_CPU_QUERY_WITH_FLASH_ATTN_ACTIVATED)
557
+ attn_output, attn_weight = self._attn(
558
+ query, key, value, registered_causal_mask, attention_mask, head_mask
559
+ )
560
+ context_layer = self._merge_heads(
561
+ attn_output, self.num_heads, self.head_dim
562
+ )
563
+
564
+ attn_output = self.c_proj(context_layer)
565
+
566
+ outputs = (attn_output, present)
567
+ if output_attentions:
568
+ if (
569
+ self.use_flash_attn
570
+ and flash_attn_unpadded_func is not None
571
+ and not self.is_fp32
572
+ ):
573
+ raise ValueError("Cannot output attentions while using flash-attn")
574
+ else:
575
+ outputs += (attn_weight,)
576
+
577
+ return outputs
578
+
579
+
580
+ class QWenMLP(nn.Module):
581
+ def __init__(self, config):
582
+ super().__init__()
583
+ self.w1 = nn.Linear(
584
+ config.hidden_size, config.intermediate_size // 2, bias=not config.no_bias
585
+ )
586
+ self.w2 = nn.Linear(
587
+ config.hidden_size, config.intermediate_size // 2, bias=not config.no_bias
588
+ )
589
+ ff_dim_in = config.intermediate_size // 2
590
+ self.c_proj = nn.Linear(ff_dim_in, config.hidden_size, bias=not config.no_bias)
591
+
592
+ def forward(self, hidden_states):
593
+ a1 = self.w1(hidden_states)
594
+ a2 = self.w2(hidden_states)
595
+ intermediate_parallel = a1 * F.silu(a2)
596
+ output = self.c_proj(intermediate_parallel)
597
+ return output
598
+
599
+ class QWenBlock(nn.Module):
600
+ def __init__(self, config):
601
+ super().__init__()
602
+ hidden_size = config.hidden_size
603
+ self.bf16 = config.bf16
604
+
605
+ self.ln_1 = RMSNorm(
606
+ hidden_size,
607
+ eps=config.layer_norm_epsilon,
608
+ )
609
+ self.attn = QWenAttention(config)
610
+ self.ln_2 = RMSNorm(
611
+ hidden_size,
612
+ eps=config.layer_norm_epsilon,
613
+ )
614
+
615
+ self.mlp = QWenMLP(config)
616
+
617
+ def forward(
618
+ self,
619
+ hidden_states: Optional[Tuple[torch.FloatTensor]],
620
+ rotary_pos_emb_list: Optional[List[torch.Tensor]] = None,
621
+ registered_causal_mask: Optional[torch.Tensor] = None,
622
+ layer_past: Optional[Tuple[torch.Tensor]] = None,
623
+ attention_mask: Optional[torch.FloatTensor] = None,
624
+ head_mask: Optional[torch.FloatTensor] = None,
625
+ encoder_hidden_states: Optional[torch.Tensor] = None,
626
+ encoder_attention_mask: Optional[torch.FloatTensor] = None,
627
+ use_cache: Optional[bool] = False,
628
+ output_attentions: Optional[bool] = False,
629
+ ):
630
+ layernorm_output = self.ln_1(hidden_states)
631
+
632
+ attn_outputs = self.attn(
633
+ layernorm_output,
634
+ rotary_pos_emb_list,
635
+ registered_causal_mask=registered_causal_mask,
636
+ layer_past=layer_past,
637
+ attention_mask=attention_mask,
638
+ head_mask=head_mask,
639
+ use_cache=use_cache,
640
+ output_attentions=output_attentions,
641
+ )
642
+ attn_output = attn_outputs[0]
643
+
644
+ outputs = attn_outputs[1:]
645
+
646
+ residual = hidden_states
647
+ layernorm_input = attn_output + residual
648
+
649
+ layernorm_output = self.ln_2(layernorm_input)
650
+
651
+ residual = layernorm_input
652
+ mlp_output = self.mlp(layernorm_output)
653
+ hidden_states = residual + mlp_output
654
+
655
+ if use_cache:
656
+ outputs = (hidden_states,) + outputs
657
+ else:
658
+ outputs = (hidden_states,) + outputs[1:]
659
+
660
+ return outputs
661
+
662
+
663
+ class QWenPreTrainedModel(PreTrainedModel):
664
+ config_class = QWenConfig
665
+ base_model_prefix = "transformer"
666
+ is_parallelizable = False
667
+ supports_gradient_checkpointing = True
668
+ _no_split_modules = ["QWenBlock"]
669
+
670
+ def __init__(self, *inputs, **kwargs):
671
+ super().__init__(*inputs, **kwargs)
672
+
673
+ def _init_weights(self, module):
674
+ """Initialize the weights."""
675
+ if isinstance(module, nn.Linear):
676
+ module.weight.data.normal_(mean=0.0, std=self.config.initializer_range)
677
+ if module.bias is not None:
678
+ module.bias.data.zero_()
679
+ elif isinstance(module, nn.Embedding):
680
+ module.weight.data.normal_(mean=0.0, std=self.config.initializer_range)
681
+ if module.padding_idx is not None:
682
+ module.weight.data[module.padding_idx].zero_()
683
+ elif isinstance(module, RMSNorm):
684
+ module.weight.data.fill_(1.0)
685
+
686
+ for name, p in module.named_parameters():
687
+ if name == "c_proj.weight":
688
+ p.data.normal_(
689
+ mean=0.0,
690
+ std=(
691
+ self.config.initializer_range
692
+ / math.sqrt(2 * self.config.num_hidden_layers)
693
+ ),
694
+ )
695
+
696
+ def _set_gradient_checkpointing(self, module, value=False):
697
+ if isinstance(module, QWenModel):
698
+ module.gradient_checkpointing = value
699
+
700
+
701
+ class QWenModel(QWenPreTrainedModel):
702
+ _keys_to_ignore_on_load_missing = ["attn.masked_bias"]
703
+
704
+ def __init__(self, config):
705
+ super().__init__(config)
706
+ self.vocab_size = config.vocab_size
707
+ self.num_hidden_layers = config.num_hidden_layers
708
+ self.embed_dim = config.hidden_size
709
+ self.use_cache_quantization = self.config.use_cache_quantization if hasattr(self.config, 'use_cache_quantization') else False
710
+
711
+ self.gradient_checkpointing = False
712
+ self.use_dynamic_ntk = config.use_dynamic_ntk
713
+ self.seq_length = config.seq_length
714
+
715
+ self.wte = nn.Embedding(self.vocab_size, self.embed_dim)
716
+
717
+ self.drop = nn.Dropout(config.emb_dropout_prob)
718
+
719
+ if config.rotary_pct == 1.0:
720
+ self.rotary_ndims = None
721
+ else:
722
+ assert config.rotary_pct < 1
723
+ self.rotary_ndims = int(
724
+ config.kv_channels * config.rotary_pct
725
+ )
726
+ dim = (
727
+ self.rotary_ndims
728
+ if self.rotary_ndims is not None
729
+ else config.kv_channels
730
+ )
731
+ self.rotary_emb = RotaryEmbedding(dim, base=config.rotary_emb_base)
732
+
733
+ self.use_flash_attn = config.use_flash_attn
734
+ self.is_fp32 = not (config.bf16 or config.fp16)
735
+ if (
736
+ self.use_flash_attn
737
+ and flash_attn_unpadded_func is not None
738
+ and not self.is_fp32
739
+ ):
740
+ self.registered_causal_mask = None
741
+ else:
742
+ max_positions = config.max_position_embeddings
743
+ self.register_buffer(
744
+ "registered_causal_mask",
745
+ torch.tril(
746
+ torch.ones((max_positions, max_positions), dtype=torch.bool)
747
+ ).view(1, 1, max_positions, max_positions),
748
+ persistent=False,
749
+ )
750
+
751
+ self.h = nn.ModuleList(
752
+ [
753
+ QWenBlock(
754
+ config
755
+ )
756
+ for i in range(config.num_hidden_layers)
757
+ ]
758
+ )
759
+ self.ln_f = RMSNorm(
760
+ self.embed_dim,
761
+ eps=config.layer_norm_epsilon,
762
+ )
763
+
764
+ self.post_init()
765
+
766
+ def get_input_embeddings(self):
767
+ return self.wte
768
+
769
+ def set_input_embeddings(self, new_embeddings):
770
+ self.wte = new_embeddings
771
+
772
+ def get_ntk_alpha(self, true_seq_len):
773
+ context_value = math.log(true_seq_len / self.seq_length, 2) + 1
774
+ ntk_alpha = 2 ** math.ceil(context_value) - 1
775
+ ntk_alpha = max(ntk_alpha, 1)
776
+ return ntk_alpha
777
+
778
+ def forward(
779
+ self,
780
+ input_ids: Optional[torch.LongTensor] = None,
781
+ past_key_values: Optional[Tuple[Tuple[torch.Tensor]]] = None,
782
+ attention_mask: Optional[torch.FloatTensor] = None,
783
+ token_type_ids: Optional[torch.LongTensor] = None,
784
+ position_ids: Optional[torch.LongTensor] = None,
785
+ head_mask: Optional[torch.FloatTensor] = None,
786
+ inputs_embeds: Optional[torch.FloatTensor] = None,
787
+ encoder_hidden_states: Optional[torch.Tensor] = None,
788
+ encoder_attention_mask: Optional[torch.FloatTensor] = None,
789
+ use_cache: Optional[bool] = None,
790
+ output_attentions: Optional[bool] = None,
791
+ output_hidden_states: Optional[bool] = None,
792
+ return_dict: Optional[bool] = None,
793
+ ):
794
+ output_attentions = (
795
+ output_attentions
796
+ if output_attentions is not None
797
+ else self.config.output_attentions
798
+ )
799
+ output_hidden_states = (
800
+ output_hidden_states
801
+ if output_hidden_states is not None
802
+ else self.config.output_hidden_states
803
+ )
804
+ use_cache = use_cache if use_cache is not None else self.config.use_cache
805
+ return_dict = (
806
+ return_dict if return_dict is not None else self.config.use_return_dict
807
+ )
808
+
809
+ if input_ids is not None and inputs_embeds is not None:
810
+ raise ValueError(
811
+ "You cannot specify both input_ids and inputs_embeds at the same time"
812
+ )
813
+ elif input_ids is not None:
814
+ input_shape = input_ids.size()
815
+ input_ids = input_ids.view(-1, input_shape[-1])
816
+ batch_size = input_ids.shape[0]
817
+ elif inputs_embeds is not None:
818
+ input_shape = inputs_embeds.size()[:-1]
819
+ batch_size = inputs_embeds.shape[0]
820
+ else:
821
+ raise ValueError("You have to specify either input_ids or inputs_embeds")
822
+
823
+ device = input_ids.device if input_ids is not None else inputs_embeds.device
824
+
825
+ if token_type_ids is not None:
826
+ token_type_ids = token_type_ids.view(-1, input_shape[-1])
827
+ if position_ids is not None:
828
+ position_ids = position_ids.view(-1, input_shape[-1])
829
+
830
+ if past_key_values is None:
831
+ past_length = 0
832
+ past_key_values = tuple([None] * len(self.h))
833
+ else:
834
+ if self.use_cache_quantization:
835
+ past_length = past_key_values[0][0][0].size(2)
836
+ else:
837
+ past_length = past_key_values[0][0].size(-2)
838
+ if position_ids is None:
839
+ position_ids = torch.arange(
840
+ past_length,
841
+ input_shape[-1] + past_length,
842
+ dtype=torch.long,
843
+ device=device,
844
+ )
845
+ position_ids = position_ids.unsqueeze(0).view(-1, input_shape[-1])
846
+
847
+ if attention_mask is not None:
848
+ if batch_size <= 0:
849
+ raise ValueError("batch_size has to be defined and > 0")
850
+ attention_mask = attention_mask.view(batch_size, -1)
851
+ attention_mask = attention_mask[:, None, None, :]
852
+ attention_mask = attention_mask.to(dtype=self.dtype)
853
+ attention_mask = (1.0 - attention_mask) * torch.finfo(self.dtype).min
854
+
855
+ encoder_attention_mask = None
856
+ head_mask = self.get_head_mask(head_mask, self.config.num_hidden_layers)
857
+
858
+ if inputs_embeds is None:
859
+ inputs_embeds = self.wte(input_ids)
860
+ hidden_states = inputs_embeds
861
+
862
+ kv_seq_len = hidden_states.size()[1]
863
+ if past_key_values[0] is not None:
864
+ # past key values[0][0] shape: bs * seq_len * head_num * dim
865
+ if self.use_cache_quantization:
866
+ kv_seq_len += past_key_values[0][0][0].shape[2]
867
+ else:
868
+ kv_seq_len += past_key_values[0][0].shape[1]
869
+
870
+ if self.training or not self.use_dynamic_ntk:
871
+ ntk_alpha_list = [1.0]
872
+ elif kv_seq_len != hidden_states.size()[1]:
873
+ ntk_alpha_list = self.rotary_emb._ntk_alpha_cached_list
874
+ else:
875
+ ntk_alpha_list = []
876
+ if attention_mask is not None and kv_seq_len > self.seq_length:
877
+ true_seq_lens = attention_mask.squeeze(1).squeeze(1).eq(0).sum(dim=-1, dtype=torch.int32)
878
+ for i in range(hidden_states.size()[0]):
879
+ true_seq_len = true_seq_lens[i].item()
880
+ ntk_alpha = self.get_ntk_alpha(true_seq_len)
881
+ ntk_alpha_list.append(ntk_alpha)
882
+ else:
883
+ ntk_alpha = self.get_ntk_alpha(kv_seq_len)
884
+ ntk_alpha_list.append(ntk_alpha)
885
+ self.rotary_emb._ntk_alpha_cached_list = ntk_alpha_list
886
+
887
+ rotary_pos_emb_list = []
888
+ for ntk_alpha in ntk_alpha_list:
889
+ rotary_pos_emb = self.rotary_emb(kv_seq_len, ntk_alpha=ntk_alpha)
890
+ rotary_pos_emb_list.append(rotary_pos_emb)
891
+
892
+ hidden_states = self.drop(hidden_states)
893
+ output_shape = input_shape + (hidden_states.size(-1),)
894
+
895
+ if self.gradient_checkpointing and self.training:
896
+ if use_cache:
897
+ logger.warning_once(
898
+ "`use_cache=True` is incompatible with gradient checkpointing. Setting `use_cache=False`..."
899
+ )
900
+ use_cache = False
901
+
902
+ presents = () if use_cache else None
903
+ all_self_attentions = () if output_attentions else None
904
+ all_hidden_states = () if output_hidden_states else None
905
+ for i, (block, layer_past) in enumerate(zip(self.h, past_key_values)):
906
+
907
+ if output_hidden_states:
908
+ all_hidden_states = all_hidden_states + (hidden_states,)
909
+
910
+ if self.gradient_checkpointing and self.training:
911
+
912
+ def create_custom_forward(module):
913
+ def custom_forward(*inputs):
914
+ # None for past_key_value
915
+ return module(*inputs, use_cache, output_attentions)
916
+
917
+ return custom_forward
918
+
919
+ outputs = torch.utils.checkpoint.checkpoint(
920
+ create_custom_forward(block),
921
+ hidden_states,
922
+ rotary_pos_emb_list,
923
+ self.registered_causal_mask,
924
+ None,
925
+ attention_mask,
926
+ head_mask[i],
927
+ encoder_hidden_states,
928
+ encoder_attention_mask,
929
+ )
930
+ else:
931
+ outputs = block(
932
+ hidden_states,
933
+ layer_past=layer_past,
934
+ rotary_pos_emb_list=rotary_pos_emb_list,
935
+ registered_causal_mask=self.registered_causal_mask,
936
+ attention_mask=attention_mask,
937
+ head_mask=head_mask[i],
938
+ encoder_hidden_states=encoder_hidden_states,
939
+ encoder_attention_mask=encoder_attention_mask,
940
+ use_cache=use_cache,
941
+ output_attentions=output_attentions,
942
+ )
943
+
944
+ hidden_states = outputs[0]
945
+ if use_cache is True:
946
+ presents = presents + (outputs[1],)
947
+
948
+ if output_attentions:
949
+ all_self_attentions = all_self_attentions + (outputs[2 if use_cache else 1],)
950
+
951
+ hidden_states = self.ln_f(hidden_states)
952
+ hidden_states = hidden_states.view(output_shape)
953
+ # Add last hidden state
954
+ if output_hidden_states:
955
+ all_hidden_states = all_hidden_states + (hidden_states,)
956
+
957
+ if not return_dict:
958
+ return tuple(
959
+ v for v in [hidden_states, presents, all_hidden_states] if v is not None
960
+ )
961
+
962
+ return BaseModelOutputWithPast(
963
+ last_hidden_state=hidden_states,
964
+ past_key_values=presents,
965
+ hidden_states=all_hidden_states,
966
+ attentions=all_self_attentions,
967
+ )
968
+
969
+
970
+ class QWenLMHeadModel(QWenPreTrainedModel):
971
+ _keys_to_ignore_on_load_missing = [r"h\.\d+\.attn\.rotary_emb\.inv_freq"]
972
+ _keys_to_ignore_on_load_unexpected = [r"h\.\d+\.attn\.masked_bias"]
973
+
974
+ def __init__(self, config):
975
+ super().__init__(config)
976
+ assert (
977
+ config.bf16 + config.fp16 + config.fp32 <= 1
978
+ ), "Only one of \"bf16\", \"fp16\", \"fp32\" can be true"
979
+ logger.warn(
980
+ "Warning: please make sure that you are using the latest codes and checkpoints, "
981
+ "especially if you used Qwen-7B before 09.25.2023."
982
+ "请使用最新模型和代码,尤其如果你在9月25日前已经开始使用Qwen-7B,千万注意不要使用错误代码和模型。"
983
+ )
984
+
985
+ autoset_precision = config.bf16 + config.fp16 + config.fp32 == 0
986
+
987
+ if autoset_precision:
988
+ if SUPPORT_BF16:
989
+ logger.warn(
990
+ "The model is automatically converting to bf16 for faster inference. "
991
+ "If you want to disable the automatic precision, please manually add bf16/fp16/fp32=True to \"AutoModelForCausalLM.from_pretrained\"."
992
+ )
993
+ config.bf16 = True
994
+ elif SUPPORT_FP16:
995
+ logger.warn(
996
+ "The model is automatically converting to fp16 for faster inference. "
997
+ "If you want to disable the automatic precision, please manually add bf16/fp16/fp32=True to \"AutoModelForCausalLM.from_pretrained\"."
998
+ )
999
+ config.fp16 = True
1000
+ else:
1001
+ config.fp32 = True
1002
+
1003
+ if config.bf16 and SUPPORT_CUDA and not SUPPORT_BF16:
1004
+ logger.warn("Your device does NOT seem to support bf16, you can switch to fp16 or fp32 by by passing fp16/fp32=True in \"AutoModelForCausalLM.from_pretrained\".")
1005
+ if config.fp16 and SUPPORT_CUDA and not SUPPORT_FP16:
1006
+ logger.warn("Your device does NOT support faster inference with fp16, please switch to fp32 which is likely to be faster")
1007
+ if config.fp32:
1008
+ if SUPPORT_BF16:
1009
+ logger.warn("Your device support faster inference by passing bf16=True in \"AutoModelForCausalLM.from_pretrained\".")
1010
+ elif SUPPORT_FP16:
1011
+ logger.warn("Your device support faster inference by passing fp16=True in \"AutoModelForCausalLM.from_pretrained\".")
1012
+
1013
+ if config.use_flash_attn == "auto":
1014
+ if config.bf16 or config.fp16:
1015
+ logger.warn("Try importing flash-attention for faster inference...")
1016
+ config.use_flash_attn = True
1017
+ else:
1018
+ config.use_flash_attn = False
1019
+ if config.use_flash_attn and config.fp32:
1020
+ logger.warn("Flash attention will be disabled because it does NOT support fp32.")
1021
+
1022
+ if config.use_flash_attn:
1023
+ _import_flash_attn()
1024
+
1025
+
1026
+ if hasattr(config, 'use_cache_quantization') and config.use_cache_quantization:
1027
+ config.use_flash_attn = False
1028
+ if hasattr(config, 'use_cache_kernel') and config.use_cache_kernel:
1029
+ try:
1030
+ from kernels.cpp_kernels import cache_autogptq_cuda_256
1031
+ except ImportError:
1032
+ cache_autogptq_cuda_256 = None
1033
+
1034
+ self.transformer = QWenModel(config)
1035
+ self.lm_head = nn.Linear(config.hidden_size, config.vocab_size, bias=False)
1036
+
1037
+ if config.bf16:
1038
+ self.transformer.bfloat16()
1039
+ self.lm_head.bfloat16()
1040
+ if config.fp16:
1041
+ self.transformer.half()
1042
+ self.lm_head.half()
1043
+ self.post_init()
1044
+
1045
+
1046
+ def get_output_embeddings(self):
1047
+ return self.lm_head
1048
+
1049
+ def set_output_embeddings(self, new_embeddings):
1050
+ self.lm_head = new_embeddings
1051
+
1052
+ def prepare_inputs_for_generation(
1053
+ self, input_ids, past_key_values=None, inputs_embeds=None, **kwargs
1054
+ ):
1055
+ token_type_ids = kwargs.get("token_type_ids", None)
1056
+ if past_key_values:
1057
+ input_ids = input_ids[:, -1].unsqueeze(-1)
1058
+ if token_type_ids is not None:
1059
+ token_type_ids = token_type_ids[:, -1].unsqueeze(-1)
1060
+
1061
+ attention_mask = kwargs.get("attention_mask", None)
1062
+ position_ids = kwargs.get("position_ids", None)
1063
+
1064
+ if attention_mask is not None and position_ids is None:
1065
+ position_ids = attention_mask.long().cumsum(-1) - 1
1066
+ position_ids.masked_fill_(attention_mask == 0, 1)
1067
+ if past_key_values:
1068
+ position_ids = position_ids[:, -1].unsqueeze(-1)
1069
+ else:
1070
+ position_ids = None
1071
+
1072
+ if inputs_embeds is not None and past_key_values is None:
1073
+ model_inputs = {"inputs_embeds": inputs_embeds}
1074
+ else:
1075
+ model_inputs = {"input_ids": input_ids}
1076
+
1077
+ model_inputs.update(
1078
+ {
1079
+ "past_key_values": past_key_values,
1080
+ "use_cache": kwargs.get("use_cache"),
1081
+ "position_ids": position_ids,
1082
+ "attention_mask": attention_mask,
1083
+ "token_type_ids": token_type_ids,
1084
+ }
1085
+ )
1086
+ return model_inputs
1087
+
1088
+ def forward(
1089
+ self,
1090
+ input_ids: Optional[torch.LongTensor] = None,
1091
+ past_key_values: Optional[Tuple[Tuple[torch.Tensor]]] = None,
1092
+ attention_mask: Optional[torch.FloatTensor] = None,
1093
+ token_type_ids: Optional[torch.LongTensor] = None,
1094
+ position_ids: Optional[torch.LongTensor] = None,
1095
+ head_mask: Optional[torch.FloatTensor] = None,
1096
+ inputs_embeds: Optional[torch.FloatTensor] = None,
1097
+ encoder_hidden_states: Optional[torch.Tensor] = None,
1098
+ encoder_attention_mask: Optional[torch.FloatTensor] = None,
1099
+ labels: Optional[torch.LongTensor] = None,
1100
+ use_cache: Optional[bool] = None,
1101
+ output_attentions: Optional[bool] = None,
1102
+ output_hidden_states: Optional[bool] = None,
1103
+ return_dict: Optional[bool] = None,
1104
+ ) -> Union[Tuple, CausalLMOutputWithPast]:
1105
+
1106
+ return_dict = (
1107
+ return_dict if return_dict is not None else self.config.use_return_dict
1108
+ )
1109
+
1110
+ transformer_outputs = self.transformer(
1111
+ input_ids,
1112
+ past_key_values=past_key_values,
1113
+ attention_mask=attention_mask,
1114
+ token_type_ids=token_type_ids,
1115
+ position_ids=position_ids,
1116
+ head_mask=head_mask,
1117
+ inputs_embeds=inputs_embeds,
1118
+ encoder_hidden_states=encoder_hidden_states,
1119
+ encoder_attention_mask=encoder_attention_mask,
1120
+ use_cache=use_cache,
1121
+ output_attentions=output_attentions,
1122
+ output_hidden_states=output_hidden_states,
1123
+ return_dict=return_dict,
1124
+ )
1125
+ hidden_states = transformer_outputs[0]
1126
+
1127
+ lm_logits = self.lm_head(hidden_states)
1128
+
1129
+ loss = None
1130
+ if labels is not None:
1131
+ labels = labels.to(lm_logits.device)
1132
+ shift_logits = lm_logits[..., :-1, :].contiguous()
1133
+ shift_labels = labels[..., 1:].contiguous()
1134
+ loss_fct = CrossEntropyLoss()
1135
+ loss = loss_fct(
1136
+ shift_logits.view(-1, shift_logits.size(-1)), shift_labels.view(-1)
1137
+ )
1138
+
1139
+ if not return_dict:
1140
+ output = (lm_logits,) + transformer_outputs[1:]
1141
+ return ((loss,) + output) if loss is not None else output
1142
+
1143
+ return CausalLMOutputWithPast(
1144
+ loss=loss,
1145
+ logits=lm_logits,
1146
+ past_key_values=transformer_outputs.past_key_values,
1147
+ hidden_states=transformer_outputs.hidden_states,
1148
+ attentions=transformer_outputs.attentions,
1149
+ )
1150
+
1151
+ @staticmethod
1152
+ def _reorder_cache(
1153
+ past_key_values: Tuple[Tuple[torch.Tensor]], beam_idx: torch.Tensor
1154
+ ) -> Tuple[Tuple[torch.Tensor]]:
1155
+
1156
+ return tuple(
1157
+ tuple(
1158
+ past_state.index_select(0, beam_idx.to(past_state.device))
1159
+ for past_state in layer_past
1160
+ )
1161
+ for layer_past in past_key_values
1162
+ )
1163
+
1164
+ def chat(
1165
+ self,
1166
+ tokenizer: PreTrainedTokenizer,
1167
+ query: str,
1168
+ history: Optional[HistoryType],
1169
+ system: str = "You are a helpful assistant.",
1170
+ append_history: bool = True,
1171
+ stream: Optional[bool] = _SENTINEL,
1172
+ stop_words_ids: Optional[List[List[int]]] = None,
1173
+ generation_config: Optional[GenerationConfig] = None,
1174
+ **kwargs,
1175
+ ) -> Tuple[str, HistoryType]:
1176
+ generation_config = generation_config if generation_config is not None else self.generation_config
1177
+
1178
+ assert stream is _SENTINEL, _ERROR_STREAM_IN_CHAT
1179
+ assert generation_config.chat_format == 'chatml', _ERROR_BAD_CHAT_FORMAT
1180
+ if history is None:
1181
+ history = []
1182
+ if stop_words_ids is None:
1183
+ stop_words_ids = []
1184
+
1185
+ max_window_size = kwargs.get('max_window_size', None)
1186
+ if max_window_size is None:
1187
+ max_window_size = generation_config.max_window_size
1188
+ raw_text, context_tokens = make_context(
1189
+ tokenizer,
1190
+ query,
1191
+ history=history,
1192
+ system=system,
1193
+ max_window_size=max_window_size,
1194
+ chat_format=generation_config.chat_format,
1195
+ )
1196
+
1197
+ stop_words_ids.extend(get_stop_words_ids(
1198
+ generation_config.chat_format, tokenizer
1199
+ ))
1200
+ input_ids = torch.tensor([context_tokens]).to(self.device)
1201
+ outputs = self.generate(
1202
+ input_ids,
1203
+ stop_words_ids=stop_words_ids,
1204
+ return_dict_in_generate=False,
1205
+ generation_config=generation_config,
1206
+ **kwargs,
1207
+ )
1208
+
1209
+ response = decode_tokens(
1210
+ outputs[0],
1211
+ tokenizer,
1212
+ raw_text_len=len(raw_text),
1213
+ context_length=len(context_tokens),
1214
+ chat_format=generation_config.chat_format,
1215
+ verbose=False,
1216
+ errors='replace'
1217
+ )
1218
+
1219
+ if append_history:
1220
+ history.append((query, response))
1221
+
1222
+ return response, history
1223
+
1224
+ def chat_stream(
1225
+ self,
1226
+ tokenizer: PreTrainedTokenizer,
1227
+ query: str,
1228
+ history: Optional[HistoryType],
1229
+ system: str = "You are a helpful assistant.",
1230
+ stop_words_ids: Optional[List[List[int]]] = None,
1231
+ logits_processor: Optional[LogitsProcessorList] = None,
1232
+ generation_config: Optional[GenerationConfig] = None,
1233
+ **kwargs,
1234
+ ) -> Generator[str, Any, None]:
1235
+ generation_config = generation_config if generation_config is not None else self.generation_config
1236
+ assert generation_config.chat_format == 'chatml', _ERROR_BAD_CHAT_FORMAT
1237
+ if history is None:
1238
+ history = []
1239
+ if stop_words_ids is None:
1240
+ stop_words_ids = []
1241
+
1242
+ max_window_size = kwargs.get('max_window_size', None)
1243
+ if max_window_size is None:
1244
+ max_window_size = generation_config.max_window_size
1245
+ raw_text, context_tokens = make_context(
1246
+ tokenizer,
1247
+ query,
1248
+ history=history,
1249
+ system=system,
1250
+ max_window_size=max_window_size,
1251
+ chat_format=generation_config.chat_format,
1252
+ )
1253
+
1254
+ stop_words_ids.extend(get_stop_words_ids(
1255
+ generation_config.chat_format, tokenizer
1256
+ ))
1257
+ if stop_words_ids is not None:
1258
+ stop_words_logits_processor = StopWordsLogitsProcessor(
1259
+ stop_words_ids=stop_words_ids,
1260
+ eos_token_id=generation_config.eos_token_id,
1261
+ )
1262
+ if logits_processor is None:
1263
+ logits_processor = LogitsProcessorList([stop_words_logits_processor])
1264
+ else:
1265
+ logits_processor.append(stop_words_logits_processor)
1266
+ input_ids = torch.tensor([context_tokens]).to(self.device)
1267
+
1268
+ from transformers_stream_generator.main import NewGenerationMixin, StreamGenerationConfig
1269
+ self.__class__.generate_stream = NewGenerationMixin.generate
1270
+ self.__class__.sample_stream = NewGenerationMixin.sample_stream
1271
+ stream_config = StreamGenerationConfig(**generation_config.to_dict(), do_stream=True)
1272
+
1273
+ def stream_generator():
1274
+ outputs = []
1275
+ for token in self.generate_stream(
1276
+ input_ids,
1277
+ return_dict_in_generate=False,
1278
+ generation_config=stream_config,
1279
+ logits_processor=logits_processor,
1280
+ seed=-1,
1281
+ **kwargs):
1282
+ outputs.append(token.item())
1283
+ yield tokenizer.decode(outputs, skip_special_tokens=True, errors='ignore')
1284
+
1285
+ return stream_generator()
1286
+
1287
+ def generate(
1288
+ self,
1289
+ inputs: Optional[torch.Tensor] = None,
1290
+ generation_config: Optional[GenerationConfig] = None,
1291
+ logits_processor: Optional[LogitsProcessorList] = None,
1292
+ stopping_criteria: Optional[StoppingCriteriaList] = None,
1293
+ prefix_allowed_tokens_fn: Optional[
1294
+ Callable[[int, torch.Tensor], List[int]]
1295
+ ] = None,
1296
+ synced_gpus: Optional[bool] = None,
1297
+ assistant_model: Optional["PreTrainedModel"] = None,
1298
+ streamer: Optional["BaseStreamer"] = None,
1299
+ **kwargs,
1300
+ ) -> Union[GenerateOutput, torch.LongTensor]:
1301
+ generation_config = generation_config if generation_config is not None else self.generation_config
1302
+
1303
+ # Process stop_words_ids.
1304
+ stop_words_ids = kwargs.pop("stop_words_ids", None)
1305
+ if stop_words_ids is None and generation_config is not None:
1306
+ stop_words_ids = getattr(generation_config, "stop_words_ids", None)
1307
+ if stop_words_ids is None:
1308
+ stop_words_ids = getattr(generation_config, "stop_words_ids", None)
1309
+
1310
+ if stop_words_ids is not None:
1311
+ stop_words_logits_processor = StopWordsLogitsProcessor(
1312
+ stop_words_ids=stop_words_ids,
1313
+ eos_token_id=generation_config.eos_token_id,
1314
+ )
1315
+ if logits_processor is None:
1316
+ logits_processor = LogitsProcessorList([stop_words_logits_processor])
1317
+ else:
1318
+ logits_processor.append(stop_words_logits_processor)
1319
+
1320
+ return super().generate(
1321
+ inputs,
1322
+ generation_config=generation_config,
1323
+ logits_processor=logits_processor,
1324
+ stopping_criteria=stopping_criteria,
1325
+ prefix_allowed_tokens_fn=prefix_allowed_tokens_fn,
1326
+ synced_gpus=synced_gpus,
1327
+ assistant_model=assistant_model,
1328
+ streamer=streamer,
1329
+ **kwargs,
1330
+ )
1331
+
1332
+
1333
+ class RotaryEmbedding(torch.nn.Module):
1334
+ def __init__(self, dim, base=10000):
1335
+ super().__init__()
1336
+ self.dim = dim
1337
+ self.base = base
1338
+ inv_freq = 1.0 / (base ** (torch.arange(0, dim, 2).float() / dim))
1339
+ self.register_buffer("inv_freq", inv_freq, persistent=False)
1340
+ if importlib.util.find_spec("einops") is None:
1341
+ raise RuntimeError("einops is required for Rotary Embedding")
1342
+
1343
+ self._rotary_pos_emb_cache = None
1344
+ self._seq_len_cached = 0
1345
+ self._ntk_alpha_cached = 1.0
1346
+ self._ntk_alpha_cached_list = [1.0]
1347
+
1348
+ def update_rotary_pos_emb_cache(self, max_seq_len, offset=0, ntk_alpha=1.0):
1349
+ seqlen = max_seq_len + offset
1350
+ if seqlen > self._seq_len_cached or ntk_alpha != self._ntk_alpha_cached:
1351
+ base = self.base * ntk_alpha ** (self.dim / (self.dim - 2))
1352
+ self.inv_freq = 1.0 / (
1353
+ base
1354
+ ** (
1355
+ torch.arange(0, self.dim, 2, device=self.inv_freq.device).float()
1356
+ / self.dim
1357
+ )
1358
+ )
1359
+ self._seq_len_cached = max(2 * seqlen, 16)
1360
+ self._ntk_alpha_cached = ntk_alpha
1361
+ seq = torch.arange(self._seq_len_cached, device=self.inv_freq.device)
1362
+ freqs = torch.outer(seq.type_as(self.inv_freq), self.inv_freq)
1363
+
1364
+ emb = torch.cat((freqs, freqs), dim=-1)
1365
+ from einops import rearrange
1366
+
1367
+ emb = rearrange(emb, "n d -> 1 n 1 d")
1368
+
1369
+ cos, sin = emb.cos(), emb.sin()
1370
+ self._rotary_pos_emb_cache = [cos, sin]
1371
+
1372
+ def forward(self, max_seq_len, offset=0, ntk_alpha=1.0):
1373
+ self.update_rotary_pos_emb_cache(max_seq_len, offset, ntk_alpha)
1374
+ cos, sin = self._rotary_pos_emb_cache
1375
+ return [cos[:, offset : offset + max_seq_len], sin[:, offset : offset + max_seq_len]]
1376
+
1377
+
1378
+ def _rotate_half(x):
1379
+ from einops import rearrange
1380
+
1381
+ x = rearrange(x, "... (j d) -> ... j d", j=2)
1382
+ x1, x2 = x.unbind(dim=-2)
1383
+ return torch.cat((-x2, x1), dim=-1)
1384
+
1385
+
1386
+ def apply_rotary_pos_emb(t, freqs):
1387
+ cos, sin = freqs
1388
+ if apply_rotary_emb_func is not None and t.is_cuda:
1389
+ t_ = t.float()
1390
+ cos = cos.squeeze(0).squeeze(1)[:, : cos.shape[-1] // 2]
1391
+ sin = sin.squeeze(0).squeeze(1)[:, : sin.shape[-1] // 2]
1392
+ output = apply_rotary_emb_func(t_, cos, sin).type_as(t)
1393
+ return output
1394
+ else:
1395
+ rot_dim = freqs[0].shape[-1]
1396
+ cos, sin = freqs
1397
+ t_, t_pass_ = t[..., :rot_dim], t[..., rot_dim:]
1398
+ t_ = t_.float()
1399
+ t_pass_ = t_pass_.float()
1400
+ t_ = (t_ * cos) + (_rotate_half(t_) * sin)
1401
+ return torch.cat((t_, t_pass_), dim=-1).type_as(t)
1402
+
1403
+
1404
+ class RMSNorm(torch.nn.Module):
1405
+ def __init__(self, dim: int, eps: float = 1e-6):
1406
+ super().__init__()
1407
+ self.eps = eps
1408
+ self.weight = nn.Parameter(torch.ones(dim))
1409
+
1410
+ def _norm(self, x):
1411
+ return x * torch.rsqrt(x.pow(2).mean(-1, keepdim=True) + self.eps)
1412
+
1413
+ def forward(self, x):
1414
+ if rms_norm is not None and x.is_cuda:
1415
+ return rms_norm(x, self.weight, self.eps)
1416
+ else:
1417
+ output = self._norm(x.float()).type_as(x)
1418
+ return output * self.weight
pytorch_model-00001-of-00002.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:9c3f919b87f5945ca9489f1b693cf0eb75dcfae3f6f4427d78401b293b42c3b3
3
- size 9986264643
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:09e967ac32737ffa6cd81085606b6d18b13e8d44852519476f96e97ff1f809e3
3
+ size 9969772092
pytorch_model-00002-of-00002.bin CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:8ea37686da71c697907893697d13c9013244e36beeb474a4dbadef0e6406649a
3
- size 2500975631
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:96f4c028b9171e3bbcffe8a9158befd618f9455f308b5c12af326a07d59556e0
3
+ size 5472963479
pytorch_model.bin.index.json CHANGED
@@ -1,208 +1,266 @@
1
  {
2
  "metadata": {
3
- "total_size": 12487168064
4
  },
5
  "weight_map": {
6
  "lm_head.weight": "pytorch_model-00002-of-00002.bin",
7
- "transformer.embedding.word_embeddings.weight": "pytorch_model-00001-of-00002.bin",
8
- "transformer.encoder.final_layernorm.weight": "pytorch_model-00002-of-00002.bin",
9
- "transformer.encoder.layers.0.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
10
- "transformer.encoder.layers.0.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
11
- "transformer.encoder.layers.0.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
12
- "transformer.encoder.layers.0.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
13
- "transformer.encoder.layers.0.self_attention.dense.weight": "pytorch_model-00001-of-00002.bin",
14
- "transformer.encoder.layers.0.self_attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
15
- "transformer.encoder.layers.0.self_attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
16
- "transformer.encoder.layers.1.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
17
- "transformer.encoder.layers.1.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
18
- "transformer.encoder.layers.1.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
19
- "transformer.encoder.layers.1.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
20
- "transformer.encoder.layers.1.self_attention.dense.weight": "pytorch_model-00001-of-00002.bin",
21
- "transformer.encoder.layers.1.self_attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
22
- "transformer.encoder.layers.1.self_attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
23
- "transformer.encoder.layers.10.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
24
- "transformer.encoder.layers.10.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
25
- "transformer.encoder.layers.10.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
26
- "transformer.encoder.layers.10.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
27
- "transformer.encoder.layers.10.self_attention.dense.weight": "pytorch_model-00001-of-00002.bin",
28
- "transformer.encoder.layers.10.self_attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
29
- "transformer.encoder.layers.10.self_attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
30
- "transformer.encoder.layers.11.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
31
- "transformer.encoder.layers.11.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
32
- "transformer.encoder.layers.11.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
33
- "transformer.encoder.layers.11.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
34
- "transformer.encoder.layers.11.self_attention.dense.weight": "pytorch_model-00001-of-00002.bin",
35
- "transformer.encoder.layers.11.self_attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
36
- "transformer.encoder.layers.11.self_attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
37
- "transformer.encoder.layers.12.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
38
- "transformer.encoder.layers.12.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
39
- "transformer.encoder.layers.12.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
40
- "transformer.encoder.layers.12.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
41
- "transformer.encoder.layers.12.self_attention.dense.weight": "pytorch_model-00001-of-00002.bin",
42
- "transformer.encoder.layers.12.self_attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
43
- "transformer.encoder.layers.12.self_attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
44
- "transformer.encoder.layers.13.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
45
- "transformer.encoder.layers.13.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
46
- "transformer.encoder.layers.13.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
47
- "transformer.encoder.layers.13.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
48
- "transformer.encoder.layers.13.self_attention.dense.weight": "pytorch_model-00001-of-00002.bin",
49
- "transformer.encoder.layers.13.self_attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
50
- "transformer.encoder.layers.13.self_attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
51
- "transformer.encoder.layers.14.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
52
- "transformer.encoder.layers.14.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
53
- "transformer.encoder.layers.14.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
54
- "transformer.encoder.layers.14.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
55
- "transformer.encoder.layers.14.self_attention.dense.weight": "pytorch_model-00001-of-00002.bin",
56
- "transformer.encoder.layers.14.self_attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
57
- "transformer.encoder.layers.14.self_attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
58
- "transformer.encoder.layers.15.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
59
- "transformer.encoder.layers.15.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
60
- "transformer.encoder.layers.15.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
61
- "transformer.encoder.layers.15.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
62
- "transformer.encoder.layers.15.self_attention.dense.weight": "pytorch_model-00001-of-00002.bin",
63
- "transformer.encoder.layers.15.self_attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
64
- "transformer.encoder.layers.15.self_attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
65
- "transformer.encoder.layers.16.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
66
- "transformer.encoder.layers.16.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
67
- "transformer.encoder.layers.16.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
68
- "transformer.encoder.layers.16.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
69
- "transformer.encoder.layers.16.self_attention.dense.weight": "pytorch_model-00001-of-00002.bin",
70
- "transformer.encoder.layers.16.self_attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
71
- "transformer.encoder.layers.16.self_attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
72
- "transformer.encoder.layers.17.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
73
- "transformer.encoder.layers.17.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
74
- "transformer.encoder.layers.17.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
75
- "transformer.encoder.layers.17.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
76
- "transformer.encoder.layers.17.self_attention.dense.weight": "pytorch_model-00001-of-00002.bin",
77
- "transformer.encoder.layers.17.self_attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
78
- "transformer.encoder.layers.17.self_attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
79
- "transformer.encoder.layers.18.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
80
- "transformer.encoder.layers.18.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
81
- "transformer.encoder.layers.18.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
82
- "transformer.encoder.layers.18.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
83
- "transformer.encoder.layers.18.self_attention.dense.weight": "pytorch_model-00001-of-00002.bin",
84
- "transformer.encoder.layers.18.self_attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
85
- "transformer.encoder.layers.18.self_attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
86
- "transformer.encoder.layers.19.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
87
- "transformer.encoder.layers.19.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
88
- "transformer.encoder.layers.19.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
89
- "transformer.encoder.layers.19.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
90
- "transformer.encoder.layers.19.self_attention.dense.weight": "pytorch_model-00001-of-00002.bin",
91
- "transformer.encoder.layers.19.self_attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
92
- "transformer.encoder.layers.19.self_attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
93
- "transformer.encoder.layers.2.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
94
- "transformer.encoder.layers.2.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
95
- "transformer.encoder.layers.2.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
96
- "transformer.encoder.layers.2.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
97
- "transformer.encoder.layers.2.self_attention.dense.weight": "pytorch_model-00001-of-00002.bin",
98
- "transformer.encoder.layers.2.self_attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
99
- "transformer.encoder.layers.2.self_attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
100
- "transformer.encoder.layers.20.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
101
- "transformer.encoder.layers.20.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
102
- "transformer.encoder.layers.20.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
103
- "transformer.encoder.layers.20.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
104
- "transformer.encoder.layers.20.self_attention.dense.weight": "pytorch_model-00001-of-00002.bin",
105
- "transformer.encoder.layers.20.self_attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
106
- "transformer.encoder.layers.20.self_attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
107
- "transformer.encoder.layers.21.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
108
- "transformer.encoder.layers.21.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
109
- "transformer.encoder.layers.21.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
110
- "transformer.encoder.layers.21.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
111
- "transformer.encoder.layers.21.self_attention.dense.weight": "pytorch_model-00001-of-00002.bin",
112
- "transformer.encoder.layers.21.self_attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
113
- "transformer.encoder.layers.21.self_attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
114
- "transformer.encoder.layers.22.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
115
- "transformer.encoder.layers.22.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
116
- "transformer.encoder.layers.22.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
117
- "transformer.encoder.layers.22.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
118
- "transformer.encoder.layers.22.self_attention.dense.weight": "pytorch_model-00001-of-00002.bin",
119
- "transformer.encoder.layers.22.self_attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
120
- "transformer.encoder.layers.22.self_attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
121
- "transformer.encoder.layers.23.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
122
- "transformer.encoder.layers.23.mlp.dense_4h_to_h.weight": "pytorch_model-00002-of-00002.bin",
123
- "transformer.encoder.layers.23.mlp.dense_h_to_4h.weight": "pytorch_model-00002-of-00002.bin",
124
- "transformer.encoder.layers.23.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
125
- "transformer.encoder.layers.23.self_attention.dense.weight": "pytorch_model-00001-of-00002.bin",
126
- "transformer.encoder.layers.23.self_attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
127
- "transformer.encoder.layers.23.self_attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
128
- "transformer.encoder.layers.24.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
129
- "transformer.encoder.layers.24.mlp.dense_4h_to_h.weight": "pytorch_model-00002-of-00002.bin",
130
- "transformer.encoder.layers.24.mlp.dense_h_to_4h.weight": "pytorch_model-00002-of-00002.bin",
131
- "transformer.encoder.layers.24.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
132
- "transformer.encoder.layers.24.self_attention.dense.weight": "pytorch_model-00002-of-00002.bin",
133
- "transformer.encoder.layers.24.self_attention.query_key_value.bias": "pytorch_model-00002-of-00002.bin",
134
- "transformer.encoder.layers.24.self_attention.query_key_value.weight": "pytorch_model-00002-of-00002.bin",
135
- "transformer.encoder.layers.25.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
136
- "transformer.encoder.layers.25.mlp.dense_4h_to_h.weight": "pytorch_model-00002-of-00002.bin",
137
- "transformer.encoder.layers.25.mlp.dense_h_to_4h.weight": "pytorch_model-00002-of-00002.bin",
138
- "transformer.encoder.layers.25.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
139
- "transformer.encoder.layers.25.self_attention.dense.weight": "pytorch_model-00002-of-00002.bin",
140
- "transformer.encoder.layers.25.self_attention.query_key_value.bias": "pytorch_model-00002-of-00002.bin",
141
- "transformer.encoder.layers.25.self_attention.query_key_value.weight": "pytorch_model-00002-of-00002.bin",
142
- "transformer.encoder.layers.26.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
143
- "transformer.encoder.layers.26.mlp.dense_4h_to_h.weight": "pytorch_model-00002-of-00002.bin",
144
- "transformer.encoder.layers.26.mlp.dense_h_to_4h.weight": "pytorch_model-00002-of-00002.bin",
145
- "transformer.encoder.layers.26.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
146
- "transformer.encoder.layers.26.self_attention.dense.weight": "pytorch_model-00002-of-00002.bin",
147
- "transformer.encoder.layers.26.self_attention.query_key_value.bias": "pytorch_model-00002-of-00002.bin",
148
- "transformer.encoder.layers.26.self_attention.query_key_value.weight": "pytorch_model-00002-of-00002.bin",
149
- "transformer.encoder.layers.27.input_layernorm.weight": "pytorch_model-00002-of-00002.bin",
150
- "transformer.encoder.layers.27.mlp.dense_4h_to_h.weight": "pytorch_model-00002-of-00002.bin",
151
- "transformer.encoder.layers.27.mlp.dense_h_to_4h.weight": "pytorch_model-00002-of-00002.bin",
152
- "transformer.encoder.layers.27.post_attention_layernorm.weight": "pytorch_model-00002-of-00002.bin",
153
- "transformer.encoder.layers.27.self_attention.dense.weight": "pytorch_model-00002-of-00002.bin",
154
- "transformer.encoder.layers.27.self_attention.query_key_value.bias": "pytorch_model-00002-of-00002.bin",
155
- "transformer.encoder.layers.27.self_attention.query_key_value.weight": "pytorch_model-00002-of-00002.bin",
156
- "transformer.encoder.layers.3.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
157
- "transformer.encoder.layers.3.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
158
- "transformer.encoder.layers.3.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
159
- "transformer.encoder.layers.3.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
160
- "transformer.encoder.layers.3.self_attention.dense.weight": "pytorch_model-00001-of-00002.bin",
161
- "transformer.encoder.layers.3.self_attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
162
- "transformer.encoder.layers.3.self_attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
163
- "transformer.encoder.layers.4.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
164
- "transformer.encoder.layers.4.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
165
- "transformer.encoder.layers.4.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
166
- "transformer.encoder.layers.4.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
167
- "transformer.encoder.layers.4.self_attention.dense.weight": "pytorch_model-00001-of-00002.bin",
168
- "transformer.encoder.layers.4.self_attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
169
- "transformer.encoder.layers.4.self_attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
170
- "transformer.encoder.layers.5.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
171
- "transformer.encoder.layers.5.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
172
- "transformer.encoder.layers.5.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
173
- "transformer.encoder.layers.5.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
174
- "transformer.encoder.layers.5.self_attention.dense.weight": "pytorch_model-00001-of-00002.bin",
175
- "transformer.encoder.layers.5.self_attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
176
- "transformer.encoder.layers.5.self_attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
177
- "transformer.encoder.layers.6.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
178
- "transformer.encoder.layers.6.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
179
- "transformer.encoder.layers.6.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
180
- "transformer.encoder.layers.6.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
181
- "transformer.encoder.layers.6.self_attention.dense.weight": "pytorch_model-00001-of-00002.bin",
182
- "transformer.encoder.layers.6.self_attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
183
- "transformer.encoder.layers.6.self_attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
184
- "transformer.encoder.layers.7.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
185
- "transformer.encoder.layers.7.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
186
- "transformer.encoder.layers.7.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
187
- "transformer.encoder.layers.7.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
188
- "transformer.encoder.layers.7.self_attention.dense.weight": "pytorch_model-00001-of-00002.bin",
189
- "transformer.encoder.layers.7.self_attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
190
- "transformer.encoder.layers.7.self_attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
191
- "transformer.encoder.layers.8.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
192
- "transformer.encoder.layers.8.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
193
- "transformer.encoder.layers.8.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
194
- "transformer.encoder.layers.8.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
195
- "transformer.encoder.layers.8.self_attention.dense.weight": "pytorch_model-00001-of-00002.bin",
196
- "transformer.encoder.layers.8.self_attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
197
- "transformer.encoder.layers.8.self_attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
198
- "transformer.encoder.layers.9.input_layernorm.weight": "pytorch_model-00001-of-00002.bin",
199
- "transformer.encoder.layers.9.mlp.dense_4h_to_h.weight": "pytorch_model-00001-of-00002.bin",
200
- "transformer.encoder.layers.9.mlp.dense_h_to_4h.weight": "pytorch_model-00001-of-00002.bin",
201
- "transformer.encoder.layers.9.post_attention_layernorm.weight": "pytorch_model-00001-of-00002.bin",
202
- "transformer.encoder.layers.9.self_attention.dense.weight": "pytorch_model-00001-of-00002.bin",
203
- "transformer.encoder.layers.9.self_attention.query_key_value.bias": "pytorch_model-00001-of-00002.bin",
204
- "transformer.encoder.layers.9.self_attention.query_key_value.weight": "pytorch_model-00001-of-00002.bin",
205
- "transformer.output_layer.weight": "pytorch_model-00002-of-00002.bin",
206
- "transformer.rotary_pos_emb.inv_freq": "pytorch_model-00001-of-00002.bin"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
207
  }
208
  }
 
1
  {
2
  "metadata": {
3
+ "total_size": 15442649088
4
  },
5
  "weight_map": {
6
  "lm_head.weight": "pytorch_model-00002-of-00002.bin",
7
+ "transformer.h.0.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin",
8
+ "transformer.h.0.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin",
9
+ "transformer.h.0.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin",
10
+ "transformer.h.0.ln_1.weight": "pytorch_model-00001-of-00002.bin",
11
+ "transformer.h.0.ln_2.weight": "pytorch_model-00001-of-00002.bin",
12
+ "transformer.h.0.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin",
13
+ "transformer.h.0.mlp.w1.weight": "pytorch_model-00001-of-00002.bin",
14
+ "transformer.h.0.mlp.w2.weight": "pytorch_model-00001-of-00002.bin",
15
+ "transformer.h.1.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin",
16
+ "transformer.h.1.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin",
17
+ "transformer.h.1.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin",
18
+ "transformer.h.1.ln_1.weight": "pytorch_model-00001-of-00002.bin",
19
+ "transformer.h.1.ln_2.weight": "pytorch_model-00001-of-00002.bin",
20
+ "transformer.h.1.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin",
21
+ "transformer.h.1.mlp.w1.weight": "pytorch_model-00001-of-00002.bin",
22
+ "transformer.h.1.mlp.w2.weight": "pytorch_model-00001-of-00002.bin",
23
+ "transformer.h.10.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin",
24
+ "transformer.h.10.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin",
25
+ "transformer.h.10.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin",
26
+ "transformer.h.10.ln_1.weight": "pytorch_model-00001-of-00002.bin",
27
+ "transformer.h.10.ln_2.weight": "pytorch_model-00001-of-00002.bin",
28
+ "transformer.h.10.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin",
29
+ "transformer.h.10.mlp.w1.weight": "pytorch_model-00001-of-00002.bin",
30
+ "transformer.h.10.mlp.w2.weight": "pytorch_model-00001-of-00002.bin",
31
+ "transformer.h.11.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin",
32
+ "transformer.h.11.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin",
33
+ "transformer.h.11.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin",
34
+ "transformer.h.11.ln_1.weight": "pytorch_model-00001-of-00002.bin",
35
+ "transformer.h.11.ln_2.weight": "pytorch_model-00001-of-00002.bin",
36
+ "transformer.h.11.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin",
37
+ "transformer.h.11.mlp.w1.weight": "pytorch_model-00001-of-00002.bin",
38
+ "transformer.h.11.mlp.w2.weight": "pytorch_model-00001-of-00002.bin",
39
+ "transformer.h.12.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin",
40
+ "transformer.h.12.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin",
41
+ "transformer.h.12.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin",
42
+ "transformer.h.12.ln_1.weight": "pytorch_model-00001-of-00002.bin",
43
+ "transformer.h.12.ln_2.weight": "pytorch_model-00001-of-00002.bin",
44
+ "transformer.h.12.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin",
45
+ "transformer.h.12.mlp.w1.weight": "pytorch_model-00001-of-00002.bin",
46
+ "transformer.h.12.mlp.w2.weight": "pytorch_model-00001-of-00002.bin",
47
+ "transformer.h.13.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin",
48
+ "transformer.h.13.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin",
49
+ "transformer.h.13.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin",
50
+ "transformer.h.13.ln_1.weight": "pytorch_model-00001-of-00002.bin",
51
+ "transformer.h.13.ln_2.weight": "pytorch_model-00001-of-00002.bin",
52
+ "transformer.h.13.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin",
53
+ "transformer.h.13.mlp.w1.weight": "pytorch_model-00001-of-00002.bin",
54
+ "transformer.h.13.mlp.w2.weight": "pytorch_model-00001-of-00002.bin",
55
+ "transformer.h.14.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin",
56
+ "transformer.h.14.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin",
57
+ "transformer.h.14.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin",
58
+ "transformer.h.14.ln_1.weight": "pytorch_model-00001-of-00002.bin",
59
+ "transformer.h.14.ln_2.weight": "pytorch_model-00001-of-00002.bin",
60
+ "transformer.h.14.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin",
61
+ "transformer.h.14.mlp.w1.weight": "pytorch_model-00001-of-00002.bin",
62
+ "transformer.h.14.mlp.w2.weight": "pytorch_model-00001-of-00002.bin",
63
+ "transformer.h.15.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin",
64
+ "transformer.h.15.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin",
65
+ "transformer.h.15.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin",
66
+ "transformer.h.15.ln_1.weight": "pytorch_model-00001-of-00002.bin",
67
+ "transformer.h.15.ln_2.weight": "pytorch_model-00001-of-00002.bin",
68
+ "transformer.h.15.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin",
69
+ "transformer.h.15.mlp.w1.weight": "pytorch_model-00001-of-00002.bin",
70
+ "transformer.h.15.mlp.w2.weight": "pytorch_model-00001-of-00002.bin",
71
+ "transformer.h.16.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin",
72
+ "transformer.h.16.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin",
73
+ "transformer.h.16.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin",
74
+ "transformer.h.16.ln_1.weight": "pytorch_model-00001-of-00002.bin",
75
+ "transformer.h.16.ln_2.weight": "pytorch_model-00001-of-00002.bin",
76
+ "transformer.h.16.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin",
77
+ "transformer.h.16.mlp.w1.weight": "pytorch_model-00001-of-00002.bin",
78
+ "transformer.h.16.mlp.w2.weight": "pytorch_model-00001-of-00002.bin",
79
+ "transformer.h.17.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin",
80
+ "transformer.h.17.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin",
81
+ "transformer.h.17.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin",
82
+ "transformer.h.17.ln_1.weight": "pytorch_model-00001-of-00002.bin",
83
+ "transformer.h.17.ln_2.weight": "pytorch_model-00001-of-00002.bin",
84
+ "transformer.h.17.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin",
85
+ "transformer.h.17.mlp.w1.weight": "pytorch_model-00001-of-00002.bin",
86
+ "transformer.h.17.mlp.w2.weight": "pytorch_model-00001-of-00002.bin",
87
+ "transformer.h.18.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin",
88
+ "transformer.h.18.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin",
89
+ "transformer.h.18.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin",
90
+ "transformer.h.18.ln_1.weight": "pytorch_model-00001-of-00002.bin",
91
+ "transformer.h.18.ln_2.weight": "pytorch_model-00001-of-00002.bin",
92
+ "transformer.h.18.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin",
93
+ "transformer.h.18.mlp.w1.weight": "pytorch_model-00001-of-00002.bin",
94
+ "transformer.h.18.mlp.w2.weight": "pytorch_model-00001-of-00002.bin",
95
+ "transformer.h.19.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin",
96
+ "transformer.h.19.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin",
97
+ "transformer.h.19.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin",
98
+ "transformer.h.19.ln_1.weight": "pytorch_model-00001-of-00002.bin",
99
+ "transformer.h.19.ln_2.weight": "pytorch_model-00001-of-00002.bin",
100
+ "transformer.h.19.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin",
101
+ "transformer.h.19.mlp.w1.weight": "pytorch_model-00001-of-00002.bin",
102
+ "transformer.h.19.mlp.w2.weight": "pytorch_model-00001-of-00002.bin",
103
+ "transformer.h.2.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin",
104
+ "transformer.h.2.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin",
105
+ "transformer.h.2.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin",
106
+ "transformer.h.2.ln_1.weight": "pytorch_model-00001-of-00002.bin",
107
+ "transformer.h.2.ln_2.weight": "pytorch_model-00001-of-00002.bin",
108
+ "transformer.h.2.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin",
109
+ "transformer.h.2.mlp.w1.weight": "pytorch_model-00001-of-00002.bin",
110
+ "transformer.h.2.mlp.w2.weight": "pytorch_model-00001-of-00002.bin",
111
+ "transformer.h.20.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin",
112
+ "transformer.h.20.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin",
113
+ "transformer.h.20.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin",
114
+ "transformer.h.20.ln_1.weight": "pytorch_model-00001-of-00002.bin",
115
+ "transformer.h.20.ln_2.weight": "pytorch_model-00001-of-00002.bin",
116
+ "transformer.h.20.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin",
117
+ "transformer.h.20.mlp.w1.weight": "pytorch_model-00001-of-00002.bin",
118
+ "transformer.h.20.mlp.w2.weight": "pytorch_model-00001-of-00002.bin",
119
+ "transformer.h.21.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin",
120
+ "transformer.h.21.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin",
121
+ "transformer.h.21.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin",
122
+ "transformer.h.21.ln_1.weight": "pytorch_model-00001-of-00002.bin",
123
+ "transformer.h.21.ln_2.weight": "pytorch_model-00001-of-00002.bin",
124
+ "transformer.h.21.mlp.c_proj.weight": "pytorch_model-00002-of-00002.bin",
125
+ "transformer.h.21.mlp.w1.weight": "pytorch_model-00001-of-00002.bin",
126
+ "transformer.h.21.mlp.w2.weight": "pytorch_model-00002-of-00002.bin",
127
+ "transformer.h.22.attn.c_attn.bias": "pytorch_model-00002-of-00002.bin",
128
+ "transformer.h.22.attn.c_attn.weight": "pytorch_model-00002-of-00002.bin",
129
+ "transformer.h.22.attn.c_proj.weight": "pytorch_model-00002-of-00002.bin",
130
+ "transformer.h.22.ln_1.weight": "pytorch_model-00002-of-00002.bin",
131
+ "transformer.h.22.ln_2.weight": "pytorch_model-00002-of-00002.bin",
132
+ "transformer.h.22.mlp.c_proj.weight": "pytorch_model-00002-of-00002.bin",
133
+ "transformer.h.22.mlp.w1.weight": "pytorch_model-00002-of-00002.bin",
134
+ "transformer.h.22.mlp.w2.weight": "pytorch_model-00002-of-00002.bin",
135
+ "transformer.h.23.attn.c_attn.bias": "pytorch_model-00002-of-00002.bin",
136
+ "transformer.h.23.attn.c_attn.weight": "pytorch_model-00002-of-00002.bin",
137
+ "transformer.h.23.attn.c_proj.weight": "pytorch_model-00002-of-00002.bin",
138
+ "transformer.h.23.ln_1.weight": "pytorch_model-00002-of-00002.bin",
139
+ "transformer.h.23.ln_2.weight": "pytorch_model-00002-of-00002.bin",
140
+ "transformer.h.23.mlp.c_proj.weight": "pytorch_model-00002-of-00002.bin",
141
+ "transformer.h.23.mlp.w1.weight": "pytorch_model-00002-of-00002.bin",
142
+ "transformer.h.23.mlp.w2.weight": "pytorch_model-00002-of-00002.bin",
143
+ "transformer.h.24.attn.c_attn.bias": "pytorch_model-00002-of-00002.bin",
144
+ "transformer.h.24.attn.c_attn.weight": "pytorch_model-00002-of-00002.bin",
145
+ "transformer.h.24.attn.c_proj.weight": "pytorch_model-00002-of-00002.bin",
146
+ "transformer.h.24.ln_1.weight": "pytorch_model-00002-of-00002.bin",
147
+ "transformer.h.24.ln_2.weight": "pytorch_model-00002-of-00002.bin",
148
+ "transformer.h.24.mlp.c_proj.weight": "pytorch_model-00002-of-00002.bin",
149
+ "transformer.h.24.mlp.w1.weight": "pytorch_model-00002-of-00002.bin",
150
+ "transformer.h.24.mlp.w2.weight": "pytorch_model-00002-of-00002.bin",
151
+ "transformer.h.25.attn.c_attn.bias": "pytorch_model-00002-of-00002.bin",
152
+ "transformer.h.25.attn.c_attn.weight": "pytorch_model-00002-of-00002.bin",
153
+ "transformer.h.25.attn.c_proj.weight": "pytorch_model-00002-of-00002.bin",
154
+ "transformer.h.25.ln_1.weight": "pytorch_model-00002-of-00002.bin",
155
+ "transformer.h.25.ln_2.weight": "pytorch_model-00002-of-00002.bin",
156
+ "transformer.h.25.mlp.c_proj.weight": "pytorch_model-00002-of-00002.bin",
157
+ "transformer.h.25.mlp.w1.weight": "pytorch_model-00002-of-00002.bin",
158
+ "transformer.h.25.mlp.w2.weight": "pytorch_model-00002-of-00002.bin",
159
+ "transformer.h.26.attn.c_attn.bias": "pytorch_model-00002-of-00002.bin",
160
+ "transformer.h.26.attn.c_attn.weight": "pytorch_model-00002-of-00002.bin",
161
+ "transformer.h.26.attn.c_proj.weight": "pytorch_model-00002-of-00002.bin",
162
+ "transformer.h.26.ln_1.weight": "pytorch_model-00002-of-00002.bin",
163
+ "transformer.h.26.ln_2.weight": "pytorch_model-00002-of-00002.bin",
164
+ "transformer.h.26.mlp.c_proj.weight": "pytorch_model-00002-of-00002.bin",
165
+ "transformer.h.26.mlp.w1.weight": "pytorch_model-00002-of-00002.bin",
166
+ "transformer.h.26.mlp.w2.weight": "pytorch_model-00002-of-00002.bin",
167
+ "transformer.h.27.attn.c_attn.bias": "pytorch_model-00002-of-00002.bin",
168
+ "transformer.h.27.attn.c_attn.weight": "pytorch_model-00002-of-00002.bin",
169
+ "transformer.h.27.attn.c_proj.weight": "pytorch_model-00002-of-00002.bin",
170
+ "transformer.h.27.ln_1.weight": "pytorch_model-00002-of-00002.bin",
171
+ "transformer.h.27.ln_2.weight": "pytorch_model-00002-of-00002.bin",
172
+ "transformer.h.27.mlp.c_proj.weight": "pytorch_model-00002-of-00002.bin",
173
+ "transformer.h.27.mlp.w1.weight": "pytorch_model-00002-of-00002.bin",
174
+ "transformer.h.27.mlp.w2.weight": "pytorch_model-00002-of-00002.bin",
175
+ "transformer.h.28.attn.c_attn.bias": "pytorch_model-00002-of-00002.bin",
176
+ "transformer.h.28.attn.c_attn.weight": "pytorch_model-00002-of-00002.bin",
177
+ "transformer.h.28.attn.c_proj.weight": "pytorch_model-00002-of-00002.bin",
178
+ "transformer.h.28.ln_1.weight": "pytorch_model-00002-of-00002.bin",
179
+ "transformer.h.28.ln_2.weight": "pytorch_model-00002-of-00002.bin",
180
+ "transformer.h.28.mlp.c_proj.weight": "pytorch_model-00002-of-00002.bin",
181
+ "transformer.h.28.mlp.w1.weight": "pytorch_model-00002-of-00002.bin",
182
+ "transformer.h.28.mlp.w2.weight": "pytorch_model-00002-of-00002.bin",
183
+ "transformer.h.29.attn.c_attn.bias": "pytorch_model-00002-of-00002.bin",
184
+ "transformer.h.29.attn.c_attn.weight": "pytorch_model-00002-of-00002.bin",
185
+ "transformer.h.29.attn.c_proj.weight": "pytorch_model-00002-of-00002.bin",
186
+ "transformer.h.29.ln_1.weight": "pytorch_model-00002-of-00002.bin",
187
+ "transformer.h.29.ln_2.weight": "pytorch_model-00002-of-00002.bin",
188
+ "transformer.h.29.mlp.c_proj.weight": "pytorch_model-00002-of-00002.bin",
189
+ "transformer.h.29.mlp.w1.weight": "pytorch_model-00002-of-00002.bin",
190
+ "transformer.h.29.mlp.w2.weight": "pytorch_model-00002-of-00002.bin",
191
+ "transformer.h.3.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin",
192
+ "transformer.h.3.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin",
193
+ "transformer.h.3.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin",
194
+ "transformer.h.3.ln_1.weight": "pytorch_model-00001-of-00002.bin",
195
+ "transformer.h.3.ln_2.weight": "pytorch_model-00001-of-00002.bin",
196
+ "transformer.h.3.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin",
197
+ "transformer.h.3.mlp.w1.weight": "pytorch_model-00001-of-00002.bin",
198
+ "transformer.h.3.mlp.w2.weight": "pytorch_model-00001-of-00002.bin",
199
+ "transformer.h.30.attn.c_attn.bias": "pytorch_model-00002-of-00002.bin",
200
+ "transformer.h.30.attn.c_attn.weight": "pytorch_model-00002-of-00002.bin",
201
+ "transformer.h.30.attn.c_proj.weight": "pytorch_model-00002-of-00002.bin",
202
+ "transformer.h.30.ln_1.weight": "pytorch_model-00002-of-00002.bin",
203
+ "transformer.h.30.ln_2.weight": "pytorch_model-00002-of-00002.bin",
204
+ "transformer.h.30.mlp.c_proj.weight": "pytorch_model-00002-of-00002.bin",
205
+ "transformer.h.30.mlp.w1.weight": "pytorch_model-00002-of-00002.bin",
206
+ "transformer.h.30.mlp.w2.weight": "pytorch_model-00002-of-00002.bin",
207
+ "transformer.h.31.attn.c_attn.bias": "pytorch_model-00002-of-00002.bin",
208
+ "transformer.h.31.attn.c_attn.weight": "pytorch_model-00002-of-00002.bin",
209
+ "transformer.h.31.attn.c_proj.weight": "pytorch_model-00002-of-00002.bin",
210
+ "transformer.h.31.ln_1.weight": "pytorch_model-00002-of-00002.bin",
211
+ "transformer.h.31.ln_2.weight": "pytorch_model-00002-of-00002.bin",
212
+ "transformer.h.31.mlp.c_proj.weight": "pytorch_model-00002-of-00002.bin",
213
+ "transformer.h.31.mlp.w1.weight": "pytorch_model-00002-of-00002.bin",
214
+ "transformer.h.31.mlp.w2.weight": "pytorch_model-00002-of-00002.bin",
215
+ "transformer.h.4.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin",
216
+ "transformer.h.4.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin",
217
+ "transformer.h.4.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin",
218
+ "transformer.h.4.ln_1.weight": "pytorch_model-00001-of-00002.bin",
219
+ "transformer.h.4.ln_2.weight": "pytorch_model-00001-of-00002.bin",
220
+ "transformer.h.4.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin",
221
+ "transformer.h.4.mlp.w1.weight": "pytorch_model-00001-of-00002.bin",
222
+ "transformer.h.4.mlp.w2.weight": "pytorch_model-00001-of-00002.bin",
223
+ "transformer.h.5.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin",
224
+ "transformer.h.5.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin",
225
+ "transformer.h.5.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin",
226
+ "transformer.h.5.ln_1.weight": "pytorch_model-00001-of-00002.bin",
227
+ "transformer.h.5.ln_2.weight": "pytorch_model-00001-of-00002.bin",
228
+ "transformer.h.5.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin",
229
+ "transformer.h.5.mlp.w1.weight": "pytorch_model-00001-of-00002.bin",
230
+ "transformer.h.5.mlp.w2.weight": "pytorch_model-00001-of-00002.bin",
231
+ "transformer.h.6.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin",
232
+ "transformer.h.6.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin",
233
+ "transformer.h.6.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin",
234
+ "transformer.h.6.ln_1.weight": "pytorch_model-00001-of-00002.bin",
235
+ "transformer.h.6.ln_2.weight": "pytorch_model-00001-of-00002.bin",
236
+ "transformer.h.6.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin",
237
+ "transformer.h.6.mlp.w1.weight": "pytorch_model-00001-of-00002.bin",
238
+ "transformer.h.6.mlp.w2.weight": "pytorch_model-00001-of-00002.bin",
239
+ "transformer.h.7.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin",
240
+ "transformer.h.7.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin",
241
+ "transformer.h.7.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin",
242
+ "transformer.h.7.ln_1.weight": "pytorch_model-00001-of-00002.bin",
243
+ "transformer.h.7.ln_2.weight": "pytorch_model-00001-of-00002.bin",
244
+ "transformer.h.7.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin",
245
+ "transformer.h.7.mlp.w1.weight": "pytorch_model-00001-of-00002.bin",
246
+ "transformer.h.7.mlp.w2.weight": "pytorch_model-00001-of-00002.bin",
247
+ "transformer.h.8.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin",
248
+ "transformer.h.8.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin",
249
+ "transformer.h.8.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin",
250
+ "transformer.h.8.ln_1.weight": "pytorch_model-00001-of-00002.bin",
251
+ "transformer.h.8.ln_2.weight": "pytorch_model-00001-of-00002.bin",
252
+ "transformer.h.8.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin",
253
+ "transformer.h.8.mlp.w1.weight": "pytorch_model-00001-of-00002.bin",
254
+ "transformer.h.8.mlp.w2.weight": "pytorch_model-00001-of-00002.bin",
255
+ "transformer.h.9.attn.c_attn.bias": "pytorch_model-00001-of-00002.bin",
256
+ "transformer.h.9.attn.c_attn.weight": "pytorch_model-00001-of-00002.bin",
257
+ "transformer.h.9.attn.c_proj.weight": "pytorch_model-00001-of-00002.bin",
258
+ "transformer.h.9.ln_1.weight": "pytorch_model-00001-of-00002.bin",
259
+ "transformer.h.9.ln_2.weight": "pytorch_model-00001-of-00002.bin",
260
+ "transformer.h.9.mlp.c_proj.weight": "pytorch_model-00001-of-00002.bin",
261
+ "transformer.h.9.mlp.w1.weight": "pytorch_model-00001-of-00002.bin",
262
+ "transformer.h.9.mlp.w2.weight": "pytorch_model-00001-of-00002.bin",
263
+ "transformer.ln_f.weight": "pytorch_model-00002-of-00002.bin",
264
+ "transformer.wte.weight": "pytorch_model-00001-of-00002.bin"
265
  }
266
  }
qwen.tiktoken ADDED
The diff for this file is too large to render. See raw diff
 
qwen_generation_utils.py ADDED
@@ -0,0 +1,416 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (c) Alibaba Cloud.
2
+ #
3
+ # This source code is licensed under the license found in the
4
+ # LICENSE file in the root directory of this source tree.
5
+
6
+ """Generation support."""
7
+
8
+ from typing import Tuple, List, Union, Iterable
9
+
10
+ import numpy as np
11
+ import torch
12
+ import torch.nn.functional as F
13
+ from transformers import PreTrainedTokenizer
14
+ from transformers import logging
15
+ from transformers.generation import LogitsProcessor
16
+
17
+ logger = logging.get_logger(__name__)
18
+
19
+ # Types.
20
+ HistoryType = List[Tuple[str, str]]
21
+ TokensType = List[int]
22
+ BatchTokensType = List[List[int]]
23
+
24
+
25
+ def pad_batch(batch: BatchTokensType, pad_id: int, seq_length: int) -> BatchTokensType:
26
+ for tokens in batch:
27
+ context_length = len(tokens)
28
+ if context_length < seq_length:
29
+ tokens.extend([pad_id] * (seq_length - context_length))
30
+ return batch
31
+
32
+
33
+ def get_ltor_masks_and_position_ids(
34
+ data,
35
+ eod_token,
36
+ reset_position_ids,
37
+ reset_attention_mask,
38
+ eod_mask_loss,
39
+ ):
40
+ """Build masks and position id for left to right model."""
41
+
42
+ # Extract batch size and sequence length.
43
+ micro_batch_size, seq_length = data.size()
44
+
45
+ # Attention mask (lower triangular).
46
+ if reset_attention_mask:
47
+ att_mask_batch = micro_batch_size
48
+ else:
49
+ att_mask_batch = 1
50
+ attention_mask = torch.tril(
51
+ torch.ones((att_mask_batch, seq_length, seq_length), device=data.device)
52
+ ).view(att_mask_batch, 1, seq_length, seq_length)
53
+
54
+ # Loss mask.
55
+ loss_mask = torch.ones(data.size(), dtype=torch.float, device=data.device)
56
+ if eod_mask_loss:
57
+ loss_mask[data == eod_token] = 0.0
58
+
59
+ # Position ids.
60
+ position_ids = torch.arange(seq_length, dtype=torch.long, device=data.device)
61
+ position_ids = position_ids.unsqueeze(0).expand_as(data)
62
+ # We need to clone as the ids will be modifed based on batch index.
63
+ if reset_position_ids:
64
+ position_ids = position_ids.clone()
65
+
66
+ if reset_position_ids or reset_attention_mask:
67
+ # Loop through the batches:
68
+ for b in range(micro_batch_size):
69
+
70
+ # Find indecies where EOD token is.
71
+ eod_index = position_ids[b, data[b] == eod_token]
72
+ # Detach indecies from positions if going to modify positions.
73
+ if reset_position_ids:
74
+ eod_index = eod_index.clone()
75
+
76
+ # Loop through EOD indecies:
77
+ prev_index = 0
78
+ for j in range(eod_index.size()[0]):
79
+ i = eod_index[j]
80
+ # Mask attention loss.
81
+ if reset_attention_mask:
82
+ attention_mask[b, 0, (i + 1) :, : (i + 1)] = 0
83
+ # Reset positions.
84
+ if reset_position_ids:
85
+ position_ids[b, (i + 1) :] -= i + 1 - prev_index
86
+ prev_index = i + 1
87
+
88
+ # Convert attention mask to binary:
89
+ attention_mask = attention_mask < 0.5
90
+
91
+ return attention_mask, loss_mask, position_ids
92
+
93
+
94
+ def get_batch(context_tokens: torch.LongTensor, eod_id: int):
95
+ """Generate batch from context tokens."""
96
+ # Move to GPU.
97
+ tokens = context_tokens.contiguous().to(context_tokens.device)
98
+ # Get the attention mask and postition ids.
99
+ attention_mask, _, position_ids = get_ltor_masks_and_position_ids(
100
+ tokens,
101
+ eod_id,
102
+ reset_position_ids=False,
103
+ reset_attention_mask=False,
104
+ eod_mask_loss=False,
105
+ )
106
+ return tokens, attention_mask, position_ids
107
+
108
+
109
+ def get_stop_words_ids(chat_format, tokenizer):
110
+ if chat_format == "raw":
111
+ stop_words_ids = [tokenizer.encode("Human:"), [tokenizer.eod_id]]
112
+ elif chat_format == "chatml":
113
+ stop_words_ids = [[tokenizer.im_end_id], [tokenizer.im_start_id]]
114
+ else:
115
+ raise NotImplementedError(f"Unknown chat format {chat_format!r}")
116
+ return stop_words_ids
117
+
118
+
119
+ def make_context(
120
+ tokenizer: PreTrainedTokenizer,
121
+ query: str,
122
+ history: List[Tuple[str, str]] = None,
123
+ system: str = "",
124
+ max_window_size: int = 6144,
125
+ chat_format: str = "chatml",
126
+ ):
127
+ if history is None:
128
+ history = []
129
+
130
+ if chat_format == "chatml":
131
+ im_start, im_end = "<|im_start|>", "<|im_end|>"
132
+ im_start_tokens = [tokenizer.im_start_id]
133
+ im_end_tokens = [tokenizer.im_end_id]
134
+ nl_tokens = tokenizer.encode("\n")
135
+
136
+ def _tokenize_str(role, content):
137
+ return f"{role}\n{content}", tokenizer.encode(
138
+ role, allowed_special=set()
139
+ ) + nl_tokens + tokenizer.encode(content, allowed_special=set())
140
+
141
+ system_text, system_tokens_part = _tokenize_str("system", system)
142
+ system_tokens = im_start_tokens + system_tokens_part + im_end_tokens
143
+
144
+ raw_text = ""
145
+ context_tokens = []
146
+
147
+ for turn_query, turn_response in reversed(history):
148
+ query_text, query_tokens_part = _tokenize_str("user", turn_query)
149
+ query_tokens = im_start_tokens + query_tokens_part + im_end_tokens
150
+ response_text, response_tokens_part = _tokenize_str(
151
+ "assistant", turn_response
152
+ )
153
+ response_tokens = im_start_tokens + response_tokens_part + im_end_tokens
154
+
155
+ next_context_tokens = nl_tokens + query_tokens + nl_tokens + response_tokens
156
+ prev_chat = (
157
+ f"\n{im_start}{query_text}{im_end}\n{im_start}{response_text}{im_end}"
158
+ )
159
+
160
+ current_context_size = (
161
+ len(system_tokens) + len(next_context_tokens) + len(context_tokens)
162
+ )
163
+ if current_context_size < max_window_size:
164
+ context_tokens = next_context_tokens + context_tokens
165
+ raw_text = prev_chat + raw_text
166
+ else:
167
+ break
168
+
169
+ context_tokens = system_tokens + context_tokens
170
+ raw_text = f"{im_start}{system_text}{im_end}" + raw_text
171
+ context_tokens += (
172
+ nl_tokens
173
+ + im_start_tokens
174
+ + _tokenize_str("user", query)[1]
175
+ + im_end_tokens
176
+ + nl_tokens
177
+ + im_start_tokens
178
+ + tokenizer.encode("assistant")
179
+ + nl_tokens
180
+ )
181
+ raw_text += f"\n{im_start}user\n{query}{im_end}\n{im_start}assistant\n"
182
+
183
+ elif chat_format == "raw":
184
+ raw_text = query
185
+ context_tokens = tokenizer.encode(raw_text)
186
+ else:
187
+ raise NotImplementedError(f"Unknown chat format {chat_format!r}")
188
+
189
+ return raw_text, context_tokens
190
+
191
+
192
+ def _decode_default(
193
+ tokens: List[int],
194
+ *,
195
+ stop_words: List[str],
196
+ eod_words: List[str],
197
+ tokenizer: PreTrainedTokenizer,
198
+ raw_text_len: int,
199
+ verbose: bool = False,
200
+ return_end_reason: bool = False,
201
+ errors: str='replace',
202
+ ):
203
+ trim_decode_tokens = tokenizer.decode(tokens, errors=errors)[raw_text_len:]
204
+ if verbose:
205
+ print("\nRaw Generate: ", trim_decode_tokens)
206
+
207
+ end_reason = f"Gen length {len(tokens)}"
208
+ for stop_word in stop_words:
209
+ trim_decode_tokens = trim_decode_tokens.replace(stop_word, "").strip()
210
+ for eod_word in eod_words:
211
+ if eod_word in trim_decode_tokens:
212
+ end_reason = f"Gen {eod_word!r}"
213
+ trim_decode_tokens = trim_decode_tokens.split(eod_word)[0]
214
+ trim_decode_tokens = trim_decode_tokens.strip()
215
+ if verbose:
216
+ print("\nEnd Reason:", end_reason)
217
+ print("\nGenerate: ", trim_decode_tokens)
218
+
219
+ if return_end_reason:
220
+ return trim_decode_tokens, end_reason
221
+ else:
222
+ return trim_decode_tokens
223
+
224
+
225
+ def _decode_chatml(
226
+ tokens: List[int],
227
+ *,
228
+ stop_words: List[str],
229
+ eod_token_ids: List[int],
230
+ tokenizer: PreTrainedTokenizer,
231
+ raw_text_len: int,
232
+ context_length: int,
233
+ verbose: bool = False,
234
+ return_end_reason: bool = False,
235
+ errors: str='replace'
236
+ ):
237
+ end_reason = f"Gen length {len(tokens)}"
238
+ eod_token_idx = context_length
239
+ for eod_token_idx in range(context_length, len(tokens)):
240
+ if tokens[eod_token_idx] in eod_token_ids:
241
+ end_reason = f"Gen {tokenizer.decode([tokens[eod_token_idx]])!r}"
242
+ break
243
+
244
+ trim_decode_tokens = tokenizer.decode(tokens[:eod_token_idx], errors=errors)[raw_text_len:]
245
+ if verbose:
246
+ print("\nRaw Generate w/o EOD:", tokenizer.decode(tokens, errors=errors)[raw_text_len:])
247
+ print("\nRaw Generate:", trim_decode_tokens)
248
+ print("\nEnd Reason:", end_reason)
249
+ for stop_word in stop_words:
250
+ trim_decode_tokens = trim_decode_tokens.replace(stop_word, "").strip()
251
+ trim_decode_tokens = trim_decode_tokens.strip()
252
+ if verbose:
253
+ print("\nGenerate:", trim_decode_tokens)
254
+
255
+ if return_end_reason:
256
+ return trim_decode_tokens, end_reason
257
+ else:
258
+ return trim_decode_tokens
259
+
260
+
261
+ def decode_tokens(
262
+ tokens: Union[torch.LongTensor, TokensType],
263
+ tokenizer: PreTrainedTokenizer,
264
+ raw_text_len: int,
265
+ context_length: int,
266
+ chat_format: str,
267
+ verbose: bool = False,
268
+ return_end_reason: bool = False,
269
+ errors: str="replace",
270
+ ) -> str:
271
+ if torch.is_tensor(tokens):
272
+ tokens = tokens.cpu().numpy().tolist()
273
+
274
+ if chat_format == "chatml":
275
+ return _decode_chatml(
276
+ tokens,
277
+ stop_words=[],
278
+ eod_token_ids=[tokenizer.im_start_id, tokenizer.im_end_id],
279
+ tokenizer=tokenizer,
280
+ raw_text_len=raw_text_len,
281
+ context_length=context_length,
282
+ verbose=verbose,
283
+ return_end_reason=return_end_reason,
284
+ errors=errors,
285
+ )
286
+ elif chat_format == "raw":
287
+ return _decode_default(
288
+ tokens,
289
+ stop_words=["<|endoftext|>"],
290
+ eod_words=["<|endoftext|>"],
291
+ tokenizer=tokenizer,
292
+ raw_text_len=raw_text_len,
293
+ verbose=verbose,
294
+ return_end_reason=return_end_reason,
295
+ errors=errors,
296
+ )
297
+ else:
298
+ raise NotImplementedError(f"Unknown chat format {chat_format!r}")
299
+
300
+
301
+ class StopWordsLogitsProcessor(LogitsProcessor):
302
+ """
303
+ :class:`transformers.LogitsProcessor` that enforces that when specified sequences appear, stop geration.
304
+
305
+ Args:
306
+ stop_words_ids (:obj:`List[List[int]]`):
307
+ List of list of token ids of stop ids. In order to get the tokens of the words
308
+ that should not appear in the generated text, use :obj:`tokenizer(bad_word,
309
+ add_prefix_space=True).input_ids`.
310
+ eos_token_id (:obj:`int`):
311
+ The id of the `end-of-sequence` token.
312
+ """
313
+
314
+ def __init__(self, stop_words_ids: Iterable[Iterable[int]], eos_token_id: int):
315
+
316
+ if not isinstance(stop_words_ids, List) or len(stop_words_ids) == 0:
317
+ raise ValueError(
318
+ f"`stop_words_ids` has to be a non-emtpy list, but is {stop_words_ids}."
319
+ )
320
+ if any(not isinstance(bad_word_ids, list) for bad_word_ids in stop_words_ids):
321
+ raise ValueError(
322
+ f"`stop_words_ids` has to be a list of lists, but is {stop_words_ids}."
323
+ )
324
+ if any(
325
+ any(
326
+ (not isinstance(token_id, (int, np.integer)) or token_id < 0)
327
+ for token_id in stop_word_ids
328
+ )
329
+ for stop_word_ids in stop_words_ids
330
+ ):
331
+ raise ValueError(
332
+ f"Each list in `stop_words_ids` has to be a list of positive integers, but is {stop_words_ids}."
333
+ )
334
+
335
+ self.stop_words_ids = list(
336
+ filter(
337
+ lambda bad_token_seq: bad_token_seq != [eos_token_id], stop_words_ids
338
+ )
339
+ )
340
+ self.eos_token_id = eos_token_id
341
+ for stop_token_seq in self.stop_words_ids:
342
+ assert (
343
+ len(stop_token_seq) > 0
344
+ ), "Stop words token sequences {} cannot have an empty list".format(
345
+ stop_words_ids
346
+ )
347
+
348
+ def __call__(
349
+ self, input_ids: torch.LongTensor, scores: torch.FloatTensor
350
+ ) -> torch.FloatTensor:
351
+ stopped_samples = self._calc_stopped_samples(input_ids)
352
+ for i, should_stop in enumerate(stopped_samples):
353
+ if should_stop:
354
+ scores[i, self.eos_token_id] = float(2**15)
355
+ return scores
356
+
357
+ def _tokens_match(self, prev_tokens: torch.LongTensor, tokens: List[int]) -> bool:
358
+ if len(tokens) == 0:
359
+ # if bad word tokens is just one token always ban it
360
+ return True
361
+ elif len(tokens) > len(prev_tokens):
362
+ # if bad word tokens are longer then prev input_ids they can't be equal
363
+ return False
364
+ elif prev_tokens[-len(tokens) :].tolist() == tokens:
365
+ # if tokens match
366
+ return True
367
+ else:
368
+ return False
369
+
370
+ def _calc_stopped_samples(self, prev_input_ids: Iterable[int]) -> Iterable[int]:
371
+ stopped_samples = []
372
+ for prev_input_ids_slice in prev_input_ids:
373
+ match = False
374
+ for stop_token_seq in self.stop_words_ids:
375
+ if self._tokens_match(prev_input_ids_slice, stop_token_seq):
376
+ # if tokens do not match continue
377
+ match = True
378
+ break
379
+ stopped_samples.append(match)
380
+
381
+ return stopped_samples
382
+
383
+
384
+ def top_k_logits(logits, top_k=0, top_p=0.0, filter_value=-float("Inf")):
385
+ """This function has been mostly taken from huggingface conversational
386
+ ai code at
387
+ https://medium.com/huggingface/how-to-build-a-state-of-the-art-
388
+ conversational-ai-with-transfer-learning-2d818ac26313"""
389
+
390
+ if top_k > 0:
391
+ # Remove all tokens with a probability less than the
392
+ # last token of the top-k
393
+ indices_to_remove = logits < torch.topk(logits, top_k)[0][..., -1, None]
394
+ logits[indices_to_remove] = filter_value
395
+
396
+ if top_p > 0.0:
397
+ # Cconvert to 1D
398
+ sorted_logits, sorted_indices = torch.sort(logits, descending=True, dim=-1)
399
+ cumulative_probs = torch.cumsum(F.softmax(sorted_logits, dim=-1), dim=-1)
400
+
401
+ # Remove tokens with cumulative probability above the threshold
402
+ sorted_indices_to_remove = cumulative_probs > top_p
403
+ # Shift the indices to the right to keep also the first token
404
+ # above the threshold
405
+ sorted_indices_to_remove[..., 1:] = sorted_indices_to_remove[..., :-1].clone()
406
+ sorted_indices_to_remove[..., 0] = 0
407
+ for i in range(sorted_indices.size(0)):
408
+ indices_to_remove = sorted_indices[i][sorted_indices_to_remove[i]]
409
+ logits[i][indices_to_remove] = filter_value
410
+
411
+ return logits
412
+
413
+
414
+ def switch(val1, val2, boolean):
415
+ boolean = boolean.type_as(val1)
416
+ return (1 - boolean) * val1 + boolean * val2
tokenization_qwen.py ADDED
@@ -0,0 +1,246 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Copyright (c) Alibaba Cloud.
2
+ #
3
+ # This source code is licensed under the license found in the
4
+ # LICENSE file in the root directory of this source tree.
5
+
6
+ """Tokenization classes for QWen."""
7
+
8
+ import base64
9
+ import logging
10
+ import os
11
+ import unicodedata
12
+ from typing import Collection, Dict, List, Set, Tuple, Union
13
+
14
+ import tiktoken
15
+ from transformers import PreTrainedTokenizer, AddedToken
16
+
17
+ logger = logging.getLogger(__name__)
18
+
19
+
20
+ VOCAB_FILES_NAMES = {"vocab_file": "qwen.tiktoken"}
21
+
22
+ PAT_STR = r"""(?i:'s|'t|'re|'ve|'m|'ll|'d)|[^\r\n\p{L}\p{N}]?\p{L}+|\p{N}| ?[^\s\p{L}\p{N}]+[\r\n]*|\s*[\r\n]+|\s+(?!\S)|\s+"""
23
+ ENDOFTEXT = "<|endoftext|>"
24
+ IMSTART = "<|im_start|>"
25
+ IMEND = "<|im_end|>"
26
+ # as the default behavior is changed to allow special tokens in
27
+ # regular texts, the surface forms of special tokens need to be
28
+ # as different as possible to minimize the impact
29
+ EXTRAS = tuple((f"<|extra_{i}|>" for i in range(205)))
30
+ SPECIAL_TOKENS = (
31
+ ENDOFTEXT,
32
+ IMSTART,
33
+ IMEND,
34
+ ) + EXTRAS
35
+
36
+
37
+ def _load_tiktoken_bpe(tiktoken_bpe_file: str) -> Dict[bytes, int]:
38
+ with open(tiktoken_bpe_file, "rb") as f:
39
+ contents = f.read()
40
+ return {
41
+ base64.b64decode(token): int(rank)
42
+ for token, rank in (line.split() for line in contents.splitlines() if line)
43
+ }
44
+
45
+ class QWenTokenizer(PreTrainedTokenizer):
46
+ """QWen tokenizer."""
47
+
48
+ vocab_files_names = VOCAB_FILES_NAMES
49
+
50
+ def __init__(
51
+ self,
52
+ vocab_file,
53
+ errors="replace",
54
+ **kwargs,
55
+ ):
56
+ super().__init__(**kwargs)
57
+
58
+ self.errors = errors # how to handle errors in decoding
59
+
60
+ self.mergeable_ranks = _load_tiktoken_bpe(vocab_file) # type: dict[bytes, int]
61
+ self.special_tokens = {
62
+ token: index
63
+ for index, token in enumerate(
64
+ SPECIAL_TOKENS, start=len(self.mergeable_ranks)
65
+ )
66
+ }
67
+
68
+ enc = tiktoken.Encoding(
69
+ "Qwen",
70
+ pat_str=PAT_STR,
71
+ mergeable_ranks=self.mergeable_ranks,
72
+ special_tokens=self.special_tokens,
73
+ )
74
+ assert (
75
+ len(self.mergeable_ranks) + len(self.special_tokens) == enc.n_vocab
76
+ ), f"{len(self.mergeable_ranks) + len(self.special_tokens)} != {enc.n_vocab} in encoding"
77
+
78
+ self.decoder = {
79
+ v: k for k, v in self.mergeable_ranks.items()
80
+ } # type: dict[int, bytes|str]
81
+ self.decoder.update({v: k for k, v in self.special_tokens.items()})
82
+
83
+ self.tokenizer = enc # type: tiktoken.Encoding
84
+
85
+ self.eod_id = self.tokenizer.eot_token
86
+ self.im_start_id = self.special_tokens[IMSTART]
87
+ self.im_end_id = self.special_tokens[IMEND]
88
+
89
+ def __getstate__(self):
90
+ # for pickle lovers
91
+ state = self.__dict__.copy()
92
+ del state['tokenizer']
93
+ return state
94
+
95
+ def __setstate__(self, state):
96
+ # tokenizer is not python native; don't pass it; rebuild it
97
+ self.__dict__.update(state)
98
+ enc = tiktoken.Encoding(
99
+ "Qwen",
100
+ pat_str=PAT_STR,
101
+ mergeable_ranks=self.mergeable_ranks,
102
+ special_tokens=self.special_tokens,
103
+ )
104
+ self.tokenizer = enc
105
+
106
+
107
+ def __len__(self) -> int:
108
+ return self.tokenizer.n_vocab
109
+
110
+ def get_vocab(self) -> Dict[bytes, int]:
111
+ return self.mergeable_ranks
112
+
113
+ def convert_tokens_to_ids(
114
+ self, tokens: Union[bytes, str, List[Union[bytes, str]]]
115
+ ) -> List[int]:
116
+ ids = []
117
+ if isinstance(tokens, (str, bytes)):
118
+ if tokens in self.special_tokens:
119
+ return self.special_tokens[tokens]
120
+ else:
121
+ return self.mergeable_ranks.get(tokens)
122
+ for token in tokens:
123
+ if token in self.special_tokens:
124
+ ids.append(self.special_tokens[token])
125
+ else:
126
+ ids.append(self.mergeable_ranks.get(token))
127
+ return ids
128
+
129
+ def _add_tokens(self, new_tokens: Union[List[str], List[AddedToken]], special_tokens: bool = False) -> int:
130
+ if not special_tokens and new_tokens:
131
+ raise ValueError('Adding regular tokens is not supported')
132
+ for token in new_tokens:
133
+ surface_form = token.content if isinstance(token, AddedToken) else token
134
+ if surface_form not in SPECIAL_TOKENS:
135
+ raise ValueError('Adding unknown special tokens is not supported')
136
+ return 0
137
+
138
+ def save_vocabulary(self, save_directory: str, **kwargs) -> Tuple[str]:
139
+ """
140
+ Save only the vocabulary of the tokenizer (vocabulary).
141
+
142
+ Returns:
143
+ `Tuple(str)`: Paths to the files saved.
144
+ """
145
+ file_path = os.path.join(save_directory, "qwen.tiktoken")
146
+ with open(file_path, "w", encoding="utf8") as w:
147
+ for k, v in self.mergeable_ranks.items():
148
+ line = base64.b64encode(k).decode("utf8") + " " + str(v) + "\n"
149
+ w.write(line)
150
+ return (file_path,)
151
+
152
+ def tokenize(
153
+ self,
154
+ text: str,
155
+ allowed_special: Union[Set, str] = "all",
156
+ disallowed_special: Union[Collection, str] = (),
157
+ **kwargs,
158
+ ) -> List[Union[bytes, str]]:
159
+ """
160
+ Converts a string in a sequence of tokens.
161
+
162
+ Args:
163
+ text (`str`):
164
+ The sequence to be encoded.
165
+ allowed_special (`Literal["all"]` or `set`):
166
+ The surface forms of the tokens to be encoded as special tokens in regular texts.
167
+ Default to "all".
168
+ disallowed_special (`Literal["all"]` or `Collection`):
169
+ The surface forms of the tokens that should not be in regular texts and trigger errors.
170
+ Default to an empty tuple.
171
+
172
+ kwargs (additional keyword arguments, *optional*):
173
+ Will be passed to the underlying model specific encode method.
174
+
175
+ Returns:
176
+ `List[bytes|str]`: The list of tokens.
177
+ """
178
+ tokens = []
179
+ text = unicodedata.normalize("NFC", text)
180
+
181
+ # this implementation takes a detour: text -> token id -> token surface forms
182
+ for t in self.tokenizer.encode(
183
+ text, allowed_special=allowed_special, disallowed_special=disallowed_special
184
+ ):
185
+ tokens.append(self.decoder[t])
186
+ return tokens
187
+
188
+ def convert_tokens_to_string(self, tokens: List[Union[bytes, str]]) -> str:
189
+ """
190
+ Converts a sequence of tokens in a single string.
191
+ """
192
+ text = ""
193
+ temp = b""
194
+ for t in tokens:
195
+ if isinstance(t, str):
196
+ if temp:
197
+ text += temp.decode("utf-8", errors=self.errors)
198
+ temp = b""
199
+ text += t
200
+ elif isinstance(t, bytes):
201
+ temp += t
202
+ else:
203
+ raise TypeError("token should only be of type types or str")
204
+ if temp:
205
+ text += temp.decode("utf-8", errors=self.errors)
206
+ return text
207
+
208
+ @property
209
+ def vocab_size(self):
210
+ return self.tokenizer.n_vocab
211
+
212
+ def _convert_id_to_token(self, index: int) -> Union[bytes, str]:
213
+ """Converts an id to a token, special tokens included"""
214
+ if index in self.decoder:
215
+ return self.decoder[index]
216
+ raise ValueError("unknown ids")
217
+
218
+ def _convert_token_to_id(self, token: Union[bytes, str]) -> int:
219
+ """Converts a token to an id using the vocab, special tokens included"""
220
+ if token in self.special_tokens:
221
+ return self.special_tokens[token]
222
+ if token in self.mergeable_ranks:
223
+ return self.mergeable_ranks[token]
224
+ raise ValueError("unknown token")
225
+
226
+ def _tokenize(self, text: str, **kwargs):
227
+ """
228
+ Converts a string in a sequence of tokens (string), using the tokenizer. Split in words for word-based
229
+ vocabulary or sub-words for sub-word-based vocabularies (BPE/SentencePieces/WordPieces).
230
+
231
+ Do NOT take care of added tokens.
232
+ """
233
+ raise NotImplementedError
234
+
235
+ def _decode(
236
+ self,
237
+ token_ids: Union[int, List[int]],
238
+ skip_special_tokens: bool = False,
239
+ errors: str = None,
240
+ **kwargs,
241
+ ) -> str:
242
+ if isinstance(token_ids, int):
243
+ token_ids = [token_ids]
244
+ if skip_special_tokens:
245
+ token_ids = [i for i in token_ids if i < self.eod_id]
246
+ return self.tokenizer.decode(token_ids, errors=errors or self.errors)
tokenizer_config.json CHANGED
@@ -1,14 +1,12 @@
1
  {
2
  "auto_map": {
3
  "AutoTokenizer": [
4
- "tokenization_chatglm.ChatGLMTokenizer",
5
  null
6
  ]
7
  },
8
- "clean_up_tokenization_spaces": false,
9
- "do_lower_case": false,
10
- "model_max_length": 1000000000000000019884624838656,
11
  "padding_side": "right",
12
- "remove_space": false,
13
- "tokenizer_class": "ChatGLMTokenizer"
14
  }
 
1
  {
2
  "auto_map": {
3
  "AutoTokenizer": [
4
+ "tokenization_qwen.QWenTokenizer",
5
  null
6
  ]
7
  },
8
+ "clean_up_tokenization_spaces": true,
9
+ "model_max_length": 8192,
 
10
  "padding_side": "right",
11
+ "tokenizer_class": "QWenTokenizer"
 
12
  }