Upload model weights
Browse files- added_tokens.json +5 -0
- config.json +43 -0
- configuration_bunny_qwen2.py +203 -0
- generation_config.json +6 -0
- merges.txt +0 -0
- model.safetensors +3 -0
- modeling_bunny_qwen2.py +0 -0
- special_tokens_map.json +20 -0
- tokenization_bunny_qwen2.py +345 -0
- tokenization_bunny_qwen2_fast.py +143 -0
- tokenizer_config.json +44 -0
- vocab.json +0 -0
added_tokens.json
ADDED
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"<|endoftext|>": 151643,
|
3 |
+
"<|im_end|>": 151645,
|
4 |
+
"<|im_start|>": 151644
|
5 |
+
}
|
config.json
ADDED
@@ -0,0 +1,43 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"_name_or_path": "BAAI/Bunny-v1_0-2B",
|
3 |
+
"architectures": [
|
4 |
+
"BunnyQwen2ForCausalLM"
|
5 |
+
],
|
6 |
+
"attention_dropout": 0.0,
|
7 |
+
"auto_map": {
|
8 |
+
"AutoConfig": "configuration_bunny_qwen2.BunnyQwen2Config",
|
9 |
+
"AutoModelForCausalLM": "modeling_bunny_qwen2.BunnyQwen2ForCausalLM"
|
10 |
+
},
|
11 |
+
"bos_token_id": 151643,
|
12 |
+
"eos_token_id": 151643,
|
13 |
+
"freeze_mm_mlp_adapter": false,
|
14 |
+
"hidden_act": "silu",
|
15 |
+
"hidden_size": 2048,
|
16 |
+
"image_aspect_ratio": "pad",
|
17 |
+
"initializer_range": 0.02,
|
18 |
+
"intermediate_size": 5504,
|
19 |
+
"max_position_embeddings": 32768,
|
20 |
+
"max_window_layers": 21,
|
21 |
+
"mm_hidden_size": 1152,
|
22 |
+
"mm_projector_lr": 2e-05,
|
23 |
+
"mm_projector_type": "mlp2x_gelu",
|
24 |
+
"mm_vision_tower": "google/siglip-so400m-patch14-384",
|
25 |
+
"model_type": "bunny-qwen2",
|
26 |
+
"num_attention_heads": 16,
|
27 |
+
"num_hidden_layers": 24,
|
28 |
+
"num_key_value_heads": 16,
|
29 |
+
"pad_token_id": 151643,
|
30 |
+
"rms_norm_eps": 1e-06,
|
31 |
+
"rope_theta": 1000000.0,
|
32 |
+
"sliding_window": 32768,
|
33 |
+
"tie_word_embeddings": false,
|
34 |
+
"tokenizer_model_max_length": 2048,
|
35 |
+
"tokenizer_padding_side": "right",
|
36 |
+
"torch_dtype": "float16",
|
37 |
+
"transformers_version": "4.38.2",
|
38 |
+
"tune_mm_mlp_adapter": false,
|
39 |
+
"use_cache": true,
|
40 |
+
"use_mm_proj": true,
|
41 |
+
"use_sliding_window": false,
|
42 |
+
"vocab_size": 151646
|
43 |
+
}
|
configuration_bunny_qwen2.py
ADDED
@@ -0,0 +1,203 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# coding=utf-8
|
2 |
+
# Copyright 2024 The Qwen team, Alibaba Group and the HuggingFace Inc. team. All rights reserved.
|
3 |
+
#
|
4 |
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
5 |
+
# you may not use this file except in compliance with the License.
|
6 |
+
# You may obtain a copy of the License at
|
7 |
+
#
|
8 |
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9 |
+
#
|
10 |
+
# Unless required by applicable law or agreed to in writing, software
|
11 |
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
12 |
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13 |
+
# See the License for the specific language governing permissions and
|
14 |
+
# limitations under the License.
|
15 |
+
""" Qwen2 model configuration"""
|
16 |
+
|
17 |
+
from transformers.configuration_utils import PretrainedConfig
|
18 |
+
from transformers.utils import logging
|
19 |
+
|
20 |
+
|
21 |
+
logger = logging.get_logger(__name__)
|
22 |
+
|
23 |
+
QWEN2_PRETRAINED_CONFIG_ARCHIVE_MAP = {
|
24 |
+
"Qwen/Qwen2-7B-beta": "https://huggingface.co/Qwen/Qwen2-7B-beta/resolve/main/config.json",
|
25 |
+
}
|
26 |
+
|
27 |
+
|
28 |
+
class Qwen2Config(PretrainedConfig):
|
29 |
+
r"""
|
30 |
+
This is the configuration class to store the configuration of a [`Qwen2Model`]. It is used to instantiate a
|
31 |
+
Qwen2 model according to the specified arguments, defining the model architecture. Instantiating a configuration
|
32 |
+
with the defaults will yield a similar configuration to that of
|
33 |
+
Qwen2-7B-beta [Qwen/Qwen2-7B-beta](https://huggingface.co/Qwen/Qwen2-7B-beta).
|
34 |
+
|
35 |
+
Configuration objects inherit from [`PretrainedConfig`] and can be used to control the model outputs. Read the
|
36 |
+
documentation from [`PretrainedConfig`] for more information.
|
37 |
+
|
38 |
+
|
39 |
+
Args:
|
40 |
+
vocab_size (`int`, *optional*, defaults to 151936):
|
41 |
+
Vocabulary size of the Qwen2 model. Defines the number of different tokens that can be represented by the
|
42 |
+
`inputs_ids` passed when calling [`Qwen2Model`]
|
43 |
+
hidden_size (`int`, *optional*, defaults to 4096):
|
44 |
+
Dimension of the hidden representations.
|
45 |
+
intermediate_size (`int`, *optional*, defaults to 22016):
|
46 |
+
Dimension of the MLP representations.
|
47 |
+
num_hidden_layers (`int`, *optional*, defaults to 32):
|
48 |
+
Number of hidden layers in the Transformer encoder.
|
49 |
+
num_attention_heads (`int`, *optional*, defaults to 32):
|
50 |
+
Number of attention heads for each attention layer in the Transformer encoder.
|
51 |
+
num_key_value_heads (`int`, *optional*, defaults to 32):
|
52 |
+
This is the number of key_value heads that should be used to implement Grouped Query Attention. If
|
53 |
+
`num_key_value_heads=num_attention_heads`, the model will use Multi Head Attention (MHA), if
|
54 |
+
`num_key_value_heads=1 the model will use Multi Query Attention (MQA) otherwise GQA is used. When
|
55 |
+
converting a multi-head checkpoint to a GQA checkpoint, each group key and value head should be constructed
|
56 |
+
by meanpooling all the original heads within that group. For more details checkout [this
|
57 |
+
paper](https://arxiv.org/pdf/2305.13245.pdf). If it is not specified, will default to `32`.
|
58 |
+
hidden_act (`str` or `function`, *optional*, defaults to `"silu"`):
|
59 |
+
The non-linear activation function (function or string) in the decoder.
|
60 |
+
max_position_embeddings (`int`, *optional*, defaults to 32768):
|
61 |
+
The maximum sequence length that this model might ever be used with.
|
62 |
+
initializer_range (`float`, *optional*, defaults to 0.02):
|
63 |
+
The standard deviation of the truncated_normal_initializer for initializing all weight matrices.
|
64 |
+
rms_norm_eps (`float`, *optional*, defaults to 1e-06):
|
65 |
+
The epsilon used by the rms normalization layers.
|
66 |
+
use_cache (`bool`, *optional*, defaults to `True`):
|
67 |
+
Whether or not the model should return the last key/values attentions (not used by all models). Only
|
68 |
+
relevant if `config.is_decoder=True`.
|
69 |
+
tie_word_embeddings (`bool`, *optional*, defaults to `False`):
|
70 |
+
Whether the model's input and output word embeddings should be tied.
|
71 |
+
rope_theta (`float`, *optional*, defaults to 10000.0):
|
72 |
+
The base period of the RoPE embeddings.
|
73 |
+
use_sliding_window (`bool`, *optional*, defaults to `False`):
|
74 |
+
Whether to use sliding window attention.
|
75 |
+
sliding_window (`int`, *optional*, defaults to 4096):
|
76 |
+
Sliding window attention (SWA) window size. If not specified, will default to `4096`.
|
77 |
+
max_window_layers (`int`, *optional*, defaults to 28):
|
78 |
+
The number of layers that use SWA (Sliding Window Attention). The bottom layers use SWA while the top use full attention.
|
79 |
+
attention_dropout (`float`, *optional*, defaults to 0.0):
|
80 |
+
The dropout ratio for the attention probabilities.
|
81 |
+
|
82 |
+
```python
|
83 |
+
>>> from transformers import Qwen2Model, Qwen2Config
|
84 |
+
|
85 |
+
>>> # Initializing a Qwen2 style configuration
|
86 |
+
>>> configuration = Qwen2Config()
|
87 |
+
|
88 |
+
>>> # Initializing a model from the Qwen2-7B style configuration
|
89 |
+
>>> model = Qwen2Model(configuration)
|
90 |
+
|
91 |
+
>>> # Accessing the model configuration
|
92 |
+
>>> configuration = model.config
|
93 |
+
```"""
|
94 |
+
|
95 |
+
model_type = "qwen2"
|
96 |
+
keys_to_ignore_at_inference = ["past_key_values"]
|
97 |
+
|
98 |
+
def __init__(
|
99 |
+
self,
|
100 |
+
vocab_size=151936,
|
101 |
+
hidden_size=4096,
|
102 |
+
intermediate_size=22016,
|
103 |
+
num_hidden_layers=32,
|
104 |
+
num_attention_heads=32,
|
105 |
+
num_key_value_heads=32,
|
106 |
+
hidden_act="silu",
|
107 |
+
max_position_embeddings=32768,
|
108 |
+
initializer_range=0.02,
|
109 |
+
rms_norm_eps=1e-6,
|
110 |
+
use_cache=True,
|
111 |
+
tie_word_embeddings=False,
|
112 |
+
rope_theta=10000.0,
|
113 |
+
use_sliding_window=False,
|
114 |
+
sliding_window=4096,
|
115 |
+
max_window_layers=28,
|
116 |
+
attention_dropout=0.0,
|
117 |
+
**kwargs,
|
118 |
+
):
|
119 |
+
self.vocab_size = vocab_size
|
120 |
+
self.max_position_embeddings = max_position_embeddings
|
121 |
+
self.hidden_size = hidden_size
|
122 |
+
self.intermediate_size = intermediate_size
|
123 |
+
self.num_hidden_layers = num_hidden_layers
|
124 |
+
self.num_attention_heads = num_attention_heads
|
125 |
+
self.use_sliding_window = use_sliding_window
|
126 |
+
self.sliding_window = sliding_window
|
127 |
+
self.max_window_layers = max_window_layers
|
128 |
+
|
129 |
+
# for backward compatibility
|
130 |
+
if num_key_value_heads is None:
|
131 |
+
num_key_value_heads = num_attention_heads
|
132 |
+
|
133 |
+
self.num_key_value_heads = num_key_value_heads
|
134 |
+
self.hidden_act = hidden_act
|
135 |
+
self.initializer_range = initializer_range
|
136 |
+
self.rms_norm_eps = rms_norm_eps
|
137 |
+
self.use_cache = use_cache
|
138 |
+
self.rope_theta = rope_theta
|
139 |
+
self.attention_dropout = attention_dropout
|
140 |
+
|
141 |
+
super().__init__(
|
142 |
+
tie_word_embeddings=tie_word_embeddings,
|
143 |
+
**kwargs,
|
144 |
+
)
|
145 |
+
|
146 |
+
from typing import Union
|
147 |
+
from transformers import PretrainedConfig
|
148 |
+
import os
|
149 |
+
|
150 |
+
|
151 |
+
class SigLipVisionConfig(PretrainedConfig):
|
152 |
+
model_type = "siglip_vision_model"
|
153 |
+
|
154 |
+
def __init__(
|
155 |
+
self,
|
156 |
+
hidden_size=1152,
|
157 |
+
image_mean=(0.5, 0.5, 0.5),
|
158 |
+
intermediate_size=4304,
|
159 |
+
num_hidden_layers=27,
|
160 |
+
num_attention_heads=16,
|
161 |
+
num_channels=3,
|
162 |
+
image_size=384,
|
163 |
+
patch_size=14,
|
164 |
+
hidden_act="gelu_pytorch_tanh",
|
165 |
+
layer_norm_eps=1e-6,
|
166 |
+
attention_dropout=0.0,
|
167 |
+
**kwargs,
|
168 |
+
):
|
169 |
+
super().__init__(**kwargs)
|
170 |
+
|
171 |
+
self.hidden_size = hidden_size
|
172 |
+
self.intermediate_size = intermediate_size
|
173 |
+
self.num_hidden_layers = num_hidden_layers
|
174 |
+
self.num_attention_heads = num_attention_heads
|
175 |
+
self.num_channels = num_channels
|
176 |
+
self.patch_size = patch_size
|
177 |
+
self.image_size = image_size
|
178 |
+
self.attention_dropout = attention_dropout
|
179 |
+
self.layer_norm_eps = layer_norm_eps
|
180 |
+
self.hidden_act = hidden_act
|
181 |
+
self.image_mean = image_mean
|
182 |
+
|
183 |
+
@classmethod
|
184 |
+
def from_pretrained(cls, pretrained_model_name_or_path: Union[str, os.PathLike], **kwargs) -> "PretrainedConfig":
|
185 |
+
cls._set_token_in_kwargs(kwargs)
|
186 |
+
|
187 |
+
config_dict, kwargs = cls.get_config_dict(pretrained_model_name_or_path, **kwargs)
|
188 |
+
|
189 |
+
# get the vision config dict if we are loading from SigLipConfig
|
190 |
+
if config_dict.get("model_type") == "siglip":
|
191 |
+
config_dict = config_dict["vision_config"]
|
192 |
+
|
193 |
+
if "model_type" in config_dict and hasattr(cls, "model_type") and config_dict["model_type"] != cls.model_type:
|
194 |
+
logger.warning(
|
195 |
+
f"You are using a model of type {config_dict['model_type']} to instantiate a model of type "
|
196 |
+
f"{cls.model_type}. This is not supported for all configurations of models and can yield errors."
|
197 |
+
)
|
198 |
+
|
199 |
+
return cls.from_dict(config_dict, **kwargs)
|
200 |
+
|
201 |
+
|
202 |
+
class BunnyQwen2Config(Qwen2Config):
|
203 |
+
model_type = "bunny-qwen2"
|
generation_config.json
ADDED
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"bos_token_id": 151643,
|
3 |
+
"eos_token_id": 151643,
|
4 |
+
"max_new_tokens": 2048,
|
5 |
+
"transformers_version": "4.38.2"
|
6 |
+
}
|
merges.txt
ADDED
The diff for this file is too large to render.
See raw diff
|
|
model.safetensors
ADDED
@@ -0,0 +1,3 @@
|
|
|
|
|
|
|
|
|
1 |
+
version https://git-lfs.github.com/spec/v1
|
2 |
+
oid sha256:5bf0aafe50961311a26e46ab70bb1d6973e863e80158f18bc05759833755c55b
|
3 |
+
size 4479991744
|
modeling_bunny_qwen2.py
ADDED
The diff for this file is too large to render.
See raw diff
|
|
special_tokens_map.json
ADDED
@@ -0,0 +1,20 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"additional_special_tokens": [
|
3 |
+
"<|im_start|>",
|
4 |
+
"<|im_end|>"
|
5 |
+
],
|
6 |
+
"eos_token": {
|
7 |
+
"content": "<|endoftext|>",
|
8 |
+
"lstrip": false,
|
9 |
+
"normalized": false,
|
10 |
+
"rstrip": false,
|
11 |
+
"single_word": false
|
12 |
+
},
|
13 |
+
"pad_token": {
|
14 |
+
"content": "<|endoftext|>",
|
15 |
+
"lstrip": false,
|
16 |
+
"normalized": false,
|
17 |
+
"rstrip": false,
|
18 |
+
"single_word": false
|
19 |
+
}
|
20 |
+
}
|
tokenization_bunny_qwen2.py
ADDED
@@ -0,0 +1,345 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# coding=utf-8
|
2 |
+
# Copyright 2024 The Qwen team, Alibaba Group and The HuggingFace Inc. team. All rights reserved.
|
3 |
+
#
|
4 |
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
5 |
+
# you may not use this file except in compliance with the License.
|
6 |
+
# You may obtain a copy of the License at
|
7 |
+
#
|
8 |
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9 |
+
#
|
10 |
+
# Unless required by applicable law or agreed to in writing, software
|
11 |
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
12 |
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13 |
+
# See the License for the specific language governing permissions and
|
14 |
+
# limitations under the License.
|
15 |
+
"""Tokenization classes for Qwen2."""
|
16 |
+
|
17 |
+
import json
|
18 |
+
import os
|
19 |
+
import unicodedata
|
20 |
+
from functools import lru_cache
|
21 |
+
from typing import Optional, Tuple
|
22 |
+
|
23 |
+
import regex as re
|
24 |
+
|
25 |
+
from transformers.tokenization_utils import AddedToken, PreTrainedTokenizer
|
26 |
+
from transformers.utils import logging
|
27 |
+
|
28 |
+
|
29 |
+
logger = logging.get_logger(__name__)
|
30 |
+
|
31 |
+
VOCAB_FILES_NAMES = {
|
32 |
+
"vocab_file": "vocab.json",
|
33 |
+
"merges_file": "merges.txt",
|
34 |
+
}
|
35 |
+
|
36 |
+
PRETRAINED_VOCAB_FILES_MAP = {
|
37 |
+
"vocab_file": {"qwen/qwen-tokenizer": "https://huggingface.co/qwen/qwen-tokenizer/resolve/main/vocab.json"},
|
38 |
+
"merges_file": {"qwen/qwen-tokenizer": "https://huggingface.co/qwen/qwen-tokenizer/resolve/main/merges.txt"},
|
39 |
+
}
|
40 |
+
|
41 |
+
MAX_MODEL_INPUT_SIZES = {"qwen/qwen-tokenizer": 32768}
|
42 |
+
|
43 |
+
PRETOKENIZE_REGEX = 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+"""
|
44 |
+
|
45 |
+
|
46 |
+
@lru_cache()
|
47 |
+
# Copied from transformers.models.gpt2.tokenization_gpt2.bytes_to_unicode
|
48 |
+
def bytes_to_unicode():
|
49 |
+
"""
|
50 |
+
Returns list of utf-8 byte and a mapping to unicode strings. We specifically avoids mapping to whitespace/control
|
51 |
+
characters the bpe code barfs on.
|
52 |
+
|
53 |
+
The reversible bpe codes work on unicode strings. This means you need a large # of unicode characters in your vocab
|
54 |
+
if you want to avoid UNKs. When you're at something like a 10B token dataset you end up needing around 5K for
|
55 |
+
decent coverage. This is a significant percentage of your normal, say, 32K bpe vocab. To avoid that, we want lookup
|
56 |
+
tables between utf-8 bytes and unicode strings.
|
57 |
+
"""
|
58 |
+
bs = (
|
59 |
+
list(range(ord("!"), ord("~") + 1)) + list(range(ord("¡"), ord("¬") + 1)) + list(range(ord("®"), ord("ÿ") + 1))
|
60 |
+
)
|
61 |
+
cs = bs[:]
|
62 |
+
n = 0
|
63 |
+
for b in range(2**8):
|
64 |
+
if b not in bs:
|
65 |
+
bs.append(b)
|
66 |
+
cs.append(2**8 + n)
|
67 |
+
n += 1
|
68 |
+
cs = [chr(n) for n in cs]
|
69 |
+
return dict(zip(bs, cs))
|
70 |
+
|
71 |
+
|
72 |
+
# Copied from transformers.models.gpt2.tokenization_gpt2.get_pairs
|
73 |
+
def get_pairs(word):
|
74 |
+
"""
|
75 |
+
Return set of symbol pairs in a word.
|
76 |
+
|
77 |
+
Word is represented as tuple of symbols (symbols being variable-length strings).
|
78 |
+
"""
|
79 |
+
pairs = set()
|
80 |
+
prev_char = word[0]
|
81 |
+
for char in word[1:]:
|
82 |
+
pairs.add((prev_char, char))
|
83 |
+
prev_char = char
|
84 |
+
return pairs
|
85 |
+
|
86 |
+
|
87 |
+
class Qwen2Tokenizer(PreTrainedTokenizer):
|
88 |
+
"""
|
89 |
+
Construct a Qwen2 tokenizer. Based on byte-level Byte-Pair-Encoding.
|
90 |
+
|
91 |
+
Same with GPT2Tokenizer, this tokenizer has been trained to treat spaces like parts of the tokens so a word will
|
92 |
+
be encoded differently whether it is at the beginning of the sentence (without space) or not:
|
93 |
+
|
94 |
+
```python
|
95 |
+
>>> from transformers import Qwen2Tokenizer
|
96 |
+
|
97 |
+
>>> tokenizer = Qwen2Tokenizer.from_pretrained("Qwen/Qwen-tokenizer")
|
98 |
+
>>> tokenizer("Hello world")["input_ids"]
|
99 |
+
[9707, 1879]
|
100 |
+
|
101 |
+
>>> tokenizer(" Hello world")["input_ids"]
|
102 |
+
[21927, 1879]
|
103 |
+
```
|
104 |
+
This is expected.
|
105 |
+
|
106 |
+
You should not use GPT2Tokenizer instead, because of the different pretokenization rules.
|
107 |
+
|
108 |
+
This tokenizer inherits from [`PreTrainedTokenizer`] which contains most of the main methods. Users should refer to
|
109 |
+
this superclass for more information regarding those methods.
|
110 |
+
|
111 |
+
Args:
|
112 |
+
vocab_file (`str`):
|
113 |
+
Path to the vocabulary file.
|
114 |
+
merges_file (`str`):
|
115 |
+
Path to the merges file.
|
116 |
+
errors (`str`, *optional*, defaults to `"replace"`):
|
117 |
+
Paradigm to follow when decoding bytes to UTF-8. See
|
118 |
+
[bytes.decode](https://docs.python.org/3/library/stdtypes.html#bytes.decode) for more information.
|
119 |
+
unk_token (`str`, *optional*, defaults to `"<|endoftext|>"`):
|
120 |
+
The unknown token. A token that is not in the vocabulary cannot be converted to an ID and is set to be this
|
121 |
+
token instead.
|
122 |
+
bos_token (`str`, *optional*):
|
123 |
+
The beginning of sequence token. Not applicable for this tokenizer.
|
124 |
+
eos_token (`str`, *optional*, defaults to `"<|endoftext|>"`):
|
125 |
+
The end of sequence token.
|
126 |
+
pad_token (`str`, *optional*, defaults to `"<|endoftext|>"`):
|
127 |
+
The token used for padding, for example when batching sequences of different lengths.
|
128 |
+
clean_up_tokenization_spaces (`bool`, *optional*, defaults to `False`):
|
129 |
+
Whether or not the model should cleanup the spaces that were added when splitting the input text during the
|
130 |
+
tokenization process. Not applicable to this tokenizer, since tokenization does not add spaces.
|
131 |
+
split_special_tokens (`bool`, *optional*, defaults to `False`):
|
132 |
+
Whether or not the special tokens should be split during the tokenization process. The default behavior is
|
133 |
+
to not split special tokens. This means that if `<|endoftext|>` is the `eos_token`, then `tokenizer.tokenize("<|endoftext|>") =
|
134 |
+
['<|endoftext|>`]. Otherwise, if `split_special_tokens=True`, then `tokenizer.tokenize("<|endoftext|>")` will be give `['<',
|
135 |
+
'|', 'endo', 'ft', 'ext', '|', '>']`. This argument is only supported for `slow` tokenizers for the moment.
|
136 |
+
"""
|
137 |
+
|
138 |
+
vocab_files_names = VOCAB_FILES_NAMES
|
139 |
+
pretrained_vocab_files_map = PRETRAINED_VOCAB_FILES_MAP
|
140 |
+
max_model_input_sizes = MAX_MODEL_INPUT_SIZES
|
141 |
+
model_input_names = ["input_ids", "attention_mask"]
|
142 |
+
|
143 |
+
def __init__(
|
144 |
+
self,
|
145 |
+
vocab_file,
|
146 |
+
merges_file,
|
147 |
+
errors="replace",
|
148 |
+
unk_token="<|endoftext|>",
|
149 |
+
bos_token=None,
|
150 |
+
eos_token="<|endoftext|>",
|
151 |
+
pad_token="<|endoftext|>",
|
152 |
+
clean_up_tokenization_spaces=False,
|
153 |
+
split_special_tokens=False,
|
154 |
+
**kwargs,
|
155 |
+
):
|
156 |
+
# Qwen vocab does not contain control tokens; added tokens need to be special
|
157 |
+
bos_token = (
|
158 |
+
AddedToken(bos_token, lstrip=False, rstrip=False, special=True, normalized=False)
|
159 |
+
if isinstance(bos_token, str)
|
160 |
+
else bos_token
|
161 |
+
)
|
162 |
+
eos_token = (
|
163 |
+
AddedToken(eos_token, lstrip=False, rstrip=False, special=True, normalized=False)
|
164 |
+
if isinstance(eos_token, str)
|
165 |
+
else eos_token
|
166 |
+
)
|
167 |
+
unk_token = (
|
168 |
+
AddedToken(unk_token, lstrip=False, rstrip=False, special=True, normalized=False)
|
169 |
+
if isinstance(unk_token, str)
|
170 |
+
else unk_token
|
171 |
+
)
|
172 |
+
pad_token = (
|
173 |
+
AddedToken(pad_token, lstrip=False, rstrip=False, special=True, normalized=False)
|
174 |
+
if isinstance(pad_token, str)
|
175 |
+
else pad_token
|
176 |
+
)
|
177 |
+
|
178 |
+
with open(vocab_file, encoding="utf-8") as vocab_handle:
|
179 |
+
self.encoder = json.load(vocab_handle)
|
180 |
+
self.decoder = {v: k for k, v in self.encoder.items()}
|
181 |
+
self.errors = errors # how to handle errors in decoding
|
182 |
+
self.byte_encoder = bytes_to_unicode()
|
183 |
+
self.byte_decoder = {v: k for k, v in self.byte_encoder.items()}
|
184 |
+
bpe_merges = []
|
185 |
+
with open(merges_file, encoding="utf-8") as merges_handle:
|
186 |
+
for line in merges_handle:
|
187 |
+
line = line.strip()
|
188 |
+
if not line or line.startswith("#"):
|
189 |
+
continue
|
190 |
+
bpe_merges.append(tuple(line.split()))
|
191 |
+
self.bpe_ranks = dict(zip(bpe_merges, range(len(bpe_merges))))
|
192 |
+
# NOTE: the cache can grow without bound and will get really large for long running processes
|
193 |
+
# (esp. for texts of language that do not use space between word, e.g. Chinese); technically
|
194 |
+
# not a memory leak but appears as one.
|
195 |
+
# GPT2Tokenizer has the same problem, so let's be consistent.
|
196 |
+
self.cache = {}
|
197 |
+
|
198 |
+
self.pat = re.compile(PRETOKENIZE_REGEX)
|
199 |
+
|
200 |
+
if kwargs.get("add_prefix_space", False):
|
201 |
+
logger.warning_once(
|
202 |
+
f"{self.__class__.__name} does not support `add_prefix_space`, setting it to True has no effect."
|
203 |
+
)
|
204 |
+
|
205 |
+
super().__init__(
|
206 |
+
errors=errors,
|
207 |
+
bos_token=bos_token,
|
208 |
+
eos_token=eos_token,
|
209 |
+
pad_token=pad_token,
|
210 |
+
unk_token=unk_token,
|
211 |
+
clean_up_tokenization_spaces=clean_up_tokenization_spaces,
|
212 |
+
split_special_tokens=split_special_tokens,
|
213 |
+
**kwargs,
|
214 |
+
)
|
215 |
+
|
216 |
+
@property
|
217 |
+
def vocab_size(self) -> int:
|
218 |
+
return len(self.encoder)
|
219 |
+
|
220 |
+
# Copied from transformers.models.gpt2.tokenization_gpt2.GPT2Tokenizer.get_vocab
|
221 |
+
def get_vocab(self):
|
222 |
+
return dict(self.encoder, **self.added_tokens_encoder)
|
223 |
+
|
224 |
+
# Copied from transformers.models.gpt2.tokenization_gpt2.GPT2Tokenizer.bpe
|
225 |
+
def bpe(self, token):
|
226 |
+
if token in self.cache:
|
227 |
+
return self.cache[token]
|
228 |
+
word = tuple(token)
|
229 |
+
pairs = get_pairs(word)
|
230 |
+
|
231 |
+
if not pairs:
|
232 |
+
return token
|
233 |
+
|
234 |
+
while True:
|
235 |
+
bigram = min(pairs, key=lambda pair: self.bpe_ranks.get(pair, float("inf")))
|
236 |
+
if bigram not in self.bpe_ranks:
|
237 |
+
break
|
238 |
+
first, second = bigram
|
239 |
+
new_word = []
|
240 |
+
i = 0
|
241 |
+
while i < len(word):
|
242 |
+
try:
|
243 |
+
j = word.index(first, i)
|
244 |
+
except ValueError:
|
245 |
+
new_word.extend(word[i:])
|
246 |
+
break
|
247 |
+
else:
|
248 |
+
new_word.extend(word[i:j])
|
249 |
+
i = j
|
250 |
+
|
251 |
+
if word[i] == first and i < len(word) - 1 and word[i + 1] == second:
|
252 |
+
new_word.append(first + second)
|
253 |
+
i += 2
|
254 |
+
else:
|
255 |
+
new_word.append(word[i])
|
256 |
+
i += 1
|
257 |
+
new_word = tuple(new_word)
|
258 |
+
word = new_word
|
259 |
+
if len(word) == 1:
|
260 |
+
break
|
261 |
+
else:
|
262 |
+
pairs = get_pairs(word)
|
263 |
+
word = " ".join(word)
|
264 |
+
self.cache[token] = word
|
265 |
+
return word
|
266 |
+
|
267 |
+
# Copied from transformers.models.gpt2.tokenization_gpt2.GPT2Tokenizer._tokenize
|
268 |
+
def _tokenize(self, text):
|
269 |
+
"""Tokenize a string."""
|
270 |
+
bpe_tokens = []
|
271 |
+
for token in re.findall(self.pat, text):
|
272 |
+
token = "".join(
|
273 |
+
self.byte_encoder[b] for b in token.encode("utf-8")
|
274 |
+
) # Maps all our bytes to unicode strings, avoiding control tokens of the BPE (spaces in our case)
|
275 |
+
bpe_tokens.extend(bpe_token for bpe_token in self.bpe(token).split(" "))
|
276 |
+
return bpe_tokens
|
277 |
+
|
278 |
+
# Copied from transformers.models.gpt2.tokenization_gpt2.GPT2Tokenizer._convert_token_to_id
|
279 |
+
def _convert_token_to_id(self, token):
|
280 |
+
"""Converts a token (str) in an id using the vocab."""
|
281 |
+
return self.encoder.get(token, self.encoder.get(self.unk_token))
|
282 |
+
|
283 |
+
# Copied from transformers.models.gpt2.tokenization_gpt2.GPT2Tokenizer._convert_id_to_token
|
284 |
+
def _convert_id_to_token(self, index):
|
285 |
+
"""Converts an index (integer) in a token (str) using the vocab."""
|
286 |
+
return self.decoder.get(index)
|
287 |
+
|
288 |
+
# Copied from transformers.models.gpt2.tokenization_gpt2.GPT2Tokenizer.convert_tokens_to_string
|
289 |
+
def convert_tokens_to_string(self, tokens):
|
290 |
+
"""Converts a sequence of tokens (string) in a single string."""
|
291 |
+
text = "".join(tokens)
|
292 |
+
text = bytearray([self.byte_decoder[c] for c in text]).decode("utf-8", errors=self.errors)
|
293 |
+
return text
|
294 |
+
|
295 |
+
def decode(
|
296 |
+
self,
|
297 |
+
token_ids,
|
298 |
+
skip_special_tokens: bool = False,
|
299 |
+
clean_up_tokenization_spaces: Optional[bool] = False,
|
300 |
+
spaces_between_special_tokens: bool = False,
|
301 |
+
**kwargs,
|
302 |
+
) -> str:
|
303 |
+
# `spaces_between_special_tokens` defaults to True for _decode in slow tokenizers
|
304 |
+
# and cannot be configured elsewhere, but it should default to False for Qwen2Tokenizer
|
305 |
+
return super().decode(
|
306 |
+
token_ids,
|
307 |
+
skip_special_tokens=skip_special_tokens,
|
308 |
+
clean_up_tokenization_spaces=clean_up_tokenization_spaces,
|
309 |
+
spaces_between_special_tokens=spaces_between_special_tokens,
|
310 |
+
**kwargs,
|
311 |
+
)
|
312 |
+
|
313 |
+
# Copied from transformers.models.gpt2.tokenization_gpt2.GPT2Tokenizer.save_vocabulary
|
314 |
+
def save_vocabulary(self, save_directory: str, filename_prefix: Optional[str] = None) -> Tuple[str]:
|
315 |
+
if not os.path.isdir(save_directory):
|
316 |
+
logger.error(f"Vocabulary path ({save_directory}) should be a directory")
|
317 |
+
return
|
318 |
+
vocab_file = os.path.join(
|
319 |
+
save_directory, (filename_prefix + "-" if filename_prefix else "") + VOCAB_FILES_NAMES["vocab_file"]
|
320 |
+
)
|
321 |
+
merge_file = os.path.join(
|
322 |
+
save_directory, (filename_prefix + "-" if filename_prefix else "") + VOCAB_FILES_NAMES["merges_file"]
|
323 |
+
)
|
324 |
+
|
325 |
+
with open(vocab_file, "w", encoding="utf-8") as f:
|
326 |
+
f.write(json.dumps(self.encoder, indent=2, sort_keys=True, ensure_ascii=False) + "\n")
|
327 |
+
|
328 |
+
index = 0
|
329 |
+
with open(merge_file, "w", encoding="utf-8") as writer:
|
330 |
+
writer.write("#version: 0.2\n")
|
331 |
+
for bpe_tokens, token_index in sorted(self.bpe_ranks.items(), key=lambda kv: kv[1]):
|
332 |
+
if index != token_index:
|
333 |
+
logger.warning(
|
334 |
+
f"Saving vocabulary to {merge_file}: BPE merge indices are not consecutive."
|
335 |
+
" Please check that the tokenizer is not corrupted!"
|
336 |
+
)
|
337 |
+
index = token_index
|
338 |
+
writer.write(" ".join(bpe_tokens) + "\n")
|
339 |
+
index += 1
|
340 |
+
|
341 |
+
return vocab_file, merge_file
|
342 |
+
|
343 |
+
def prepare_for_tokenization(self, text, **kwargs):
|
344 |
+
text = unicodedata.normalize("NFC", text)
|
345 |
+
return (text, kwargs)
|
tokenization_bunny_qwen2_fast.py
ADDED
@@ -0,0 +1,143 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# coding=utf-8
|
2 |
+
# Copyright 2024 The Qwen team, Alibaba Group and The HuggingFace Inc. team. All rights reserved.
|
3 |
+
#
|
4 |
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
5 |
+
# you may not use this file except in compliance with the License.
|
6 |
+
# You may obtain a copy of the License at
|
7 |
+
#
|
8 |
+
# http://www.apache.org/licenses/LICENSE-2.0
|
9 |
+
#
|
10 |
+
# Unless required by applicable law or agreed to in writing, software
|
11 |
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
12 |
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
13 |
+
# See the License for the specific language governing permissions and
|
14 |
+
# limitations under the License.
|
15 |
+
"""Tokenization classes for Qwen2."""
|
16 |
+
|
17 |
+
from typing import Optional, Tuple
|
18 |
+
|
19 |
+
from ...tokenization_utils import AddedToken
|
20 |
+
from ...tokenization_utils_fast import PreTrainedTokenizerFast
|
21 |
+
from ...utils import logging
|
22 |
+
from .tokenization_qwen2 import Qwen2Tokenizer
|
23 |
+
|
24 |
+
|
25 |
+
logger = logging.get_logger(__name__)
|
26 |
+
|
27 |
+
VOCAB_FILES_NAMES = {
|
28 |
+
"vocab_file": "vocab.json",
|
29 |
+
"merges_file": "merges.txt",
|
30 |
+
"tokenizer_file": "tokenizer.json",
|
31 |
+
}
|
32 |
+
|
33 |
+
PRETRAINED_VOCAB_FILES_MAP = {
|
34 |
+
"vocab_file": {"qwen/qwen-tokenizer": "https://huggingface.co/qwen/qwen-tokenizer/resolve/main/vocab.json"},
|
35 |
+
"merges_file": {"qwen/qwen-tokenizer": "https://huggingface.co/qwen/qwen-tokenizer/resolve/main/merges.txt"},
|
36 |
+
"tokenizer_file": {
|
37 |
+
"qwen/qwen-tokenizer": "https://huggingface.co/qwen/qwen-tokenizer/resolve/main/tokenizer.json"
|
38 |
+
},
|
39 |
+
}
|
40 |
+
|
41 |
+
MAX_MODEL_INPUT_SIZES = {"qwen/qwen-tokenizer": 32768}
|
42 |
+
|
43 |
+
|
44 |
+
class Qwen2TokenizerFast(PreTrainedTokenizerFast):
|
45 |
+
"""
|
46 |
+
Construct a "fast" Qwen2 tokenizer (backed by HuggingFace's *tokenizers* library). Based on byte-level
|
47 |
+
Byte-Pair-Encoding.
|
48 |
+
|
49 |
+
Same with GPT2Tokenizer, this tokenizer has been trained to treat spaces like parts of the tokens so a word will
|
50 |
+
be encoded differently whether it is at the beginning of the sentence (without space) or not:
|
51 |
+
|
52 |
+
```python
|
53 |
+
>>> from transformers import Qwen2TokenizerFast
|
54 |
+
|
55 |
+
>>> tokenizer = Qwen2TokenizerFast.from_pretrained("Qwen/Qwen-tokenizer")
|
56 |
+
>>> tokenizer("Hello world")["input_ids"]
|
57 |
+
[9707, 1879]
|
58 |
+
|
59 |
+
>>> tokenizer(" Hello world")["input_ids"]
|
60 |
+
[21927, 1879]
|
61 |
+
```
|
62 |
+
This is expected.
|
63 |
+
|
64 |
+
This tokenizer inherits from [`PreTrainedTokenizerFast`] which contains most of the main methods. Users should
|
65 |
+
refer to this superclass for more information regarding those methods.
|
66 |
+
|
67 |
+
Args:
|
68 |
+
vocab_file (`str`, *optional*):
|
69 |
+
Path to the vocabulary file.
|
70 |
+
merges_file (`str`, *optional*):
|
71 |
+
Path to the merges file.
|
72 |
+
tokenizer_file (`str`, *optional*):
|
73 |
+
Path to [tokenizers](https://github.com/huggingface/tokenizers) file (generally has a .json extension) that
|
74 |
+
contains everything needed to load the tokenizer.
|
75 |
+
unk_token (`str`, *optional*, defaults to `"<|endoftext|>"`):
|
76 |
+
The unknown token. A token that is not in the vocabulary cannot be converted to an ID and is set to be this
|
77 |
+
token instead. Not applicable to this tokenizer.
|
78 |
+
bos_token (`str`, *optional*):
|
79 |
+
The beginning of sequence token. Not applicable for this tokenizer.
|
80 |
+
eos_token (`str`, *optional*, defaults to `"<|endoftext|>"`):
|
81 |
+
The end of sequence token.
|
82 |
+
pad_token (`str`, *optional*, defaults to `"<|endoftext|>"`):
|
83 |
+
The token used for padding, for example when batching sequences of different lengths.
|
84 |
+
"""
|
85 |
+
|
86 |
+
vocab_files_names = VOCAB_FILES_NAMES
|
87 |
+
pretrained_vocab_files_map = PRETRAINED_VOCAB_FILES_MAP
|
88 |
+
max_model_input_sizes = MAX_MODEL_INPUT_SIZES
|
89 |
+
model_input_names = ["input_ids", "attention_mask"]
|
90 |
+
slow_tokenizer_class = Qwen2Tokenizer
|
91 |
+
|
92 |
+
def __init__(
|
93 |
+
self,
|
94 |
+
vocab_file=None,
|
95 |
+
merges_file=None,
|
96 |
+
tokenizer_file=None,
|
97 |
+
unk_token="<|endoftext|>",
|
98 |
+
bos_token=None,
|
99 |
+
eos_token="<|endoftext|>",
|
100 |
+
pad_token="<|endoftext|>",
|
101 |
+
**kwargs,
|
102 |
+
):
|
103 |
+
# We need to at least pass vocab_file and merges_file to base class
|
104 |
+
# in case a slow tokenizer needs to be initialized; other can be
|
105 |
+
# configured through files.
|
106 |
+
# following GPT2TokenizerFast, also adding unk_token, bos_token, and eos_token
|
107 |
+
|
108 |
+
bos_token = (
|
109 |
+
AddedToken(bos_token, lstrip=False, rstrip=False, special=True, normalized=False)
|
110 |
+
if isinstance(bos_token, str)
|
111 |
+
else bos_token
|
112 |
+
)
|
113 |
+
eos_token = (
|
114 |
+
AddedToken(eos_token, lstrip=False, rstrip=False, special=True, normalized=False)
|
115 |
+
if isinstance(eos_token, str)
|
116 |
+
else eos_token
|
117 |
+
)
|
118 |
+
unk_token = (
|
119 |
+
AddedToken(unk_token, lstrip=False, rstrip=False, special=True, normalized=False)
|
120 |
+
if isinstance(unk_token, str)
|
121 |
+
else unk_token
|
122 |
+
)
|
123 |
+
pad_token = (
|
124 |
+
AddedToken(pad_token, lstrip=False, rstrip=False, special=True, normalized=False)
|
125 |
+
if isinstance(pad_token, str)
|
126 |
+
else pad_token
|
127 |
+
)
|
128 |
+
|
129 |
+
super().__init__(
|
130 |
+
vocab_file,
|
131 |
+
merges_file,
|
132 |
+
tokenizer_file=tokenizer_file,
|
133 |
+
unk_token=unk_token,
|
134 |
+
bos_token=bos_token,
|
135 |
+
eos_token=eos_token,
|
136 |
+
pad_token=pad_token,
|
137 |
+
**kwargs,
|
138 |
+
)
|
139 |
+
|
140 |
+
# Copied from transformers.models.gpt2.tokenization_gpt2_fast.GPT2TokenizerFast.save_vocabulary
|
141 |
+
def save_vocabulary(self, save_directory: str, filename_prefix: Optional[str] = None) -> Tuple[str]:
|
142 |
+
files = self._tokenizer.model.save(save_directory, name=filename_prefix)
|
143 |
+
return tuple(files)
|
tokenizer_config.json
ADDED
@@ -0,0 +1,44 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"add_prefix_space": false,
|
3 |
+
"added_tokens_decoder": {
|
4 |
+
"151643": {
|
5 |
+
"content": "<|endoftext|>",
|
6 |
+
"lstrip": false,
|
7 |
+
"normalized": false,
|
8 |
+
"rstrip": false,
|
9 |
+
"single_word": false,
|
10 |
+
"special": true
|
11 |
+
},
|
12 |
+
"151644": {
|
13 |
+
"content": "<|im_start|>",
|
14 |
+
"lstrip": false,
|
15 |
+
"normalized": false,
|
16 |
+
"rstrip": false,
|
17 |
+
"single_word": false,
|
18 |
+
"special": true
|
19 |
+
},
|
20 |
+
"151645": {
|
21 |
+
"content": "<|im_end|>",
|
22 |
+
"lstrip": false,
|
23 |
+
"normalized": false,
|
24 |
+
"rstrip": false,
|
25 |
+
"single_word": false,
|
26 |
+
"special": true
|
27 |
+
}
|
28 |
+
},
|
29 |
+
"additional_special_tokens": [
|
30 |
+
"<|im_start|>",
|
31 |
+
"<|im_end|>"
|
32 |
+
],
|
33 |
+
"bos_token": null,
|
34 |
+
"chat_template": "{% for message in messages %}{{'<|im_start|>' + message['role'] + '\n' + message['content'] + '<|im_end|>' + '\n'}}{% endfor %}{% if add_generation_prompt %}{{ '<|im_start|>assistant\n' }}{% endif %}",
|
35 |
+
"clean_up_tokenization_spaces": false,
|
36 |
+
"eos_token": "<|endoftext|>",
|
37 |
+
"errors": "replace",
|
38 |
+
"model_max_length": 32768,
|
39 |
+
"pad_token": "<|endoftext|>",
|
40 |
+
"split_special_tokens": false,
|
41 |
+
"tokenizer_class": "Qwen2Tokenizer",
|
42 |
+
"unk_token": null,
|
43 |
+
"use_fast": true
|
44 |
+
}
|
vocab.json
ADDED
The diff for this file is too large to render.
See raw diff
|
|