Spaces:
Sleeping
Sleeping
File size: 9,382 Bytes
b025863 | 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 | """
Advanced Text Preprocessing for Multilingual Indic Text
Handles Unicode normalization, noise removal, script detection preprocessing.
"""
from __future__ import annotations
import re
import unicodedata
from dataclasses import dataclass
from typing import Dict, List, Optional, Tuple
import numpy as np
from loguru import logger
from src.utils.languages import SCRIPT_UNICODE_BLOCKS, LANGUAGE_REGISTRY
# ─────────────────────────────────────────────
# Unicode Script Detection
# ─────────────────────────────────────────────
def get_char_script(char: str) -> str:
"""Get Unicode script name for a single character."""
try:
cat = unicodedata.category(char)
name = unicodedata.name(char, "")
# Extract script from Unicode name (e.g. "DEVANAGARI LETTER A" → "Devanagari")
parts = name.split()
if not parts:
return "Unknown"
first = parts[0].capitalize()
# Multi-word scripts
for script in SCRIPT_UNICODE_BLOCKS:
if script.upper() in name.upper():
return script
return first
except (ValueError, TypeError):
return "Unknown"
def get_dominant_script(text: str) -> Tuple[str, Dict[str, float]]:
"""
Detect the dominant script in text.
Returns (dominant_script, script_distribution).
"""
script_counts: Dict[str, int] = {}
total_alpha = 0
for char in text:
if not char.isalpha():
continue
total_alpha += 1
cp = ord(char)
matched = False
for script, ranges in SCRIPT_UNICODE_BLOCKS.items():
for lo, hi in ranges:
if lo <= cp <= hi:
script_counts[script] = script_counts.get(script, 0) + 1
matched = True
break
if matched:
break
if not matched:
script_counts["Other"] = script_counts.get("Other", 0) + 1
if total_alpha == 0:
return "Unknown", {}
dist = {s: c / total_alpha for s, c in script_counts.items()}
dominant = max(dist, key=dist.get) if dist else "Unknown"
return dominant, dist
# ─────────────────────────────────────────────
# Preprocessor Config
# ─────────────────────────────────────────────
@dataclass
class PreprocessorConfig:
normalize_unicode: bool = True
nfc_form: str = "NFC"
remove_urls: bool = True
remove_emails: bool = True
remove_html_tags: bool = True
normalize_whitespace: bool = True
remove_zero_width: bool = True
handle_mixed_numerals: bool = True
preserve_script_punctuation: bool = True
lowercase_latin: bool = False
max_length: Optional[int] = 2000
min_length: int = 10
# ─────────────────────────────────────────────
# Main Preprocessor
# ─────────────────────────────────────────────
class IndicTextPreprocessor:
"""
Comprehensive text preprocessor for Indic multilingual corpora.
Handles Unicode normalization, noise removal, and script-aware cleaning.
"""
# Regex patterns
_URL_RE = re.compile(
r"https?://\S+|www\.\S+|ftp://\S+", re.UNICODE
)
_EMAIL_RE = re.compile(
r"\b[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Z|a-z]{2,}\b"
)
_HTML_RE = re.compile(r"<[^>]+>")
_WHITESPACE_RE = re.compile(r"\s+", re.UNICODE)
_ZERO_WIDTH_RE = re.compile(
r"[\u200b\u200c\u200d\u200e\u200f\u202a-\u202e\ufeff\u00ad]"
)
_MULTI_PUNCT_RE = re.compile(r"([!?।॥,;.]){2,}")
# Indic numeral mappings to ASCII (for normalization)
_NUMERAL_MAP = str.maketrans(
"".join([
"०१२३४५६à¥à¥®à¥¯", # Devanagari
"০১২৩৪৫৬à§à§®à§¯", # Bengali
"੦੧੨੩੪੫੬à©à©®à©¯", # Gurmukhi
"૦૧૨૩૪૫૬à«à«®à«¯", # Gujarati
"à¦à§à¨à©àªà«à¬àà®à¯", # Odia
"௦௧௨௩௪௫௬à¯à¯®à¯¯", # Tamil
"౦౧౨౩౪౫౬à±à±®à±¯", # Telugu
"೦೧೨೩೪೫೬à³à³®à³¯", # Kannada
"൦൧൨൩൪൫൬àµàµ®àµ¯", # Malayalam
]),
"0123456789" * 9
)
def __init__(self, config: Optional[PreprocessorConfig] = None):
self.config = config or PreprocessorConfig()
def preprocess(self, text: str) -> str:
"""Full preprocessing pipeline."""
if not text or not isinstance(text, str):
return ""
cfg = self.config
# 1. Unicode normalization
if cfg.normalize_unicode:
text = unicodedata.normalize(cfg.nfc_form, text)
# 2. Remove zero-width and invisible characters
if cfg.remove_zero_width:
text = self._ZERO_WIDTH_RE.sub("", text)
# 3. Remove HTML tags
if cfg.remove_html_tags:
text = self._HTML_RE.sub(" ", text)
# 4. Remove URLs
if cfg.remove_urls:
text = self._URL_RE.sub(" ", text)
# 5. Remove emails
if cfg.remove_emails:
text = self._EMAIL_RE.sub(" ", text)
# 6. Numeral normalization (optional)
if cfg.handle_mixed_numerals:
text = text.translate(self._NUMERAL_MAP)
# 7. Collapse multiple punctuation
text = self._MULTI_PUNCT_RE.sub(r"\1", text)
# 8. Normalize whitespace
if cfg.normalize_whitespace:
text = self._WHITESPACE_RE.sub(" ", text).strip()
# 9. Lowercase Latin (optional, e.g. for English)
if cfg.lowercase_latin:
text = self._selective_lowercase(text)
# 10. Length truncation
if cfg.max_length and len(text) > cfg.max_length:
text = text[:cfg.max_length]
return text
def _selective_lowercase(self, text: str) -> str:
"""Lowercase only Latin characters, preserve others."""
result = []
for ch in text:
cp = ord(ch)
# Latin Basic + Extended
if 0x0041 <= cp <= 0x005A or 0x00C0 <= cp <= 0x00D6:
result.append(ch.lower())
else:
result.append(ch)
return "".join(result)
def batch_preprocess(
self, texts: List[str], show_progress: bool = True
) -> List[str]:
"""Preprocess a batch of texts."""
if show_progress:
from tqdm.auto import tqdm
return [self.preprocess(t) for t in tqdm(texts, desc="Preprocessing")]
return [self.preprocess(t) for t in texts]
def quality_score(self, text: str) -> float:
"""
Returns a text quality score in [0, 1].
Considers: alpha ratio, script consistency, length adequacy.
"""
if not text:
return 0.0
alpha = sum(c.isalpha() for c in text)
total = len(text)
if total == 0:
return 0.0
alpha_ratio = alpha / total
_, script_dist = get_dominant_script(text)
script_concentration = max(script_dist.values()) if script_dist else 0.0
length_score = min(1.0, len(text) / 100)
return 0.3 * alpha_ratio + 0.4 * script_concentration + 0.3 * length_score
def compute_text_features(self, text: str) -> Dict:
"""Rich feature set for a single text (used in analysis)."""
dominant, dist = get_dominant_script(text)
n_chars = len(text)
n_alpha = sum(c.isalpha() for c in text)
n_digits = sum(c.isdigit() for c in text)
n_punct = sum(unicodedata.category(c).startswith("P") for c in text)
n_spaces = sum(c.isspace() for c in text)
unique_chars = len(set(text))
type_token_ratio = unique_chars / max(n_chars, 1)
# Character entropy
from collections import Counter as _Counter
char_counts = _Counter(text)
total_f = sum(char_counts.values())
char_entropy = -sum(
(c / total_f) * np.log2(c / total_f)
for c in char_counts.values() if c > 0
) if total_f > 0 else 0.0
return {
"n_chars": n_chars,
"n_alpha": n_alpha,
"n_digits": n_digits,
"n_punct": n_punct,
"n_spaces": n_spaces,
"alpha_ratio": n_alpha / max(n_chars, 1),
"digit_ratio": n_digits / max(n_chars, 1),
"unique_char_ratio": type_token_ratio,
"dominant_script": dominant,
"script_distribution": dist,
"script_count": len(dist),
"is_mixed_script": len(dist) > 1 and max(dist.values()) < 0.95,
"quality_score": self.quality_score(text),
"n_words": len(text.split()),
"avg_word_len": (
np.mean([len(w) for w in text.split()]) if text.split() else 0
),
"char_entropy": float(char_entropy),
}
|