File size: 45,612 Bytes
279fa27 540b603 279fa27 540b603 279fa27 540b603 279fa27 | 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 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 | import streamlit as st
import pandas as pd
import numpy as np
import joblib
import os
from sklearn.ensemble import RandomForestClassifier
from sklearn.calibration import CalibratedClassifierCV
from sklearn.pipeline import Pipeline
from sklearn.compose import ColumnTransformer
from sklearn.preprocessing import StandardScaler, OneHotEncoder
from sklearn.impute import SimpleImputer
from sklearn.model_selection import train_test_split
from sklearn.metrics import (accuracy_score, precision_score, recall_score,
f1_score, roc_auc_score, brier_score_loss,
confusion_matrix, classification_report)
import matplotlib.pyplot as plt
import seaborn as sns
import warnings
warnings.filterwarnings('ignore')
st.set_page_config(
page_title="๐ Ghosting Predictor",
page_icon="๐ป",
layout="wide",
initial_sidebar_state="collapsed"
)
st.markdown("""
<style>
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;700;800&family=Inter:wght@400;500;600&display=swap');
html, body, [class*="css"] { font-family: 'Inter', sans-serif; }
h1, h2, h3 { font-family: 'Syne', sans-serif !important; }
.main-title {
font-family: 'Syne', sans-serif; font-size: 3.0em; font-weight: 700;
color: #ff6b6b; /* Set text color to red */
text-align: center; margin-bottom: 20px; letter-spacing: 0.5px;
}
.sub-title { text-align: center; color: #b2bec3; font-size: 1.2em; margin-top: 10px; margin-bottom: 20px; }
.verdict-card {
border-radius: 20px; padding: 30px; text-align: center;
margin: 20px auto; position: relative; overflow: hidden;
max-width: 700px;
}
.verdict-high { background: linear-gradient(135deg, #00b894, #00cec9); color: white; }
.verdict-mid { background: linear-gradient(135deg, #fdcb6e, #e17055); color: white; }
.verdict-low { background: linear-gradient(135deg, #d63031, #6c5ce7); color: white; }
.verdict-pct { font-family: 'Syne', sans-serif; font-size: 3em; font-weight: 800; line-height: 1.2; }
.verdict-label { font-size: 1.2em; font-weight: 600; margin-top: 10px; opacity: 0.9; }
.verdict-quote { font-size: 1em; margin-top: 16px; font-style: italic; opacity: 0.85;
border-top: 1px solid rgba(255,255,255,0.2); padding-top: 16px; }
.diag-row { display: flex; gap: 20px; margin: 20px auto; flex-wrap: wrap; justify-content: center; }
.diag-card {
flex: 1; min-width: 180px; max-width: 250px; border-radius: 15px; padding: 20px;
text-align: center; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
}
.diag-title { font-size: 0.9em; text-transform: uppercase; letter-spacing: 1px; color: #b2bec3; margin-bottom: 8px; }
.diag-val { font-family: 'Syne', sans-serif; font-size: 1.5em; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.val-high { color: #00b894; }
.val-mid { color: #fdcb6e; }
.val-low { color: #ff7675; }
.flag-item {
display: flex; align-items: flex-start; gap: 12px;
padding: 12px 16px; border-radius: 12px; margin: 8px auto;
background: rgba(214, 48, 49, 0.15); border-left: 4px solid #d63031; font-size: 1em;
max-width: 700px;
}
.green-flag { background: rgba(0, 184, 148, 0.15); border-left: 4px solid #00b894; }
.share-card {
background: linear-gradient(135deg, #1a1a2e, #16213e);
border-radius: 20px; padding: 30px; border: 1px solid rgba(255,255,255,0.1);
text-align: center; font-family: 'Syne', sans-serif;
max-width: 700px; margin: 30px auto;
}
.share-pct {
font-size: 3em; font-weight: 800;
background: linear-gradient(135deg, #ff6b6b, #ee5a24);
-webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.share-line { color: #dfe6e9; margin: 8px 0; font-size: 0.9em; }
.share-tag { color: #636e72; font-size: 0.85em; margin-top: 12px; }
.m-card {
background: rgba(255,255,255,0.08); border-radius: 15px; padding: 20px; text-align: center;
border: 1px solid rgba(255,255,255,0.1); margin: 6px auto; max-width: 250px;
}
.m-num { font-family: 'Syne', sans-serif; font-size: 1.8em; font-weight: 800; color: #fdcb6e; }
.m-lbl { font-size: 0.85em; color: #b2bec3; text-transform: uppercase; letter-spacing: 0.8px; }
.stProgress > div > div { border-radius: 99px; }
.block-container { padding-top: 3.5rem; max-width: 1300px; margin: auto; }
/* Mode buttons โ uniform dark style */
div[data-testid="stHorizontalBlock"] .stButton > button {
background: rgba(255,255,255,0.06) !important;
color: #b2bec3 !important;
border: 1px solid rgba(255,255,255,0.12) !important;
border-radius: 10px !important;
font-weight: 600 !important;
box-shadow: none !important;
transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease !important;
}
/* Hover effect for all buttons */
div[data-testid="stHorizontalBlock"] .stButton > button:hover {
background: rgba(255,255,255,0.12) !important;
border-color: rgba(255,255,255,0.28) !important;
color: #fff !important;
box-shadow: none !important;
}
/* Active mode button โ dynamic color based on mode */
{''.join([f'div[data-testid="stHorizontalBlock"] .stButton > button[kind="primary"][data-baseweb="{key}"] {{\n background: {color} !important;\n border: 1px solid {color} !important;\n color: #fff !important;\n box-shadow: 0 0 12px {color} !important;\n}}\n' for key, color in zip(['normal', 'savage', 'emotional', 'delusional'], ['#c0392b', '#8e44ad', '#3498db', '#e67e22'])])}
</style>
""", unsafe_allow_html=True)
# โโ Feature config โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
NUM_FEATURES = [
'last_message_length', 'response_time_gap', 'conversation_length',
'reply_ratio', 'avg_response_time', 'emoji_count', 'question_asked',
'seen_ignored', 'past_ghosting_history', 'effort_score', 'delay',
'is_dry', 'is_long_gap', 'engagement_score', 'ghost_risk_combo',
'seen_delay', 'initiator_flag', 'inconsistency', 'decay_score', 'effort_mismatch'
]
CAT_FEATURES = ['initiator', 'message_tone', 'time_of_day', 'user_type']
def make_preprocessor():
num_t = Pipeline([('imp', SimpleImputer(strategy='median')), ('sc', StandardScaler())])
cat_t = Pipeline([('imp', SimpleImputer(strategy='most_frequent')),
('ohe', OneHotEncoder(handle_unknown='ignore'))])
return ColumnTransformer([('num', num_t, NUM_FEATURES), ('cat', cat_t, CAT_FEATURES)], remainder='drop')
# โโ Load / train models โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
@st.cache_resource
def load_models():
rp = 'rf_reply_model.pkl'; gp = 'rf_ghost_model.pkl'; mp = 'model_metrics.pkl'
if os.path.exists(rp) and os.path.exists(gp) and os.path.exists(mp):
try:
return joblib.load(rp), joblib.load(gp), joblib.load(mp)
except Exception as e:
st.warning(f"โ ๏ธ Saved models failed ({str(e)[:60]}). Retraining...")
with st.spinner("๐ค Training models... (~30 sec)"):
try:
df = pd.read_csv('ghosting_dataset5.csv')
except FileNotFoundError:
st.error("โ ghosting_dataset5.csv not found. Run gen_data5.py first.")
st.stop()
df['effort_score'] = df['last_message_length'] + (df['emoji_count'] * 2) + (df['question_asked'] * 5)
df['delay'] = df['response_time_gap'].apply(lambda x: 0 if x < 6 else 1 if x < 24 else 2)
df['is_dry'] = (df['message_tone'] == 'dry').astype(int)
df['is_long_gap'] = (df['response_time_gap'] > 24).astype(int)
df['engagement_score'] = df['reply_ratio'] * df['conversation_length']
df['ghost_risk_combo'] = ((df['response_time_gap'] > 24) & (df['reply_ratio'] < 0.4)).astype(int)
df['seen_delay'] = ((df['seen_ignored'] == 1) & (df['response_time_gap'] > 12)).astype(int)
df['initiator_flag'] = (df['initiator'] == 'me').astype(int)
df['inconsistency'] = (abs(df['response_time_gap'] - df['avg_response_time']) > 20).astype(int)
df['decay_score'] = (df['conversation_length'] / 200).clip(0, 1)
df['effort_mismatch'] = ((df['last_message_length'] > 20) & (df['reply_ratio'] < 0.3)).astype(int)
def _train(df, target):
X = df[NUM_FEATURES + CAT_FEATURES]; y = df[target]
# โโ Proper 3-way split โบ no leakage โโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
X_tv, X_test, y_tv, y_test = train_test_split(X, y, test_size=0.15, random_state=42, stratify=y)
X_tr, X_val, y_tr, y_val = train_test_split(X_tv, y_tv, test_size=0.15/0.85, random_state=42, stratify=y_tv)
mdl = Pipeline([('pre', make_preprocessor()),
('clf', RandomForestClassifier(n_estimators=400, max_depth=20,
class_weight='balanced', random_state=42, n_jobs=-1))])
mdl.fit(X_tr, y_tr)
# Calibrate on val only; evaluate on test only
cal = CalibratedClassifierCV(mdl, method='sigmoid', cv=3)
cal.fit(X_val, y_val)
yp = cal.predict(X_test); yproba = cal.predict_proba(X_test)[:, 1]
return cal, {
'accuracy': accuracy_score(y_test, yp),
'precision': precision_score(y_test, yp, zero_division=0),
'recall': recall_score(y_test, yp, zero_division=0),
'f1_score': f1_score(y_test, yp, zero_division=0),
'roc_auc': roc_auc_score(y_test, yproba),
'brier': brier_score_loss(y_test, yproba),
'confusion_matrix': confusion_matrix(y_test, yp).tolist(),
'classification_report': classification_report(y_test, yp),
'train_size': len(X_tr), 'val_size': len(X_val), 'test_size': len(X_test),
'y_test': y_test.tolist(), 'y_pred_prob': yproba.tolist(),
}
rm, rmets = _train(df, 'reply')
gm, gmets = _train(df, 'ghosted')
joblib.dump(rm, rp); joblib.dump(gm, gp)
joblib.dump({'reply': rmets, 'ghosted': gmets}, mp)
return rm, gm, {'reply': rmets, 'ghosted': gmets}
reply_model, ghost_model, all_metrics = load_models()
# โโ Feature builder โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
def build_input(msg_len, tone, asked_q, resp_time, seen_ign, emoji,
conv_len=25, rr=None, avg_rt=None, past_ghost=0, user_type='casual'):
if rr is None: rr = 0.70 if asked_q else 0.50
if avg_rt is None: avg_rt = max(1.0, resp_time * 0.5)
tod = 'night' if resp_time > 20 else ('morning' if resp_time < 8 else 'day')
return pd.DataFrame({
'last_message_length': [msg_len],
'response_time_gap': [float(resp_time)],
'conversation_length': [conv_len],
'reply_ratio': [rr],
'avg_response_time': [float(avg_rt)],
'emoji_count': [emoji],
'question_asked': [int(asked_q)],
'seen_ignored': [seen_ign],
'past_ghosting_history': [past_ghost],
'effort_score': [msg_len + (emoji * 2) + (5 if asked_q else 0)],
'delay': [0 if resp_time < 6 else (1 if resp_time < 24 else 2)],
'is_dry': [int(tone == 'dry')],
'is_long_gap': [int(resp_time > 24)],
'engagement_score': [rr * conv_len],
'ghost_risk_combo': [int(resp_time > 24 and rr < 0.4)],
'seen_delay': [int(seen_ign == 1 and resp_time > 12)],
'initiator_flag': [int(asked_q)],
'inconsistency': [int(abs(resp_time - avg_rt) > 20)],
'decay_score': [min(conv_len / 200, 1.0)],
'effort_mismatch': [int(msg_len > 20 and rr < 0.3)],
'initiator': ['me' if asked_q else 'them'],
'message_tone': [tone],
'time_of_day': [tod],
'user_type': [user_type],
})
def predict_both(row):
rp = reply_model.predict_proba(row)[0][1]
gp = ghost_model.predict_proba(row)[0][1]
return round(rp, 4), round(gp, 4)
# โโ Mode-adjusted probabilities โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
# The ML model gives one true probability. Each mode nudges it to tell a
# coherent story consistent with that mode's personality:
# Savage: slightly pessimistic โบ surfaces the worst-case reading
# Emotional: softens ghost risk, because the point is empathy not alarm
# Delusional: bumps reply up, tanks ghost risk โบ the world is fine, always
# Normal: raw model output, no adjustment
#
# Adjustments are additive deltas, clamped to [0.05, 0.95].
# The base probability is always stored in session_state so switching modes
# always starts from the same model output โบ no drift across mode switches.
MODE_PROB_DELTA = {
# reply_delta ghost_delta
'normal': ( 0.00, 0.00),
'savage': ( -0.07, +0.10), # pessimistic โบ "realistically, it's worse"
'emotional': ( +0.04, -0.06), # softer framing โบ ghost risk feels lower
'delusional':( +0.15, -0.18), # copium โบ everything looks fine
}
def apply_mode(base_rp, base_gp, mode):
rd, gd = MODE_PROB_DELTA[mode]
rp = max(0.05, min(0.95, base_rp + rd))
gp = max(0.05, min(0.95, base_gp + gd))
return round(rp, 4), round(gp, 4)
# โโ Mode-aware text โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
# BUG FIX: All text that changes with mode must be derived AFTER reading mode
# from session_state, and the cache key must include mode.
MODE_QUOTES = {
'savage': {
'high': ("Not bad. They might actually respond. Don't ruin it by double-texting.",
"You're doing well. Shockingly."),
'mid': ("50/50. A coin toss. Even randomness has standards.",
"You're in the grey zone. Be honest โบ you already know."),
'low': ("They saw it. Chose silence. That's your answer.",
"This isn't a delay. This is an exit."),
'ghost_high': "They're already gone. The AI just confirmed what you felt.",
'ghost_mid': "It could go either way. But look at that response time.",
'ghost_low': "Slim chance. Still a chance. Do with that what you will.",
},
'emotional': {
'high': ("There's still warmth here. Don't give up on this connection ๐",
"The signs are good. You deserve someone who shows up."),
'mid': ("It's uncertain, and that uncertainty is exhausting. You're not alone in this.",
"You deserve clarity. This situation doesn't give you that yet."),
'low': ("It's okay to feel this. Silence hurts. Your feelings are valid.",
"Sometimes people fade. That's not a reflection of your worth."),
'ghost_high': "This is hard to hear, but you already sensed something was off.",
'ghost_mid': "The uncertainty is real. You deserve better than wondering.",
'ghost_low': "There's still a thread here. But protect your heart either way.",
},
'delusional': {
'high': ("They're DEFINITELY writing a 3-paragraph reply right now ๐ฅ",
"They literally can't stop thinking about you. Facts."),
'mid': ("They're just playing it cool. They're SO into you. Obviously.",
"This is called mystery. They're keeping you guessing because you're special."),
'low': ("They're probably just in a coma. Or lost their phone. In the ocean.",
"WiFi issues. 100%. They'll reply any second now. Any. Second."),
'ghost_high': "Ghost risk?? No no no. They're just... composing the perfect reply.",
'ghost_mid': "The model is clearly broken. You two have something special.",
'ghost_low': "See?? Low ghost risk. They adore you. Manifesting the reply rn.",
},
'normal': {
'high': ("Good signs based on your inputs. Message has solid energy.",
"The indicators are positive here."),
'mid': ("This one could genuinely go either way. Hard to call.",
"Mixed signals in the data โบ reply is uncertain."),
'low': ("The probability here is low based on current signals.",
"Several risk factors are stacking up in this scenario."),
'ghost_high': "Multiple ghosting indicators are present.",
'ghost_mid': "Some ghosting signals detected โบ not conclusive.",
'ghost_low': "Low ghosting probability based on the inputs.",
}
}
# BUG FIX: Final Verdict text must also be mode-aware
VERDICT_TEXT = {
'normal': {
'clear_ok': ("You're overcomplicating this. They'll reply.", "#00b894"),
'mixed': ("Mixed signals. Reply likely but something feels off.", "#fdcb6e"),
'one_sided': ("This is one-sided. You're investing more than they are.", "#e17055"),
'move_on': ("Move on. The data agrees with your gut.", "#d63031"),
'uncertain': ("It's uncertain. Give it one more day before deciding.", "#636e72"),
},
'savage': {
'clear_ok': ("They'll reply. Don't sabotage it now.", "#00b894"),
'mixed': ("Reply likely. Ghost possible. Classic mixed energy situation.", "#fdcb6e"),
'one_sided': ("You're the only one putting in effort here. Read that again.", "#e17055"),
'move_on': ("It's over. Your gut knew. Now you have data too.", "#d63031"),
'uncertain': ("Genuinely unclear. But your anxiety already picked a side.", "#636e72"),
},
'emotional': {
'clear_ok': ("There's real connection here. Let it breathe.", "#00b894"),
'mixed': ("Something good is here, but something's also holding back.", "#fdcb6e"),
'one_sided': ("You deserve reciprocity. This doesn't look balanced right now.", "#e17055"),
'move_on': ("It's okay to let go. That's not giving up, it's self-respect.", "#d63031"),
'uncertain': ("Uncertainty is painful. Whatever happens, you'll be okay.", "#636e72"),
},
'delusional': {
'clear_ok': ("Obviously they'll reply. You two are basically soulmates.", "#00b894"),
'mixed': ("The universe is just building tension before the plot twist ๐", "#fdcb6e"),
'one_sided': ("You're the main character. They're just processing their feelings.", "#e17055"),
'move_on': ("'Move on'?? The AI doesn't understand your unique connection.", "#d63031"),
'uncertain': ("The model is just shy. It doesn't understand romance.", "#636e72"),
},
}
def get_verdict_key(reply_prob, ghost_prob):
if reply_prob > 0.65 and ghost_prob < 0.40: return 'clear_ok'
if reply_prob > 0.65 and ghost_prob >= 0.40: return 'mixed'
if reply_prob > 0.40: return 'one_sided'
if ghost_prob > 0.65: return 'move_on'
return 'uncertain'
def get_quotes(mode, reply_prob, ghost_prob):
rb = 'high' if reply_prob > 0.65 else ('mid' if reply_prob > 0.40 else 'low')
gb = 'ghost_high' if ghost_prob > 0.65 else ('ghost_mid' if ghost_prob > 0.40 else 'ghost_low')
q = MODE_QUOTES[mode][rb]
return (q[0], q[1]), MODE_QUOTES[mode][gb]
def interest_label(reply_prob):
if reply_prob > 0.70: return "HIGH", "val-high"
if reply_prob > 0.45: return "MEDIUM", "val-mid"
return "LOW", "val-low"
def effort_label(msg_len, asked_q, emoji):
score = (msg_len / 50) + (2 if asked_q else 0) + (emoji * 0.3)
if score > 4: return "HIGH", "val-high"
if score > 2: return "BALANCED", "val-mid"
return "ONE-SIDED", "val-low"
def ghost_risk_label(ghost_prob):
if ghost_prob > 0.65: return "HIGH", "val-low"
if ghost_prob > 0.40: return "MEDIUM", "val-mid"
return "LOW", "val-high"
# โโ Header โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
st.markdown("<div class='main-title'>๐ GHOSTING PREDICTOR</div>", unsafe_allow_html=True)
st.markdown("<div class='sub-title'>AI-powered relationship reality check โบ be honest, it already knows</div>", unsafe_allow_html=True)
# โโ Personality mode selector โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
st.markdown("#### Choose your vibe")
if "personality_mode" not in st.session_state:
st.session_state["personality_mode"] = "normal"
mode_cols = st.columns(4)
modes = [("๐ง Normal", "normal"), ("๐ Savage", "savage"), ("๐ญ Emotional", "emotional"), ("๐คก Delusional", "delusional")]
for i, (lbl, key) in enumerate(modes):
with mode_cols[i]:
if st.button(lbl, use_container_width=True,
type="primary" if st.session_state["personality_mode"] == key else "secondary"):
if st.session_state.get("last_clicked") == key:
# Double-click detected, toggle to red
st.session_state["personality_mode"] = "savage"
else:
st.session_state["personality_mode"] = key
st.session_state["last_clicked"] = key
# NO st.rerun() here. Streamlit re-renders naturally on button click.
# st.rerun() caused a second render cycle where tab widgets hadn't
# initialized yet โ ikey matched stale session values and base_rp/base_gp
# fell back to mode defaults instead of the user's actual inputs.
# Read mode ONCE here โบ everything below uses this single variable
mode = st.session_state["personality_mode"]
mode_banner = {
"normal": ("๐ง Normal Mode", "#636e72"),
"savage": ("๐ Savage Mode โบ No feelings were harmed. They were obliterated.", "#d63031"),
"emotional": ("๐ญ Emotional Mode โบ We see you. Your feelings are valid.", "#6c5ce7"),
"delusional": ("๐คก Delusional Mode โบ Stay hopeful! (AI thinks you're cooked.)", "#e17055"),
}
banner_text, banner_color = mode_banner[mode]
st.markdown(
f"<div style='text-align:center;background:{banner_color}22;border:1px solid {banner_color}55;"
f"border-radius:10px;padding:8px;font-size:1.5em;color:{banner_color};margin:8px 0 16px;'>"
f"{banner_text}</div>",
unsafe_allow_html=True
)
st.divider()
# โโ Tabs: 3 tabs only (message analyzer removed) โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
tab1, tab2, tab3 = st.tabs(["๐ฎ Predict", "๐ What-If", "๐ Model Metrics"])
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
# TAB 1 โบ MAIN PREDICTION
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
with tab1:
col1, col2 = st.columns(2, gap="large")
with col1:
st.markdown("#### ๐ฑ Your message")
message_length = st.slider("Message length (chars)", 1, 500, 80, 5)
message_tone = st.selectbox("Tone", ['dry', 'neutral', 'enthusiastic'], index=1)
asked_question = st.toggle("Asked a question?", value=True)
emoji_count = st.slider("Emojis used", 0, 10, 1)
past_ghost = st.toggle("Have they ghosted you before?", value=False)
with col2:
st.markdown("#### โฑ๏ธ Their behaviour")
response_time = st.slider("Hours since you sent it", 0, 72, 4, 1)
seen_raw = st.radio("Did they see it?", ["๐๏ธ Yes, seen", "โ Not seen yet"], horizontal=True)
seen_ignored = 1 if "Yes" in seen_raw else 0
conv_len = st.slider("How long has the convo been? (messages)", 1, 200, 20)
user_type_map = {
"๐ Seems interested": "interested",
"๐ฌ Normal/casual": "casual",
"๐ต Very dry texter": "dry_texter",
"๐ป Known to ghost": "ghoster",
}
user_type_label = st.selectbox("How would you describe them?", list(user_type_map.keys()))
user_type = user_type_map[user_type_label]
st.divider()
# โโ Predictions โบ cache key includes mode so text refreshes on mode change โโ
# ikey tracks input changes only (not mode) โบ model is only re-run when
# inputs change. Base probabilities are stored raw (no mode applied).
# Mode adjustment is applied on every render so switching mode instantly
# changes the displayed numbers without re-running the model.
ikey = (message_length, message_tone, asked_question, response_time,
seen_ignored, emoji_count, conv_len, user_type, int(past_ghost))
# Always run prediction if base_rp/base_gp are missing OR if inputs changed
needs_predict = (
st.session_state.get("ikey") != ikey
or "base_rp" not in st.session_state
or "base_gp" not in st.session_state
)
if needs_predict:
try:
row = build_input(message_length, message_tone, asked_question,
response_time, seen_ignored, emoji_count,
conv_len=conv_len, past_ghost=int(past_ghost),
user_type=user_type)
base_rp, base_gp = predict_both(row)
except Exception as e:
st.error(f"Prediction error: {e}")
base_rp, base_gp = 0.5, 0.4
st.session_state.update({"ikey": ikey, "base_rp": base_rp, "base_gp": base_gp})
# Apply mode delta on every render โบ no model re-run needed
reply_prob, ghost_prob = apply_mode(
st.session_state["base_rp"],
st.session_state["base_gp"],
mode
)
# Derive ALL mode-dependent text here, after reading mode from session_state
(main_q, sub_q), ghost_q = get_quotes(mode, reply_prob, ghost_prob)
verdict_key = get_verdict_key(reply_prob, ghost_prob)
verdict_text, verdict_color = VERDICT_TEXT[mode][verdict_key]
# โโ Dual verdict cards โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
vc1, vc2 = st.columns(2)
with vc1:
vclass = "verdict-high" if reply_prob > 0.65 else ("verdict-mid" if reply_prob > 0.40 else "verdict-low")
vlabel = "They'll reply ๐ฅ" if reply_prob > 0.65 else ("Could go either way ๐ฌ" if reply_prob > 0.40 else "They're ghosting you ๐")
st.markdown(f"""
<div class='verdict-card {vclass}'>
<div style='font-size:0.8em;font-weight:600;opacity:0.8;text-transform:uppercase;letter-spacing:1px;'>Reply probability</div>
<div class='verdict-pct'>{reply_prob*100:.0f}%</div>
<div class='verdict-label'>{vlabel}</div>
<div class='verdict-quote'>"{main_q}"</div>
</div>
""", unsafe_allow_html=True)
with vc2:
gclass = "verdict-low" if ghost_prob > 0.65 else ("verdict-mid" if ghost_prob > 0.40 else "verdict-high")
glabel = "High ghost risk ๐" if ghost_prob > 0.65 else ("Uncertain ๐ฌ" if ghost_prob > 0.40 else "Probably fine ๐")
st.markdown(f"""
<div class='verdict-card {gclass}'>
<div style='font-size:0.8em;font-weight:600;opacity:0.8;text-transform:uppercase;letter-spacing:1px;'>Ghost probability</div>
<div class='verdict-pct'>{ghost_prob*100:.0f}%</div>
<div class='verdict-label'>{glabel}</div>
<div class='verdict-quote'>"{ghost_q}"</div>
</div>
""", unsafe_allow_html=True)
# โโ Conversation Diagnosis โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
# BUG FIX: Diagnosis values are derived from ML probabilities (correct),
# but the Read Status now also reflects mode tone
st.markdown("#### ๐ง Conversation Diagnosis")
int_lbl, int_cls = interest_label(reply_prob)
eff_lbl, eff_cls = effort_label(message_length, asked_question, emoji_count)
gr_lbl, gr_cls = ghost_risk_label(ghost_prob)
# Read status changes with mode (delusional gives an excuse, savage is blunt)
if seen_ignored and response_time > 6:
seen_txt = {
'normal': "IGNORED ๐จ",
'savage': "SEEN. IGNORED. ๐",
'emotional': "SEEN, NO REPLY ๐",
'delusional':"SEEN (composing!!) โ๏ธ",
}[mode]
seen_cls = "val-low"
elif seen_ignored:
seen_txt = "SEEN โ"; seen_cls = "val-mid"
else:
seen_txt = "NOT SEEN"; seen_cls = "val-mid"
st.markdown(f"""
<div class='diag-row'>
<div class='diag-card'>
<div class='diag-title'>Interest Level</div>
<div class='diag-val {int_cls}'>{int_lbl}</div>
</div>
<div class='diag-card'>
<div class='diag-title'>Effort Balance</div>
<div class='diag-val {eff_cls}'>{eff_lbl}</div>
</div>
<div class='diag-card'>
<div class='diag-title'>Ghost Risk</div>
<div class='diag-val {gr_cls}'>{gr_lbl}</div>
</div>
<div class='diag-card'>
<div class='diag-title'>Read Status</div>
<div class='diag-val {seen_cls}'>{seen_txt}</div>
</div>
</div>
""", unsafe_allow_html=True)
# โโ Signal Breakdown โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
st.markdown("#### ๐ฉ Signal Breakdown")
fc1, fc2 = st.columns(2)
red_flags, green_flags = [], []
if seen_ignored and response_time > 6: red_flags.append("They saw your message. They chose silence.")
if response_time > 48: red_flags.append(f"It's been {response_time}h. That's not busy, that's avoidance.")
elif response_time > 24: red_flags.append("Over 24 hours โบ the energy is cooling off.")
if message_tone == 'dry': red_flags.append("Dry tone doesn't open doors.")
if not asked_question: red_flags.append("No question = no reason to reply.")
if message_length < 30: red_flags.append("Short message โบ looks like low effort.")
if user_type == 'ghoster': red_flags.append("You described them as a known ghoster. That's data.")
if past_ghost: red_flags.append("They've ghosted you before. Pattern recognised.")
if emoji_count == 0 and message_tone == 'dry': red_flags.append("Zero warmth signals in this message.")
if asked_question: green_flags.append("Asked a question โบ gives them something to respond to.")
if message_length > 100: green_flags.append("Substantial message โบ shows you put in effort.")
if message_tone == 'enthusiastic': green_flags.append("Enthusiastic tone โบ energy is contagious.")
if response_time < 12: green_flags.append("Sent recently โบ they still might be composing a reply.")
if emoji_count > 0: green_flags.append("Used emojis โบ lightens the vibe.")
if user_type == 'interested': green_flags.append("You described them as interested โบ that matters.")
if not past_ghost: green_flags.append("No ghosting history โบ fresh start.")
with fc1:
st.markdown("**Red flags**")
for f in red_flags:
st.markdown(f"<div class='flag-item'>๐ฉ {f}</div>", unsafe_allow_html=True)
if not red_flags:
st.markdown("<div class='flag-item green-flag'>โ
No major red flags detected.</div>", unsafe_allow_html=True)
with fc2:
st.markdown("**Green flags**")
for g in green_flags:
st.markdown(f"<div class='flag-item green-flag'>โ
{g}</div>", unsafe_allow_html=True)
if not green_flags:
st.markdown("<div class='flag-item'>๐ฉ Hmm, not many positives here.</div>", unsafe_allow_html=True)
st.divider()
# โโ Final Verdict โบ mode-aware โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
# BUG FIX: verdict_text and verdict_color now come from VERDICT_TEXT[mode]
st.markdown("#### ๐ฏ Final Verdict")
st.markdown(
f"<div style='background:{verdict_color}22;border-left:4px solid {verdict_color};"
f"border-radius:0 12px 12px 0;padding:16px 20px;margin:10px 0;"
f"font-family:Syne,sans-serif;font-size:1.1em;color:{verdict_color};font-weight:600;'>"
f"{verdict_text}</div>",
unsafe_allow_html=True
)
if sub_q:
st.markdown(
f"<div style='color:#b2bec3;font-style:italic;font-size:0.9em;margin-top:8px;'>๐ญ {sub_q}</div>",
unsafe_allow_html=True
)
st.divider()
# โโ Shareable card โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
st.markdown("#### ๐ธ Share Your Result")
share_label = "They'll probably reply ๐ฅ" if reply_prob > 0.65 else ("It's a coin flip ๐ฌ" if reply_prob > 0.40 else "Ghosting incoming ๐")
ghost_label = "Ghost risk: HIGH ๐" if ghost_prob > 0.65 else ("Ghost risk: MEDIUM โ ๏ธ" if ghost_prob > 0.40 else "Ghost risk: LOW โ
")
st.markdown(f"""
<div class='share-card'>
<div style='font-size:1.75em;letter-spacing:2px;color:#636e72;text-transform:uppercase;margin-bottom:8px;'>AI Reality Check</div>
<div class='share-pct'>{reply_prob*100:.0f}%</div>
<div class='share-line' style='font-size:1.2em;font-weight:700;'>{share_label}</div>
<div class='share-line' style='color:#b2bec3;'>{ghost_label}</div>
<div class='share-line' style='font-style:italic;color:#dfe6e9;margin-top:10px;font-size:1.95em;'>"{main_q}"</div>
<div class='share-tag'>#GhostingPredictor โข ghostingpredictor.app</div>
</div>
""", unsafe_allow_html=True)
share_text = (f"๐ Ghosting Predictor says:\n"
f"Reply chance: {reply_prob*100:.0f}% โบ {share_label}\n"
f"{ghost_label}\n"
f'"{main_q}"\n'
f"#GhostingPredictor #AI #Dating")
# FIX: st.button causes a full page rerun which resets widget defaults โ
# changes ikey โ triggers fresh prediction with default inputs โ wrong %.
# Solution: always render the share text in a st.text_area (read-only style).
# st.text_area does NOT trigger a rerun when the user clicks inside it to
# select/copy โบ it only reruns on actual value change, which can't happen
# because the value is set programmatically and the user just selects text.
st.markdown("<div style='font-size:0.82em;color:#b2bec3;margin-bottom:4px;'>๐ Click inside, Ctrl+A, Ctrl+C to copy:</div>", unsafe_allow_html=True)
st.text_area(
label="share_text_area",
value=share_text,
height=120,
label_visibility="collapsed",
key=f"share_ta_{hash(share_text)}", # stable key tied to content, not mode
)
st.markdown("<div style='text-align:center;font-size:1.8em;color:#636e72;margin-top:4px;'>๐ธ Or screenshot the card above and post it</div>", unsafe_allow_html=True)
st.markdown("<div style='text-align:center;margin-top:12px;font-size:0.85em;color:#636e72;'>Drop your situation in the comments โบ I'll tell you what the model says ๐</div>", unsafe_allow_html=True)
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
# TAB 2 โบ WHAT-IF SIMULATOR
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
with tab2:
st.markdown("#### ๐ What-If Simulator")
st.markdown("<div style='color:#636e72;font-size:1.5em;'>See how your odds change if you tweak one thing. Experiment freely.</div>", unsafe_allow_html=True)
if "base_rp" not in st.session_state:
st.info("Go to the **Predict** tab first to set your base scenario.")
else:
base_rp, base_gp = apply_mode(
st.session_state["base_rp"],
st.session_state["base_gp"],
mode
)
ml, tone, aq, rt, si, ec, cl_val, ut, pg = st.session_state["ikey"]
rclr = "#00b894" if base_rp > 0.65 else ("#fdcb6e" if base_rp > 0.4 else "#ff7675")
gclr = "#ff7675" if base_gp > 0.65 else ("#fdcb6e" if base_gp > 0.4 else "#00b894")
st.markdown(f"""
<div style='background:rgba(255,255,255,0.05);border-radius:12px;padding:14px 18px;margin-bottom:16px;'>
<div style='font-size:0.8em;color:#b2bec3;text-transform:uppercase;letter-spacing:1px;'>Your current situation</div>
<div style='font-family:Syne,sans-serif;font-size:1.6em;font-weight:700;'>
Reply: <span style='color:{rclr}'>{base_rp*100:.0f}%</span>
Ghost: <span style='color:{gclr}'>{base_gp*100:.0f}%</span>
</div>
</div>
""", unsafe_allow_html=True)
scenarios = []
if not aq:
r = build_input(ml, tone, True, rt, si, ec, cl_val, user_type=ut)
nr, ng = predict_both(r)
scenarios.append(("โ If you added a question", nr, ng))
if tone != 'enthusiastic':
r = build_input(ml, 'enthusiastic', aq, rt, si, ec, cl_val, user_type=ut)
nr, ng = predict_both(r)
scenarios.append(("๐ If your tone was enthusiastic", nr, ng))
if ml < 150:
r = build_input(150, tone, aq, rt, si, ec, cl_val, user_type=ut)
nr, ng = predict_both(r)
scenarios.append(("๐ If your message was longer (150 chars)", nr, ng))
if rt > 12:
r = build_input(ml, tone, aq, 2, si, ec, cl_val, user_type=ut)
nr, ng = predict_both(r)
scenarios.append(("โฑ๏ธ If you followed up now (2h gap)", nr, ng))
if ec == 0:
r = build_input(ml, tone, aq, rt, si, 3, cl_val, user_type=ut)
nr, ng = predict_both(r)
scenarios.append(("๐ If you added 3 emojis", nr, ng))
r = build_input(max(ml, 120), 'enthusiastic', True, min(rt, 4), si, max(ec, 2), cl_val, user_type=ut)
nr, ng = predict_both(r)
scenarios.append(("๐ Best case (all fixes applied)", nr, ng))
st.markdown("**How your odds change:**")
for label, nr, ng in scenarios:
rdiff = (nr - base_rp) * 100
gdiff = (ng - base_gp) * 100
rc = "whatif-boost" if rdiff > 0 else "whatif-drop"
gc = "whatif-drop" if gdiff > 0 else "whatif-boost"
rs = "+" if rdiff >= 0 else ""; gs = "+" if gdiff >= 0 else ""
st.markdown(f"""
<div class='whatif-row'>
<span>{label}</span>
<span>
<span class='{rc}'>Reply: {rs}{rdiff:.0f}%</span>
|
<span class='{gc}'>Ghost: {gs}{gdiff:.0f}%</span>
</span>
</div>
""", unsafe_allow_html=True)
st.markdown("<div style='color:#636e72;font-size:1.5em;margin-top:12px;'>All scenarios keep the rest of your inputs unchanged.</div>", unsafe_allow_html=True)
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
# TAB 3 โบ MODEL METRICS
# โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
with tab3:
st.markdown("#### ๐ Model Performance")
st.markdown("<div style='color:#636e72;font-size:1.5em;'>Two calibrated Random Forest models โบ reply prediction and ghost prediction. Evaluated on a clean held-out test set.</div>", unsafe_allow_html=True)
for key, label in [('reply', '๐ฉ Reply Model'), ('ghosted', '๐ป Ghost Model')]:
m = all_metrics[key]
st.markdown(f"### {label}")
mc = st.columns(5)
mc[0].markdown(f"<div class='m-card'><div class='m-num'>{m['accuracy']*100:.1f}%</div><div class='m-lbl'>Accuracy</div></div>", unsafe_allow_html=True)
mc[1].markdown(f"<div class='m-card'><div class='m-num'>{m['precision']*100:.1f}%</div><div class='m-lbl'>Precision</div></div>", unsafe_allow_html=True)
mc[2].markdown(f"<div class='m-card'><div class='m-num'>{m['recall']*100:.1f}%</div><div class='m-lbl'>Recall</div></div>", unsafe_allow_html=True)
mc[3].markdown(f"<div class='m-card'><div class='m-num'>{m['f1_score']:.3f}</div><div class='m-lbl'>F1 Score</div></div>", unsafe_allow_html=True)
mc[4].markdown(f"<div class='m-card'><div class='m-num'>{m['roc_auc']:.3f}</div><div class='m-lbl'>ROC-AUC</div></div>", unsafe_allow_html=True)
with st.expander(f"Confusion matrix & report โบ {label}", expanded=False):
e1, e2 = st.columns(2)
with e1:
cm_arr = np.array(m['confusion_matrix'])
fig, ax = plt.subplots(figsize=(4, 3))
sns.heatmap(cm_arr, annot=True, fmt='d', cmap='Blues',
xticklabels=['No', 'Yes'], yticklabels=['No', 'Yes'],
ax=ax, cbar=False, annot_kws={'size': 13, 'weight': 'bold'})
ax.set_xlabel('Predicted', color='white'); ax.set_ylabel('Actual', color='white')
ax.set_title('Confusion Matrix', color='white', fontsize=11)
fig.patch.set_facecolor('#1a1a2e'); ax.set_facecolor('#1a1a2e')
ax.tick_params(colors='white')
plt.tight_layout(); st.pyplot(fig, use_container_width=True)
with e2:
try:
from sklearn.metrics import roc_curve
fpr, tpr, _ = roc_curve(np.array(m['y_test']), np.array(m['y_pred_prob']))
fig2, ax2 = plt.subplots(figsize=(4, 3))
ax2.plot(fpr, tpr, color='#ee5a24', lw=2, label=f"AUC={m['roc_auc']:.3f}")
ax2.plot([0,1],[0,1],'--',color='gray',lw=1)
ax2.fill_between(fpr, tpr, alpha=0.12, color='#ee5a24')
ax2.set_xlabel('FPR', color='white'); ax2.set_ylabel('TPR', color='white')
ax2.set_title('ROC Curve', color='white', fontsize=11)
ax2.legend(fontsize=9); ax2.tick_params(colors='white')
ax2.set_facecolor('#1a1a2e'); fig2.patch.set_facecolor('#1a1a2e')
plt.tight_layout(); st.pyplot(fig2, use_container_width=True)
except: pass
st.code(m['classification_report'], language=None)
st.divider()
st.markdown(f"""
<div style='background:rgba(255,255,255,0.04);border-radius:12px;padding:16px 20px;font-size:1.0em;color:#636e72;'>
<b>Architecture:</b> Random Forest (400 trees, depth=20, class_weight=balanced) + Sigmoid calibration (cv=3)<br>
<b>Split:</b> 70% train / 15% calibration val / 15% test โบ no data leakage between steps<br>
<b>Dataset:</b> 10,000 synthetic samples โบ ghosting_dataset5.csv<br>
<b>Features:</b> 20 numerical + 4 categorical (including user_type persona)
</div>
""", unsafe_allow_html=True)
# โโ Footer โโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโโ
st.markdown("""
<div style='text-align:center;color:#636e72;margin-top:40px;padding:20px;font-size:1.85em;'>
<div style='margin-bottom:4px;'>๐ญ <i>You already know the answer. The AI just confirmed it.</i></div>
<div>Powered by Random Forest ML ยท Not liable for heartbreak ๐</div>
</div>
""", unsafe_allow_html=True) |