yangapku commited on
Commit
5d8f58f
1 Parent(s): 41f8a43

init model

Browse files
config.json ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "architectures": [
3
+ "QWenLMHeadModel"
4
+ ],
5
+ "auto_map": {
6
+ "AutoConfig": "configuration_qwen.QWenConfig",
7
+ "AutoModelForCausalLM": "modeling_qwen.QWenLMHeadModel"
8
+ },
9
+ "attn_dropout_prob": 0.0,
10
+ "bf16": false,
11
+ "emb_dropout_prob": 0.0,
12
+ "fp16": false,
13
+ "fp32": false,
14
+ "hidden_size": 2048,
15
+ "intermediate_size": 11008,
16
+ "initializer_range": 0.02,
17
+ "kv_channels": 128,
18
+ "layer_norm_epsilon": 1e-06,
19
+ "max_position_embeddings": 8192,
20
+ "model_type": "qwen",
21
+ "no_bias": true,
22
+ "num_attention_heads": 16,
23
+ "num_hidden_layers": 24,
24
+ "onnx_safe": null,
25
+ "rotary_emb_base": 10000,
26
+ "rotary_pct": 1.0,
27
+ "scale_attn_weights": true,
28
+ "seq_length": 8192,
29
+ "tie_word_embeddings": false,
30
+ "tokenizer_class": "QWenTokenizer",
31
+ "transformers_version": "4.32.0",
32
+ "use_cache": true,
33
+ "use_dynamic_ntk": true,
34
+ "use_flash_attn": "auto",
35
+ "use_logn_attn": true,
36
+ "vocab_size": 151936
37
+ }
configuration_qwen.py ADDED
@@ -0,0 +1,71 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ softmax_in_fp32=False,
41
+ **kwargs,
42
+ ):
43
+ self.vocab_size = vocab_size
44
+ self.hidden_size = hidden_size
45
+ self.intermediate_size = intermediate_size
46
+ self.num_hidden_layers = num_hidden_layers
47
+ self.num_attention_heads = num_attention_heads
48
+ self.emb_dropout_prob = emb_dropout_prob
49
+ self.attn_dropout_prob = attn_dropout_prob
50
+ self.layer_norm_epsilon = layer_norm_epsilon
51
+ self.initializer_range = initializer_range
52
+ self.scale_attn_weights = scale_attn_weights
53
+ self.use_cache = use_cache
54
+ self.max_position_embeddings = max_position_embeddings
55
+ self.bf16 = bf16
56
+ self.fp16 = fp16
57
+ self.fp32 = fp32
58
+ self.kv_channels = kv_channels
59
+ self.rotary_pct = rotary_pct
60
+ self.rotary_emb_base = rotary_emb_base
61
+ self.use_dynamic_ntk = use_dynamic_ntk
62
+ self.use_logn_attn = use_logn_attn
63
+ self.use_flash_attn = use_flash_attn
64
+ self.no_bias = no_bias
65
+ self.use_cache_quantization = use_cache_quantization
66
+ self.use_cache_kernel = use_cache_kernel
67
+ self.softmax_in_fp32 = softmax_in_fp32
68
+ super().__init__(
69
+ tie_word_embeddings=tie_word_embeddings,
70
+ **kwargs
71
+ )
cpp_kernels.py ADDED
@@ -0,0 +1,55 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from torch.utils import cpp_extension
2
+ import pathlib
3
+ import os
4
+ import subprocess
5
+
6
+ def _get_cuda_bare_metal_version(cuda_dir):
7
+ raw_output = subprocess.check_output([cuda_dir + "/bin/nvcc", "-V"],
8
+ universal_newlines=True)
9
+ output = raw_output.split()
10
+ release_idx = output.index("release") + 1
11
+ release = output[release_idx].split(".")
12
+ bare_metal_major = release[0]
13
+ bare_metal_minor = release[1][0]
14
+
15
+ return raw_output, bare_metal_major, bare_metal_minor
16
+
17
+ def _create_build_dir(buildpath):
18
+ try:
19
+ os.mkdir(buildpath)
20
+ except OSError:
21
+ if not os.path.isdir(buildpath):
22
+ print(f"Creation of the build directory {buildpath} failed")
23
+
24
+ # Check if cuda 11 is installed for compute capability 8.0
25
+ cc_flag = []
26
+ _, bare_metal_major, bare_metal_minor = _get_cuda_bare_metal_version(cpp_extension.CUDA_HOME)
27
+ if int(bare_metal_major) >= 11:
28
+ cc_flag.append('-gencode')
29
+ cc_flag.append('arch=compute_80,code=sm_80')
30
+ if int(bare_metal_minor) >= 7:
31
+ cc_flag.append('-gencode')
32
+ cc_flag.append('arch=compute_90,code=sm_90')
33
+
34
+ # Build path
35
+ srcpath = pathlib.Path(__file__).parent.absolute()
36
+ buildpath = srcpath / 'build'
37
+ _create_build_dir(buildpath)
38
+
39
+ def _cpp_extention_load_helper(name, sources, extra_cuda_flags):
40
+ return cpp_extension.load(
41
+ name=name,
42
+ sources=sources,
43
+ build_directory=buildpath,
44
+ extra_cflags=['-O3', ],
45
+ extra_cuda_cflags=['-O3',
46
+ '-gencode', 'arch=compute_70,code=sm_70',
47
+ '--use_fast_math'] + extra_cuda_flags + cc_flag,
48
+ verbose=1
49
+ )
50
+
51
+ extra_flags = []
52
+
53
+ cache_autogptq_cuda_256_sources = ["./cache_autogptq_cuda_256.cpp",
54
+ "./cache_autogptq_cuda_kernel_256.cu"]
55
+ cache_autogptq_cuda_256 = _cpp_extention_load_helper("cache_autogptq_cuda_256", cache_autogptq_cuda_256_sources, extra_flags)
generation_config.json ADDED
@@ -0,0 +1,12 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "chat_format": "chatml",
3
+ "eos_token_id": 151643,
4
+ "pad_token_id": 151643,
5
+ "max_window_size": 6144,
6
+ "max_new_tokens": 512,
7
+ "do_sample": true,
8
+ "top_k": 0,
9
+ "top_p": 0.8,
10
+ "repetition_penalty": 1.1,
11
+ "transformers_version": "4.31.0"
12
+ }
model-00001-of-00002.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:afe102dfe02cbf973a5647a4ccef97dad0f088ae12a749e67000f25af3c6c997
3
+ size 2039259008
model-00002-of-00002.safetensors ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:f710454106cacb0bee8138866573f1ecd453c3cd55f122b74e70a0e392d21435
3
+ size 1634419264
model.safetensors.index.json ADDED
@@ -0,0 +1,202 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "metadata": {
3
+ "total_size": 3673657344
4
+ },
5
+ "weight_map": {
6
+ "lm_head.weight": "model-00002-of-00002.safetensors",
7
+ "transformer.h.0.attn.c_attn.bias": "model-00001-of-00002.safetensors",
8
+ "transformer.h.0.attn.c_attn.weight": "model-00001-of-00002.safetensors",
9
+ "transformer.h.0.attn.c_proj.weight": "model-00001-of-00002.safetensors",
10
+ "transformer.h.0.ln_1.weight": "model-00001-of-00002.safetensors",
11
+ "transformer.h.0.ln_2.weight": "model-00001-of-00002.safetensors",
12
+ "transformer.h.0.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
13
+ "transformer.h.0.mlp.w1.weight": "model-00001-of-00002.safetensors",
14
+ "transformer.h.0.mlp.w2.weight": "model-00001-of-00002.safetensors",
15
+ "transformer.h.1.attn.c_attn.bias": "model-00001-of-00002.safetensors",
16
+ "transformer.h.1.attn.c_attn.weight": "model-00001-of-00002.safetensors",
17
+ "transformer.h.1.attn.c_proj.weight": "model-00001-of-00002.safetensors",
18
+ "transformer.h.1.ln_1.weight": "model-00001-of-00002.safetensors",
19
+ "transformer.h.1.ln_2.weight": "model-00001-of-00002.safetensors",
20
+ "transformer.h.1.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
21
+ "transformer.h.1.mlp.w1.weight": "model-00001-of-00002.safetensors",
22
+ "transformer.h.1.mlp.w2.weight": "model-00001-of-00002.safetensors",
23
+ "transformer.h.10.attn.c_attn.bias": "model-00001-of-00002.safetensors",
24
+ "transformer.h.10.attn.c_attn.weight": "model-00001-of-00002.safetensors",
25
+ "transformer.h.10.attn.c_proj.weight": "model-00001-of-00002.safetensors",
26
+ "transformer.h.10.ln_1.weight": "model-00001-of-00002.safetensors",
27
+ "transformer.h.10.ln_2.weight": "model-00001-of-00002.safetensors",
28
+ "transformer.h.10.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
29
+ "transformer.h.10.mlp.w1.weight": "model-00001-of-00002.safetensors",
30
+ "transformer.h.10.mlp.w2.weight": "model-00001-of-00002.safetensors",
31
+ "transformer.h.11.attn.c_attn.bias": "model-00001-of-00002.safetensors",
32
+ "transformer.h.11.attn.c_attn.weight": "model-00001-of-00002.safetensors",
33
+ "transformer.h.11.attn.c_proj.weight": "model-00001-of-00002.safetensors",
34
+ "transformer.h.11.ln_1.weight": "model-00001-of-00002.safetensors",
35
+ "transformer.h.11.ln_2.weight": "model-00001-of-00002.safetensors",
36
+ "transformer.h.11.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
37
+ "transformer.h.11.mlp.w1.weight": "model-00001-of-00002.safetensors",
38
+ "transformer.h.11.mlp.w2.weight": "model-00001-of-00002.safetensors",
39
+ "transformer.h.12.attn.c_attn.bias": "model-00001-of-00002.safetensors",
40
+ "transformer.h.12.attn.c_attn.weight": "model-00001-of-00002.safetensors",
41
+ "transformer.h.12.attn.c_proj.weight": "model-00001-of-00002.safetensors",
42
+ "transformer.h.12.ln_1.weight": "model-00001-of-00002.safetensors",
43
+ "transformer.h.12.ln_2.weight": "model-00001-of-00002.safetensors",
44
+ "transformer.h.12.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
45
+ "transformer.h.12.mlp.w1.weight": "model-00001-of-00002.safetensors",
46
+ "transformer.h.12.mlp.w2.weight": "model-00001-of-00002.safetensors",
47
+ "transformer.h.13.attn.c_attn.bias": "model-00001-of-00002.safetensors",
48
+ "transformer.h.13.attn.c_attn.weight": "model-00001-of-00002.safetensors",
49
+ "transformer.h.13.attn.c_proj.weight": "model-00001-of-00002.safetensors",
50
+ "transformer.h.13.ln_1.weight": "model-00001-of-00002.safetensors",
51
+ "transformer.h.13.ln_2.weight": "model-00001-of-00002.safetensors",
52
+ "transformer.h.13.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
53
+ "transformer.h.13.mlp.w1.weight": "model-00001-of-00002.safetensors",
54
+ "transformer.h.13.mlp.w2.weight": "model-00001-of-00002.safetensors",
55
+ "transformer.h.14.attn.c_attn.bias": "model-00002-of-00002.safetensors",
56
+ "transformer.h.14.attn.c_attn.weight": "model-00002-of-00002.safetensors",
57
+ "transformer.h.14.attn.c_proj.weight": "model-00002-of-00002.safetensors",
58
+ "transformer.h.14.ln_1.weight": "model-00001-of-00002.safetensors",
59
+ "transformer.h.14.ln_2.weight": "model-00002-of-00002.safetensors",
60
+ "transformer.h.14.mlp.c_proj.weight": "model-00002-of-00002.safetensors",
61
+ "transformer.h.14.mlp.w1.weight": "model-00002-of-00002.safetensors",
62
+ "transformer.h.14.mlp.w2.weight": "model-00002-of-00002.safetensors",
63
+ "transformer.h.15.attn.c_attn.bias": "model-00002-of-00002.safetensors",
64
+ "transformer.h.15.attn.c_attn.weight": "model-00002-of-00002.safetensors",
65
+ "transformer.h.15.attn.c_proj.weight": "model-00002-of-00002.safetensors",
66
+ "transformer.h.15.ln_1.weight": "model-00002-of-00002.safetensors",
67
+ "transformer.h.15.ln_2.weight": "model-00002-of-00002.safetensors",
68
+ "transformer.h.15.mlp.c_proj.weight": "model-00002-of-00002.safetensors",
69
+ "transformer.h.15.mlp.w1.weight": "model-00002-of-00002.safetensors",
70
+ "transformer.h.15.mlp.w2.weight": "model-00002-of-00002.safetensors",
71
+ "transformer.h.16.attn.c_attn.bias": "model-00002-of-00002.safetensors",
72
+ "transformer.h.16.attn.c_attn.weight": "model-00002-of-00002.safetensors",
73
+ "transformer.h.16.attn.c_proj.weight": "model-00002-of-00002.safetensors",
74
+ "transformer.h.16.ln_1.weight": "model-00002-of-00002.safetensors",
75
+ "transformer.h.16.ln_2.weight": "model-00002-of-00002.safetensors",
76
+ "transformer.h.16.mlp.c_proj.weight": "model-00002-of-00002.safetensors",
77
+ "transformer.h.16.mlp.w1.weight": "model-00002-of-00002.safetensors",
78
+ "transformer.h.16.mlp.w2.weight": "model-00002-of-00002.safetensors",
79
+ "transformer.h.17.attn.c_attn.bias": "model-00002-of-00002.safetensors",
80
+ "transformer.h.17.attn.c_attn.weight": "model-00002-of-00002.safetensors",
81
+ "transformer.h.17.attn.c_proj.weight": "model-00002-of-00002.safetensors",
82
+ "transformer.h.17.ln_1.weight": "model-00002-of-00002.safetensors",
83
+ "transformer.h.17.ln_2.weight": "model-00002-of-00002.safetensors",
84
+ "transformer.h.17.mlp.c_proj.weight": "model-00002-of-00002.safetensors",
85
+ "transformer.h.17.mlp.w1.weight": "model-00002-of-00002.safetensors",
86
+ "transformer.h.17.mlp.w2.weight": "model-00002-of-00002.safetensors",
87
+ "transformer.h.18.attn.c_attn.bias": "model-00002-of-00002.safetensors",
88
+ "transformer.h.18.attn.c_attn.weight": "model-00002-of-00002.safetensors",
89
+ "transformer.h.18.attn.c_proj.weight": "model-00002-of-00002.safetensors",
90
+ "transformer.h.18.ln_1.weight": "model-00002-of-00002.safetensors",
91
+ "transformer.h.18.ln_2.weight": "model-00002-of-00002.safetensors",
92
+ "transformer.h.18.mlp.c_proj.weight": "model-00002-of-00002.safetensors",
93
+ "transformer.h.18.mlp.w1.weight": "model-00002-of-00002.safetensors",
94
+ "transformer.h.18.mlp.w2.weight": "model-00002-of-00002.safetensors",
95
+ "transformer.h.19.attn.c_attn.bias": "model-00002-of-00002.safetensors",
96
+ "transformer.h.19.attn.c_attn.weight": "model-00002-of-00002.safetensors",
97
+ "transformer.h.19.attn.c_proj.weight": "model-00002-of-00002.safetensors",
98
+ "transformer.h.19.ln_1.weight": "model-00002-of-00002.safetensors",
99
+ "transformer.h.19.ln_2.weight": "model-00002-of-00002.safetensors",
100
+ "transformer.h.19.mlp.c_proj.weight": "model-00002-of-00002.safetensors",
101
+ "transformer.h.19.mlp.w1.weight": "model-00002-of-00002.safetensors",
102
+ "transformer.h.19.mlp.w2.weight": "model-00002-of-00002.safetensors",
103
+ "transformer.h.2.attn.c_attn.bias": "model-00001-of-00002.safetensors",
104
+ "transformer.h.2.attn.c_attn.weight": "model-00001-of-00002.safetensors",
105
+ "transformer.h.2.attn.c_proj.weight": "model-00001-of-00002.safetensors",
106
+ "transformer.h.2.ln_1.weight": "model-00001-of-00002.safetensors",
107
+ "transformer.h.2.ln_2.weight": "model-00001-of-00002.safetensors",
108
+ "transformer.h.2.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
109
+ "transformer.h.2.mlp.w1.weight": "model-00001-of-00002.safetensors",
110
+ "transformer.h.2.mlp.w2.weight": "model-00001-of-00002.safetensors",
111
+ "transformer.h.20.attn.c_attn.bias": "model-00002-of-00002.safetensors",
112
+ "transformer.h.20.attn.c_attn.weight": "model-00002-of-00002.safetensors",
113
+ "transformer.h.20.attn.c_proj.weight": "model-00002-of-00002.safetensors",
114
+ "transformer.h.20.ln_1.weight": "model-00002-of-00002.safetensors",
115
+ "transformer.h.20.ln_2.weight": "model-00002-of-00002.safetensors",
116
+ "transformer.h.20.mlp.c_proj.weight": "model-00002-of-00002.safetensors",
117
+ "transformer.h.20.mlp.w1.weight": "model-00002-of-00002.safetensors",
118
+ "transformer.h.20.mlp.w2.weight": "model-00002-of-00002.safetensors",
119
+ "transformer.h.21.attn.c_attn.bias": "model-00002-of-00002.safetensors",
120
+ "transformer.h.21.attn.c_attn.weight": "model-00002-of-00002.safetensors",
121
+ "transformer.h.21.attn.c_proj.weight": "model-00002-of-00002.safetensors",
122
+ "transformer.h.21.ln_1.weight": "model-00002-of-00002.safetensors",
123
+ "transformer.h.21.ln_2.weight": "model-00002-of-00002.safetensors",
124
+ "transformer.h.21.mlp.c_proj.weight": "model-00002-of-00002.safetensors",
125
+ "transformer.h.21.mlp.w1.weight": "model-00002-of-00002.safetensors",
126
+ "transformer.h.21.mlp.w2.weight": "model-00002-of-00002.safetensors",
127
+ "transformer.h.22.attn.c_attn.bias": "model-00002-of-00002.safetensors",
128
+ "transformer.h.22.attn.c_attn.weight": "model-00002-of-00002.safetensors",
129
+ "transformer.h.22.attn.c_proj.weight": "model-00002-of-00002.safetensors",
130
+ "transformer.h.22.ln_1.weight": "model-00002-of-00002.safetensors",
131
+ "transformer.h.22.ln_2.weight": "model-00002-of-00002.safetensors",
132
+ "transformer.h.22.mlp.c_proj.weight": "model-00002-of-00002.safetensors",
133
+ "transformer.h.22.mlp.w1.weight": "model-00002-of-00002.safetensors",
134
+ "transformer.h.22.mlp.w2.weight": "model-00002-of-00002.safetensors",
135
+ "transformer.h.23.attn.c_attn.bias": "model-00002-of-00002.safetensors",
136
+ "transformer.h.23.attn.c_attn.weight": "model-00002-of-00002.safetensors",
137
+ "transformer.h.23.attn.c_proj.weight": "model-00002-of-00002.safetensors",
138
+ "transformer.h.23.ln_1.weight": "model-00002-of-00002.safetensors",
139
+ "transformer.h.23.ln_2.weight": "model-00002-of-00002.safetensors",
140
+ "transformer.h.23.mlp.c_proj.weight": "model-00002-of-00002.safetensors",
141
+ "transformer.h.23.mlp.w1.weight": "model-00002-of-00002.safetensors",
142
+ "transformer.h.23.mlp.w2.weight": "model-00002-of-00002.safetensors",
143
+ "transformer.h.3.attn.c_attn.bias": "model-00001-of-00002.safetensors",
144
+ "transformer.h.3.attn.c_attn.weight": "model-00001-of-00002.safetensors",
145
+ "transformer.h.3.attn.c_proj.weight": "model-00001-of-00002.safetensors",
146
+ "transformer.h.3.ln_1.weight": "model-00001-of-00002.safetensors",
147
+ "transformer.h.3.ln_2.weight": "model-00001-of-00002.safetensors",
148
+ "transformer.h.3.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
149
+ "transformer.h.3.mlp.w1.weight": "model-00001-of-00002.safetensors",
150
+ "transformer.h.3.mlp.w2.weight": "model-00001-of-00002.safetensors",
151
+ "transformer.h.4.attn.c_attn.bias": "model-00001-of-00002.safetensors",
152
+ "transformer.h.4.attn.c_attn.weight": "model-00001-of-00002.safetensors",
153
+ "transformer.h.4.attn.c_proj.weight": "model-00001-of-00002.safetensors",
154
+ "transformer.h.4.ln_1.weight": "model-00001-of-00002.safetensors",
155
+ "transformer.h.4.ln_2.weight": "model-00001-of-00002.safetensors",
156
+ "transformer.h.4.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
157
+ "transformer.h.4.mlp.w1.weight": "model-00001-of-00002.safetensors",
158
+ "transformer.h.4.mlp.w2.weight": "model-00001-of-00002.safetensors",
159
+ "transformer.h.5.attn.c_attn.bias": "model-00001-of-00002.safetensors",
160
+ "transformer.h.5.attn.c_attn.weight": "model-00001-of-00002.safetensors",
161
+ "transformer.h.5.attn.c_proj.weight": "model-00001-of-00002.safetensors",
162
+ "transformer.h.5.ln_1.weight": "model-00001-of-00002.safetensors",
163
+ "transformer.h.5.ln_2.weight": "model-00001-of-00002.safetensors",
164
+ "transformer.h.5.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
165
+ "transformer.h.5.mlp.w1.weight": "model-00001-of-00002.safetensors",
166
+ "transformer.h.5.mlp.w2.weight": "model-00001-of-00002.safetensors",
167
+ "transformer.h.6.attn.c_attn.bias": "model-00001-of-00002.safetensors",
168
+ "transformer.h.6.attn.c_attn.weight": "model-00001-of-00002.safetensors",
169
+ "transformer.h.6.attn.c_proj.weight": "model-00001-of-00002.safetensors",
170
+ "transformer.h.6.ln_1.weight": "model-00001-of-00002.safetensors",
171
+ "transformer.h.6.ln_2.weight": "model-00001-of-00002.safetensors",
172
+ "transformer.h.6.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
173
+ "transformer.h.6.mlp.w1.weight": "model-00001-of-00002.safetensors",
174
+ "transformer.h.6.mlp.w2.weight": "model-00001-of-00002.safetensors",
175
+ "transformer.h.7.attn.c_attn.bias": "model-00001-of-00002.safetensors",
176
+ "transformer.h.7.attn.c_attn.weight": "model-00001-of-00002.safetensors",
177
+ "transformer.h.7.attn.c_proj.weight": "model-00001-of-00002.safetensors",
178
+ "transformer.h.7.ln_1.weight": "model-00001-of-00002.safetensors",
179
+ "transformer.h.7.ln_2.weight": "model-00001-of-00002.safetensors",
180
+ "transformer.h.7.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
181
+ "transformer.h.7.mlp.w1.weight": "model-00001-of-00002.safetensors",
182
+ "transformer.h.7.mlp.w2.weight": "model-00001-of-00002.safetensors",
183
+ "transformer.h.8.attn.c_attn.bias": "model-00001-of-00002.safetensors",
184
+ "transformer.h.8.attn.c_attn.weight": "model-00001-of-00002.safetensors",
185
+ "transformer.h.8.attn.c_proj.weight": "model-00001-of-00002.safetensors",
186
+ "transformer.h.8.ln_1.weight": "model-00001-of-00002.safetensors",
187
+ "transformer.h.8.ln_2.weight": "model-00001-of-00002.safetensors",
188
+ "transformer.h.8.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
189
+ "transformer.h.8.mlp.w1.weight": "model-00001-of-00002.safetensors",
190
+ "transformer.h.8.mlp.w2.weight": "model-00001-of-00002.safetensors",
191
+ "transformer.h.9.attn.c_attn.bias": "model-00001-of-00002.safetensors",
192
+ "transformer.h.9.attn.c_attn.weight": "model-00001-of-00002.safetensors",
193
+ "transformer.h.9.attn.c_proj.weight": "model-00001-of-00002.safetensors",
194
+ "transformer.h.9.ln_1.weight": "model-00001-of-00002.safetensors",
195
+ "transformer.h.9.ln_2.weight": "model-00001-of-00002.safetensors",
196
+ "transformer.h.9.mlp.c_proj.weight": "model-00001-of-00002.safetensors",
197
+ "transformer.h.9.mlp.w1.weight": "model-00001-of-00002.safetensors",
198
+ "transformer.h.9.mlp.w2.weight": "model-00001-of-00002.safetensors",
199
+ "transformer.ln_f.weight": "model-00002-of-00002.safetensors",
200
+ "transformer.wte.weight": "model-00001-of-00002.safetensors"
201
+ }
202
+ }
modeling_qwen.py ADDED
@@ -0,0 +1,1372 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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 copy
7
+ import importlib
8
+ import math
9
+ import pathlib
10
+ from typing import TYPE_CHECKING, Optional, Tuple, Union, Callable, List, Any, Generator
11
+
12
+ import torch
13
+ import torch.nn.functional as F
14
+ import torch.utils.checkpoint
15
+ import warnings
16
+ from torch.cuda.amp import autocast
17
+
18
+ from torch.nn import CrossEntropyLoss
19
+ from transformers import PreTrainedTokenizer, GenerationConfig, StoppingCriteriaList
20
+ from transformers.generation.logits_process import LogitsProcessorList
21
+
22
+ if TYPE_CHECKING:
23
+ from transformers.generation.streamers import BaseStreamer
24
+ from transformers.generation.utils import GenerateOutput
25
+ from transformers.modeling_outputs import (
26
+ BaseModelOutputWithPast,
27
+ CausalLMOutputWithPast,
28
+ )
29
+ from transformers.modeling_utils import PreTrainedModel
30
+ from transformers.utils import logging
31
+
32
+ try:
33
+ from einops import rearrange
34
+ except ImportError:
35
+ rearrange = None
36
+ from torch import nn
37
+
38
+ SUPPORT_CUDA = torch.cuda.is_available()
39
+ SUPPORT_BF16 = SUPPORT_CUDA and torch.cuda.is_bf16_supported()
40
+ SUPPORT_FP16 = SUPPORT_CUDA and torch.cuda.get_device_capability(0)[0] >= 7
41
+ SUPPORT_TORCH2 = hasattr(torch, '__version__') and int(torch.__version__.split(".")[0]) >= 2
42
+
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
+ seqlen_out = seqlen_q
184
+
185
+ q, k, v = [rearrange(x, "b s ... -> (b s) ...") for x in [q, k, v]]
186
+ cu_seqlens_q = torch.arange(
187
+ 0,
188
+ (batch_size + 1) * seqlen_q,
189
+ step=seqlen_q,
190
+ dtype=torch.int32,
191
+ device=q.device,
192
+ )
193
+
194
+ if batch_size > 1 and attention_mask is not None:
195
+ k, indices_k, cu_seqlens_k, seqlen_k = self.unpad_input(k, attention_mask)
196
+ if q.size(0) == v.size(0):
197
+ q = q[indices_k]
198
+ cu_seqlens_q = cu_seqlens_k
199
+ seqlen_q = seqlen_k
200
+ v = v[indices_k]
201
+ else:
202
+ cu_seqlens_k = torch.arange(
203
+ 0,
204
+ (batch_size + 1) * seqlen_k,
205
+ step=seqlen_k,
206
+ dtype=torch.int32,
207
+ device=q.device,
208
+ )
209
+
210
+ if self.training:
211
+ assert seqlen_k == seqlen_q
212
+ is_causal = self.causal
213
+ dropout_p = self.dropout_p
214
+ else:
215
+ is_causal = seqlen_q == seqlen_k
216
+ dropout_p = 0
217
+
218
+ output = flash_attn_unpadded_func(
219
+ q,
220
+ k,
221
+ v,
222
+ cu_seqlens_q,
223
+ cu_seqlens_k,
224
+ seqlen_q,
225
+ seqlen_k,
226
+ dropout_p,
227
+ softmax_scale=self.softmax_scale,
228
+ causal=is_causal,
229
+ )
230
+ if batch_size > 1 and attention_mask is not None and seqlen_q == seqlen_k:
231
+ output = self.pad_input(output, indices_k, batch_size, seqlen_out)
232
+ else:
233
+ new_shape = (batch_size, output.shape[0] // batch_size) + output.shape[1:]
234
+ output = output.view(new_shape)
235
+ return output
236
+
237
+
238
+ class QWenAttention(nn.Module):
239
+ def __init__(self, config):
240
+ super().__init__()
241
+
242
+ self.register_buffer("masked_bias", torch.tensor(-1e4), persistent=False)
243
+ self.seq_length = config.seq_length
244
+
245
+ self.hidden_size = config.hidden_size
246
+ self.split_size = config.hidden_size
247
+ self.num_heads = config.num_attention_heads
248
+ self.head_dim = self.hidden_size // self.num_heads
249
+
250
+ self.use_flash_attn = config.use_flash_attn
251
+ self.scale_attn_weights = True
252
+
253
+ self.projection_size = config.kv_channels * config.num_attention_heads
254
+
255
+ assert self.projection_size % config.num_attention_heads == 0
256
+ self.hidden_size_per_attention_head = (
257
+ self.projection_size // config.num_attention_heads
258
+ )
259
+
260
+ self.c_attn = nn.Linear(config.hidden_size, 3 * self.projection_size)
261
+
262
+ self.c_proj = nn.Linear(
263
+ config.hidden_size, self.projection_size, bias=not config.no_bias
264
+ )
265
+
266
+ self.is_fp32 = not (config.bf16 or config.fp16)
267
+ if (
268
+ self.use_flash_attn
269
+ and flash_attn_unpadded_func is not None
270
+ and not self.is_fp32
271
+ ):
272
+ self.core_attention_flash = FlashSelfAttention(
273
+ causal=True, attention_dropout=config.attn_dropout_prob
274
+ )
275
+ self.bf16 = config.bf16
276
+
277
+ self.use_dynamic_ntk = config.use_dynamic_ntk
278
+ self.use_logn_attn = config.use_logn_attn
279
+
280
+ logn_list = [
281
+ math.log(i, self.seq_length) if i > self.seq_length else 1
282
+ for i in range(1, 32768)
283
+ ]
284
+ logn_tensor = torch.tensor(logn_list)[None, :, None, None]
285
+ self.register_buffer("logn_tensor", logn_tensor, persistent=False)
286
+
287
+ self.attn_dropout = nn.Dropout(config.attn_dropout_prob)
288
+ self.softmax_in_fp32 = config.softmax_in_fp32 if hasattr(config, 'softmax_in_fp32') else False
289
+ self.use_cache_quantization = config.use_cache_quantization if hasattr(config, 'use_cache_quantization') else False
290
+ self.use_cache_kernel = config.use_cache_kernel if hasattr(config,'use_cache_kernel') else False
291
+ cache_dtype = torch.float
292
+ if self.bf16:
293
+ cache_dtype=torch.bfloat16
294
+ elif config.fp16:
295
+ cache_dtype = torch.float16
296
+ self.cache_qmax = torch.tensor(torch.iinfo(torch.uint8).max, dtype=cache_dtype)
297
+ self.cache_qmin = torch.tensor(torch.iinfo(torch.uint8).min, dtype=cache_dtype)
298
+
299
+ if config.use_cache_quantization and config.use_cache_kernel:
300
+ # pre check if the support files existing
301
+ module_root = pathlib.Path(__file__).parent
302
+ src_files = ("cache_autogptq_cuda_256.cpp", "cache_autogptq_cuda_kernel_256.cu")
303
+ if any(not (module_root/src).is_file() for src in src_files):
304
+ warnings.warn("KV cache kernel source files (.cpp and .cu) not found.")
305
+ self.cache_kernels = None
306
+ else:
307
+ try:
308
+ from .cpp_kernels import cache_autogptq_cuda_256
309
+ self.cache_kernels = cache_autogptq_cuda_256
310
+ except ImportError:
311
+ warnings.warn("Failed to import KV cache kernels.")
312
+ self.cache_kernels = None
313
+
314
+ def _attn(self, query, key, value, registered_causal_mask, attention_mask=None, head_mask=None):
315
+ device = query.device
316
+ if self.use_cache_quantization:
317
+ qk, qk_scale, qk_zero = key
318
+ if self.use_cache_kernel and self.cache_kernels is not None:
319
+ shape = query.shape[:-1] + (qk.shape[-2],)
320
+ attn_weights = torch.zeros(shape, dtype=torch.float16, device=device)
321
+ self.cache_kernels.vecquant8matmul_batched_faster_old(
322
+ query.contiguous() if query.dtype == torch.float16 else query.to(torch.float16).contiguous(),
323
+ qk.transpose(-1, -2).contiguous(),
324
+ attn_weights,
325
+ qk_scale.contiguous() if qk_scale.dtype == torch.float16 else qk_scale.to(torch.float16).contiguous(),
326
+ qk_zero.contiguous()if qk_zero.dtype == torch.float16 else qk_zero.to(torch.float16).contiguous())
327
+ # attn_weights = attn_weights.to(query.dtype).contiguous()
328
+ else:
329
+ key = dequantize_cache_torch(qk, qk_scale, qk_zero)
330
+ attn_weights = torch.matmul(query, key.transpose(-1, -2))
331
+ else:
332
+ attn_weights = torch.matmul(query, key.transpose(-1, -2))
333
+
334
+ if self.scale_attn_weights:
335
+ if self.use_cache_quantization:
336
+ size_temp = value[0].size(-1)
337
+ else:
338
+ size_temp = value.size(-1)
339
+ attn_weights = attn_weights / torch.full(
340
+ [],
341
+ size_temp ** 0.5,
342
+ dtype=attn_weights.dtype,
343
+ device=attn_weights.device,
344
+ )
345
+ if self.use_cache_quantization:
346
+ query_length, key_length = query.size(-2), key[0].size(-2)
347
+ else:
348
+ query_length, key_length = query.size(-2), key.size(-2)
349
+ causal_mask = registered_causal_mask[
350
+ :, :, key_length - query_length : key_length, :key_length
351
+ ]
352
+ mask_value = torch.finfo(attn_weights.dtype).min
353
+ mask_value = torch.full([], mask_value, dtype=attn_weights.dtype).to(
354
+ attn_weights.device
355
+ )
356
+ attn_weights = torch.where(
357
+ causal_mask, attn_weights.to(attn_weights.dtype), mask_value
358
+ )
359
+
360
+ if attention_mask is not None:
361
+ attn_weights = attn_weights + attention_mask
362
+
363
+ if self.softmax_in_fp32:
364
+ attn_weights = nn.functional.softmax(attn_weights.float(), dim=-1)
365
+ else:
366
+ attn_weights = nn.functional.softmax(attn_weights, dim=-1)
367
+
368
+ attn_weights = attn_weights.type(query.dtype)
369
+ attn_weights = self.attn_dropout(attn_weights)
370
+
371
+ if head_mask is not None:
372
+ attn_weights = attn_weights * head_mask
373
+
374
+ if self.use_cache_quantization:
375
+ qv, qv_scale, qv_zero = value
376
+ if self.use_cache_kernel and self.cache_kernels is not None:
377
+ shape = attn_weights.shape[:-1] + (query.shape[-1],)
378
+ attn_output = torch.zeros(shape, dtype=torch.float16, device=device)
379
+ self.cache_kernels.vecquant8matmul_batched_column_compression_faster_old(
380
+ attn_weights.contiguous() if attn_weights.dtype == torch.float16 else attn_weights.to(torch.float16).contiguous(),
381
+ qv.contiguous(), # dtype: int32
382
+ attn_output,
383
+ qv_scale.contiguous() if qv_scale.dtype == torch.float16 else qv_scale.to(torch.float16).contiguous(),
384
+ qv_zero.contiguous() if qv_zero.dtype == torch.float16 else qv_zero.to(torch.float16).contiguous())
385
+ if attn_output.dtype != query.dtype:
386
+ attn_output = attn_output.to(query.dtype)
387
+ attn_weights = attn_weights.to(query.dtype)
388
+ else:
389
+ value = dequantize_cache_torch(qv, qv_scale, qv_zero)
390
+ attn_output = torch.matmul(attn_weights, value)
391
+ else:
392
+ attn_output = torch.matmul(attn_weights, value)
393
+
394
+ attn_output = attn_output.transpose(1, 2)
395
+
396
+ return attn_output, attn_weights
397
+
398
+ def _split_heads(self, tensor, num_heads, attn_head_size):
399
+ new_shape = tensor.size()[:-1] + (num_heads, attn_head_size)
400
+ tensor = tensor.view(new_shape)
401
+ return tensor
402
+
403
+ def _merge_heads(self, tensor, num_heads, attn_head_size):
404
+ tensor = tensor.contiguous()
405
+ new_shape = tensor.size()[:-2] + (num_heads * attn_head_size,)
406
+ return tensor.view(new_shape)
407
+
408
+ def forward(
409
+ self,
410
+ hidden_states: Optional[Tuple[torch.FloatTensor]],
411
+ rotary_pos_emb_list: Optional[List[List[torch.Tensor]]] = None,
412
+ layer_past: Optional[Tuple[torch.Tensor]] = None,
413
+ attention_mask: Optional[torch.FloatTensor] = None,
414
+ head_mask: Optional[torch.FloatTensor] = None,
415
+ encoder_hidden_states: Optional[torch.Tensor] = None,
416
+ encoder_attention_mask: Optional[torch.FloatTensor] = None,
417
+ output_attentions: Optional[bool] = False,
418
+ use_cache: Optional[bool] = False,
419
+ ):
420
+ mixed_x_layer = self.c_attn(hidden_states)
421
+
422
+ query, key, value = mixed_x_layer.split(self.split_size, dim=2)
423
+
424
+ query = self._split_heads(query, self.num_heads, self.head_dim)
425
+ key = self._split_heads(key, self.num_heads, self.head_dim)
426
+ value = self._split_heads(value, self.num_heads, self.head_dim)
427
+
428
+ if rotary_pos_emb_list is not None:
429
+ cur_len = query.shape[1]
430
+ if len(rotary_pos_emb_list) == 1:
431
+ rotary_pos_emb = rotary_pos_emb_list[0]
432
+ rotary_pos_emb = [i[:, -cur_len:, :, :] for i in rotary_pos_emb]
433
+ rotary_pos_emb = (rotary_pos_emb,) * 2
434
+ q_pos_emb, k_pos_emb = rotary_pos_emb
435
+ # Slice the pos emb for current inference
436
+ query = apply_rotary_pos_emb(query, q_pos_emb)
437
+ key = apply_rotary_pos_emb(key, k_pos_emb)
438
+ else:
439
+ query_list = []
440
+ key_list = []
441
+ for i, rotary_pos_emb in enumerate(rotary_pos_emb_list):
442
+ rotary_pos_emb = [i[:, -cur_len:, :, :] for i in rotary_pos_emb]
443
+ rotary_pos_emb = (rotary_pos_emb,) * 2
444
+ q_pos_emb, k_pos_emb = rotary_pos_emb
445
+ # Slice the pos emb for current inference
446
+ query_list += [apply_rotary_pos_emb(query[i:i+1, :, :], q_pos_emb)]
447
+ key_list += [apply_rotary_pos_emb(key[i:i+1, :, :], k_pos_emb)]
448
+ query = torch.cat(query_list, dim=0)
449
+ key = torch.cat(key_list, dim=0)
450
+
451
+ if self.use_cache_quantization:
452
+ key = quantize_cache_v(key.permute(0, 2, 1, 3),
453
+ bits=8,
454
+ qmin=self.cache_qmin,
455
+ qmax=self.cache_qmax)
456
+ value = quantize_cache_v(value.permute(0, 2, 1, 3),
457
+ bits=8,
458
+ qmin=self.cache_qmin,
459
+ qmax=self.cache_qmax)
460
+
461
+
462
+ if layer_past is not None:
463
+ past_key, past_value = layer_past[0], layer_past[1]
464
+ if self.use_cache_quantization:
465
+ # use_cache_quantization:
466
+ # present=((q_key,key_scale,key_zero_point),
467
+ # (q_value,value_scale,value_zero_point))
468
+ key = (torch.cat((past_key[0], key[0]), dim=2),
469
+ torch.cat((past_key[1], key[1]), dim=2),
470
+ torch.cat((past_key[2], key[2]), dim=2))
471
+ value = (torch.cat((past_value[0], value[0]), dim=2),
472
+ torch.cat((past_value[1], value[1]), dim=2),
473
+ torch.cat((past_value[2], value[2]), dim=2))
474
+ else:
475
+ # not use_cache_quantization:
476
+ # present=(key,value)
477
+ key = torch.cat((past_key, key), dim=1)
478
+ value = torch.cat((past_value, value), dim=1)
479
+
480
+ if use_cache:
481
+ present = (key, value)
482
+ else:
483
+ present = None
484
+
485
+ if self.use_logn_attn and not self.training:
486
+ if self.use_cache_quantization:
487
+ seq_start = key[0].size(2) - query.size(1)
488
+ seq_end = key[0].size(2)
489
+ else:
490
+ seq_start = key.size(1) - query.size(1)
491
+ seq_end = key.size(1)
492
+ logn_tensor = self.logn_tensor[:, seq_start:seq_end, :, :].type_as(query)
493
+ query = query * logn_tensor.expand_as(query)
494
+
495
+ if (
496
+ self.use_flash_attn
497
+ and flash_attn_unpadded_func is not None
498
+ and not self.is_fp32
499
+ and query.is_cuda
500
+ ):
501
+ q, k, v = query, key, value
502
+ attn_output = self.core_attention_flash(q, k, v, attention_mask=attention_mask)
503
+ else:
504
+ registered_causal_mask = torch.tril(
505
+ torch.ones((key.size(1), key.size(1)), dtype=torch.bool, device=key.device)
506
+ ).view(1, 1, key.size(1), key.size(1))
507
+ query = query.permute(0, 2, 1, 3)
508
+ if not self.use_cache_quantization:
509
+ key = key.permute(0, 2, 1, 3)
510
+ value = value.permute(0, 2, 1, 3)
511
+ if (
512
+ registered_causal_mask is None
513
+ and self.use_flash_attn
514
+ and flash_attn_unpadded_func is not None
515
+ and not self.is_fp32
516
+ and not query.is_cuda
517
+ ):
518
+ raise Exception(_ERROR_INPUT_CPU_QUERY_WITH_FLASH_ATTN_ACTIVATED)
519
+
520
+ if not self.use_cache_quantization and SUPPORT_TORCH2:
521
+ causal_mask = registered_causal_mask[
522
+ :, :, key.size(-2) - query.size(-2): key.size(-2), :key.size(-2)
523
+ ]
524
+ if attention_mask is not None:
525
+ attention_mask = attention_mask.expand(
526
+ -1, -1, causal_mask.size(2), -1
527
+ ).masked_fill(~causal_mask, torch.finfo(query.dtype).min)
528
+ else:
529
+ attention_mask = causal_mask
530
+ attn_output = F.scaled_dot_product_attention(
531
+ query, key, value, attn_mask=attention_mask
532
+ ).transpose(1, 2)
533
+ attn_weight = None
534
+ else:
535
+ attn_output, attn_weight = self._attn(
536
+ query, key, value, registered_causal_mask, attention_mask, head_mask
537
+ )
538
+ context_layer = self._merge_heads(
539
+ attn_output, self.num_heads, self.head_dim
540
+ )
541
+
542
+ attn_output = self.c_proj(context_layer)
543
+
544
+ outputs = (attn_output, present)
545
+ if output_attentions:
546
+ if (
547
+ self.use_flash_attn
548
+ and flash_attn_unpadded_func is not None
549
+ and not self.is_fp32
550
+ ):
551
+ raise ValueError("Cannot output attentions while using flash-attn")
552
+ else:
553
+ outputs += (attn_weight,)
554
+
555
+ return outputs
556
+
557
+
558
+ class QWenMLP(nn.Module):
559
+ def __init__(self, config):
560
+ super().__init__()
561
+ self.w1 = nn.Linear(
562
+ config.hidden_size, config.intermediate_size // 2, bias=not config.no_bias
563
+ )
564
+ self.w2 = nn.Linear(
565
+ config.hidden_size, config.intermediate_size // 2, bias=not config.no_bias
566
+ )
567
+ ff_dim_in = config.intermediate_size // 2
568
+ self.c_proj = nn.Linear(ff_dim_in, config.hidden_size, bias=not config.no_bias)
569
+
570
+ def forward(self, hidden_states):
571
+ a1 = self.w1(hidden_states)
572
+ a2 = self.w2(hidden_states)
573
+ intermediate_parallel = a1 * F.silu(a2)
574
+ output = self.c_proj(intermediate_parallel)
575
+ return output
576
+
577
+ class QWenBlock(nn.Module):
578
+ def __init__(self, config):
579
+ super().__init__()
580
+ hidden_size = config.hidden_size
581
+ self.bf16 = config.bf16
582
+
583
+ self.ln_1 = RMSNorm(
584
+ hidden_size,
585
+ eps=config.layer_norm_epsilon,
586
+ )
587
+ self.attn = QWenAttention(config)
588
+ self.ln_2 = RMSNorm(
589
+ hidden_size,
590
+ eps=config.layer_norm_epsilon,
591
+ )
592
+
593
+ self.mlp = QWenMLP(config)
594
+
595
+ def forward(
596
+ self,
597
+ hidden_states: Optional[Tuple[torch.FloatTensor]],
598
+ rotary_pos_emb_list: Optional[List[List[torch.Tensor]]] = None,
599
+ layer_past: Optional[Tuple[torch.Tensor]] = None,
600
+ attention_mask: Optional[torch.FloatTensor] = None,
601
+ head_mask: Optional[torch.FloatTensor] = None,
602
+ encoder_hidden_states: Optional[torch.Tensor] = None,
603
+ encoder_attention_mask: Optional[torch.FloatTensor] = None,
604
+ use_cache: Optional[bool] = False,
605
+ output_attentions: Optional[bool] = False,
606
+ ):
607
+ layernorm_output = self.ln_1(hidden_states)
608
+
609
+ attn_outputs = self.attn(
610
+ layernorm_output,
611
+ rotary_pos_emb_list,
612
+ layer_past=layer_past,
613
+ attention_mask=attention_mask,
614
+ head_mask=head_mask,
615
+ use_cache=use_cache,
616
+ output_attentions=output_attentions,
617
+ )
618
+ attn_output = attn_outputs[0]
619
+
620
+ outputs = attn_outputs[1:]
621
+
622
+ residual = hidden_states
623
+ layernorm_input = attn_output + residual
624
+
625
+ layernorm_output = self.ln_2(layernorm_input)
626
+
627
+ residual = layernorm_input
628
+ mlp_output = self.mlp(layernorm_output)
629
+ hidden_states = residual + mlp_output
630
+
631
+ if use_cache:
632
+ outputs = (hidden_states,) + outputs
633
+ else:
634
+ outputs = (hidden_states,) + outputs[1:]
635
+
636
+ return outputs
637
+
638
+
639
+ class QWenPreTrainedModel(PreTrainedModel):
640
+ config_class = QWenConfig
641
+ base_model_prefix = "transformer"
642
+ is_parallelizable = False
643
+ supports_gradient_checkpointing = True
644
+ _no_split_modules = ["QWenBlock"]
645
+
646
+ def __init__(self, *inputs, **kwargs):
647
+ super().__init__(*inputs, **kwargs)
648
+
649
+ def _init_weights(self, module):
650
+ """Initialize the weights."""
651
+ if isinstance(module, nn.Linear):
652
+ module.weight.data.normal_(mean=0.0, std=self.config.initializer_range)
653
+ if module.bias is not None:
654
+ module.bias.data.zero_()
655
+ elif isinstance(module, nn.Embedding):
656
+ module.weight.data.normal_(mean=0.0, std=self.config.initializer_range)
657
+ if module.padding_idx is not None:
658
+ module.weight.data[module.padding_idx].zero_()
659
+ elif isinstance(module, RMSNorm):
660
+ module.weight.data.fill_(1.0)
661
+
662
+ for name, p in module.named_parameters():
663
+ if name == "c_proj.weight":
664
+ p.data.normal_(
665
+ mean=0.0,
666
+ std=(
667
+ self.config.initializer_range
668
+ / math.sqrt(2 * self.config.num_hidden_layers)
669
+ ),
670
+ )
671
+
672
+ def _set_gradient_checkpointing(self, module, value=False):
673
+ if isinstance(module, QWenModel):
674
+ module.gradient_checkpointing = value
675
+
676
+
677
+ class QWenModel(QWenPreTrainedModel):
678
+ _keys_to_ignore_on_load_missing = ["attn.masked_bias"]
679
+
680
+ def __init__(self, config):
681
+ super().__init__(config)
682
+ self.vocab_size = config.vocab_size
683
+ self.num_hidden_layers = config.num_hidden_layers
684
+ self.embed_dim = config.hidden_size
685
+ self.use_cache_quantization = self.config.use_cache_quantization if hasattr(self.config, 'use_cache_quantization') else False
686
+
687
+ self.gradient_checkpointing = False
688
+ self.use_dynamic_ntk = config.use_dynamic_ntk
689
+ self.seq_length = config.seq_length
690
+
691
+ self.wte = nn.Embedding(self.vocab_size, self.embed_dim)
692
+
693
+ self.drop = nn.Dropout(config.emb_dropout_prob)
694
+
695
+ if config.rotary_pct == 1.0:
696
+ self.rotary_ndims = None
697
+ else:
698
+ assert config.rotary_pct < 1
699
+ self.rotary_ndims = int(
700
+ config.kv_channels * config.rotary_pct
701
+ )
702
+ dim = (
703
+ self.rotary_ndims
704
+ if self.rotary_ndims is not None
705
+ else config.kv_channels
706
+ )
707
+ self.rotary_emb = RotaryEmbedding(dim, base=config.rotary_emb_base)
708
+
709
+ self.use_flash_attn = config.use_flash_attn
710
+ self.is_fp32 = not (config.bf16 or config.fp16)
711
+
712
+ self.h = nn.ModuleList(
713
+ [
714
+ QWenBlock(
715
+ config
716
+ )
717
+ for i in range(config.num_hidden_layers)
718
+ ]
719
+ )
720
+ self.ln_f = RMSNorm(
721
+ self.embed_dim,
722
+ eps=config.layer_norm_epsilon,
723
+ )
724
+
725
+ self.post_init()
726
+
727
+ def get_input_embeddings(self):
728
+ return self.wte
729
+
730
+ def set_input_embeddings(self, new_embeddings):
731
+ self.wte = new_embeddings
732
+
733
+ def get_ntk_alpha(self, true_seq_len):
734
+ context_value = math.log(true_seq_len / self.seq_length, 2) + 1
735
+ ntk_alpha = 2 ** math.ceil(context_value) - 1
736
+ ntk_alpha = max(ntk_alpha, 1)
737
+ return ntk_alpha
738
+
739
+ def forward(
740
+ self,
741
+ input_ids: Optional[torch.LongTensor] = None,
742
+ past_key_values: Optional[Tuple[Tuple[torch.Tensor]]] = None,
743
+ attention_mask: Optional[torch.FloatTensor] = None,
744
+ token_type_ids: Optional[torch.LongTensor] = None,
745
+ position_ids: Optional[torch.LongTensor] = None,
746
+ head_mask: Optional[torch.FloatTensor] = None,
747
+ inputs_embeds: Optional[torch.FloatTensor] = None,
748
+ encoder_hidden_states: Optional[torch.Tensor] = None,
749
+ encoder_attention_mask: Optional[torch.FloatTensor] = None,
750
+ use_cache: Optional[bool] = None,
751
+ output_attentions: Optional[bool] = None,
752
+ output_hidden_states: Optional[bool] = None,
753
+ return_dict: Optional[bool] = None,
754
+ ):
755
+ output_attentions = (
756
+ output_attentions
757
+ if output_attentions is not None
758
+ else self.config.output_attentions
759
+ )
760
+ output_hidden_states = (
761
+ output_hidden_states
762
+ if output_hidden_states is not None
763
+ else self.config.output_hidden_states
764
+ )
765
+ use_cache = use_cache if use_cache is not None else self.config.use_cache
766
+ return_dict = (
767
+ return_dict if return_dict is not None else self.config.use_return_dict
768
+ )
769
+
770
+ if input_ids is not None and inputs_embeds is not None:
771
+ raise ValueError(
772
+ "You cannot specify both input_ids and inputs_embeds at the same time"
773
+ )
774
+ elif input_ids is not None:
775
+ input_shape = input_ids.size()
776
+ input_ids = input_ids.view(-1, input_shape[-1])
777
+ batch_size = input_ids.shape[0]
778
+ elif inputs_embeds is not None:
779
+ input_shape = inputs_embeds.size()[:-1]
780
+ batch_size = inputs_embeds.shape[0]
781
+ else:
782
+ raise ValueError("You have to specify either input_ids or inputs_embeds")
783
+
784
+ device = input_ids.device if input_ids is not None else inputs_embeds.device
785
+
786
+ if token_type_ids is not None:
787
+ token_type_ids = token_type_ids.view(-1, input_shape[-1])
788
+ if position_ids is not None:
789
+ position_ids = position_ids.view(-1, input_shape[-1])
790
+
791
+ if past_key_values is None:
792
+ past_length = 0
793
+ past_key_values = tuple([None] * len(self.h))
794
+ else:
795
+ if self.use_cache_quantization:
796
+ past_length = past_key_values[0][0][0].size(2)
797
+ else:
798
+ past_length = past_key_values[0][0].size(-2)
799
+ if position_ids is None:
800
+ position_ids = torch.arange(
801
+ past_length,
802
+ input_shape[-1] + past_length,
803
+ dtype=torch.long,
804
+ device=device,
805
+ )
806
+ position_ids = position_ids.unsqueeze(0).view(-1, input_shape[-1])
807
+
808
+ if attention_mask is not None:
809
+ if batch_size <= 0:
810
+ raise ValueError("batch_size has to be defined and > 0")
811
+ attention_mask = attention_mask.view(batch_size, -1)
812
+ attention_mask = attention_mask[:, None, None, :]
813
+ attention_mask = attention_mask.to(dtype=self.dtype)
814
+ attention_mask = (1.0 - attention_mask) * torch.finfo(self.dtype).min
815
+
816
+ encoder_attention_mask = None
817
+ head_mask = self.get_head_mask(head_mask, self.config.num_hidden_layers)
818
+
819
+ if inputs_embeds is None:
820
+ inputs_embeds = self.wte(input_ids)
821
+ hidden_states = inputs_embeds
822
+
823
+ kv_seq_len = hidden_states.size()[1]
824
+ if past_key_values[0] is not None:
825
+ # past key values[0][0] shape: bs * seq_len * head_num * dim
826
+ if self.use_cache_quantization:
827
+ kv_seq_len += past_key_values[0][0][0].shape[2]
828
+ else:
829
+ kv_seq_len += past_key_values[0][0].shape[1]
830
+
831
+ if self.training or not self.use_dynamic_ntk:
832
+ ntk_alpha_list = [1.0]
833
+ elif kv_seq_len != hidden_states.size()[1]:
834
+ ntk_alpha_list = self.rotary_emb._ntk_alpha_cached_list
835
+ else:
836
+ ntk_alpha_list = []
837
+ if attention_mask is not None and kv_seq_len > self.seq_length:
838
+ true_seq_lens = attention_mask.squeeze(1).squeeze(1).eq(0).sum(dim=-1, dtype=torch.int32)
839
+ for i in range(hidden_states.size()[0]):
840
+ true_seq_len = true_seq_lens[i].item()
841
+ ntk_alpha = self.get_ntk_alpha(true_seq_len)
842
+ ntk_alpha_list.append(ntk_alpha)
843
+ else:
844
+ ntk_alpha = self.get_ntk_alpha(kv_seq_len)
845
+ ntk_alpha_list.append(ntk_alpha)
846
+ self.rotary_emb._ntk_alpha_cached_list = ntk_alpha_list
847
+ rotary_pos_emb_list = [
848
+ self.rotary_emb(kv_seq_len, ntk_alpha=ntk_alpha) for ntk_alpha in ntk_alpha_list
849
+ ]
850
+
851
+ hidden_states = self.drop(hidden_states)
852
+ output_shape = input_shape + (hidden_states.size(-1),)
853
+
854
+ if self.gradient_checkpointing and self.training:
855
+ if use_cache:
856
+ logger.warning_once(
857
+ "`use_cache=True` is incompatible with gradient checkpointing. Setting `use_cache=False`..."
858
+ )
859
+ use_cache = False
860
+
861
+ presents = () if use_cache else None
862
+ all_self_attentions = () if output_attentions else None
863
+ all_hidden_states = () if output_hidden_states else None
864
+ for i, (block, layer_past) in enumerate(zip(self.h, past_key_values)):
865
+
866
+ if output_hidden_states:
867
+ all_hidden_states = all_hidden_states + (hidden_states,)
868
+
869
+ if self.gradient_checkpointing and self.training:
870
+
871
+ def create_custom_forward(module):
872
+ def custom_forward(*inputs):
873
+ # None for past_key_value
874
+ return module(*inputs, use_cache, output_attentions)
875
+
876
+ return custom_forward
877
+
878
+ outputs = torch.utils.checkpoint.checkpoint(
879
+ create_custom_forward(block),
880
+ hidden_states,
881
+ rotary_pos_emb_list,
882
+ None,
883
+ attention_mask,
884
+ head_mask[i],
885
+ encoder_hidden_states,
886
+ encoder_attention_mask,
887
+ )
888
+ else:
889
+ outputs = block(
890
+ hidden_states,
891
+ layer_past=layer_past,
892
+ rotary_pos_emb_list=rotary_pos_emb_list,
893
+ attention_mask=attention_mask,
894
+ head_mask=head_mask[i],
895
+ encoder_hidden_states=encoder_hidden_states,
896
+ encoder_attention_mask=encoder_attention_mask,
897
+ use_cache=use_cache,
898
+ output_attentions=output_attentions,
899
+ )
900
+
901
+ hidden_states = outputs[0]
902
+ if use_cache is True:
903
+ presents = presents + (outputs[1],)
904
+
905
+ if output_attentions:
906
+ all_self_attentions = all_self_attentions + (outputs[2 if use_cache else 1],)
907
+
908
+ hidden_states = self.ln_f(hidden_states)
909
+ hidden_states = hidden_states.view(output_shape)
910
+ # Add last hidden state
911
+ if output_hidden_states:
912
+ all_hidden_states = all_hidden_states + (hidden_states,)
913
+
914
+ if not return_dict:
915
+ return tuple(
916
+ v for v in [hidden_states, presents, all_hidden_states] if v is not None
917
+ )
918
+
919
+ return BaseModelOutputWithPast(
920
+ last_hidden_state=hidden_states,
921
+ past_key_values=presents,
922
+ hidden_states=all_hidden_states,
923
+ attentions=all_self_attentions,
924
+ )
925
+
926
+
927
+ class QWenLMHeadModel(QWenPreTrainedModel):
928
+ _keys_to_ignore_on_load_missing = [r"h\.\d+\.attn\.rotary_emb\.inv_freq"]
929
+ _keys_to_ignore_on_load_unexpected = [r"h\.\d+\.attn\.masked_bias"]
930
+
931
+ def __init__(self, config):
932
+ super().__init__(config)
933
+ assert (
934
+ config.bf16 + config.fp16 + config.fp32 <= 1
935
+ ), "Only one of \"bf16\", \"fp16\", \"fp32\" can be true"
936
+ logger.warn(
937
+ "Warning: please make sure that you are using the latest codes and checkpoints, "
938
+ "especially if you used Qwen-7B before 09.25.2023."
939
+ "请使用最新模型和代码,尤其如果你在9月25日前已经开始使用Qwen-7B,千万注意不要使用错误代码和模型。"
940
+ )
941
+
942
+ autoset_precision = config.bf16 + config.fp16 + config.fp32 == 0
943
+
944
+ if autoset_precision:
945
+ if SUPPORT_BF16:
946
+ logger.warn(
947
+ "The model is automatically converting to bf16 for faster inference. "
948
+ "If you want to disable the automatic precision, please manually add bf16/fp16/fp32=True to \"AutoModelForCausalLM.from_pretrained\"."
949
+ )
950
+ config.bf16 = True
951
+ elif SUPPORT_FP16:
952
+ logger.warn(
953
+ "The model is automatically converting to fp16 for faster inference. "
954
+ "If you want to disable the automatic precision, please manually add bf16/fp16/fp32=True to \"AutoModelForCausalLM.from_pretrained\"."
955
+ )
956
+ config.fp16 = True
957
+ else:
958
+ config.fp32 = True
959
+
960
+ if config.bf16 and SUPPORT_CUDA and not SUPPORT_BF16:
961
+ 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\".")
962
+ if config.fp16 and SUPPORT_CUDA and not SUPPORT_FP16:
963
+ logger.warn("Your device does NOT support faster inference with fp16, please switch to fp32 which is likely to be faster")
964
+ if config.fp32:
965
+ if SUPPORT_BF16:
966
+ logger.warn("Your device support faster inference by passing bf16=True in \"AutoModelForCausalLM.from_pretrained\".")
967
+ elif SUPPORT_FP16:
968
+ logger.warn("Your device support faster inference by passing fp16=True in \"AutoModelForCausalLM.from_pretrained\".")
969
+
970
+ if config.use_flash_attn == "auto":
971
+ if config.bf16 or config.fp16:
972
+ logger.warn("Try importing flash-attention for faster inference...")
973
+ config.use_flash_attn = True
974
+ else:
975
+ config.use_flash_attn = False
976
+ if config.use_flash_attn and config.fp32:
977
+ logger.warn("Flash attention will be disabled because it does NOT support fp32.")
978
+
979
+ if config.use_flash_attn:
980
+ _import_flash_attn()
981
+
982
+ self.transformer = QWenModel(config)
983
+ self.lm_head = nn.Linear(config.hidden_size, config.vocab_size, bias=False)
984
+
985
+ if config.bf16:
986
+ self.transformer.bfloat16()
987
+ self.lm_head.bfloat16()
988
+ if config.fp16:
989
+ self.transformer.half()
990
+ self.lm_head.half()
991
+ self.post_init()
992
+
993
+
994
+ def get_output_embeddings(self):
995
+ return self.lm_head
996
+
997
+ def set_output_embeddings(self, new_embeddings):
998
+ self.lm_head = new_embeddings
999
+
1000
+ def prepare_inputs_for_generation(
1001
+ self, input_ids, past_key_values=None, inputs_embeds=None, **kwargs
1002
+ ):
1003
+ token_type_ids = kwargs.get("token_type_ids", None)
1004
+ if past_key_values:
1005
+ input_ids = input_ids[:, -1].unsqueeze(-1)
1006
+ if token_type_ids is not None:
1007
+ token_type_ids = token_type_ids[:, -1].unsqueeze(-1)
1008
+
1009
+ attention_mask = kwargs.get("attention_mask", None)
1010
+ position_ids = kwargs.get("position_ids", None)
1011
+
1012
+ if attention_mask is not None and position_ids is None:
1013
+ position_ids = attention_mask.long().cumsum(-1) - 1
1014
+ position_ids.masked_fill_(attention_mask == 0, 1)
1015
+ if past_key_values:
1016
+ position_ids = position_ids[:, -1].unsqueeze(-1)
1017
+ else:
1018
+ position_ids = None
1019
+
1020
+ if inputs_embeds is not None and past_key_values is None:
1021
+ model_inputs = {"inputs_embeds": inputs_embeds}
1022
+ else:
1023
+ model_inputs = {"input_ids": input_ids}
1024
+
1025
+ model_inputs.update(
1026
+ {
1027
+ "past_key_values": past_key_values,
1028
+ "use_cache": kwargs.get("use_cache"),
1029
+ "position_ids": position_ids,
1030
+ "attention_mask": attention_mask,
1031
+ "token_type_ids": token_type_ids,
1032
+ }
1033
+ )
1034
+ return model_inputs
1035
+
1036
+ def forward(
1037
+ self,
1038
+ input_ids: Optional[torch.LongTensor] = None,
1039
+ past_key_values: Optional[Tuple[Tuple[torch.Tensor]]] = None,
1040
+ attention_mask: Optional[torch.FloatTensor] = None,
1041
+ token_type_ids: Optional[torch.LongTensor] = None,
1042
+ position_ids: Optional[torch.LongTensor] = None,
1043
+ head_mask: Optional[torch.FloatTensor] = None,
1044
+ inputs_embeds: Optional[torch.FloatTensor] = None,
1045
+ encoder_hidden_states: Optional[torch.Tensor] = None,
1046
+ encoder_attention_mask: Optional[torch.FloatTensor] = None,
1047
+ labels: Optional[torch.LongTensor] = None,
1048
+ use_cache: Optional[bool] = None,
1049
+ output_attentions: Optional[bool] = None,
1050
+ output_hidden_states: Optional[bool] = None,
1051
+ return_dict: Optional[bool] = None,
1052
+ ) -> Union[Tuple, CausalLMOutputWithPast]:
1053
+
1054
+ return_dict = (
1055
+ return_dict if return_dict is not None else self.config.use_return_dict
1056
+ )
1057
+
1058
+ transformer_outputs = self.transformer(
1059
+ input_ids,
1060
+ past_key_values=past_key_values,
1061
+ attention_mask=attention_mask,
1062
+ token_type_ids=token_type_ids,
1063
+ position_ids=position_ids,
1064
+ head_mask=head_mask,
1065
+ inputs_embeds=inputs_embeds,
1066
+ encoder_hidden_states=encoder_hidden_states,
1067
+ encoder_attention_mask=encoder_attention_mask,
1068
+ use_cache=use_cache,
1069
+ output_attentions=output_attentions,
1070
+ output_hidden_states=output_hidden_states,
1071
+ return_dict=return_dict,
1072
+ )
1073
+ hidden_states = transformer_outputs[0]
1074
+
1075
+ lm_logits = self.lm_head(hidden_states)
1076
+
1077
+ loss = None
1078
+ if labels is not None:
1079
+ labels = labels.to(lm_logits.device)
1080
+ shift_logits = lm_logits[..., :-1, :].contiguous()
1081
+ shift_labels = labels[..., 1:].contiguous()
1082
+ loss_fct = CrossEntropyLoss()
1083
+ loss = loss_fct(
1084
+ shift_logits.view(-1, shift_logits.size(-1)), shift_labels.view(-1)
1085
+ )
1086
+
1087
+ if not return_dict:
1088
+ output = (lm_logits,) + transformer_outputs[1:]
1089
+ return ((loss,) + output) if loss is not None else output
1090
+
1091
+ return CausalLMOutputWithPast(
1092
+ loss=loss,
1093
+ logits=lm_logits,
1094
+ past_key_values=transformer_outputs.past_key_values,
1095
+ hidden_states=transformer_outputs.hidden_states,
1096
+ attentions=transformer_outputs.attentions,
1097
+ )
1098
+
1099
+ @staticmethod
1100
+ def _reorder_cache(
1101
+ past_key_values: Tuple[Tuple[torch.Tensor]], beam_idx: torch.Tensor
1102
+ ) -> Tuple[Tuple[torch.Tensor]]:
1103
+
1104
+ return tuple(
1105
+ tuple(
1106
+ past_state.index_select(0, beam_idx.to(past_state.device))
1107
+ for past_state in layer_past
1108
+ )
1109
+ for layer_past in past_key_values
1110
+ )
1111
+
1112
+ def chat(
1113
+ self,
1114
+ tokenizer: PreTrainedTokenizer,
1115
+ query: str,
1116
+ history: Optional[HistoryType],
1117
+ system: str = "You are a helpful assistant.",
1118
+ stream: Optional[bool] = _SENTINEL,
1119
+ stop_words_ids: Optional[List[List[int]]] = None,
1120
+ generation_config: Optional[GenerationConfig] = None,
1121
+ **kwargs,
1122
+ ) -> Tuple[str, HistoryType]:
1123
+ generation_config = generation_config if generation_config is not None else self.generation_config
1124
+
1125
+ assert stream is _SENTINEL, _ERROR_STREAM_IN_CHAT
1126
+ assert generation_config.chat_format == 'chatml', _ERROR_BAD_CHAT_FORMAT
1127
+ if history is None:
1128
+ history = []
1129
+ else:
1130
+ # make a copy of the user's input such that is is left untouched
1131
+ history = copy.deepcopy(history)
1132
+
1133
+ if stop_words_ids is None:
1134
+ stop_words_ids = []
1135
+
1136
+ max_window_size = kwargs.get('max_window_size', None)
1137
+ if max_window_size is None:
1138
+ max_window_size = generation_config.max_window_size
1139
+ raw_text, context_tokens = make_context(
1140
+ tokenizer,
1141
+ query,
1142
+ history=history,
1143
+ system=system,
1144
+ max_window_size=max_window_size,
1145
+ chat_format=generation_config.chat_format,
1146
+ )
1147
+
1148
+ stop_words_ids.extend(get_stop_words_ids(
1149
+ generation_config.chat_format, tokenizer
1150
+ ))
1151
+ input_ids = torch.tensor([context_tokens]).to(self.device)
1152
+ outputs = self.generate(
1153
+ input_ids,
1154
+ stop_words_ids=stop_words_ids,
1155
+ return_dict_in_generate=False,
1156
+ generation_config=generation_config,
1157
+ **kwargs,
1158
+ )
1159
+
1160
+ response = decode_tokens(
1161
+ outputs[0],
1162
+ tokenizer,
1163
+ raw_text_len=len(raw_text),
1164
+ context_length=len(context_tokens),
1165
+ chat_format=generation_config.chat_format,
1166
+ verbose=False,
1167
+ errors='replace'
1168
+ )
1169
+
1170
+ # as history is a copy of the user inputs,
1171
+ # we can always return the new turn to the user.
1172
+ # separating input history and output history also enables the user
1173
+ # to implement more complex history management
1174
+ history.append((query, response))
1175
+
1176
+ return response, history
1177
+
1178
+ def chat_stream(
1179
+ self,
1180
+ tokenizer: PreTrainedTokenizer,
1181
+ query: str,
1182
+ history: Optional[HistoryType],
1183
+ system: str = "You are a helpful assistant.",
1184
+ stop_words_ids: Optional[List[List[int]]] = None,
1185
+ logits_processor: Optional[LogitsProcessorList] = None,
1186
+ generation_config: Optional[GenerationConfig] = None,
1187
+ **kwargs,
1188
+ ) -> Generator[str, Any, None]:
1189
+ generation_config = generation_config if generation_config is not None else self.generation_config
1190
+ assert generation_config.chat_format == 'chatml', _ERROR_BAD_CHAT_FORMAT
1191
+ if history is None:
1192
+ history = []
1193
+ if stop_words_ids is None:
1194
+ stop_words_ids = []
1195
+
1196
+ max_window_size = kwargs.get('max_window_size', None)
1197
+ if max_window_size is None:
1198
+ max_window_size = generation_config.max_window_size
1199
+ raw_text, context_tokens = make_context(
1200
+ tokenizer,
1201
+ query,
1202
+ history=history,
1203
+ system=system,
1204
+ max_window_size=max_window_size,
1205
+ chat_format=generation_config.chat_format,
1206
+ )
1207
+
1208
+ stop_words_ids.extend(get_stop_words_ids(
1209
+ generation_config.chat_format, tokenizer
1210
+ ))
1211
+ if stop_words_ids is not None:
1212
+ stop_words_logits_processor = StopWordsLogitsProcessor(
1213
+ stop_words_ids=stop_words_ids,
1214
+ eos_token_id=generation_config.eos_token_id,
1215
+ )
1216
+ if logits_processor is None:
1217
+ logits_processor = LogitsProcessorList([stop_words_logits_processor])
1218
+ else:
1219
+ logits_processor.append(stop_words_logits_processor)
1220
+ input_ids = torch.tensor([context_tokens]).to(self.device)
1221
+
1222
+ from transformers_stream_generator.main import NewGenerationMixin, StreamGenerationConfig
1223
+ self.__class__.generate_stream = NewGenerationMixin.generate
1224
+ self.__class__.sample_stream = NewGenerationMixin.sample_stream
1225
+ stream_config = StreamGenerationConfig(**generation_config.to_dict(), do_stream=True)
1226
+
1227
+ def stream_generator():
1228
+ outputs = []
1229
+ for token in self.generate_stream(
1230
+ input_ids,
1231
+ return_dict_in_generate=False,
1232
+ generation_config=stream_config,
1233
+ logits_processor=logits_processor,
1234
+ seed=-1,
1235
+ **kwargs):
1236
+ outputs.append(token.item())
1237
+ yield tokenizer.decode(outputs, skip_special_tokens=True, errors='ignore')
1238
+
1239
+ return stream_generator()
1240
+
1241
+ def generate(
1242
+ self,
1243
+ inputs: Optional[torch.Tensor] = None,
1244
+ generation_config: Optional[GenerationConfig] = None,
1245
+ logits_processor: Optional[LogitsProcessorList] = None,
1246
+ stopping_criteria: Optional[StoppingCriteriaList] = None,
1247
+ prefix_allowed_tokens_fn: Optional[
1248
+ Callable[[int, torch.Tensor], List[int]]
1249
+ ] = None,
1250
+ synced_gpus: Optional[bool] = None,
1251
+ assistant_model: Optional["PreTrainedModel"] = None,
1252
+ streamer: Optional["BaseStreamer"] = None,
1253
+ **kwargs,
1254
+ ) -> Union[GenerateOutput, torch.LongTensor]:
1255
+ generation_config = generation_config if generation_config is not None else self.generation_config
1256
+
1257
+ # Process stop_words_ids.
1258
+ stop_words_ids = kwargs.pop("stop_words_ids", None)
1259
+ if stop_words_ids is None and generation_config is not None:
1260
+ stop_words_ids = getattr(generation_config, "stop_words_ids", None)
1261
+ if stop_words_ids is None:
1262
+ stop_words_ids = getattr(generation_config, "stop_words_ids", None)
1263
+
1264
+ if stop_words_ids is not None:
1265
+ stop_words_logits_processor = StopWordsLogitsProcessor(
1266
+ stop_words_ids=stop_words_ids,
1267
+ eos_token_id=generation_config.eos_token_id,
1268
+ )
1269
+ if logits_processor is None:
1270
+ logits_processor = LogitsProcessorList([stop_words_logits_processor])
1271
+ else:
1272
+ logits_processor.append(stop_words_logits_processor)
1273
+
1274
+ return super().generate(
1275
+ inputs,
1276
+ generation_config=generation_config,
1277
+ logits_processor=logits_processor,
1278
+ stopping_criteria=stopping_criteria,
1279
+ prefix_allowed_tokens_fn=prefix_allowed_tokens_fn,
1280
+ synced_gpus=synced_gpus,
1281
+ assistant_model=assistant_model,
1282
+ streamer=streamer,
1283
+ **kwargs,
1284
+ )
1285
+
1286
+
1287
+ class RotaryEmbedding(torch.nn.Module):
1288
+ def __init__(self, dim, base=10000):
1289
+ super().__init__()
1290
+ self.dim = dim
1291
+ self.base = base
1292
+ inv_freq = 1.0 / (base ** (torch.arange(0, dim, 2).float() / dim))
1293
+ self.register_buffer("inv_freq", inv_freq, persistent=False)
1294
+ if importlib.util.find_spec("einops") is None:
1295
+ raise RuntimeError("einops is required for Rotary Embedding")
1296
+
1297
+ self._rotary_pos_emb_cache = None
1298
+ self._seq_len_cached = 0
1299
+ self._ntk_alpha_cached = 1.0
1300
+ self._ntk_alpha_cached_list = [1.0]
1301
+
1302
+ def update_rotary_pos_emb_cache(self, max_seq_len, offset=0, ntk_alpha=1.0):
1303
+ seqlen = max_seq_len + offset
1304
+ if seqlen > self._seq_len_cached or ntk_alpha != self._ntk_alpha_cached:
1305
+ base = self.base * ntk_alpha ** (self.dim / (self.dim - 2))
1306
+ self.inv_freq = 1.0 / (
1307
+ base
1308
+ ** (
1309
+ torch.arange(0, self.dim, 2, device=self.inv_freq.device).float()
1310
+ / self.dim
1311
+ )
1312
+ )
1313
+ self._seq_len_cached = max(2 * seqlen, 16)
1314
+ self._ntk_alpha_cached = ntk_alpha
1315
+ seq = torch.arange(self._seq_len_cached, device=self.inv_freq.device)
1316
+ freqs = torch.outer(seq.type_as(self.inv_freq), self.inv_freq)
1317
+
1318
+ emb = torch.cat((freqs, freqs), dim=-1)
1319
+ from einops import rearrange
1320
+
1321
+ emb = rearrange(emb, "n d -> 1 n 1 d")
1322
+
1323
+ cos, sin = emb.cos(), emb.sin()
1324
+ self._rotary_pos_emb_cache = [cos, sin]
1325
+
1326
+ def forward(self, max_seq_len, offset=0, ntk_alpha=1.0):
1327
+ self.update_rotary_pos_emb_cache(max_seq_len, offset, ntk_alpha)
1328
+ cos, sin = self._rotary_pos_emb_cache
1329
+ return [cos[:, offset : offset + max_seq_len], sin[:, offset : offset + max_seq_len]]
1330
+
1331
+
1332
+ def _rotate_half(x):
1333
+ from einops import rearrange
1334
+
1335
+ x = rearrange(x, "... (j d) -> ... j d", j=2)
1336
+ x1, x2 = x.unbind(dim=-2)
1337
+ return torch.cat((-x2, x1), dim=-1)
1338
+
1339
+
1340
+ def apply_rotary_pos_emb(t, freqs):
1341
+ cos, sin = freqs
1342
+ if apply_rotary_emb_func is not None and t.is_cuda:
1343
+ t_ = t.float()
1344
+ cos = cos.squeeze(0).squeeze(1)[:, : cos.shape[-1] // 2]
1345
+ sin = sin.squeeze(0).squeeze(1)[:, : sin.shape[-1] // 2]
1346
+ output = apply_rotary_emb_func(t_, cos, sin).type_as(t)
1347
+ return output
1348
+ else:
1349
+ rot_dim = freqs[0].shape[-1]
1350
+ cos, sin = freqs
1351
+ t_, t_pass_ = t[..., :rot_dim], t[..., rot_dim:]
1352
+ t_ = t_.float()
1353
+ t_pass_ = t_pass_.float()
1354
+ t_ = (t_ * cos) + (_rotate_half(t_) * sin)
1355
+ return torch.cat((t_, t_pass_), dim=-1).type_as(t)
1356
+
1357
+
1358
+ class RMSNorm(torch.nn.Module):
1359
+ def __init__(self, dim: int, eps: float = 1e-6):
1360
+ super().__init__()
1361
+ self.eps = eps
1362
+ self.weight = nn.Parameter(torch.ones(dim))
1363
+
1364
+ def _norm(self, x):
1365
+ return x * torch.rsqrt(x.pow(2).mean(-1, keepdim=True) + self.eps)
1366
+
1367
+ def forward(self, x):
1368
+ if rms_norm is not None and x.is_cuda:
1369
+ return rms_norm(x, self.weight, self.eps)
1370
+ else:
1371
+ output = self._norm(x.float()).type_as(x)
1372
+ return output * self.weight
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,276 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
+ # changed to use actual index to avoid misconfiguration with vocabulary expansion
31
+ SPECIAL_START_ID = 151643
32
+ SPECIAL_TOKENS = tuple(
33
+ enumerate(
34
+ (
35
+ (
36
+ ENDOFTEXT,
37
+ IMSTART,
38
+ IMEND,
39
+ )
40
+ + EXTRAS
41
+ ),
42
+ start=SPECIAL_START_ID,
43
+ )
44
+ )
45
+ SPECIAL_TOKENS_SET = set(t for i, t in SPECIAL_TOKENS)
46
+
47
+
48
+ def _load_tiktoken_bpe(tiktoken_bpe_file: str) -> Dict[bytes, int]:
49
+ with open(tiktoken_bpe_file, "rb") as f:
50
+ contents = f.read()
51
+ return {
52
+ base64.b64decode(token): int(rank)
53
+ for token, rank in (line.split() for line in contents.splitlines() if line)
54
+ }
55
+
56
+
57
+ class QWenTokenizer(PreTrainedTokenizer):
58
+ """QWen tokenizer."""
59
+
60
+ vocab_files_names = VOCAB_FILES_NAMES
61
+
62
+ def __init__(
63
+ self,
64
+ vocab_file,
65
+ errors="replace",
66
+ extra_vocab_file=None,
67
+ **kwargs,
68
+ ):
69
+ super().__init__(**kwargs)
70
+
71
+ # how to handle errors in decoding UTF-8 byte sequences
72
+ # use ignore if you are in streaming inference
73
+ self.errors = errors
74
+
75
+ self.mergeable_ranks = _load_tiktoken_bpe(vocab_file) # type: Dict[bytes, int]
76
+ self.special_tokens = {
77
+ token: index
78
+ for index, token in SPECIAL_TOKENS
79
+ }
80
+
81
+ # try load extra vocab from file
82
+ if extra_vocab_file is not None:
83
+ used_ids = set(self.mergeable_ranks.values()) | set(self.special_tokens.values())
84
+ extra_mergeable_ranks = _load_tiktoken_bpe(extra_vocab_file)
85
+ for token, index in extra_mergeable_ranks.items():
86
+ if token in self.mergeable_ranks:
87
+ logger.info(f"extra token {token} exists, skipping")
88
+ continue
89
+ if index in used_ids:
90
+ logger.info(f'the index {index} for extra token {token} exists, skipping')
91
+ continue
92
+ self.mergeable_ranks[token] = index
93
+ # the index may be sparse after this, but don't worry tiktoken.Encoding will handle this
94
+
95
+ enc = tiktoken.Encoding(
96
+ "Qwen",
97
+ pat_str=PAT_STR,
98
+ mergeable_ranks=self.mergeable_ranks,
99
+ special_tokens=self.special_tokens,
100
+ )
101
+ assert (
102
+ len(self.mergeable_ranks) + len(self.special_tokens) == enc.n_vocab
103
+ ), f"{len(self.mergeable_ranks) + len(self.special_tokens)} != {enc.n_vocab} in encoding"
104
+
105
+ self.decoder = {
106
+ v: k for k, v in self.mergeable_ranks.items()
107
+ } # type: dict[int, bytes|str]
108
+ self.decoder.update({v: k for k, v in self.special_tokens.items()})
109
+
110
+ self.tokenizer = enc # type: tiktoken.Encoding
111
+
112
+ self.eod_id = self.tokenizer.eot_token
113
+ self.im_start_id = self.special_tokens[IMSTART]
114
+ self.im_end_id = self.special_tokens[IMEND]
115
+
116
+ def __getstate__(self):
117
+ # for pickle lovers
118
+ state = self.__dict__.copy()
119
+ del state["tokenizer"]
120
+ return state
121
+
122
+ def __setstate__(self, state):
123
+ # tokenizer is not python native; don't pass it; rebuild it
124
+ self.__dict__.update(state)
125
+ enc = tiktoken.Encoding(
126
+ "Qwen",
127
+ pat_str=PAT_STR,
128
+ mergeable_ranks=self.mergeable_ranks,
129
+ special_tokens=self.special_tokens,
130
+ )
131
+ self.tokenizer = enc
132
+
133
+ def __len__(self) -> int:
134
+ return self.tokenizer.n_vocab
135
+
136
+ def get_vocab(self) -> Dict[bytes, int]:
137
+ return self.mergeable_ranks
138
+
139
+ def convert_tokens_to_ids(
140
+ self, tokens: Union[bytes, str, List[Union[bytes, str]]]
141
+ ) -> List[int]:
142
+ ids = []
143
+ if isinstance(tokens, (str, bytes)):
144
+ if tokens in self.special_tokens:
145
+ return self.special_tokens[tokens]
146
+ else:
147
+ return self.mergeable_ranks.get(tokens)
148
+ for token in tokens:
149
+ if token in self.special_tokens:
150
+ ids.append(self.special_tokens[token])
151
+ else:
152
+ ids.append(self.mergeable_ranks.get(token))
153
+ return ids
154
+
155
+ def _add_tokens(
156
+ self,
157
+ new_tokens: Union[List[str], List[AddedToken]],
158
+ special_tokens: bool = False,
159
+ ) -> int:
160
+ if not special_tokens and new_tokens:
161
+ raise ValueError("Adding regular tokens is not supported")
162
+ for token in new_tokens:
163
+ surface_form = token.content if isinstance(token, AddedToken) else token
164
+ if surface_form not in SPECIAL_TOKENS_SET:
165
+ raise ValueError("Adding unknown special tokens is not supported")
166
+ return 0
167
+
168
+ def save_vocabulary(self, save_directory: str, **kwargs) -> Tuple[str]:
169
+ """
170
+ Save only the vocabulary of the tokenizer (vocabulary).
171
+
172
+ Returns:
173
+ `Tuple(str)`: Paths to the files saved.
174
+ """
175
+ file_path = os.path.join(save_directory, "qwen.tiktoken")
176
+ with open(file_path, "w", encoding="utf8") as w:
177
+ for k, v in self.mergeable_ranks.items():
178
+ line = base64.b64encode(k).decode("utf8") + " " + str(v) + "\n"
179
+ w.write(line)
180
+ return (file_path,)
181
+
182
+ def tokenize(
183
+ self,
184
+ text: str,
185
+ allowed_special: Union[Set, str] = "all",
186
+ disallowed_special: Union[Collection, str] = (),
187
+ **kwargs,
188
+ ) -> List[Union[bytes, str]]:
189
+ """
190
+ Converts a string in a sequence of tokens.
191
+
192
+ Args:
193
+ text (`str`):
194
+ The sequence to be encoded.
195
+ allowed_special (`Literal["all"]` or `set`):
196
+ The surface forms of the tokens to be encoded as special tokens in regular texts.
197
+ Default to "all".
198
+ disallowed_special (`Literal["all"]` or `Collection`):
199
+ The surface forms of the tokens that should not be in regular texts and trigger errors.
200
+ Default to an empty tuple.
201
+
202
+ kwargs (additional keyword arguments, *optional*):
203
+ Will be passed to the underlying model specific encode method.
204
+
205
+ Returns:
206
+ `List[bytes|str]`: The list of tokens.
207
+ """
208
+ tokens = []
209
+ text = unicodedata.normalize("NFC", text)
210
+
211
+ # this implementation takes a detour: text -> token id -> token surface forms
212
+ for t in self.tokenizer.encode(
213
+ text, allowed_special=allowed_special, disallowed_special=disallowed_special
214
+ ):
215
+ tokens.append(self.decoder[t])
216
+ return tokens
217
+
218
+ def convert_tokens_to_string(self, tokens: List[Union[bytes, str]]) -> str:
219
+ """
220
+ Converts a sequence of tokens in a single string.
221
+ """
222
+ text = ""
223
+ temp = b""
224
+ for t in tokens:
225
+ if isinstance(t, str):
226
+ if temp:
227
+ text += temp.decode("utf-8", errors=self.errors)
228
+ temp = b""
229
+ text += t
230
+ elif isinstance(t, bytes):
231
+ temp += t
232
+ else:
233
+ raise TypeError("token should only be of type types or str")
234
+ if temp:
235
+ text += temp.decode("utf-8", errors=self.errors)
236
+ return text
237
+
238
+ @property
239
+ def vocab_size(self):
240
+ return self.tokenizer.n_vocab
241
+
242
+ def _convert_id_to_token(self, index: int) -> Union[bytes, str]:
243
+ """Converts an id to a token, special tokens included"""
244
+ if index in self.decoder:
245
+ return self.decoder[index]
246
+ raise ValueError("unknown ids")
247
+
248
+ def _convert_token_to_id(self, token: Union[bytes, str]) -> int:
249
+ """Converts a token to an id using the vocab, special tokens included"""
250
+ if token in self.special_tokens:
251
+ return self.special_tokens[token]
252
+ if token in self.mergeable_ranks:
253
+ return self.mergeable_ranks[token]
254
+ raise ValueError("unknown token")
255
+
256
+ def _tokenize(self, text: str, **kwargs):
257
+ """
258
+ Converts a string in a sequence of tokens (string), using the tokenizer. Split in words for word-based
259
+ vocabulary or sub-words for sub-word-based vocabularies (BPE/SentencePieces/WordPieces).
260
+
261
+ Do NOT take care of added tokens.
262
+ """
263
+ raise NotImplementedError
264
+
265
+ def _decode(
266
+ self,
267
+ token_ids: Union[int, List[int]],
268
+ skip_special_tokens: bool = False,
269
+ errors: str = None,
270
+ **kwargs,
271
+ ) -> str:
272
+ if isinstance(token_ids, int):
273
+ token_ids = [token_ids]
274
+ if skip_special_tokens:
275
+ token_ids = [i for i in token_ids if i < self.eod_id]
276
+ return self.tokenizer.decode(token_ids, errors=errors or self.errors)
tokenizer_config.json ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "model_max_length": 8192,
3
+ "tokenizer_class": "QWenTokenizer",
4
+ "auto_map": {
5
+ "AutoTokenizer": [
6
+ "tokenization_qwen.QWenTokenizer",
7
+ null
8
+ ]
9
+ }
10
+ }