CoolFace
Modelpublic

DMetaSoul/nl2sql-6b

sourceHugging Faceapache-2.0updated 2y agoView on Hugging Face
0likes13downloads
tokenization_chatglm.py266 linesDownload Raw Back to root
1import os2import torch3from typing import List, Optional, Union, Dict4from sentencepiece import SentencePieceProcessor5from transformers import PreTrainedTokenizer6from transformers.utils import logging, PaddingStrategy7from transformers.tokenization_utils_base import EncodedInput, BatchEncoding8 9 10class SPTokenizer:11    def __init__(self, model_path: str):12        # reload tokenizer13        assert os.path.isfile(model_path), model_path14        self.sp_model = SentencePieceProcessor(model_file=model_path)15 16        # BOS / EOS token IDs17        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_words28            self.index_special_tokens[self.n_words] = token29            self.n_words += 130 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 str36        t = self.sp_model.encode(s)37        if bos:38            t = [self.bos_id] + t39        if eos:40            t = t + [self.eos_id]41        return t42 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 text49 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 63class 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", clean_up_tokenization_spaces=False, **kwargs):69        # hack to fixbug: AttributeError: 'ChatGLMTokenizer' object has no attribute 'tokenizer'70        self.tokenizer = SPTokenizer(vocab_file)71        super().__init__(padding_side=padding_side, clean_up_tokenization_spaces=clean_up_tokenization_spaces, **kwargs)72        self.name = "GLMTokenizer"73 74        self.vocab_file = vocab_file75        self.special_tokens = {76            "<bos>": self.tokenizer.bos_id,77            "<eos>": self.tokenizer.eos_id,78            "<pad>": self.tokenizer.pad_id79        }80 81    def get_command(self, token):82        if token in self.special_tokens:83            return self.special_tokens[token]84        assert token in self.tokenizer.special_tokens, f"{token} is not a special token for {self.name}"85        return self.tokenizer.special_tokens[token]86 87    @property88    def unk_token(self) -> str:89        return "<unk>"90 91    @property92    def pad_token(self) -> str:93        return "<unk>"94 95    @property96    def pad_token_id(self):97        return self.get_command("<pad>")98 99    @property100    def eos_token(self) -> str:101        return "</s>"102 103    @property104    def eos_token_id(self):105        return self.get_command("<eos>")106 107    @property108    def vocab_size(self):109        return self.tokenizer.n_words110 111    def get_vocab(self):112        """ Returns vocab as a dict """113        vocab = {self._convert_id_to_token(i): i for i in range(self.vocab_size)}114        vocab.update(self.added_tokens_encoder)115        return vocab116 117    def _tokenize(self, text, **kwargs):118        return self.tokenizer.tokenize(text)119 120    def _convert_token_to_id(self, token):121        """ Converts a token (str) in an id using the vocab. """122        return self.tokenizer.convert_token_to_id(token)123 124    def _convert_id_to_token(self, index):125        """Converts an index (integer) in a token (str) using the vocab."""126        return self.tokenizer.convert_id_to_token(index)127 128    def convert_tokens_to_string(self, tokens: List[str]) -> str:129        return self.tokenizer.decode_tokens(tokens)130 131    def save_vocabulary(self, save_directory, filename_prefix=None):132        """133        Save the vocabulary and special tokens file to a directory.134 135        Args:136            save_directory (`str`):137                The directory in which to save the vocabulary.138            filename_prefix (`str`, *optional*):139                An optional prefix to add to the named of the saved files.140 141        Returns:142            `Tuple(str)`: Paths to the files saved.143        """144        if os.path.isdir(save_directory):145            vocab_file = os.path.join(146                save_directory, self.vocab_files_names["vocab_file"]147            )148        else:149            vocab_file = save_directory150 151        with open(self.vocab_file, 'rb') as fin:152            proto_str = fin.read()153 154        with open(vocab_file, "wb") as writer:155            writer.write(proto_str)156 157        return (vocab_file,)158 159    def get_prefix_tokens(self):160        prefix_tokens = [self.get_command("[gMASK]"), self.get_command("sop")]161        return prefix_tokens162 163    def build_prompt(self, query, history=None):164        if history is None:165            history = []166        prompt = ""167        for i, (old_query, response) in enumerate(history):168            prompt += "[Round {}]\n\n问:{}\n\n答:{}\n\n".format(i + 1, old_query, response)169        prompt += "[Round {}]\n\n问:{}\n\n答:".format(len(history) + 1, query)170        return prompt171 172    def build_inputs_with_special_tokens(173            self, token_ids_0: List[int], token_ids_1: Optional[List[int]] = None174    ) -> List[int]:175        """176        Build model inputs from a sequence or a pair of sequence for sequence classification tasks by concatenating and177        adding special tokens. A BERT sequence has the following format:178 179        - single sequence: `[CLS] X [SEP]`180        - pair of sequences: `[CLS] A [SEP] B [SEP]`181 182        Args:183            token_ids_0 (`List[int]`):184                List of IDs to which the special tokens will be added.185            token_ids_1 (`List[int]`, *optional*):186                Optional second list of IDs for sequence pairs.187 188        Returns:189            `List[int]`: List of [input IDs](../glossary#input-ids) with the appropriate special tokens.190        """191        prefix_tokens = self.get_prefix_tokens()192        token_ids_0 = prefix_tokens + token_ids_0193        if token_ids_1 is not None:194            token_ids_0 = token_ids_0 + token_ids_1 + [self.get_command("<eos>")]195        return token_ids_0196 197    def _pad(198            self,199            encoded_inputs: Union[Dict[str, EncodedInput], BatchEncoding],200            max_length: Optional[int] = None,201            padding_strategy: PaddingStrategy = PaddingStrategy.DO_NOT_PAD,202            pad_to_multiple_of: Optional[int] = None,203            return_attention_mask: Optional[bool] = None,204    ) -> dict:205        """206        Pad encoded inputs (on left/right and up to predefined length or max length in the batch)207 208        Args:209            encoded_inputs:210                Dictionary of tokenized inputs (`List[int]`) or batch of tokenized inputs (`List[List[int]]`).211            max_length: maximum length of the returned list and optionally padding length (see below).212                Will truncate by taking into account the special tokens.213            padding_strategy: PaddingStrategy to use for padding.214 215                - PaddingStrategy.LONGEST Pad to the longest sequence in the batch216                - PaddingStrategy.MAX_LENGTH: Pad to the max length (default)217                - PaddingStrategy.DO_NOT_PAD: Do not pad218                The tokenizer padding sides are defined in self.padding_side:219 220                    - 'left': pads on the left of the sequences221                    - 'right': pads on the right of the sequences222            pad_to_multiple_of: (optional) Integer if set will pad the sequence to a multiple of the provided value.223                This is especially useful to enable the use of Tensor Core on NVIDIA hardware with compute capability224                `>= 7.5` (Volta).225            return_attention_mask:226                (optional) Set to False to avoid returning attention mask (default: set to model specifics)227        """228        # Load from model defaults229        # assert self.padding_side == "left"230 231        required_input = encoded_inputs[self.model_input_names[0]]232        seq_length = len(required_input)233 234        if padding_strategy == PaddingStrategy.LONGEST:235            max_length = len(required_input)236 237        if max_length is not None and pad_to_multiple_of is not None and (max_length % pad_to_multiple_of != 0):238            max_length = ((max_length // pad_to_multiple_of) + 1) * pad_to_multiple_of239 240        needs_to_be_padded = padding_strategy != PaddingStrategy.DO_NOT_PAD and len(required_input) != max_length241 242        # Initialize attention mask if not present.243        if "attention_mask" not in encoded_inputs:244            encoded_inputs["attention_mask"] = [1] * seq_length245 246        if "position_ids" not in encoded_inputs:247            encoded_inputs["position_ids"] = list(range(seq_length))248 249        if needs_to_be_padded:250            difference = max_length - len(required_input)251 252            if self.padding_side == "left":253                if "attention_mask" in encoded_inputs:254                    encoded_inputs["attention_mask"] = [0] * difference + encoded_inputs["attention_mask"]255                if "position_ids" in encoded_inputs:256                    encoded_inputs["position_ids"] = [0] * difference + encoded_inputs["position_ids"]257                encoded_inputs[self.model_input_names[0]] = [self.pad_token_id] * difference + required_input258            else:259                if "attention_mask" in encoded_inputs:260                    encoded_inputs["attention_mask"] = encoded_inputs["attention_mask"] + [0] * difference261                if "position_ids" in encoded_inputs:262                    encoded_inputs["position_ids"] = encoded_inputs["position_ids"] + [0] * difference263                encoded_inputs[self.model_input_names[0]] = required_input + [self.pad_token_id] * difference264 265        return encoded_inputs266