| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135 |
- # Copyright 2020 Google 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 class for model PEGASUS."""
- from tokenizers import Regex, Tokenizer, decoders, normalizers, pre_tokenizers, processors
- from tokenizers.models import Unigram
- from ...tokenization_utils_tokenizers import TokenizersBackend
- from ...utils import logging
- logger = logging.get_logger(__name__)
- VOCAB_FILES_NAMES = {"vocab_file": "spiece.model", "tokenizer_file": "tokenizer.json"}
- class PegasusTokenizer(TokenizersBackend):
- r"""
- Construct a PEGASUS tokenizer (backed by HuggingFace's *tokenizers* library). Based on
- [Unigram](https://huggingface.co/docs/tokenizers/python/latest/components.html?highlight=unigram#models).
- 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_file (`str`, *optional*):
- [SentencePiece](https://github.com/google/sentencepiece) file (generally has a *.spm* extension) that
- contains the vocabulary necessary to instantiate a tokenizer.
- pad_token (`str`, *optional*, defaults to `"<pad>"`):
- The token used for padding, for example when batching sequences of different lengths.
- eos_token (`str`, *optional*, defaults to `"</s>"`):
- The end of sequence token.
- <Tip>
- When building a sequence using special tokens, this is not the token that is used for the end of sequence.
- The token used is the `sep_token`.
- </Tip>
- unk_token (`str`, *optional*, defaults to `"<unk>"`):
- 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.
- mask_token (`str`, *optional*, defaults to `"<mask_2>"`):
- The token used for masking single token values. This is the token used when training this model with masked
- language modeling (MLM). This is the token that the PEGASUS encoder will try to predict during pretraining.
- It corresponds to *[MASK2]* in [PEGASUS: Pre-training with Extracted Gap-sentences for Abstractive
- Summarization](https://huggingface.co/papers/1912.08777).
- mask_token_sent (`str`, *optional*, defaults to `"<mask_1>"`):
- The token used for masking whole target sentences. This is the token used when training this model with gap
- sentences generation (GSG). This is the sentence that the PEGASUS decoder will try to predict during
- pretraining. It corresponds to *[MASK1]* in [PEGASUS: Pre-training with Extracted Gap-sentences for
- Abstractive Summarization](https://huggingface.co/papers/1912.08777).
- additional_special_tokens (`List[str]`, *optional*):
- Additional special tokens used by the tokenizer. If no additional_special_tokens are provided <mask_2> and
- <unk_2, ..., unk_102> are used as additional special tokens corresponding to the [original PEGASUS
- tokenizer](https://github.com/google-research/pegasus/blob/939830367bcf411193d2b5eca2f2f90f3f9260ca/pegasus/ops/pretrain_parsing_ops.cc#L66)
- that uses the tokens 2 - 104 only for pretraining
- offset (`int`, *optional*, defaults to 103):
- Offset for additional special tokens.
- vocab (`str` or `list[tuple[str, float]]`, *optional*):
- Custom vocabulary with `(token, score)` tuples. If not provided, a blank vocabulary is initialized.
- """
- vocab_files_names = VOCAB_FILES_NAMES
- model_input_names = ["input_ids", "attention_mask"]
- model = Unigram
- def __init__(
- self,
- vocab: str | list[tuple[str, float]] | None = None,
- pad_token="<pad>",
- eos_token="</s>",
- unk_token="<unk>",
- mask_token="<mask_2>",
- mask_token_sent="<mask_1>",
- _spm_precompiled_charsmap=None,
- additional_special_tokens=None,
- offset=103,
- **kwargs,
- ):
- self.offset = offset
- if additional_special_tokens is None or mask_token_sent not in additional_special_tokens:
- additional_special_tokens = [mask_token_sent] if mask_token_sent is not None else []
- else:
- additional_special_tokens = []
- additional_special_tokens += [f"<unk_{i}>" for i in range(2, self.offset)]
- if vocab is None:
- vocab = [(str(unk_token), 0.0), (str(pad_token), 0.0), (str(eos_token), 0.0), (str(mask_token), 0.0)]
- self._vocab = vocab
- self._tokenizer = Tokenizer(Unigram(vocab=vocab, unk_id=self._vocab.index((str(unk_token), 0.0), 1)))
- if _spm_precompiled_charsmap is not None:
- self._tokenizer.normalizer = normalizers.Sequence(
- [normalizers.Precompiled(_spm_precompiled_charsmap), normalizers.Replace(Regex(r" {2,}"), " ")]
- )
- else:
- self._tokenizer.normalizer = normalizers.Sequence(
- [normalizers.Replace(Regex(r"\n"), " "), normalizers.Replace(Regex(r" {2,}"), " ")]
- )
- self._tokenizer.pre_tokenizer = pre_tokenizers.Metaspace(replacement="▁", prepend_scheme="always", split=True)
- self._tokenizer.decoder = decoders.Metaspace(replacement="▁", prepend_scheme="always", split=True)
- super().__init__(
- pad_token=pad_token,
- eos_token=eos_token,
- unk_token=unk_token,
- mask_token=mask_token,
- mask_token_sent=mask_token_sent,
- offset=offset,
- additional_special_tokens=additional_special_tokens,
- **kwargs,
- )
- self._tokenizer.post_processor = processors.TemplateProcessing(
- single=f"$A {eos_token}",
- pair=f"$A $B {eos_token}",
- special_tokens=[(str(eos_token), self.convert_tokens_to_ids(str(eos_token)))],
- )
- __all__ = ["PegasusTokenizer"]
|