ZhangCNN commited on
Commit
d57c7b2
1 Parent(s): d3f10f9

Upload tokenizer

Browse files
special_tokens_map.json ADDED
@@ -0,0 +1 @@
 
 
1
+ {}
tokenization_chatglm.py ADDED
@@ -0,0 +1,253 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ import os
2
+ import torch
3
+ from typing import List, Optional, Union, Dict
4
+ from sentencepiece import SentencePieceProcessor
5
+ from transformers import PreTrainedTokenizer
6
+ from transformers.utils import logging, PaddingStrategy
7
+ from transformers.tokenization_utils_base import EncodedInput, BatchEncoding
8
+
9
+
10
+ class SPTokenizer:
11
+ def __init__(self, model_path: str):
12
+ # reload tokenizer
13
+ assert os.path.isfile(model_path), model_path
14
+ self.sp_model = SentencePieceProcessor(model_file=model_path)
15
+
16
+ # BOS / EOS token IDs
17
+ self.n_words: int = self.sp_model.vocab_size()
18
+ self.bos_id: int = self.sp_model.bos_id()
19
+ self.eos_id: int = self.sp_model.eos_id()
20
+ self.pad_id: int = self.sp_model.unk_id()
21
+ assert self.sp_model.vocab_size() == self.sp_model.get_piece_size()
22
+
23
+ special_tokens = ["[MASK]", "[gMASK]", "[sMASK]", "sop", "eop"]
24
+ self.special_tokens = {}
25
+ self.index_special_tokens = {}
26
+ for token in special_tokens:
27
+ self.special_tokens[token] = self.n_words
28
+ self.index_special_tokens[self.n_words] = token
29
+ self.n_words += 1
30
+
31
+ def tokenize(self, s: str):
32
+ return self.sp_model.EncodeAsPieces(s)
33
+
34
+ def encode(self, s: str, bos: bool = False, eos: bool = False) -> List[int]:
35
+ assert type(s) is str
36
+ t = self.sp_model.encode(s)
37
+ if bos:
38
+ t = [self.bos_id] + t
39
+ if eos:
40
+ t = t + [self.eos_id]
41
+ return t
42
+
43
+ def decode(self, t: List[int]) -> str:
44
+ return self.sp_model.decode(t)
45
+
46
+ def decode_tokens(self, tokens: List[str]) -> str:
47
+ text = self.sp_model.DecodePieces(tokens)
48
+ return text
49
+
50
+ def convert_token_to_id(self, token):
51
+ """ Converts a token (str) in an id using the vocab. """
52
+ if token in self.special_tokens:
53
+ return self.special_tokens[token]
54
+ return self.sp_model.PieceToId(token)
55
+
56
+ def convert_id_to_token(self, index):
57
+ """Converts an index (integer) in a token (str) using the vocab."""
58
+ if index in self.index_special_tokens or index in [self.eos_id, self.bos_id, self.pad_id] or index < 0:
59
+ return ""
60
+ return self.sp_model.IdToPiece(index)
61
+
62
+
63
+ class ChatGLMTokenizer(PreTrainedTokenizer):
64
+ vocab_files_names = {"vocab_file": "tokenizer.model"}
65
+
66
+ model_input_names = ["input_ids", "attention_mask", "position_ids"]
67
+
68
+ def __init__(self, vocab_file, padding_side="left", **kwargs):
69
+ super().__init__(padding_side=padding_side, **kwargs)
70
+ self.name = "GLMTokenizer"
71
+
72
+ self.vocab_file = vocab_file
73
+ self.tokenizer = SPTokenizer(vocab_file)
74
+ self.special_tokens = {
75
+ "<bos>": self.tokenizer.bos_id,
76
+ "<eos>": self.tokenizer.eos_id,
77
+ "<pad>": self.tokenizer.pad_id
78
+ }
79
+
80
+ def get_command(self, token):
81
+ if token in self.special_tokens:
82
+ return self.special_tokens[token]
83
+ assert token in self.tokenizer.special_tokens, f"{token} is not a special token for {self.name}"
84
+ return self.tokenizer.special_tokens[token]
85
+
86
+ @property
87
+ def pad_token(self) -> str:
88
+ return "<unk>"
89
+
90
+ @property
91
+ def pad_token_id(self):
92
+ return self.get_command("<pad>")
93
+
94
+ @property
95
+ def eos_token(self) -> str:
96
+ return "</s>"
97
+
98
+ @property
99
+ def eos_token_id(self):
100
+ return self.get_command("<eos>")
101
+
102
+ @property
103
+ def vocab_size(self):
104
+ return self.tokenizer.n_words
105
+
106
+ def get_vocab(self):
107
+ """ Returns vocab as a dict """
108
+ vocab = {self._convert_id_to_token(i): i for i in range(self.vocab_size)}
109
+ vocab.update(self.added_tokens_encoder)
110
+ return vocab
111
+
112
+ def _tokenize(self, text, **kwargs):
113
+ return self.tokenizer.tokenize(text)
114
+
115
+ def _convert_token_to_id(self, token):
116
+ """ Converts a token (str) in an id using the vocab. """
117
+ return self.tokenizer.convert_token_to_id(token)
118
+
119
+ def _convert_id_to_token(self, index):
120
+ """Converts an index (integer) in a token (str) using the vocab."""
121
+ return self.tokenizer.convert_id_to_token(index)
122
+
123
+ def convert_tokens_to_string(self, tokens: List[str]) -> str:
124
+ return self.tokenizer.decode_tokens(tokens)
125
+
126
+ def save_vocabulary(self, save_directory, filename_prefix=None):
127
+ """
128
+ Save the vocabulary and special tokens file to a directory.
129
+
130
+ Args:
131
+ save_directory (`str`):
132
+ The directory in which to save the vocabulary.
133
+ filename_prefix (`str`, *optional*):
134
+ An optional prefix to add to the named of the saved files.
135
+
136
+ Returns:
137
+ `Tuple(str)`: Paths to the files saved.
138
+ """
139
+ if os.path.isdir(save_directory):
140
+ vocab_file = os.path.join(
141
+ save_directory, self.vocab_files_names["vocab_file"]
142
+ )
143
+ else:
144
+ vocab_file = save_directory
145
+
146
+ with open(self.vocab_file, 'rb') as fin:
147
+ proto_str = fin.read()
148
+
149
+ with open(vocab_file, "wb") as writer:
150
+ writer.write(proto_str)
151
+
152
+ return (vocab_file,)
153
+
154
+ def get_prefix_tokens(self):
155
+ prefix_tokens = [self.get_command("[gMASK]"), self.get_command("sop")]
156
+ return prefix_tokens
157
+
158
+ def build_prompt(self, query, history=None):
159
+ if history is None:
160
+ history = []
161
+ prompt = ""
162
+ for i, (old_query, response) in enumerate(history):
163
+ prompt += "[Round {}]\n\n问:{}\n\n答:{}\n\n".format(i + 1, old_query, response)
164
+ prompt += "[Round {}]\n\n问:{}\n\n答:".format(len(history) + 1, query)
165
+ return prompt
166
+
167
+ def build_inputs_with_special_tokens(
168
+ self, token_ids_0: List[int], token_ids_1: Optional[List[int]] = None
169
+ ) -> List[int]:
170
+ """
171
+ Build model inputs from a sequence or a pair of sequence for sequence classification tasks by concatenating and
172
+ adding special tokens. A BERT sequence has the following format:
173
+
174
+ - single sequence: `[CLS] X [SEP]`
175
+ - pair of sequences: `[CLS] A [SEP] B [SEP]`
176
+
177
+ Args:
178
+ token_ids_0 (`List[int]`):
179
+ List of IDs to which the special tokens will be added.
180
+ token_ids_1 (`List[int]`, *optional*):
181
+ Optional second list of IDs for sequence pairs.
182
+
183
+ Returns:
184
+ `List[int]`: List of [input IDs](../glossary#input-ids) with the appropriate special tokens.
185
+ """
186
+ prefix_tokens = self.get_prefix_tokens()
187
+ token_ids_0 = prefix_tokens + token_ids_0
188
+ if token_ids_1 is not None:
189
+ token_ids_0 = token_ids_0 + token_ids_1 + [self.get_command("<eos>")]
190
+ return token_ids_0
191
+
192
+ def _pad(
193
+ self,
194
+ encoded_inputs: Union[Dict[str, EncodedInput], BatchEncoding],
195
+ max_length: Optional[int] = None,
196
+ padding_strategy: PaddingStrategy = PaddingStrategy.DO_NOT_PAD,
197
+ pad_to_multiple_of: Optional[int] = None,
198
+ return_attention_mask: Optional[bool] = None,
199
+ ) -> dict:
200
+ """
201
+ Pad encoded inputs (on left/right and up to predefined length or max length in the batch)
202
+
203
+ Args:
204
+ encoded_inputs:
205
+ Dictionary of tokenized inputs (`List[int]`) or batch of tokenized inputs (`List[List[int]]`).
206
+ max_length: maximum length of the returned list and optionally padding length (see below).
207
+ Will truncate by taking into account the special tokens.
208
+ padding_strategy: PaddingStrategy to use for padding.
209
+
210
+ - PaddingStrategy.LONGEST Pad to the longest sequence in the batch
211
+ - PaddingStrategy.MAX_LENGTH: Pad to the max length (default)
212
+ - PaddingStrategy.DO_NOT_PAD: Do not pad
213
+ The tokenizer padding sides are defined in self.padding_side:
214
+
215
+ - 'left': pads on the left of the sequences
216
+ - 'right': pads on the right of the sequences
217
+ pad_to_multiple_of: (optional) Integer if set will pad the sequence to a multiple of the provided value.
218
+ This is especially useful to enable the use of Tensor Core on NVIDIA hardware with compute capability
219
+ `>= 7.5` (Volta).
220
+ return_attention_mask:
221
+ (optional) Set to False to avoid returning attention mask (default: set to model specifics)
222
+ """
223
+ # Load from model defaults
224
+ assert self.padding_side == "left"
225
+
226
+ required_input = encoded_inputs[self.model_input_names[0]]
227
+ seq_length = len(required_input)
228
+
229
+ if padding_strategy == PaddingStrategy.LONGEST:
230
+ max_length = len(required_input)
231
+
232
+ if max_length is not None and pad_to_multiple_of is not None and (max_length % pad_to_multiple_of != 0):
233
+ max_length = ((max_length // pad_to_multiple_of) + 1) * pad_to_multiple_of
234
+
235
+ needs_to_be_padded = padding_strategy != PaddingStrategy.DO_NOT_PAD and len(required_input) != max_length
236
+
237
+ # Initialize attention mask if not present.
238
+ if "attention_mask" not in encoded_inputs:
239
+ encoded_inputs["attention_mask"] = [1] * seq_length
240
+
241
+ if "position_ids" not in encoded_inputs:
242
+ encoded_inputs["position_ids"] = list(range(seq_length))
243
+
244
+ if needs_to_be_padded:
245
+ difference = max_length - len(required_input)
246
+
247
+ if "attention_mask" in encoded_inputs:
248
+ encoded_inputs["attention_mask"] = [0] * difference + encoded_inputs["attention_mask"]
249
+ if "position_ids" in encoded_inputs:
250
+ encoded_inputs["position_ids"] = [0] * difference + encoded_inputs["position_ids"]
251
+ encoded_inputs[self.model_input_names[0]] = [self.pad_token_id] * difference + required_input
252
+
253
+ return encoded_inputs
tokenizer.model ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e7dc4c393423b76e4373e5157ddc34803a0189ba96b21ddbb40269d31468a6f2
3
+ size 1018370
tokenizer_config.json ADDED
@@ -0,0 +1,14 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "auto_map": {
3
+ "AutoTokenizer": [
4
+ "tokenization_chatglm.ChatGLMTokenizer",
5
+ null
6
+ ]
7
+ },
8
+ "clean_up_tokenization_spaces": true,
9
+ "do_lower_case": false,
10
+ "model_max_length": 1000000000000000019884624838656,
11
+ "padding_side": "left",
12
+ "remove_space": false,
13
+ "tokenizer_class": "ChatGLMTokenizer"
14
+ }