File size: 13,286 Bytes
0e07842
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
"""SentencePiece tokenizer wrapper for pinyin-code Transformers models."""

from __future__ import annotations

import logging
import re
import shutil
import unicodedata
from pathlib import Path

import sentencepiece as spm
from transformers import PreTrainedTokenizer


CHINESE_RE = re.compile(r"[\u3400-\u4dbf\u4e00-\u9fff]")
CHINESE_SPAN_RE = re.compile(r"[\u3400-\u4dbf\u4e00-\u9fff]+")
PINYIN_CODE_TOKEN_RE = re.compile(
    r"(?<![A-Za-z0-9])[A-Za-z]\d(?:[A-Za-z]\d)*(?![A-Za-z0-9])"
)
SPECIAL_MARKER_RE = re.compile(r"<[A-Z_]+>")
PUNCTUATION = set(
    "\u3002\uff0c\u3001\uff1f\uff01\uff1a\uff1b.,?!:;()[]{}<>\u300a\u300b"
    "\u3010\u3011\u201c\u201d\"'\u2018\u2019\u300c\u300d\u300e\u300f"
    "\u2014-~\u2026/\\"
)
LATIN_LETTER = (
    r"A-Za-z\u00c0-\u00d6\u00d8-\u00f6\u00f8-\u00ff"
    r"\u0100-\u017f\u0180-\u024f\u0250-\u02af"
)
LATIN_ALNUM_PATTERN = (
    rf"(?:[{LATIN_LETTER}][{LATIN_LETTER}0-9]*"
    rf"(?:[-_][{LATIN_LETTER}0-9]+)*|"
    rf"[0-9]+[{LATIN_LETTER}][{LATIN_LETTER}0-9]*"
    rf"(?:[-_][{LATIN_LETTER}0-9]+)*)"
)
LATIN_ALNUM_RE = re.compile(LATIN_ALNUM_PATTERN)
URL_RE = re.compile(r"\b(?:https?://\S*|www\.\S+)", flags=re.I)
DISCARDED_UNICODE_CATEGORIES = {"Cc", "Cf", "Co", "Cs", "Cn"}
TOKEN_RE = re.compile(
    r"<[A-Z_]+>|"
    r"[\u3400-\u4dbf\u4e00-\u9fff]+|"
    rf"{LATIN_ALNUM_PATTERN}|"
    r"\S"
)
LABELS = {
    "\u9898\u5e72": "<QUESTION>",
    "\u9009\u9879": "<OPTIONS>",
    "\u7b54\u6848": "<ANSWER>",
    "\u89e3\u6790": "<EXPLANATION>",
}
PINYIN_FORMAT_ALIASES = {
    "code": "pinyin-code",
    "codes": "pinyin-code",
    "pinyin-code": "pinyin-code",
    "initial": "pinyin-initial",
    "initials": "pinyin-initial",
    "pinyin-initial": "pinyin-initial",
    "hanzi": "hanzi",
}


def latin_token_to_model_token(token: str) -> str:
    upper = token.upper()
    return upper if upper in {"A", "B", "C", "D"} else token.lower()


def should_preserve_fallback_token(token: str) -> bool:
    if token == "\ufffd":
        return False
    for char in token:
        category = unicodedata.category(char)
        if category in DISCARDED_UNICODE_CATEGORIES:
            return False
        if category[0] not in {"L", "P", "S"}:
            return False
    return True


class PinyinCodeTokenizer(PreTrainedTokenizer):
    """Slow tokenizer that preserves the existing SentencePiece model."""

    vocab_files_names = {"vocab_file": "tokenizer.model"}
    model_input_names = ["input_ids", "attention_mask"]

    def __init__(

        self,

        vocab_file: str,

        add_bos_token: bool = False,

        add_eos_token: bool = False,

        transliteration: str = "pinyin-code",

        pinyin_format: str | None = None,

        use_jieba: bool = True,

        jieba: bool | None = None,

        **kwargs,

    ) -> None:
        self.vocab_file = vocab_file
        self.sp_model = spm.SentencePieceProcessor(model_file=vocab_file)
        self.add_bos_token = add_bos_token
        self.add_eos_token = add_eos_token
        self.transliteration = self._normalize_transliteration(
            pinyin_format or transliteration
        )
        self.use_jieba = use_jieba if jieba is None else jieba

        kwargs.setdefault("unk_token", self._piece_or_none(self.sp_model.unk_id()))
        kwargs.setdefault("bos_token", self._piece_or_none(self.sp_model.bos_id()))
        kwargs.setdefault("eos_token", self._piece_or_none(self.sp_model.eos_id()))
        kwargs.setdefault("pad_token", self._piece_or_none(self.sp_model.pad_id()))
        kwargs.setdefault("transliteration", self.transliteration)
        kwargs.setdefault("pinyin_format", self.transliteration)
        kwargs.setdefault("use_jieba", self.use_jieba)
        kwargs.setdefault("jieba", self.use_jieba)
        super().__init__(**kwargs)

    def _normalize_transliteration(self, value: str) -> str:
        normalized = PINYIN_FORMAT_ALIASES.get(value.lower())
        if normalized is None:
            allowed = ", ".join(sorted(set(PINYIN_FORMAT_ALIASES.values())))
            raise ValueError(f"Unsupported transliteration {value!r}; choose from {allowed}")
        return normalized

    def _piece_or_none(self, token_id: int) -> str | None:
        if token_id is None or token_id < 0:
            return None
        return self.sp_model.id_to_piece(token_id)

    def _looks_preprocessed(self, text: str) -> bool:
        if SPECIAL_MARKER_RE.search(text):
            return True
        if self.transliteration == "pinyin-code" and PINYIN_CODE_TOKEN_RE.search(text):
            return True
        return False

    def _preprocess_raw_text(self, text: str) -> str:
        if not CHINESE_RE.search(text) and self._looks_preprocessed(text):
            return text
        try:
            from preprocessing.preprocess import process_text, require_dependencies
        except ImportError:
            return self._fallback_process_text(text)

        require_dependencies()
        return process_text(text, self.transliteration, self.use_jieba)

    def _fallback_process_text(self, text: str) -> str:
        if self.use_jieba:
            try:
                import jieba
            except ImportError as exc:
                raise ImportError(
                    "Tokenizing raw Mandarin benchmark text with jieba segmentation "
                    "requires jieba. Install the model dependencies before running "
                    "lm_eval."
                ) from exc

            jieba.setLogLevel(logging.WARNING)
        else:
            jieba = None

        if self.transliteration != "hanzi":
            try:
                from pypinyin import Style, pinyin
            except ImportError as exc:
                raise ImportError(
                    "Tokenizing raw Mandarin benchmark text as pinyin requires pypinyin. "
                    "Install the model dependencies before running lm_eval."
                ) from exc


        def normalize_text(value: str) -> str:
            value = unicodedata.normalize("NFKC", value)
            value = URL_RE.sub(" <URL> ", value)
            value = re.sub(r"\$\$.*?\$\$", " <MATH> ", value, flags=re.DOTALL)
            value = re.sub(r"[\uff08(]\s*[\uff09)]", " <BLANK> ", value)
            for label, marker in LABELS.items():
                value = re.sub(rf"{label}\s*[:\uff1a]", f" {marker} ", value)
            value = re.sub(
                rf"(?<![{LATIN_LETTER}])yes(?![{LATIN_LETTER}])",
                " <YES> ",
                value,
                flags=re.I,
            )
            value = re.sub(
                rf"(?<![{LATIN_LETTER}])no(?![{LATIN_LETTER}])",
                " <NO> ",
                value,
                flags=re.I,
            )
            value = re.sub(
                rf"(?<![{LATIN_LETTER}])[ABCD](?=\s*[:\uff1a.\uff0e\u3001\)])",
                r" \g<0> ",
                value,
            )
            value = re.sub(
                rf"(?<![{LATIN_LETTER}0-9])[-+]?\d+(?:[.,]\d+)*(?:%|\uff05)?"
                rf"(?![{LATIN_LETTER}0-9])",
                " <NUM> ",
                value,
            )
            value = value.replace("\uff08", "(").replace("\uff09", ")")
            return re.sub(r"\s+", " ", value).strip()

        def split_tone3_syllable(syllable: str) -> tuple[str, int]:
            match = re.fullmatch(r"([a-z\u00fcv]+)([1-5]?)", syllable.lower())
            if not match:
                return syllable, 5
            plain, tone = match.groups()
            return plain, int(tone or "5")

        def length_digit_offset(syllable: str) -> int:
            return min(max(len(syllable), 1), 5) - 1

        def syllable_to_initial_code(syllable: str) -> str:
            plain, tone = split_tone3_syllable(syllable)
            if not plain:
                return ""
            tone_offset = 5 if tone in {3, 4, 5} else 0
            digit = tone_offset + length_digit_offset(plain)
            initial = plain[0].upper() if tone in {1, 3, 5} else plain[0].lower()
            return f"{initial}{digit}"

        def syllable_to_initial_letter(syllable: str) -> str:
            plain, _ = split_tone3_syllable(syllable)
            return plain[:1].lower()

        def convert_word(word: str) -> str:
            if self.transliteration == "hanzi":
                return word
            syllables = pinyin(word, style=Style.TONE3, heteronym=False, errors="ignore")
            if self.transliteration == "pinyin-code":
                codes = [
                    syllable_to_initial_code(item[0])
                    for item in syllables
                    if item and item[0]
                ]
                return "".join(code for code in codes if code)
            initials = [
                syllable_to_initial_letter(item[0])
                for item in syllables
                if item and item[0]
            ]
            return "".join(initial for initial in initials if initial)

        def tokenize_chinese_span(value: str) -> list[str]:
            tokens = []
            words = jieba.cut(value, cut_all=False) if self.use_jieba else value
            for word in words:
                word = word.strip()
                if word and CHINESE_SPAN_RE.search(word):
                    token = convert_word(word)
                    if token:
                        tokens.append(token)
            return tokens

        tokens = []
        for part in TOKEN_RE.findall(normalize_text(text)):
            if part.startswith("<") and part.endswith(">"):
                tokens.append(part)
            elif CHINESE_SPAN_RE.fullmatch(part):
                tokens.extend(tokenize_chinese_span(part))
            elif part in PUNCTUATION:
                tokens.append(part)
            elif LATIN_ALNUM_RE.fullmatch(part):
                tokens.append(latin_token_to_model_token(part))
            elif part.isdigit():
                tokens.append("<NUM>")
            elif should_preserve_fallback_token(part):
                tokens.append(part.lower())

        return " ".join(tokens)

    @property
    def vocab_size(self) -> int:
        return self.sp_model.get_piece_size()

    def get_vocab(self) -> dict[str, int]:
        vocab = {self.sp_model.id_to_piece(i): i for i in range(self.vocab_size)}
        vocab.update(self.added_tokens_encoder)
        return vocab

    def _tokenize(self, text: str) -> list[str]:
        text = self._preprocess_raw_text(text)
        return self.sp_model.encode(text, out_type=str)

    def _convert_token_to_id(self, token: str) -> int:
        return self.sp_model.piece_to_id(token)

    def _convert_id_to_token(self, index: int) -> str:
        return self.sp_model.id_to_piece(index)

    def convert_tokens_to_string(self, tokens: list[str]) -> str:
        return self.sp_model.decode(tokens)

    def build_inputs_with_special_tokens(

        self,

        token_ids_0: list[int],

        token_ids_1: list[int] | None = None,

    ) -> list[int]:
        output = list(token_ids_0)
        if self.add_bos_token and self.bos_token_id is not None:
            output = [self.bos_token_id] + output
        if self.add_eos_token and self.eos_token_id is not None:
            output = output + [self.eos_token_id]
        if token_ids_1 is not None:
            output += list(token_ids_1)
            if self.add_eos_token and self.eos_token_id is not None:
                output.append(self.eos_token_id)
        return output

    def get_special_tokens_mask(

        self,

        token_ids_0: list[int],

        token_ids_1: list[int] | None = None,

        already_has_special_tokens: bool = False,

    ) -> list[int]:
        if already_has_special_tokens:
            special_ids = set(self.all_special_ids)
            return [1 if token_id in special_ids else 0 for token_id in token_ids_0]

        mask = [0] * len(token_ids_0)
        if self.add_bos_token and self.bos_token_id is not None:
            mask = [1] + mask
        if self.add_eos_token and self.eos_token_id is not None:
            mask = mask + [1]
        if token_ids_1 is not None:
            mask += [0] * len(token_ids_1)
            if self.add_eos_token and self.eos_token_id is not None:
                mask.append(1)
        return mask

    def create_token_type_ids_from_sequences(

        self,

        token_ids_0: list[int],

        token_ids_1: list[int] | None = None,

    ) -> list[int]:
        return [0] * len(self.build_inputs_with_special_tokens(token_ids_0, token_ids_1))

    def save_vocabulary(self, save_directory: str, filename_prefix: str | None = None) -> tuple[str]:
        output_name = "tokenizer.model"
        if filename_prefix:
            output_name = f"{filename_prefix}-{output_name}"
        output_path = Path(save_directory) / output_name
        if Path(self.vocab_file).resolve() != output_path.resolve():
            shutil.copyfile(self.vocab_file, output_path)
        return (str(output_path),)