File size: 15,459 Bytes
e4b9a7b | 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 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 | # -*- coding: utf-8 -*-
# SPDX-FileCopyrightText: 2016-2025 PyThaiNLP Project
# SPDX-FileType: SOURCE
# SPDX-License-Identifier: Apache-2.0
import random
import re
import warnings
from typing import Callable, List, Tuple, Union
from transformers import (
CamembertTokenizer,
)
from pythainlp.tokenize import word_tokenize
_PAT_URL = r"(http|ftp|https)://([\w_-]+(?:(?:\.[\w_-]+)+))([\w.,@?^=%&:/~+#-]*[\w@?^=%&/~+#-])?"
_model_name = "clicknext/phayathaibert"
_tokenizer = CamembertTokenizer.from_pretrained(_model_name)
class ThaiTextProcessor:
def __init__(self):
(
self._TK_UNK,
self._TK_REP,
self._TK_WREP,
self._TK_URL,
self._TK_END,
) = "<unk> <rep> <wrep> <url> </s>".split()
self.SPACE_SPECIAL_TOKEN = "<_>"
def replace_url(self, text: str) -> str:
"""
Replace url in `text` with TK_URL (https://stackoverflow.com/a/6041965)
:param str text: text to replace url
:return: text where urls are replaced
:rtype: str
:Example:
>>> replace_url("go to https://github.com")
go to <url>
"""
return re.sub(_PAT_URL, self._TK_URL, text)
def rm_brackets(self, text: str) -> str:
"""
Remove all empty brackets and artifacts within brackets from `text`.
:param str text: text to remove useless brackets
:return: text where all useless brackets are removed
:rtype: str
:Example:
>>> rm_brackets("hey() whats[;] up{*&} man(hey)")
hey whats up man(hey)
"""
# remove empty brackets
new_line = re.sub(r"\(\)", "", text)
new_line = re.sub(r"\{\}", "", new_line)
new_line = re.sub(r"\[\]", "", new_line)
# brackets with only punctuations
new_line = re.sub(r"\([^a-zA-Z0-9ก-๙]+\)", "", new_line)
new_line = re.sub(r"\{[^a-zA-Z0-9ก-๙]+\}", "", new_line)
new_line = re.sub(r"\[[^a-zA-Z0-9ก-๙]+\]", "", new_line)
# artifiacts after (
new_line = re.sub(
r"(?<=\()[^a-zA-Z0-9ก-๙]+(?=[a-zA-Z0-9ก-๙])", "", new_line
)
new_line = re.sub(
r"(?<=\{)[^a-zA-Z0-9ก-๙]+(?=[a-zA-Z0-9ก-๙])", "", new_line
)
new_line = re.sub(
r"(?<=\[)[^a-zA-Z0-9ก-๙]+(?=[a-zA-Z0-9ก-๙])", "", new_line
)
# artifacts before )
new_line = re.sub(
r"(?<=[a-zA-Z0-9ก-๙])[^a-zA-Z0-9ก-๙]+(?=\))", "", new_line
)
new_line = re.sub(
r"(?<=[a-zA-Z0-9ก-๙])[^a-zA-Z0-9ก-๙]+(?=\})", "", new_line
)
new_line = re.sub(
r"(?<=[a-zA-Z0-9ก-๙])[^a-zA-Z0-9ก-๙]+(?=\])", "", new_line
)
return new_line
def replace_newlines(self, text: str) -> str:
"""
Replace newlines in `text` with spaces.
:param str text: text to replace all newlines with spaces
:return: text where all newlines are replaced with spaces
:rtype: str
:Example:
>>> rm_useless_spaces("hey whats\n\nup")
hey whats up
"""
return re.sub(r"[\n]", " ", text.strip())
def rm_useless_spaces(self, text: str) -> str:
"""
Remove multiple spaces in `text`. (code from `fastai`)
:param str text: text to replace useless spaces
:return: text where all spaces are reduced to one
:rtype: str
:Example:
>>> rm_useless_spaces("oh no")
oh no
"""
return re.sub(" {2,}", " ", text)
def replace_spaces(self, text: str, space_token: str = "<_>") -> str:
"""
Replace spaces with _
:param str text: text to replace spaces
:return: text where all spaces replaced with _
:rtype: str
:Example:
>>> replace_spaces("oh no")
oh_no
"""
return re.sub(" ", space_token, text)
def replace_rep_after(self, text: str) -> str:
"""
Replace repetitions at the character level in `text`
:param str text: input text to replace character repetition
:return: text with repetitive tokens removed.
:rtype: str
:Example:
>>> text = "กาาาาาาา"
>>> replace_rep_after(text)
'กา'
"""
def _replace_rep(m):
c, cc = m.groups()
return f"{c}"
re_rep = re.compile(r"(\S)(\1{3,})")
return re_rep.sub(_replace_rep, text)
def replace_wrep_post(self, toks: List[str]) -> List[str]:
"""
Replace repetitive words post tokenization;
fastai `replace_wrep` does not work well with Thai.
:param List[str] toks: list of tokens
:return: list of tokens where repetitive words are removed.
:rtype: List[str]
:Example:
>>> toks = ["กา", "น้ำ", "น้ำ", "น้ำ", "น้ำ"]
>>> replace_wrep_post(toks)
['กา', 'น้ำ']
"""
previous_word = ""
rep_count = 0
res = []
for current_word in toks + [self._TK_END]:
if current_word == previous_word:
rep_count += 1
elif (current_word != previous_word) & (rep_count > 0):
res += [previous_word]
rep_count = 0
else:
res.append(previous_word)
previous_word = current_word
return res[1:]
def remove_space(self, toks: List[str]) -> List[str]:
"""
Do not include space for bag-of-word models.
:param List[str] toks: list of tokens
:return: List of tokens where space tokens (" ") are filtered out
:rtype: List[str]
:Example:
>>> toks = ["ฉัน", "เดิน", " ", "กลับ", "บ้าน"]
>>> remove_space(toks)
['ฉัน', 'เดิน', 'กลับ', 'บ้าน']
"""
res = []
for t in toks:
t = t.strip()
if t:
res.append(t)
return res
# combine them together
def preprocess(
self,
text: str,
pre_rules: List[Callable] = [
rm_brackets,
replace_newlines,
rm_useless_spaces,
replace_spaces,
replace_rep_after,
],
tok_func: Callable = word_tokenize,
) -> str:
text = text.lower()
for rule in pre_rules:
text = rule(text)
toks = tok_func(text)
return "".join(toks)
class ThaiTextAugmenter:
def __init__(self) -> None:
from transformers import (
AutoModelForMaskedLM,
AutoTokenizer,
pipeline,
)
self.tokenizer = AutoTokenizer.from_pretrained(_model_name)
self.model_for_masked_lm = AutoModelForMaskedLM.from_pretrained(
_model_name
)
self.model = pipeline(
"fill-mask",
tokenizer=self.tokenizer,
model=self.model_for_masked_lm,
)
self.processor = ThaiTextProcessor()
def generate(
self,
sample_text: str,
word_rank: int,
max_length: int = 3,
sample: bool = False,
) -> str:
sample_txt = sample_text
final_text = ""
for j in range(max_length):
input = self.processor.preprocess(sample_txt)
if sample:
random_word_idx = random.randint(0, 4)
output = self.model(input)[random_word_idx]["sequence"]
else:
output = self.model(input)[word_rank]["sequence"]
sample_txt = output + "<mask>"
final_text = sample_txt
gen_txt = re.sub("<mask>", "", final_text)
return gen_txt
def augment(
self,
text: str,
num_augs: int = 3,
sample: bool = False,
) -> List[str]:
"""
Text augmentation from PhayaThaiBERT
:param str text: Thai text
:param int num_augs: an amount of augmentation text needed as an output
:param bool sample: whether to sample the text as an output or not,\
true if more word diversity is needed
:return: list of text augment
:rtype: List[str]
:Example:
::
from pythainlp.augment.lm import ThaiTextAugmenter
aug = ThaiTextAugmenter()
aug.augment("ช้างมีทั้งหมด 50 ตัว บน", num_args=5)
# output = ['ช้างมีทั้งหมด 50 ตัว บนโลกใบนี้ครับ.',
'ช้างมีทั้งหมด 50 ตัว บนพื้นดินครับ...',
'ช้างมีทั้งหมด 50 ตัว บนท้องฟ้าครับ...',
'ช้างมีทั้งหมด 50 ตัว บนดวงจันทร์.‼',
'ช้างมีทั้งหมด 50 ตัว บนเขาค่ะ😁']
"""
MAX_NUM_AUGS = 5
augment_list = []
if num_augs <= MAX_NUM_AUGS:
for rank in range(num_augs):
gen_text = self.generate(
text,
rank,
sample=sample,
)
processed_text = re.sub(
"<_>", " ", self.processor.preprocess(gen_text)
)
augment_list.append(processed_text)
else:
raise ValueError(
f"augmentation of more than {num_augs} is exceeded \
the default limit: {MAX_NUM_AUGS}"
)
return augment_list
class PartOfSpeechTagger:
def __init__(self, model: str = "lunarlist/pos_thai_phayathai") -> None:
# Load model directly
from transformers import (
AutoModelForTokenClassification,
AutoTokenizer,
)
self.tokenizer = AutoTokenizer.from_pretrained(model)
self.model = AutoModelForTokenClassification.from_pretrained(model)
def get_tag(
self, sentence: str, strategy: str = "simple"
) -> List[List[Tuple[str, str]]]:
"""
Marks sentences with part-of-speech (POS) tags.
:param str sentence: a list of lists of tokenized words
:return: a list of lists of tuples (word, POS tag)
:rtype: list[list[tuple[str, str]]]
:Example:
Labels POS for given sentence::
from pythainlp.phayathaibert.core import PartOfSpeechTagger
tagger = PartOfSpeechTagger()
tagger.get_tag("แมวทำอะไรตอนห้าโมงเช้า")
# output:
# [[('แมว', 'NOUN'), ('ทําอะไร', 'VERB'), ('ตอนห้าโมงเช้า', 'NOUN')]]
"""
from transformers import TokenClassificationPipeline
pipeline = TokenClassificationPipeline(
model=self.model,
tokenizer=self.tokenizer,
aggregation_strategy=strategy,
)
outputs = pipeline(sentence)
word_tags = [[(tag["word"], tag["entity_group"]) for tag in outputs]]
return word_tags
class NamedEntityTagger:
def __init__(self, model: str = "Pavarissy/phayathaibert-thainer") -> None:
from transformers import (
AutoModelForTokenClassification,
AutoTokenizer,
)
self.tokenizer = AutoTokenizer.from_pretrained(model)
self.model = AutoModelForTokenClassification.from_pretrained(model)
def get_ner(
self,
text: str,
tag: bool = False,
pos: bool = False,
strategy: str = "simple",
) -> Union[List[Tuple[str, str]], List[Tuple[str, str, str]], str]:
"""
This function tags named entities in text in IOB format.
:param str text: text in Thai to be tagged
:param bool pos: output with part-of-speech tags.\
(PhayaThaiBERT is supported in PartOfSpeechTagger)
:return: a list of tuples associated with tokenized words, NER tags,
POS tags (if the parameter `pos` is specified as `True`),
and output HTML-like tags (if the parameter `tag` is
specified as `True`).
Otherwise, return a list of tuples associated with tokenized
words and NER tags
:rtype: Union[List[Tuple[str, str]], List[Tuple[str, str, str]], str]
:Example:
>>> from pythainlp.phayathaibert.core import NamedEntityTagger
>>>
>>> tagger = NamedEntityTagger()
>>> tagger.get_ner("ทดสอบนายปวริศ เรืองจุติโพธิ์พานจากประเทศไทย")
[('นายปวริศ เรืองจุติโพธิ์พานจากประเทศไทย', 'PERSON'),
('จาก', 'LOCATION'),
('ประเทศไทย', 'LOCATION')]
>>> ner.tag("ทดสอบนายปวริศ เรืองจุติโพธิ์พานจากประเทศไทย", tag=True)
'ทดสอบ<PERSON>นายปวริศ เรืองจุติโพธิ์พาน</PERSON>\
<LOCATION>จาก</LOCATION><LOCATION>ประเทศไทย</LOCATION>'
"""
from transformers import TokenClassificationPipeline
if pos:
warnings.warn(
"This model doesn't support output \
postag and It doesn't output the postag."
)
sample_output = []
tag_text_list = []
current_pos = 0
pipeline = TokenClassificationPipeline(
model=self.model,
tokenizer=self.tokenizer,
aggregation_strategy=strategy,
)
outputs = pipeline(text)
for token in outputs:
ner_tag = token["entity_group"]
begin_pos, end_pos = token["start"], token["end"]
if current_pos == 0:
text_tag = (
text[:begin_pos]
+ f"<{ner_tag}>"
+ text[begin_pos:end_pos]
+ f"</{ner_tag}>"
)
else:
text_tag = (
text[current_pos:begin_pos]
+ f"<{ner_tag}>"
+ text[begin_pos:end_pos]
+ f"</{ner_tag}>"
)
tag_text_list.append(text_tag)
sample_output.append((token["word"], token["entity_group"]))
current_pos = end_pos
if tag:
return str("".join(tag_text_list))
return sample_output
def segment(sentence: str) -> List[str]:
"""
Subword tokenize of PhayaThaiBERT, \
sentencepiece from WangchanBERTa model with vocabulary expansion.
:param str sentence: text to be tokenized
:return: list of subwords
:rtype: list[str]
"""
if not sentence or not isinstance(sentence, str):
return []
return _tokenizer.tokenize(sentence)
|