File size: 21,554 Bytes
8001279 | 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 | """
Phase 1: Divorce Behavior Model (Gottman Four Horsemen)
=======================================================
Dataset: YΓΆntem et al. (2019) β 170 married/divorced Turkish couples
54 questions mapped to Gottman's relationship theory
Goal: Train a behavioral risk scoring model that maps communication/behavioral
patterns to divorce probability. This model becomes a FEATURE MODULE
for the main relationship predictor.
Reference: Gottman's "Four Horsemen of the Apocalypse":
1. Contempt β disrespect, mockery, sarcasm, eye-rolling
2. Criticism β attacking character rather than behavior
3. Defensiveness β counter-attacking, playing the victim
4. Stonewalling β withdrawing, shutting down, refusing to engage
Plus positive dimensions:
5. Love Maps β knowing partner's inner world, dreams, worries
6. Shared Goals β aligned life direction, values, future plans
"""
import os
import json
import warnings
import numpy as np
import pandas as pd
import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as plt
import seaborn as sns
from sklearn.model_selection import StratifiedKFold, cross_val_predict, LeaveOneOut
from sklearn.metrics import (
roc_auc_score, accuracy_score, f1_score, classification_report,
confusion_matrix, precision_score, recall_score, average_precision_score
)
from xgboost import XGBClassifier
from lightgbm import LGBMClassifier
from catboost import CatBoostClassifier
import joblib
import shap
warnings.filterwarnings('ignore')
np.random.seed(42)
OUTPUT_DIR = "/app/phase1_output"
os.makedirs(OUTPUT_DIR, exist_ok=True)
os.makedirs(f"{OUTPUT_DIR}/figures", exist_ok=True)
# ============================================================
# 1. LOAD DIVORCE PREDICTORS DATASET
# ============================================================
print("=" * 70)
print("PHASE 1: DIVORCE BEHAVIOR MODEL (GOTTMAN FOUR HORSEMEN)")
print("=" * 70)
# Download from Kaggle via direct URL
import urllib.request, zipfile, io
print("\nStep 1: Loading Divorce Predictors dataset...")
url = 'https://www.kaggle.com/api/v1/datasets/download/andrewmvd/divorce-prediction'
try:
req = urllib.request.Request(url, headers={'User-Agent': 'Mozilla/5.0'})
with urllib.request.urlopen(req, timeout=30) as r:
z = zipfile.ZipFile(io.BytesIO(r.read()))
df = pd.read_csv(z.open('divorce_data.csv'), sep=';')
print(f" Loaded from Kaggle: {df.shape}")
except Exception as e:
print(f" Kaggle download failed ({e}), trying alternative...")
# Fallback: the dataset is also commonly available at UCI-adjacent URLs
# Try loading from a known mirror
alt_url = 'https://raw.githubusercontent.com/datasets-br/state-codes/master/data/divorce.csv'
try:
df = pd.read_csv(alt_url, sep=';')
print(f" Loaded from mirror: {df.shape}")
except:
print(" ERROR: Cannot download dataset. Creating from known structure.")
# If all else fails, we have the structure from research
raise RuntimeError("Cannot download Divorce Predictors dataset")
print(f"\nDataset shape: {df.shape}")
print(f"Columns: {list(df.columns)}")
print(f"\nTarget distribution:")
print(df['Divorce'].value_counts())
print(f"Balance ratio: {df['Divorce'].value_counts()[0]}:{df['Divorce'].value_counts()[1]}")
# ============================================================
# 2. DATA AUDIT β UNDERSTAND GOTTMAN QUESTION MAPPING
# ============================================================
print("\n" + "=" * 70)
print("Step 2: Data Audit & Gottman Question Mapping")
print("=" * 70)
# The 54 questions from the Divorce Predictors Scale (DPS)
# Based on Gottman's relationship theory, mapped by YΓΆntem et al.
gottman_mapping = {
# SHARED GOALS & VALUES (Q1-Q10)
'Q1': 'shared_goals', # "If one of us apologizes when discussion deteriorates, the discussion ends"
'Q2': 'shared_goals', # "I know we can ignore our differences, even if things get hard"
'Q3': 'shared_goals', # "When we need it, we can take our discussions with my spouse from the beginning"
'Q4': 'shared_goals', # "When I discuss with my spouse, contacting him/her will eventually be enough"
'Q5': 'shared_goals', # "The time I spent with my spouse is special for us"
'Q6': 'shared_goals', # "We don't have time at home as partners"
'Q7': 'shared_goals', # "We are like two strangers who share the same environment at home"
'Q8': 'shared_goals', # "I enjoy our holidays with my spouse"
'Q9': 'shared_goals', # "I enjoy traveling with my spouse"
'Q10': 'shared_goals', # "Most of our goals are common with my spouse"
# LOVE MAPS β KNOWING PARTNER (Q11-Q20)
'Q11': 'love_maps', # "I think my spouse and I have similar ideas about how to raise our children"
'Q12': 'love_maps', # "I think my spouse and I have similar values regarding personal freedom"
'Q13': 'love_maps', # "I think my spouse and I have similar entertainment"
'Q14': 'love_maps', # "I think my spouse and I have similar goals for people around us"
'Q15': 'love_maps', # "My spouse and I have similar dreams"
'Q16': 'love_maps', # "We are compatible with my spouse about what love should be"
'Q17': 'love_maps', # "My spouse and I have similar ideas about how marriage should be"
'Q18': 'love_maps', # "My spouse and I have similar ideas about how roles should be in marriage"
'Q19': 'love_maps', # "My spouse and I have similar views about how children should be educated"
'Q20': 'love_maps', # "I think my spouse and I are adequate for each other"
# LOVE MAPS EXTENDED β KNOWING INNER WORLD (Q21-Q30)
'Q21': 'love_maps_deep', # "I know my spouse's favorite food"
'Q22': 'love_maps_deep', # "I can tell you what kind of stress my spouse is facing in life"
'Q23': 'love_maps_deep', # "I know my spouse's inner world"
'Q24': 'love_maps_deep', # "I know my spouse's basic anxieties"
'Q25': 'love_maps_deep', # "I know what my spouse's current sources of stress are"
'Q26': 'love_maps_deep', # "I know my spouse's hopes and wishes"
'Q27': 'love_maps_deep', # "I know my spouse very well"
'Q28': 'love_maps_deep', # "I know my spouse's friends and their social relationships"
'Q29': 'love_maps_deep', # "I feel aggressive when I argue with my spouse"
'Q30': 'love_maps_deep', # "When discussing with my spouse, I usually use expressions like 'you always' or 'you never'"
# CRITICISM & CONTEMPT (Q31-Q40) β HORSEMEN
'Q31': 'criticism', # "I can use negative statements about my spouse's personality during discussions"
'Q32': 'criticism', # "I can use offensive expressions during our discussions"
'Q33': 'contempt', # "I can insult my spouse during discussions"
'Q34': 'contempt', # "I can be humiliating when we discuss"
'Q35': 'contempt', # "My discussion with my spouse is not calm"
'Q36': 'contempt', # "I hate my spouse's way of bringing up a topic"
'Q37': 'criticism', # "Our discussions often occur suddenly"
'Q38': 'criticism', # "We're just starting a discussion before I know what's happening"
'Q39': 'contempt', # "When I talk to my spouse about something, my calm suddenly breaks"
'Q40': 'contempt', # "When I argue with my spouse, it only makes me angrier"
# DEFENSIVENESS & STONEWALLING (Q41-Q50) β HORSEMEN
'Q41': 'defensiveness', # "When I argue with my spouse, I only speak when spoken to"
'Q42': 'stonewalling', # "I mostly stay silent to calm the environment down"
'Q43': 'stonewalling', # "Sometimes I think it's good for me to leave home for a while"
'Q44': 'stonewalling', # "I'd rather stay silent than discuss with my spouse"
'Q45': 'defensiveness', # "Even if I'm right in the discussion, I stay silent to hurt my spouse"
'Q46': 'defensiveness', # "When I discuss with my spouse, I stay silent because I'm afraid of not being able to control my anger"
'Q47': 'stonewalling', # "I feel right in our discussions"
'Q48': 'defensiveness', # "I have nothing to do with what I've been accused of"
'Q49': 'defensiveness', # "I'm not actually the one who is guilty about what I'm accused of"
'Q50': 'defensiveness', # "I'm not the one to blame for the negativity in our discussion"
# ESCALATION & CONTEMPT DEEP (Q51-Q54) β HORSEMEN
'Q51': 'contempt_deep', # "I think my spouse is mean when we have a discussion"
'Q52': 'contempt_deep', # "I think my spouse is actually vindictive"
'Q53': 'contempt_deep', # "When my spouse says something that bothers me, I think it's out of ill-intention"
'Q54': 'contempt_deep', # "I think my spouse's attitudes and behaviors are pathological"
}
# Verify all columns present
feature_cols = [f'Q{i}' for i in range(1, 55)]
missing_cols = [c for c in feature_cols if c not in df.columns]
if missing_cols:
print(f"WARNING: Missing columns: {missing_cols}")
else:
print(f"All 54 Gottman questions present β")
print(f"\nValue range per question: {df[feature_cols].min().min()} to {df[feature_cols].max().max()}")
print(f"Scale: 0 (Never) to 4 (Always)")
# Basic statistics
print(f"\nPer-question statistics:")
desc = df[feature_cols].describe().T
print(desc[['mean', 'std', 'min', 'max']].to_string())
# ============================================================
# 3. ENGINEER GOTTMAN COMPOSITE SCORES
# ============================================================
print("\n" + "=" * 70)
print("Step 3: Engineering Gottman Composite Scores")
print("=" * 70)
# Create composite scores by dimension
dimensions = {}
for col, dim in gottman_mapping.items():
if dim not in dimensions:
dimensions[dim] = []
dimensions[dim].append(col)
print("\nGottman Dimension Mapping:")
for dim, cols in dimensions.items():
print(f" {dim}: {len(cols)} questions β {cols}")
# Compute composite scores
for dim, cols in dimensions.items():
df[f'gottman_{dim}'] = df[cols].mean(axis=1)
df[f'gottman_{dim}_std'] = df[cols].std(axis=1)
df[f'gottman_{dim}_max'] = df[cols].max(axis=1)
df[f'gottman_{dim}_min'] = df[cols].min(axis=1)
# FOUR HORSEMEN combined score
horsemen_dims = ['criticism', 'contempt', 'defensiveness', 'stonewalling', 'contempt_deep']
horsemen_cols = [c for c, d in gottman_mapping.items() if d in horsemen_dims]
df['gottman_four_horsemen'] = df[horsemen_cols].mean(axis=1)
df['gottman_four_horsemen_max'] = df[horsemen_cols].max(axis=1)
df['gottman_four_horsemen_intensity'] = df[horsemen_cols].std(axis=1)
# POSITIVE DIMENSIONS combined score
positive_dims = ['shared_goals', 'love_maps', 'love_maps_deep']
positive_cols = [c for c, d in gottman_mapping.items() if d in positive_dims]
df['gottman_positive'] = df[positive_cols].mean(axis=1)
df['gottman_positive_consistency'] = df[positive_cols].std(axis=1)
# RATIO: Positive to Negative (Gottman ratio β famous 5:1 rule)
df['gottman_ratio'] = (df['gottman_positive'] + 0.1) / (df['gottman_four_horsemen'] + 0.1)
# INTERACTION FEATURES between dimensions
df['contempt_x_stonewalling'] = df['gottman_contempt'] * df['gottman_stonewalling']
df['criticism_x_defensiveness'] = df['gottman_criticism'] * df['gottman_defensiveness']
df['love_maps_x_shared_goals'] = df['gottman_love_maps'] * df['gottman_shared_goals']
df['horsemen_minus_positive'] = df['gottman_four_horsemen'] - df['gottman_positive']
# ESCALATION PATTERN: Are the "deep" contempt items worse than surface?
df['contempt_escalation'] = df['gottman_contempt_deep'] - df['gottman_contempt']
# OVERALL RISK SCORE
df['overall_risk'] = (
df['gottman_four_horsemen'] * 0.6 +
(4 - df['gottman_positive']) * 0.4 # invert positive β risk
)
gottman_features = [c for c in df.columns if c.startswith('gottman_') or c in [
'contempt_x_stonewalling', 'criticism_x_defensiveness',
'love_maps_x_shared_goals', 'horsemen_minus_positive',
'contempt_escalation', 'overall_risk'
]]
print(f"\nEngineered Gottman features ({len(gottman_features)}):")
for f in gottman_features:
print(f" {f}: mean={df[f].mean():.3f}, std={df[f].std():.3f}")
# ============================================================
# 4. TRAIN DIVORCE PREDICTOR
# ============================================================
print("\n" + "=" * 70)
print("Step 4: Training Divorce Predictor (5-fold + LOOCV)")
print("=" * 70)
# Use ALL features: raw questions + engineered composites
all_features = feature_cols + gottman_features
X = df[all_features].values
y = df['Divorce'].values
print(f"Feature set: {len(all_features)} features")
print(f"Samples: {len(y)} ({(y==1).sum()} divorced, {(y==0).sum()} married)")
# --- 5-Fold Cross-Validation ---
skf = StratifiedKFold(n_splits=5, shuffle=True, random_state=42)
models = {
'XGBoost': XGBClassifier(
n_estimators=500, max_depth=4, learning_rate=0.05,
colsample_bytree=0.8, subsample=0.8, min_child_weight=2,
gamma=0.2, reg_alpha=0.5, reg_lambda=2.0,
use_label_encoder=False, eval_metric='auc',
tree_method='hist', random_state=42, n_jobs=-1
),
'LightGBM': LGBMClassifier(
n_estimators=500, max_depth=4, learning_rate=0.05,
colsample_bytree=0.8, subsample=0.8, min_child_samples=5,
reg_alpha=0.5, reg_lambda=2.0,
random_state=42, n_jobs=-1, verbose=-1
),
'CatBoost': CatBoostClassifier(
iterations=500, depth=4, learning_rate=0.05,
l2_leaf_reg=5.0, random_seed=42, verbose=0
)
}
oof_predictions = {}
feature_importances = {}
for name, model in models.items():
print(f"\n--- {name} ---")
oof_probs = np.zeros(len(y))
for fold, (train_idx, val_idx) in enumerate(skf.split(X, y)):
X_train, X_val = X[train_idx], X[val_idx]
y_train, y_val = y[train_idx], y[val_idx]
if name == 'CatBoost':
model.fit(X_train, y_train, eval_set=(X_val, y_val))
else:
model.fit(X_train, y_train, eval_set=[(X_val, y_val)])
oof_probs[val_idx] = model.predict_proba(X_val)[:, 1]
oof_predictions[name] = oof_probs
auc = roc_auc_score(y, oof_probs)
y_pred = (oof_probs >= 0.5).astype(int)
acc = accuracy_score(y, y_pred)
f1 = f1_score(y, y_pred)
prec = precision_score(y, y_pred)
rec = recall_score(y, y_pred)
print(f" 5-Fold AUC: {auc:.4f}")
print(f" Accuracy: {acc:.4f}")
print(f" F1: {f1:.4f}")
print(f" Precision: {prec:.4f}")
print(f" Recall: {rec:.4f}")
# Ensemble
oof_ensemble = 0.4 * oof_predictions['XGBoost'] + 0.35 * oof_predictions['LightGBM'] + 0.25 * oof_predictions['CatBoost']
oof_predictions['Ensemble'] = oof_ensemble
ens_auc = roc_auc_score(y, oof_ensemble)
y_pred_ens = (oof_ensemble >= 0.5).astype(int)
ens_acc = accuracy_score(y, y_pred_ens)
ens_f1 = f1_score(y, y_pred_ens)
print(f"\n--- Ensemble ---")
print(f" 5-Fold AUC: {ens_auc:.4f}")
print(f" Accuracy: {ens_acc:.4f}")
print(f" F1: {ens_f1:.4f}")
# --- Detailed Classification Report for best ---
best_name = max(oof_predictions.keys(), key=lambda k: roc_auc_score(y, oof_predictions[k]))
best_probs = oof_predictions[best_name]
y_pred_best = (best_probs >= 0.5).astype(int)
print(f"\nBest Model: {best_name}")
print("\nClassification Report:")
print(classification_report(y, y_pred_best, target_names=['Married', 'Divorced']))
# ============================================================
# 5. TRAIN FINAL MODEL & EXTRACT RISK SCORER
# ============================================================
print("\n" + "=" * 70)
print("Step 5: Training Final Divorce Risk Scorer on Full Data")
print("=" * 70)
# Train final models on all data
final_xgb = XGBClassifier(
n_estimators=800, max_depth=4, learning_rate=0.05,
colsample_bytree=0.8, subsample=0.8, min_child_weight=2,
gamma=0.2, reg_alpha=0.5, reg_lambda=2.0,
use_label_encoder=False, eval_metric='auc',
tree_method='hist', random_state=42, n_jobs=-1
)
final_xgb.fit(X, y)
final_lgb = LGBMClassifier(
n_estimators=800, max_depth=4, learning_rate=0.05,
colsample_bytree=0.8, subsample=0.8, min_child_samples=5,
reg_alpha=0.5, reg_lambda=2.0,
random_state=42, n_jobs=-1, verbose=-1
)
final_lgb.fit(X, y)
final_cat = CatBoostClassifier(
iterations=800, depth=4, learning_rate=0.05,
l2_leaf_reg=5.0, random_seed=42, verbose=0
)
final_cat.fit(X, y)
# Save models
joblib.dump(final_xgb, f"{OUTPUT_DIR}/divorce_xgb.joblib")
joblib.dump(final_lgb, f"{OUTPUT_DIR}/divorce_lgb.joblib")
final_cat.save_model(f"{OUTPUT_DIR}/divorce_cat.cbm")
joblib.dump(all_features, f"{OUTPUT_DIR}/divorce_features.joblib")
joblib.dump(gottman_mapping, f"{OUTPUT_DIR}/gottman_mapping.joblib")
# ============================================================
# 6. SHAP ANALYSIS β WHAT DRIVES DIVORCE?
# ============================================================
print("\n" + "=" * 70)
print("Step 6: SHAP Analysis β What Drives Divorce?")
print("=" * 70)
explainer = shap.TreeExplainer(final_xgb)
X_df = pd.DataFrame(X, columns=all_features)
shap_values = explainer.shap_values(X_df)
# Top features by mean absolute SHAP
mean_shap = np.abs(shap_values).mean(axis=0)
shap_importance = pd.DataFrame({
'feature': all_features,
'mean_abs_shap': mean_shap
}).sort_values('mean_abs_shap', ascending=False)
print("\nTop 25 Most Important Divorce Predictors (SHAP):")
for i, row in shap_importance.head(25).iterrows():
dim = gottman_mapping.get(row['feature'], 'engineered')
print(f" {row['feature']:40s} SHAP={row['mean_abs_shap']:.4f} [{dim}]")
shap_importance.to_csv(f"{OUTPUT_DIR}/divorce_shap_importance.csv", index=False)
# SHAP Summary Plot
fig, ax = plt.subplots(figsize=(12, 12))
shap.summary_plot(shap_values, X_df, max_display=30, show=False)
plt.tight_layout()
plt.savefig(f"{OUTPUT_DIR}/figures/divorce_shap_summary.png", dpi=150, bbox_inches='tight')
plt.close()
# Feature importance by Gottman dimension
print("\n\nDivorce Risk by Gottman Dimension (mean SHAP):")
dim_shap = {}
for feat, shap_val in zip(all_features, mean_shap):
dim = gottman_mapping.get(feat, 'engineered')
if dim not in dim_shap:
dim_shap[dim] = []
dim_shap[dim].append(shap_val)
for dim in sorted(dim_shap.keys(), key=lambda d: np.mean(dim_shap[d]), reverse=True):
vals = dim_shap[dim]
print(f" {dim:25s} mean_SHAP={np.mean(vals):.4f} (n={len(vals)} features)")
# ============================================================
# 7. CREATE GOTTMAN RISK SCORING FUNCTION
# ============================================================
print("\n" + "=" * 70)
print("Step 7: Creating Gottman Risk Scoring Function")
print("=" * 70)
# Extract the composite Gottman score weights from the model
# The idea: we create a simplified risk score using the top Gottman dimensions
# that can be applied to ANY couple's behavioral data
# Save the composite scoring recipe
gottman_recipe = {
'dimensions': {dim: cols for dim, cols in dimensions.items()},
'horsemen_questions': horsemen_cols,
'positive_questions': positive_cols,
'composite_features': gottman_features,
'all_features': all_features,
'model_performance': {
'xgb_auc': float(roc_auc_score(y, oof_predictions['XGBoost'])),
'lgb_auc': float(roc_auc_score(y, oof_predictions['LightGBM'])),
'cat_auc': float(roc_auc_score(y, oof_predictions['CatBoost'])),
'ensemble_auc': float(roc_auc_score(y, oof_predictions['Ensemble'])),
'ensemble_acc': float(ens_acc),
'ensemble_f1': float(ens_f1),
},
'top_predictors': shap_importance.head(20)[['feature', 'mean_abs_shap']].to_dict('records'),
'dimension_importance': {dim: float(np.mean(vals)) for dim, vals in dim_shap.items()}
}
with open(f"{OUTPUT_DIR}/gottman_recipe.json", "w") as f:
json.dump(gottman_recipe, f, indent=2)
# Confusion matrix
fig, ax = plt.subplots(figsize=(7, 6))
cm = confusion_matrix(y, y_pred_best)
sns.heatmap(cm, annot=True, fmt='d', cmap='Reds',
xticklabels=['Married', 'Divorced'],
yticklabels=['Married', 'Divorced'], ax=ax)
ax.set_xlabel('Predicted', fontsize=12)
ax.set_ylabel('Actual', fontsize=12)
ax.set_title(f'Divorce Predictor β {best_name} Confusion Matrix', fontsize=14)
plt.tight_layout()
plt.savefig(f"{OUTPUT_DIR}/figures/divorce_confusion_matrix.png", dpi=150, bbox_inches='tight')
plt.close()
# Gottman dimension importance bar chart
fig, ax = plt.subplots(figsize=(10, 6))
dim_sorted = sorted(dim_shap.items(), key=lambda x: np.mean(x[1]), reverse=True)
dims_names = [d[0] for d in dim_sorted]
dims_vals = [np.mean(d[1]) for d in dim_sorted]
colors = ['#d32f2f' if d in horsemen_dims else '#1976d2' for d in dims_names]
ax.barh(range(len(dims_names)), dims_vals, color=colors)
ax.set_yticks(range(len(dims_names)))
ax.set_yticklabels(dims_names, fontsize=10)
ax.set_xlabel('Mean |SHAP| Value', fontsize=12)
ax.set_title('Divorce Risk by Gottman Dimension\n(Red=Horsemen, Blue=Positive)', fontsize=14)
ax.invert_yaxis()
plt.tight_layout()
plt.savefig(f"{OUTPUT_DIR}/figures/gottman_dimension_importance.png", dpi=150, bbox_inches='tight')
plt.close()
print("\nPhase 1 Complete!")
print(f" Output directory: {OUTPUT_DIR}")
print(f" Models: divorce_xgb.joblib, divorce_lgb.joblib, divorce_cat.cbm")
print(f" Recipe: gottman_recipe.json")
print(f" Figures: {OUTPUT_DIR}/figures/")
|