-
Notifications
You must be signed in to change notification settings - Fork 55
/
train_tokenizer.py
71 lines (59 loc) · 2.7 KB
/
train_tokenizer.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# Copyright 2020 The HuggingFace Inc. team.
# Copyright 2023 Masatoshi Suzuki (@singletongue)
#
# 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.
import argparse
import logging
import os
from japanese_tokenizers.implementations import JapaneseWordPieceTokenizer
logging.basicConfig(level=logging.INFO)
logger = logging.getLogger(__name__)
def main(args):
tokenizer = JapaneseWordPieceTokenizer(
num_unused_tokens=args.num_unused_tokens,
pre_tokenizer_type=args.pre_tokenizer_type,
mecab_dic_type=args.mecab_dic_type,
)
speical_tokens = ["[PAD]", "[UNK]", "[CLS]", "[SEP]", "[MASK]"]
speical_tokens += [f"[unused{i}]" for i in range(args.num_unused_tokens)]
if args.initial_alphabet_file is not None:
logger.info("Loading the initial alphabet from file")
initial_alphabet = [line.rstrip("\n") for line in open(args.initial_alphabet_file)]
logger.info("The size of the initial alphabet: %d", len(initial_alphabet))
else:
initial_alphabet = []
logger.info("Training the tokenizer")
tokenizer.train(
args.input_files,
vocab_size=args.vocab_size,
limit_alphabet=args.limit_alphabet,
initial_alphabet=initial_alphabet,
special_tokens=speical_tokens,
wordpieces_prefix=args.wordpieces_prefix,
)
logger.info("Saving the tokenizer to files")
os.makedirs(args.output_dir, exist_ok=True)
tokenizer.save_model(args.output_dir)
if __name__ == "__main__":
parser = argparse.ArgumentParser()
parser.add_argument("--input_files", type=str, nargs="+", required=True)
parser.add_argument("--output_dir", type=str, required=True)
parser.add_argument("--pre_tokenizer_type", choices=("mecab", "whitespace"), required=True)
parser.add_argument("--mecab_dic_type", choices=("unidic_lite", "unidic", "ipadic"), default="unidic_lite")
parser.add_argument("--vocab_size", type=int, required=True)
parser.add_argument("--limit_alphabet", type=int, default=1000)
parser.add_argument("--initial_alphabet_file", type=str)
parser.add_argument("--num_unused_tokens", type=int, default=10)
parser.add_argument("--wordpieces_prefix", type=str, default="##")
args = parser.parse_args()
main(args)