| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142 |
- # Copyright 2021 The Open AI Team Authors and The HuggingFace Inc. team.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- """Tokenization classes for CLIP."""
- from tokenizers import Regex, Tokenizer, decoders, normalizers, pre_tokenizers, processors
- from tokenizers.models import BPE
- from ...tokenization_utils_tokenizers import TokenizersBackend
- from ...utils import logging
- logger = logging.get_logger(__name__)
- VOCAB_FILES_NAMES = {"vocab_file": "vocab.json", "merges_file": "merges.txt", "tokenizer_file": "tokenizer.json"}
- class CLIPTokenizer(TokenizersBackend):
- """
- Construct a CLIP tokenizer (backed by HuggingFace's *tokenizers* library). Based on byte-level
- Byte-Pair-Encoding.
- This tokenizer inherits from [`TokenizersBackend`] which contains most of the main methods. Users should
- refer to this superclass for more information regarding those methods.
- Args:
- vocab (`str`, `dict` or `list`, *optional*):
- Vocabulary dict to use for the tokenizer.
- merges (`str` or `list`, *optional*):
- Merges list to use for the BPE tokenizer.
- unk_token (`str`, *optional*, defaults to `"<|endoftext|>"`):
- The unknown token. A token that is not in the vocabulary cannot be converted to an ID and is set to be this
- token instead.
- bos_token (`str`, *optional*, defaults to `"<|startoftext|>"`):
- The beginning of sequence token.
- eos_token (`str`, *optional*, defaults to `"<|endoftext|>"`):
- The end of sequence token.
- pad_token (`str`, *optional*, defaults to `"<|endoftext|>"`):
- The token used for padding, for example when batching sequences of different lengths.
- """
- vocab_files_names = VOCAB_FILES_NAMES
- model_input_names = ["input_ids", "attention_mask"]
- model = BPE
- def __init__(
- self,
- vocab: str | dict[str, int] | None = None,
- merges: str | list[str] | None = None,
- unk_token: str = "<|endoftext|>",
- bos_token: str = "<|startoftext|>",
- eos_token: str = "<|endoftext|>",
- pad_token: str = "<|endoftext|>",
- **kwargs,
- ):
- _vocab = (
- vocab
- if vocab is not None
- else {
- str(bos_token): 0,
- str(eos_token): 1,
- str(pad_token): 2,
- }
- )
- self._merges = merges or []
- self._tokenizer = Tokenizer(
- BPE(
- vocab=_vocab,
- merges=self._merges,
- dropout=None,
- continuing_subword_prefix="",
- end_of_word_suffix="</w>",
- fuse_unk=False,
- unk_token=str(unk_token),
- )
- )
- self._tokenizer.normalizer = normalizers.Sequence(
- [normalizers.NFC(), normalizers.Replace(Regex(r"\s+"), " "), normalizers.Lowercase()]
- )
- self._tokenizer.pre_tokenizer = pre_tokenizers.Sequence(
- [
- pre_tokenizers.Split(
- Regex(
- r"""<\|startoftext\|>|<\|endoftext\|>|'s|'t|'re|'ve|'m|'ll|'d|[\p{L}]+|[\p{N}]|[^\s\p{L}\p{N}]+"""
- ),
- behavior="removed",
- invert=True,
- ),
- pre_tokenizers.ByteLevel(add_prefix_space=False),
- ]
- )
- self._tokenizer.decoder = decoders.ByteLevel()
- super().__init__(
- unk_token=unk_token,
- bos_token=bos_token,
- eos_token=eos_token,
- pad_token=pad_token,
- **kwargs,
- )
- self._tokenizer.post_processor = processors.RobertaProcessing(
- sep=(str(eos_token), self.eos_token_id),
- cls=(str(bos_token), self.bos_token_id),
- add_prefix_space=False,
- trim_offsets=False,
- )
- # Very ugly hack to enable padding to have a correct decoding see https://github.com/huggingface/tokenizers/issues/872
- self._wrap_decode_method_backend_tokenizer()
- def _wrap_decode_method_backend_tokenizer(self):
- orig_decode_method = self.backend_tokenizer.decode
- ## define this as a local variable to avoid circular reference
- ## See: https://github.com/huggingface/transformers/issues/30930
- end_of_word_suffix = self.backend_tokenizer.model.end_of_word_suffix
- def new_decode_method(*args, **kwargs):
- text = orig_decode_method(*args, **kwargs)
- text = text.replace(end_of_word_suffix, " ").strip()
- return text
- self.backend_tokenizer.decode = new_decode_method
- __all__ = ["CLIPTokenizer"]
|