File size: 16,595 Bytes
b9d31ba 11a0fc5 b9d31ba 11a0fc5 b9d31ba 11a0fc5 b9d31ba 11a0fc5 b9d31ba 11a0fc5 b9d31ba 11a0fc5 b9d31ba 11a0fc5 b9d31ba 5a13d2c b9d31ba 5a13d2c 67899d6 5a13d2c 67899d6 b9d31ba 11a0fc5 b9d31ba 67899d6 b9d31ba 11a0fc5 b9d31ba 11a0fc5 b9d31ba 11a0fc5 b9d31ba 11a0fc5 b9d31ba 11a0fc5 b9d31ba 11a0fc5 b9d31ba 11a0fc5 b9d31ba 11a0fc5 b9d31ba 11a0fc5 b9d31ba 11a0fc5 b9d31ba 11a0fc5 b9d31ba 11a0fc5 b9d31ba 11a0fc5 b9d31ba 11a0fc5 b9d31ba 11a0fc5 b9d31ba 11a0fc5 b9d31ba 11a0fc5 b9d31ba | 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 | # -*- coding: utf-8 -*-
"""
ml/sentiment_model.py
=====================
Pure keyword/rule-based sentiment classifier for YouTube live-chat comments.
No ML models are loaded β classification is entirely keyword/regex-based.
Approach
--------
1. Emoji scoring β positive/negative emoji characters boost confidence
2. Negation check β "nahi accha" flips Positive β Negative
3. Intensifier boost β "bahut accha" raises confidence
4. Keyword matching β expanded Hinglish + English + regional + typo variants
5. Fallback β Neutral at 0.55 if nothing fires
Public API
----------
predict_sentiment(text: str) -> tuple[str, float]
Returns (label, confidence) where label β {"Positive", "Neutral", "Negative"}
and confidence β [0.50, 0.95].
"""
from __future__ import annotations
import re
import emoji
# ββ Emoji scoring ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# Positive and negative emoji keyword sets (matched against demojized names)
_EMOJI_POS_KW = {
"love", "fire", "happy", "laugh", "win", "cool", "best", "heart",
"smile", "star", "clap", "pray", "sparkle", "sun", "rainbow",
"thumbs_up", "raised_hands", "partying", "grinning", "beaming",
"smiling", "joy", "hundred", "muscle", "trophy", "crown",
}
_EMOJI_NEG_KW = {
"angry", "sad", "cry", "worst", "bad", "hate", "skull", "vomit",
"rage", "broken", "disappointed", "thumbs_down", "weary", "tired",
"loudly_crying", "fearful", "anguished", "confounded", "persevere",
"unamused", "expressionless", "nauseated", "sneezing",
}
def _emoji_score(text: str) -> float:
"""Return a float in roughly [-0.4, 0.4] based on emoji sentiment."""
score = 0.0
for ch in text:
if emoji.is_emoji(ch):
name = emoji.demojize(ch)
if any(k in name for k in _EMOJI_POS_KW):
score += 0.15
elif any(k in name for k in _EMOJI_NEG_KW):
score -= 0.15
return max(-0.4, min(score, 0.4))
# ββ Negation words βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# These flip the sentiment of a keyword that follows within a short window.
_NEGATION_WORDS: set[str] = {
# Hindi / Hinglish
"nahi", "nhi", "nahin", "na", "mat", "naa", "nope",
"bilkul nahi", "kabhi nahi", "kabhi nhi",
# English
"not", "no", "never", "neither", "nor", "without",
"don't", "dont", "doesn't", "doesnt", "didn't", "didnt",
"can't", "cant", "won't", "wont", "isn't", "isnt",
"wasn't", "wasnt", "aren't", "arent", "weren't", "werent",
"hardly", "barely", "scarcely",
}
# Window size: how many words before a sentiment word to check for negation
_NEGATION_WINDOW = 3
def _is_negated(word_list: list[str], sentiment_idx: int) -> bool:
"""Return True if a negation word appears within _NEGATION_WINDOW words before OR after sentiment_idx.
Handles both:
- pre-negation: "nahi accha tha" (negation before sentiment word)
- post-negation: "boring nahi tha" (negation after sentiment word)
"""
# Look before
start = max(0, sentiment_idx - _NEGATION_WINDOW)
before = word_list[start:sentiment_idx]
if any(w in _NEGATION_WORDS for w in before):
return True
# Look after (smaller window β 2 words)
after = word_list[sentiment_idx + 1: sentiment_idx + 3]
return any(w in _NEGATION_WORDS for w in after)
# ββ Intensifier words ββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
# These amplify the confidence when they appear near a sentiment word.
_INTENSIFIERS: dict[str, float] = {
# Hindi / Hinglish
"bahut": 0.10, # very
"bohot": 0.10,
"bht": 0.08,
"ekdum": 0.12, # absolutely
"bilkul": 0.10, # completely
"itna": 0.08, # this much
"kitna": 0.06,
"zyada": 0.08, # more/too much
"bohat": 0.10,
"atyant": 0.10, # extremely (formal Hindi)
"sampurn": 0.08, # completely
# English
"very": 0.08,
"too": 0.08,
"so": 0.06,
"super": 0.10,
"ultra": 0.10,
"extremely": 0.12,
"absolutely": 0.12,
"totally": 0.10,
"really": 0.08,
"truly": 0.08,
"highly": 0.08,
"deeply": 0.08,
"insanely": 0.10,
"incredibly": 0.10,
"genuinely": 0.08,
}
_INTENSIFIER_WINDOW = 2
def _intensifier_boost(word_list: list[str], sentiment_idx: int) -> float:
"""Return confidence boost from intensifiers within _INTENSIFIER_WINDOW words before sentiment_idx."""
start = max(0, sentiment_idx - _INTENSIFIER_WINDOW)
window = word_list[start:sentiment_idx]
boost = sum(_INTENSIFIERS.get(w, 0.0) for w in window)
return min(boost, 0.15) # cap single-word boost contribution
# ββ Positive keyword set βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
_POS_WORDS: set[str] = {
# ββ Core Hinglish slang ββ
"mast", "jhakaas", "kadak", "zabardast", "kamaal", "bindaas",
"shandar", "lajawaab", "lajawab", "lajaab", "waah", "wah",
"dhansu", "badhiya", "badiya", "maja", "mazza", "maza",
"acha", "accha", "achha", "acha", "sahi", "sach",
"shukriya", "dhanyawad", "dhanyavaad", "meherbani", "shukran",
"pyaar", "pyar", "khushi", "khush",
"fatafat", "jaldi",
# ββ Typo / abbreviation variants ββ
"osm", "awsm", "awsom", "awsome", "amzing", "amazng",
"gr8", "grt", "gr9", "fab", "fabbb",
"superrr", "amazinggg", "besttt", "niceee", "gooddd",
"thku", "thnku", "thnkuu", "thnkyou", "thanku", "thankyou",
"thnk", "thnq", "thnks", "thnx", "tysm", "tqsm", "thx", "ty",
"ty", "tyvm", "tyvmm",
# ββ English positive ββ
"amazing", "awesome", "excellent", "wonderful", "fantastic",
"brilliant", "outstanding", "exceptional", "magnificent",
"superb", "perfect", "great", "good", "nice", "beautiful",
"lovely", "loved", "love", "best", "better",
"helpful", "useful", "informative", "fruitful", "motivating",
"motivational", "inspiring", "inspired", "insightful",
"clear", "clarity", "simple", "easy", "smooth",
"thankful", "grateful", "blessed", "proud",
"happy", "glad", "pleased", "satisfied", "content",
"enjoy", "enjoyed", "enjoying", "fun", "interesting",
"impressive", "impressed", "incredible", "unbelievable",
"top", "topnotch", "firstclass", "worldclass",
"recommend", "recommended", "worth", "worthy",
"thanks", "thank", "appreciate", "appreciated",
"respect", "salute", "legend", "goat", "king", "queen",
"bestest", "bestttttt", "much", "op", "lit",
# ββ Regional / South Indian Hinglish ββ
"semma", # Tamil slang for awesome
"mass", # Tamil/Telugu slang for impressive
"vera level", # Tamil slang for next level
"sema", # variant of semma
"bindass", # variant of bindaas
"dum", # strength/power (positive context)
"dhamakedaar", # explosive/amazing
"dhamaka", # blast/amazing
"toofan", # storm (used positively)
"jalwa", # aura/presence (positive)
"josh", # enthusiasm/energy
"full josh",
"paisa vasool", # worth the money
"makkhan", # butter smooth (positive)
"solid", # solid/strong (positive)
"tight", # tight/solid (positive slang)
"fire", # fire (positive slang)
"goated", # GOAT-ed (positive slang)
"based", # based (positive slang)
"valid", # valid (positive slang)
"clean", # clean explanation
# ββ Gratitude phrases (single tokens after normalization) ββ
"shukriyaa", "shukriyaaa", "dhanyawaad", "dhanyawaaad",
"abhar", # gratitude (formal Hindi)
"aabhar",
# ββ Common live chat positives ββ
"woww", "wowww", "woah", "whoa", "yay", "yayy",
"haha", "hahaha", "lol", "lmao", # laughter = positive
"clap", "claps", "bravo", "chappal",
"heart", "hearts",
"100", "1000",
# ββ Greetings / blessings (common in Indian live chats) ββ
"pranam", "pranaam", "namaskar", "namaste", "namasthe",
"assalamualaikum", "walaikum", "walekum", "waalaikum",
"jai hind", "jai ho", "jai shree ram", "jai mata di",
"gm", "gn", "ge",
"mubarak", "mubarakho",
"atb",
"god bless", "stay blessed", "stay safe",
"welcome", "wlcm", "wlc",
"congratulations", "congrats",
"well done", "keep it up", "keep going",
"proud", "proudly",
"maza aa gaya", "maza aaya", "maja aa gaya",
"khyal rakhna",
"take care",
"luck",
"morning",
"evening",
# ββ Teaching/session appreciation ββ
"teaching", "teacher", "best teacher", "best sir",
"best pace", "best session", "best class", "best lecture",
"chaliye", "chalo", "lets go", "lets gooo", "lets", # enthusiasm
"energy", "josh",
"1st time", "first time",
"aagye", "aa gye", "agye",
"jai", "hind", # "jai hind" splits into two tokens
}
# ββ Negative keyword set βββββββββββββββββββββββββββββββββββββββββββββββββββββββ
_NEG_WORDS: set[str] = {
# ββ Core Hinglish slang ββ
"bakwas", "bakwaas", "bakwaaas",
"faltu", "faltuu",
"bekar", "bekaar", "bekaaar",
"ghatiya", "ghatiiya",
"wahiyat", "wahiyaat",
"bura", "buraa",
"kharab", "kharaaab",
"boring", "borring", "booring",
"ullu", "pagal", "paagal",
"besharam", "besharaam",
"nafrat", "gussa", "naraaz",
"dukh", "takleef", "mushkil",
"uruttu", "battamizi", "battameezi",
"natak", "nautanki",
"dhoka", "dhokha", "jhooth", "jhoota",
"dikhawa", "dikhaawa",
"beizzati", "beizzatii", "bezaati",
"sharam", "sharaam",
"galat", "galt",
"jhanjhat", "jhamela",
"tang", "pareshan", "pareshaan",
"nirasha", "niraash", # disappointment
"thaka", "thakaan", # tired/exhausted
"dard", "peeda", # pain
"rona", "rota", "roti", # crying
"darr", "dar", "darna", # fear/anxiety
"dara", "darti", "darte", # fear variants
"tension", "tensed", # stress
"scared", "nervous", # fear in English
"cheat", "cheating",
"fraud", "fraudiya",
"loot", "loota", "looting",
# ββ English negative ββ
"useless", "unfair", "disappointing", "disappointed",
"foolish", "stupid", "idiot", "idiotic",
"terrible", "horrible", "awful", "dreadful",
"worst", "worse", "bad", "poor",
"waste", "wasted", "pathetic",
"annoying", "annoyed", "irritating", "irritated",
"frustrating", "frustrated", "frustration",
"confusing", "confused", "confusion",
"misleading", "clickbait",
"fake", "scam", "spam",
"hate", "hated", "hating",
"angry", "anger", "rage",
"sad", "sadness", "unhappy", "upset",
"wrong", "incorrect", "error", "mistake",
"problem", "issue", "bug", "broken",
"slow", "lagging", "lag", "buffering",
"crash", "crashed", "crashing",
"fail", "failed", "failure",
"ignore", "ignored", "ignoring",
"rude", "disrespect", "disrespectful",
"unfair", "biased", "bias",
"overpriced", "expensive", "costly",
"wtf", "wth", "omg", # context-dependent but often negative in complaints
"curse", "abusive",
"liar", "lie", "lies",
"cheat", "cheater",
"regret", "regretted", "regrets",
"never", "worst",
# ββ Typo / abbreviation variants ββ
"bakwaaas", "bekarrr", "borinnng",
"worstttt", "terribleee",
# ββ Regional / South Indian Hinglish ββ
"kabaad", # junk/trash
"raddi", # waste/junk
"kachra", # garbage
"bekar", # useless (already above)
"nikamma", # good-for-nothing
"nalayak", # incompetent
"kamina", # scoundrel
"harami", # offensive negative
"bewakoof", # fool
"gadha", # donkey (fool)
"buddhu", # fool
"duffer", # dull/stupid
"flop", # flop/failure
"disaster", # disaster
"pathetic", # pathetic (already above)
"cringe", # cringe
"cap", # cap = lie (slang)
"mid", # mid = mediocre/bad (slang)
"trash", # trash
"garbage", # garbage
"dogwater", # very bad (gaming slang)
"lowkey bad",
"not good",
"not helpful",
"not worth",
"time waste",
"time wasted",
"waste of time",
}
# ββ Text normalisation βββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _normalise(text: str) -> str:
"""Lowercase, strip emoji codes, collapse repeated chars, collapse whitespace."""
# Strip demojized emoji codes like :fire: :thumbs_up:
t = re.sub(r":[a-z_]+:", " ", text)
t = t.lower()
# Collapse 3+ repeated chars to 2: "amazinggg" β "amazingg", "niceee" β "nicee"
# (keeps double so "woww" still matches "woww" in keyword set)
t = re.sub(r"(.)\1{2,}", r"\1\1", t)
t = re.sub(r"\s+", " ", t).strip()
return t[:512]
# ββ Core classification ββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def _classify(text: str) -> tuple[str, float]:
"""
Classify normalised text using keyword matching with negation and intensifier handling.
Returns (label, base_confidence) before emoji adjustment.
"""
t = _normalise(text)
if len(t) <= 2:
return "Neutral", 0.55
word_list = t.split()
word_set = set(word_list)
pos_score = 0.0
neg_score = 0.0
pos_boost = 0.0
neg_boost = 0.0
for idx, word in enumerate(word_list):
negated = _is_negated(word_list, idx)
int_boost = _intensifier_boost(word_list, idx)
if word in _POS_WORDS:
if negated:
neg_score += 1.0
neg_boost = max(neg_boost, int_boost)
else:
pos_score += 1.0
pos_boost = max(pos_boost, int_boost)
elif word in _NEG_WORDS:
if negated:
pos_score += 1.0
pos_boost = max(pos_boost, int_boost)
else:
neg_score += 1.0
neg_boost = max(neg_boost, int_boost)
# No keyword hits β Neutral
if pos_score == 0 and neg_score == 0:
return "Neutral", 0.55
# Determine winner
if pos_score > neg_score:
base_conf = min(0.72 + 0.05 * pos_score + pos_boost, 0.92)
return "Positive", round(base_conf, 3)
if neg_score > pos_score:
base_conf = min(0.72 + 0.05 * neg_score + neg_boost, 0.92)
return "Negative", round(base_conf, 3)
# Tie β Neutral with moderate confidence
return "Neutral", 0.58
# ββ Public API βββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββββ
def predict_sentiment(text: str) -> tuple[str, float]:
"""
Classify a comment's sentiment.
Parameters
----------
text : str
Raw comment text (may be Hinglish, emoji-containing, mixed script, or None).
Returns
-------
label : str
One of "Positive", "Neutral", "Negative".
confidence : float
Rule-based confidence in [0.50, 0.95].
Notes
-----
- Deterministic: same input always produces the same output.
- No ML models, no I/O, no side effects.
- None and empty/whitespace-only strings return ("Neutral", 0.55).
"""
if not text or not text.strip():
return "Neutral", 0.55
label, conf = _classify(text)
# Adjust confidence by emoji sentiment in the original text
emoji_adj = _emoji_score(text)
conf = round(max(0.50, min(conf + emoji_adj, 0.95)), 3)
return label, conf
|