File size: 10,738 Bytes
58e6961 a0e8f24 58e6961 a0e8f24 58e6961 a0e8f24 58e6961 a0e8f24 58e6961 fcd513a a0e8f24 58e6961 fcd513a 58e6961 fcd513a 58e6961 fcd513a 58e6961 a0e8f24 fcd513a 58e6961 fcd513a 58e6961 fcd513a 58e6961 fcd513a a0e8f24 fcd513a 58e6961 a0e8f24 58e6961 a0e8f24 58e6961 a0e8f24 | 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 | """Fix 8: Special token normalization (NUM, DATE, URL, MENTION, HASHTAG, EMOJI).
Uses a segment-based approach: special tokens are detected and extracted
*before* the base tokenizer runs, so they never pass through it.
"""
from __future__ import annotations
import re
MONTH_NAMES = {
"ocak","Εubat","mart","nisan","mayΔ±s","haziran",
"temmuz","aΔustos","eylΓΌl","ekim","kasΔ±m","aralΔ±k",
"january","february","march","april","may","june",
"july","august","september","october","november","december",
}
UNITS = {
"km","m","cm","mm","nm",
"kg","g","mg","ton",
"sn","dk","sa","ms",
"tl","usd","eur","gbp",
"kb","mb","gb","tb","pb",
"ml","mcg","meq","iu","mmhg","mosm",
"hz","mhz","ghz","watt","kw","mw","kcal","cal",
}
ROMAN_NUMERALS = {
"i","ii","iii","iv","vi","vii","viii","ix",
"xi","xii","xiii","xiv","xv","xvi","xvii","xviii","xix","xx",
}
# ββ Regex patterns ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
URL_RE = re.compile(r'https?://\S+|www\.\S+', re.IGNORECASE)
MENTION_RE = re.compile(r'@[\w\u00C0-\u024F]+')
HASHTAG_RE = re.compile(r'#[\w\u00C0-\u024F]+')
# Turkish suffixes that can follow a number+apostrophe
_NUM_SUFFIXES = sorted(
[
"nΔ±n","nin","nun","nΓΌn","dan","den","tan","ten",
"da","de","ta","te","ya","ye","nda","nde",
"yΔ±","yi","yu","yΓΌ","nΔ±","ni","nu","nΓΌ",
"lar","ler","lara","lere","larΔ±","leri",
"Δ±m","im","um","ΓΌm","Δ±n","in","un","ΓΌn",
"mΔ±z","miz","muz","mΓΌz","nΔ±z","niz","nuz","nΓΌz",
"dΔ±r","dir","dur","dΓΌr","tΔ±r","tir","tur","tΓΌr",
"ki","li","lΔ±","lu","lΓΌ","sΔ±z","siz","suz","sΓΌz",
"inci","Δ±ncΔ±","uncu","ΓΌncΓΌ","nci","ncΔ±",
"lΔ±k","lik","luk","lΓΌk",
"a","e","Δ±","i","u","ΓΌ",
],
key=len,
reverse=True,
)
_SUFFIX_ALT = '|'.join(re.escape(s) for s in _NUM_SUFFIXES)
# Number (or time) followed by apostrophe + Turkish suffix(es)
NUM_APOSTROPHE_RE = re.compile(
r"\d+(?:[.:,]\d+)*['\u2019](?:" + _SUFFIX_ALT + r")+\b",
re.IGNORECASE,
)
DATE_RE = re.compile(
r'\d{1,2}[./\-]\d{1,2}[./\-]\d{2,4}'
r'|\d{4}[./\-]\d{1,2}[./\-]\d{1,2}'
)
CURRENCY_RE = re.compile(r'[$β¬Β£Β₯βΊβ½]\d+[\.,]?\d*|\d+[\.,]?\d*[$β¬Β£Β₯βΊβ½]')
NUMBER_RE = re.compile(
r'%\d+[\.,]?\d*'
r'|\d{1,3}(?:\.\d{3})+' # thousands (1.000.000) β before decimal!
r'|\d+[\.,]\d+' # decimal (2.5, 10,5)
r'|\d+%'
r'|\d+/\d+'
)
TIME_RE = re.compile(r'\d{1,2}:\d{2}(?::\d{2})?')
PLAIN_NUM_RE = re.compile(r'\b\d+\b')
# ββ Acronym patterns βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Matches standalone uppercase sequences (+ optional trailing digits).
# [A-Z]{2,}[0-9]* β HTML, GPT, CSS3, HTML5, MP3
# [A-Z][0-9]+ β F16, H264, A4
# Does NOT match mixed-case words (ChatGPT) because \b won't fire mid-word.
ACRONYM_RE = re.compile(
r"\b[A-ZΓΔΔ°ΓΕΓ]{2,}[0-9]*\b"
r"|\b[A-ZΓΔΔ°ΓΕΓ][0-9]+\b"
)
# Acronym followed by apostrophe + Turkish suffix(es): NATO'nun, HTML5'ten
ACRONYM_APOSTROPHE_RE = re.compile(
r"\b(?:[A-ZΓΔΔ°ΓΕΓ]{2,}[0-9]*|[A-ZΓΔΔ°ΓΕΓ][0-9]+)['\u2019](?:"
+ _SUFFIX_ALT + r")+\b"
)
TEXT_EMOJI_RE = re.compile(r'[:;=]-?[\)\(\]\[dDpPoO3]|<3')
UNICODE_EMOJI_RE = re.compile(
"[\U0001F600-\U0001F64F\U0001F300-\U0001F5FF"
"\U0001F680-\U0001F6FF\U0001F1E0-\U0001F1FF"
"\U00002700-\U000027BF\U0001F900-\U0001F9FF"
"\U00002600-\U000026FF]+",
flags=re.UNICODE,
)
# Pattern priority: earlier entries win when spans overlap.
_SPAN_PATTERNS: list[tuple[re.Pattern, str]] = [
(URL_RE, "URL"),
(MENTION_RE, "MENTION"),
(HASHTAG_RE, "HASHTAG"),
(DATE_RE, "DATE"),
(CURRENCY_RE, "UNIT"),
(NUM_APOSTROPHE_RE, "NUM_APO"),
(ACRONYM_APOSTROPHE_RE, "ACRONYM_APO"),
(ACRONYM_RE, "ACRONYM"),
(NUMBER_RE, "NUM"),
(TIME_RE, "NUM"),
(PLAIN_NUM_RE, "NUM"),
(UNICODE_EMOJI_RE, "EMOJI"),
(TEXT_EMOJI_RE, "EMOJI"),
]
# ββ Acronym vs Turkish word disambiguation βββββββββββββββββββββββββββββββββββ
def _is_known_turkish_word(word_upper: str) -> bool:
"""Return True if *word_upper* (ALL CAPS) is a known Turkish word.
Checks (in order):
1. ACRONYM_EXPANSIONS dict β always acronym (return False)
2. Same dict without trailing digits (HTML5 β HTML)
3. TDK dictionary β Turkish word (return True)
4. Proper nouns list β Turkish word (return True)
5. Otherwise β treat as acronym (return False)
"""
from ._acronym_dict import ACRONYM_EXPANSIONS # noqa: PLC0415
from ._preprocessor import _turkish_lower, _load_proper_nouns # noqa: PLC0415
from ._tdk_vocab import load_tdk_words # noqa: PLC0415
# Known acronyms always win
if word_upper in ACRONYM_EXPANSIONS:
return False
# Also check without trailing digits (HTML5 β HTML)
base = word_upper.rstrip("0123456789")
if base and base != word_upper and base in ACRONYM_EXPANSIONS:
return False
wl = _turkish_lower(word_upper)
# TDK dictionary: if the lowercase form is a real Turkish word β not acronym
tdk = load_tdk_words()
if tdk and wl in tdk:
return True
# Proper nouns (Δ°stanbul, Ankaraβ¦)
if wl in _load_proper_nouns():
return True
return False
# ββ Segment-based API ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def find_special_spans(text: str) -> list[tuple[int, int, str, str]]:
"""Find all special-token spans in *text*.
Returns a sorted, non-overlapping list of
``(start, end, token_type, original_text)``.
"""
candidates: list[tuple[int, int, str, str]] = []
for pattern, ttype in _SPAN_PATTERNS:
for m in pattern.finditer(text):
original = m.group(0)
# Acronym filtering: skip if it's actually a Turkish word
if ttype in ("ACRONYM", "ACRONYM_APO"):
# Extract the uppercase base (before apostrophe for APO)
if ttype == "ACRONYM_APO":
apo = original.find("'")
if apo == -1:
apo = original.find("\u2019")
acr_base = original[:apo]
else:
acr_base = original
if _is_known_turkish_word(acr_base):
continue
candidates.append((m.start(), m.end(), ttype, original))
# Sort by start position, then prefer longer match
candidates.sort(key=lambda x: (x[0], -(x[1] - x[0])))
# Greedy non-overlapping selection
result: list[tuple[int, int, str, str]] = []
last_end = 0
for s, e, t, o in candidates:
if s >= last_end:
result.append((s, e, t, o))
last_end = e
return result
def _split_apostrophe_suffixes(suffix_str: str) -> list[dict]:
"""Split a suffix string (after apostrophe) into individual SUFFIX tokens."""
tokens: list[dict] = []
remaining = suffix_str.lower()
while remaining:
matched = False
for s in _NUM_SUFFIXES:
if remaining.startswith(s):
tokens.append({"token": s, "type": "SUFFIX", "_apo_suffix": True})
remaining = remaining[len(s):]
matched = True
break
if not matched:
tokens.append({"token": remaining, "type": "SUFFIX", "_apo_suffix": True})
break
return tokens
def make_special_tokens(span_type: str, original: str) -> list[dict]:
"""Create token dict(s) for a matched special span.
``NUM_APO`` and ``ACRONYM_APO`` spans are split into base + SUFFIX tokens.
"""
# ββ Number + apostrophe + suffix (3'te, 1990'larda) ββββββββββββββββββ
if span_type == "NUM_APO":
apo_pos = original.find("'")
if apo_pos == -1:
apo_pos = original.find("\u2019")
num_part = original[:apo_pos]
return [
{"token": f" {num_part}", "type": "NUM", "_num": True},
*_split_apostrophe_suffixes(original[apo_pos + 1:]),
]
# ββ Acronym + apostrophe + suffix (NATO'nun, HTML5'ten) ββββββββββββββ
if span_type == "ACRONYM_APO":
apo_pos = original.find("'")
if apo_pos == -1:
apo_pos = original.find("\u2019")
acr_part = original[:apo_pos]
return [
{"token": f" {acr_part}", "type": "ACRONYM", "_acronym": True},
*_split_apostrophe_suffixes(original[apo_pos + 1:]),
]
# ββ Plain acronym (HTML5, GPT) ββββββββββββββββββββββββββββββββββββββ
if span_type == "ACRONYM":
return [{"token": f" {original}", "type": "ACRONYM", "_acronym": True}]
# ββ Everything else (NUM, DATE, URL, MENTION, HASHTAG, EMOJI, UNIT) ββ
return [{
"token": f" {original}",
"type": span_type,
f"_{span_type.lower()}": True,
}]
# ββ Safety-net post-pass βββββββββββββββββββββββββββββββββββββββββββββββββββββ
def reclassify_numbers_in_tokens(tokens: list[dict]) -> list[dict]:
"""Catch remaining number/unit tokens missed by span detection."""
result: list[dict] = []
for tok in tokens:
if tok["type"] not in ("BPE", "ROOT"):
result.append(tok)
continue
raw = tok["token"].strip()
if NUMBER_RE.fullmatch(raw):
result.append({**tok, "type": "NUM", "_num": True})
elif raw.lower() in UNITS and tok["type"] == "BPE":
result.append({**tok, "type": "UNIT", "_unit": True})
elif raw.lower() in ROMAN_NUMERALS and tok["type"] == "BPE":
result.append({**tok, "type": "NUM", "_roman": True})
elif raw.lower() in MONTH_NAMES and tok["type"] == "BPE":
result.append({**tok, "type": "ROOT", "_month": True})
else:
result.append(tok)
return result
|