* First pass on utility classes and python tokenizers * finishing cleanup pass * style and quality * Fix tests * Updating following @mfuntowicz comment * style and quality * Fix Roberta * fix batch_size/seq_length inBatchEncoding * add alignement methods + tests * Fix OpenAI and Transfo-XL tokenizers * adding trim_offsets=True default for GPT2 et RoBERTa * style and quality * fix tests * add_prefix_space in roberta * bump up tokenizers to rc7 * style * unfortunately tensorfow does like these - removing shape/seq_len for now * Update src/transformers/tokenization_utils.py Co-Authored-By: Stefan Schweter <stefan@schweter.it> * Adding doc and docstrings * making flake8 happy Co-authored-by: Stefan Schweter <stefan@schweter.it>
92 lines
3.7 KiB
Python
92 lines
3.7 KiB
Python
# coding=utf-8
|
|
# Copyright 2018 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 DistilBERT."""
|
|
|
|
|
|
import logging
|
|
|
|
from .tokenization_bert import BertTokenizer, BertTokenizerFast
|
|
|
|
|
|
logger = logging.getLogger(__name__)
|
|
|
|
VOCAB_FILES_NAMES = {"vocab_file": "vocab.txt"}
|
|
|
|
PRETRAINED_VOCAB_FILES_MAP = {
|
|
"vocab_file": {
|
|
"distilbert-base-uncased": "https://s3.amazonaws.com/models.huggingface.co/bert/bert-base-uncased-vocab.txt",
|
|
"distilbert-base-uncased-distilled-squad": "https://s3.amazonaws.com/models.huggingface.co/bert/bert-large-uncased-vocab.txt",
|
|
"distilbert-base-cased": "https://s3.amazonaws.com/models.huggingface.co/bert/bert-base-cased-vocab.txt",
|
|
"distilbert-base-cased-distilled-squad": "https://s3.amazonaws.com/models.huggingface.co/bert/bert-large-cased-vocab.txt",
|
|
"distilbert-base-german-cased": "https://s3.amazonaws.com/models.huggingface.co/bert/distilbert-base-german-cased-vocab.txt",
|
|
"distilbert-base-multilingual-cased": "https://s3.amazonaws.com/models.huggingface.co/bert/bert-base-multilingual-cased-vocab.txt",
|
|
}
|
|
}
|
|
|
|
PRETRAINED_POSITIONAL_EMBEDDINGS_SIZES = {
|
|
"distilbert-base-uncased": 512,
|
|
"distilbert-base-uncased-distilled-squad": 512,
|
|
"distilbert-base-cased": 512,
|
|
"distilbert-base-cased-distilled-squad": 512,
|
|
"distilbert-base-german-cased": 512,
|
|
"distilbert-base-multilingual-cased": 512,
|
|
}
|
|
|
|
|
|
PRETRAINED_INIT_CONFIGURATION = {
|
|
"distilbert-base-uncased": {"do_lower_case": True},
|
|
"distilbert-base-uncased-distilled-squad": {"do_lower_case": True},
|
|
"distilbert-base-cased": {"do_lower_case": False},
|
|
"distilbert-base-cased-distilled-squad": {"do_lower_case": False},
|
|
"distilbert-base-german-cased": {"do_lower_case": False},
|
|
"distilbert-base-multilingual-cased": {"do_lower_case": False},
|
|
}
|
|
|
|
|
|
class DistilBertTokenizer(BertTokenizer):
|
|
r"""
|
|
Constructs a DistilBertTokenizer.
|
|
|
|
:class:`~transformers.DistilBertTokenizer is identical to :class:`~transformers.BertTokenizer` and runs end-to-end
|
|
tokenization: punctuation splitting + wordpiece.
|
|
|
|
Refer to superclass :class:`~transformers.BertTokenizer` for usage examples and documentation concerning
|
|
parameters.
|
|
"""
|
|
|
|
vocab_files_names = VOCAB_FILES_NAMES
|
|
pretrained_vocab_files_map = PRETRAINED_VOCAB_FILES_MAP
|
|
max_model_input_sizes = PRETRAINED_POSITIONAL_EMBEDDINGS_SIZES
|
|
pretrained_init_configuration = PRETRAINED_INIT_CONFIGURATION
|
|
model_input_names = ["attention_mask"]
|
|
|
|
|
|
class DistilBertTokenizerFast(BertTokenizerFast):
|
|
r"""
|
|
Constructs a "Fast" DistilBertTokenizer (backed by HuggingFace's `tokenizers` library).
|
|
|
|
:class:`~transformers.DistilBertTokenizerFast` is identical to :class:`~transformers.BertTokenizerFast` and runs end-to-end
|
|
tokenization: punctuation splitting + wordpiece.
|
|
|
|
Refer to superclass :class:`~transformers.BertTokenizerFast` for usage examples and documentation concerning
|
|
parameters.
|
|
"""
|
|
|
|
vocab_files_names = VOCAB_FILES_NAMES
|
|
pretrained_vocab_files_map = PRETRAINED_VOCAB_FILES_MAP
|
|
max_model_input_sizes = PRETRAINED_POSITIONAL_EMBEDDINGS_SIZES
|
|
pretrained_init_configuration = PRETRAINED_INIT_CONFIGURATION
|
|
model_input_names = ["attention_mask"]
|