-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmodelling_lightgbm.py
More file actions
656 lines (526 loc) · 23.4 KB
/
modelling_lightgbm.py
File metadata and controls
656 lines (526 loc) · 23.4 KB
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
"""
LightGBM Model Training for Stock Price Prediction
This script trains a LightGBM classifier to predict whether SPY will go up or down
over the next 3 days based on 115 engineered features from technical indicators,
volume patterns, volatility measures, and cross-asset relationships.
Two-Phase Training Workflow:
-----------------------------
PHASE 1: Train with all features (115)
1. Load features from feature_engineering.py output
2. Split data into train (2015-2023) and test (2024-2026) sets
3. Handle NaN values from rolling window calculations
4. Train LightGBM model with default hyperparameters
5. Evaluate performance (ROC AUC, accuracy, confusion matrix)
6. Calculate permutation importance on test set
7. Select top 40 features based on actual predictive value
PHASE 2: Retrain with selected features (40)
8. Filter to top 40 features from permutation importance
9. Retrain LightGBM model with same hyperparameters
10. Evaluate and compare performance vs full model
11. Save both models, feature lists, and visualizations
Hyperparameter Strategy:
-----------------------
Model uses LightGBM default parameters for initial baseline:
- boosting_type='gbdt' (gradient boosting decision tree)
- num_leaves=31 (default tree complexity)
- learning_rate=0.1 (default)
- n_estimators=100 (with early stopping)
- metric='auc' (optimize for ranking, use early stopping)
Output Files (saved to output/models/lightgbm/):
----------------------------------------------
- lightgbm_model.json - Full model (115 features)
- lightgbm_model_selected_features.json - Selected model (40 features)
- permutation_importance.csv - Feature importance scores
- selected_features.txt - List of top 40 features
- feature_importance_top30.png - LightGBM built-in importance plot
- permutation_importance_top40.png - Permutation importance plot
- training_curves.png - AUC curves during training
Usage:
------
python modelling_lightgbm.py
Expected Performance:
--------------------
Due to market regime differences between train (2015-2023) and test (2024-2026),
the model performance will be evaluated against the baseline. LightGBM's leaf-wise
growth strategy may provide different feature interactions compared to XGBoost.
"""
import pandas as pd
import numpy as np
import lightgbm as lgb
from sklearn.metrics import (
accuracy_score,
precision_score,
recall_score,
f1_score,
roc_auc_score,
confusion_matrix,
classification_report
)
import matplotlib.pyplot as plt
import seaborn as sns
import os
from datetime import datetime
import json
# Configuration
INPUT_FILE = 'output/spy_features_full.csv'
OUTPUT_DIR = 'output/models/lightgbm'
TRAIN_END_DATE = '2024-12-31'
TEST_START_DATE = '2025-01-01'
RANDOM_STATE = 42
# LightGBM hyperparameters - Using defaults for baseline
LIGHTGBM_PARAMS = {
# Core objective and evaluation
'objective': 'binary', # Binary classification (up/down prediction)
'metric': 'auc', # Use AUC for evaluation and early stopping
'boosting_type': 'gbdt', # Gradient Boosting Decision Tree
# Tree structure parameters (LightGBM defaults)
'num_leaves': 31, # Maximum number of leaves in one tree
'max_depth': -1, # No limit on depth (controlled by num_leaves)
# Learning rate and iterations
'learning_rate': 0.1, # Default learning rate
'n_estimators': 100, # Maximum number of trees (early stopping will determine actual)
# Training control
'random_state': RANDOM_STATE, # Reproducibility
'n_jobs': -1, # Use all CPU cores
'verbose': -1, # Suppress warnings during training
}
# Early stopping configuration
EARLY_STOPPING_ROUNDS = 50
def load_and_prepare_data(filepath):
"""
Load features and target from CSV file.
Returns:
X (pd.DataFrame): Features
y (pd.Series): Target variable
dates (pd.DatetimeIndex): Date index
"""
print("Loading data...")
df = pd.read_csv(filepath)
df['Date'] = pd.to_datetime(df['Date'])
df.set_index('Date', inplace=True)
# Normalize index to date-only format
if df.index.tz is not None:
df.index = df.index.tz_localize(None)
df.index = df.index.normalize()
print(f"Loaded {len(df)} rows")
print(f"Date range: {df.index[0]} to {df.index[-1]}")
# Separate features and target
y = df['target']
X = df.drop(columns=['target'])
print(f"Features: {X.shape[1]}")
print(f"Target distribution: {y.value_counts().to_dict()}")
return X, y, df.index
def split_train_test(X, y, dates, train_end_date, test_start_date):
"""
Split data into train and test sets based on date.
Time-series split:
- Train: 2015-01-01 to 2023-12-31
- Test: 2024-01-01 to present
"""
print(f"\nSplitting data...")
print(f"Train: up to {train_end_date}")
print(f"Test: from {test_start_date}")
train_mask = dates <= train_end_date
test_mask = dates >= test_start_date
X_train = X[train_mask]
y_train = y[train_mask]
X_test = X[test_mask]
y_test = y[test_mask]
print(f"\nTrain set: {len(X_train)} samples ({dates[train_mask][0]} to {dates[train_mask][-1]})")
print(f"Test set: {len(X_test)} samples ({dates[test_mask][0]} to {dates[test_mask][-1]})")
print(f"Train target distribution: {y_train.value_counts().to_dict()}")
print(f"Test target distribution: {y_test.value_counts().to_dict()}")
return X_train, X_test, y_train, y_test
def handle_missing_values(X_train, X_test, y_train, y_test):
"""
Handle NaN values in features intelligently.
Strategy: Instead of dropping rows with NaN, find the first date where ALL features
are populated (after the longest rolling window - 200 days). This ensures we only
train on complete, valid data rather than mixing valid and invalid rows.
This is better than forward-fill or dropping because:
- Features like 200-day MA need 200 days of history to be meaningful
- Hurst exponent (50-day) needs 50 days of data
- Training on incomplete features would introduce noise
Returns:
Cleaned datasets starting from first fully-populated date
"""
print("\nHandling missing values intelligently...")
print(f"Original train shape: {X_train.shape}")
print(f"Original test shape: {X_test.shape}")
print(f"Train NaN count: {X_train.isna().sum().sum()}")
print(f"Test NaN count: {X_test.isna().sum().sum()}")
# Find first date where ALL features are populated
# This will be after the longest rolling window (200 days for MA)
train_valid_mask = ~X_train.isna().any(axis=1)
test_valid_mask = ~X_test.isna().any(axis=1)
# Get first valid index for train set
if train_valid_mask.any():
first_valid_train_idx = train_valid_mask.idxmax()
print(f"\nFirst fully-populated date in train: {first_valid_train_idx}")
# Filter train data from first valid date onwards
X_train_clean = X_train.loc[first_valid_train_idx:]
y_train_clean = y_train.loc[first_valid_train_idx:]
# Verify no NaN in filtered data
X_train_clean = X_train_clean.dropna()
y_train_clean = y_train_clean.loc[X_train_clean.index]
else:
raise ValueError("No fully-populated rows found in training data!")
# For test set, also drop any rows with NaN
# (shouldn't have many since test is recent data)
X_test_clean = X_test.dropna()
y_test_clean = y_test.loc[X_test_clean.index]
print(f"\nAfter filtering to fully-populated dates:")
print(f" Train: {len(X_train_clean)} samples (removed {len(X_train) - len(X_train_clean)} rows)")
print(f" Test: {len(X_test_clean)} samples (removed {len(X_test) - len(X_test_clean)} rows)")
print(f" Train date range: {X_train_clean.index[0]} to {X_train_clean.index[-1]}")
print(f" Test date range: {X_test_clean.index[0]} to {X_test_clean.index[-1]}")
# Verify no NaN remaining
assert X_train_clean.isna().sum().sum() == 0, "Train data still has NaN!"
assert X_test_clean.isna().sum().sum() == 0, "Test data still has NaN!"
print(" ✓ Verified: No NaN values remaining")
return X_train_clean, X_test_clean, y_train_clean, y_test_clean
def train_lightgbm(X_train, y_train, X_test, y_test, params, early_stopping_rounds=50):
"""
Train LightGBM model with early stopping.
"""
print("\n" + "="*60)
print("TRAINING LIGHTGBM MODEL")
print("="*60)
# Create LightGBM datasets
train_data = lgb.Dataset(X_train, label=y_train)
test_data = lgb.Dataset(X_test, label=y_test, reference=train_data)
# Train model with evaluation
print(f"\nTraining with up to {params['n_estimators']} estimators...")
print(f"Early stopping: {early_stopping_rounds} rounds")
evals_result = {}
model = lgb.train(
params,
train_data,
num_boost_round=params['n_estimators'],
valid_sets=[train_data, test_data],
valid_names=['train', 'test'],
callbacks=[
lgb.early_stopping(stopping_rounds=early_stopping_rounds, verbose=True),
lgb.log_evaluation(period=50),
lgb.record_evaluation(evals_result)
]
)
print(f"\nBest iteration: {model.best_iteration}")
print(f"Best score: {model.best_score['test']['auc']:.4f}")
return model, evals_result
def evaluate_model(model, X_train, y_train, X_test, y_test):
"""
Evaluate model performance on train and test sets.
"""
print("\n" + "="*60)
print("MODEL EVALUATION")
print("="*60)
# Make predictions
y_train_pred_proba = model.predict(X_train, num_iteration=model.best_iteration)
y_test_pred_proba = model.predict(X_test, num_iteration=model.best_iteration)
y_train_pred = (y_train_pred_proba > 0.5).astype(int)
y_test_pred = (y_test_pred_proba > 0.5).astype(int)
# Calculate metrics
metrics = {
'train': {
'accuracy': accuracy_score(y_train, y_train_pred),
'precision': precision_score(y_train, y_train_pred),
'recall': recall_score(y_train, y_train_pred),
'f1': f1_score(y_train, y_train_pred),
'roc_auc': roc_auc_score(y_train, y_train_pred_proba)
},
'test': {
'accuracy': accuracy_score(y_test, y_test_pred),
'precision': precision_score(y_test, y_test_pred),
'recall': recall_score(y_test, y_test_pred),
'f1': f1_score(y_test, y_test_pred),
'roc_auc': roc_auc_score(y_test, y_test_pred_proba)
}
}
# Print results
print("\nTRAIN SET METRICS:")
for metric, value in metrics['train'].items():
print(f" {metric.upper()}: {value:.4f}")
print("\nTEST SET METRICS:")
for metric, value in metrics['test'].items():
print(f" {metric.upper()}: {value:.4f}")
# Confusion matrices
print("\nTRAIN CONFUSION MATRIX:")
print(confusion_matrix(y_train, y_train_pred))
print("\nTEST CONFUSION MATRIX:")
print(confusion_matrix(y_test, y_test_pred))
# Classification reports
print("\nTEST CLASSIFICATION REPORT:")
print(classification_report(y_test, y_test_pred, target_names=['Down', 'Up']))
return metrics, y_test_pred, y_test_pred_proba
def plot_feature_importance(model, feature_names, top_n=30, output_dir='output/models'):
"""
Plot and save feature importance.
"""
print(f"\nPlotting top {top_n} features by importance...")
# Get feature importance
importance_dict = dict(zip(feature_names, model.feature_importance(importance_type='gain')))
# Convert to DataFrame
importance_df = pd.DataFrame([
{'feature': f, 'importance': importance_dict.get(f, 0)}
for f in feature_names
]).sort_values('importance', ascending=False)
# Save full importance
importance_path = os.path.join(output_dir, 'feature_importance.csv')
importance_df.to_csv(importance_path, index=False)
print(f"Saved feature importance to {importance_path}")
# Plot top N
top_features = importance_df.head(top_n)
plt.figure(figsize=(12, 10))
plt.barh(range(len(top_features)), top_features['importance'])
plt.yticks(range(len(top_features)), top_features['feature'])
plt.xlabel('Importance (Gain)')
plt.title(f'Top {top_n} Features by Importance (LightGBM)')
plt.gca().invert_yaxis()
plt.tight_layout()
plot_path = os.path.join(output_dir, 'feature_importance_top30.png')
plt.savefig(plot_path, dpi=150, bbox_inches='tight')
print(f"Saved plot to {plot_path}")
plt.close()
return importance_df
def calculate_permutation_importance(model, X_test, y_test, feature_names, top_n=40, output_dir='output/models'):
"""
Calculate permutation importance on test set to identify truly predictive features.
Permutation importance measures how much the model's performance drops when a feature
is randomly shuffled. This is more reliable than built-in feature importance because
it's based on actual predictive value on unseen data.
Parameters:
-----------
model : lgb.Booster
Trained LightGBM model
X_test : pd.DataFrame
Test features
y_test : pd.Series
Test target
feature_names : list
List of feature names
top_n : int
Number of top features to select
output_dir : str
Directory to save results
Returns:
--------
selected_features : list
List of top N feature names
perm_importance_df : pd.DataFrame
DataFrame with permutation importance scores
"""
print(f"\n{'='*60}")
print("CALCULATING PERMUTATION IMPORTANCE")
print(f"{'='*60}")
print(f"This measures how much each feature contributes to test set accuracy...")
print(f"(This may take a few minutes...)")
# Get baseline accuracy
y_pred_proba = model.predict(X_test, num_iteration=model.best_iteration)
y_pred = (y_pred_proba > 0.5).astype(int)
baseline_accuracy = accuracy_score(y_test, y_pred)
print(f"\nBaseline test accuracy: {baseline_accuracy:.4f}")
print(f"Calculating importance for {len(feature_names)} features...")
# Calculate permutation importance manually
importances = []
n_repeats = 10
for i, feature in enumerate(feature_names):
if (i + 1) % 20 == 0:
print(f" Progress: {i+1}/{len(feature_names)} features...")
feature_importances = []
for repeat in range(n_repeats):
# Create a copy and shuffle the feature
X_test_permuted = X_test.copy()
X_test_permuted[feature] = np.random.permutation(X_test_permuted[feature].values)
# Make predictions with permuted feature
y_pred_proba_permuted = model.predict(X_test_permuted, num_iteration=model.best_iteration)
y_pred_permuted = (y_pred_proba_permuted > 0.5).astype(int)
permuted_accuracy = accuracy_score(y_test, y_pred_permuted)
# Importance = drop in accuracy
importance = baseline_accuracy - permuted_accuracy
feature_importances.append(importance)
# Store mean and std
importances.append({
'feature': feature,
'importance_mean': np.mean(feature_importances),
'importance_std': np.std(feature_importances)
})
# Create DataFrame with results
perm_importance_df = pd.DataFrame(importances).sort_values('importance_mean', ascending=False)
# Save full results
perm_path = os.path.join(output_dir, 'permutation_importance.csv')
perm_importance_df.to_csv(perm_path, index=False)
print(f"\nSaved permutation importance to {perm_path}")
# Select top N features
selected_features = perm_importance_df.head(top_n)['feature'].tolist()
print(f"\nTop {top_n} features selected based on permutation importance:")
for i, row in perm_importance_df.head(top_n).iterrows():
print(f" {i+1}. {row['feature']}: {row['importance_mean']:.6f} (+/- {row['importance_std']:.6f})")
# Plot permutation importance
top_features = perm_importance_df.head(top_n)
plt.figure(figsize=(12, 10))
plt.barh(range(len(top_features)), top_features['importance_mean'])
plt.yticks(range(len(top_features)), top_features['feature'])
plt.xlabel('Permutation Importance (Accuracy Drop)')
plt.title(f'Top {top_n} Features by Permutation Importance (LightGBM)')
plt.gca().invert_yaxis()
plt.tight_layout()
plot_path = os.path.join(output_dir, f'permutation_importance_top{top_n}.png')
plt.savefig(plot_path, dpi=150, bbox_inches='tight')
print(f"Saved plot to {plot_path}")
plt.close()
return selected_features, perm_importance_df
def plot_training_curves(evals_result, output_dir='output/models'):
"""
Plot training and validation AUC curves.
"""
print("\nPlotting training curves...")
train_metric = evals_result['train']['auc']
test_metric = evals_result['test']['auc']
plt.figure(figsize=(10, 6))
plt.plot(train_metric, label='Train AUC')
plt.plot(test_metric, label='Test AUC')
plt.xlabel('Iteration')
plt.ylabel('AUC')
plt.title('LightGBM Training Curves (AUC)')
plt.legend()
plt.grid(True, alpha=0.3)
plt.tight_layout()
plot_path = os.path.join(output_dir, 'training_curves.png')
plt.savefig(plot_path, dpi=150, bbox_inches='tight')
print(f"Saved plot to {plot_path}")
plt.close()
def save_model_and_results(model, metrics, output_dir='output/models'):
"""
Save trained model and evaluation metrics.
"""
print("\nSaving model and results...")
# Create output directory
os.makedirs(output_dir, exist_ok=True)
# Save model in JSON format
model_path = os.path.join(output_dir, 'lightgbm_model.json')
model.save_model(model_path, num_iteration=model.best_iteration)
print(f"Saved model to {model_path}")
# Save metrics
metrics_path = os.path.join(output_dir, 'metrics.json')
with open(metrics_path, 'w') as f:
json.dump(metrics, f, indent=2)
print(f"Saved metrics to {metrics_path}")
def main():
"""
Main execution function.
Workflow:
1. Train initial model with all features
2. Calculate permutation importance on test set
3. Select top 40 features
4. Retrain model with selected features only
5. Compare performance
"""
print("="*60)
print("LIGHTGBM STOCK PREDICTION MODEL")
print("="*60)
# 1. Load data
X, y, dates = load_and_prepare_data(INPUT_FILE)
# 2. Split train/test
X_train, X_test, y_train, y_test = split_train_test(
X, y, dates, TRAIN_END_DATE, TEST_START_DATE
)
# 3. Handle missing values intelligently
# Start training only after all features are fully populated (after 200-day MA)
X_train_clean, X_test_clean, y_train_clean, y_test_clean = handle_missing_values(
X_train, X_test, y_train, y_test
)
# ========== PHASE 1: Train with ALL features ==========
print("\n" + "="*60)
print("PHASE 1: TRAINING WITH ALL FEATURES")
print("="*60)
# 4. Train initial model
model_full, evals_result_full = train_lightgbm(
X_train_clean, y_train_clean,
X_test_clean, y_test_clean,
LIGHTGBM_PARAMS.copy(),
early_stopping_rounds=EARLY_STOPPING_ROUNDS
)
# 5. Evaluate initial model
metrics_full, y_pred_full, y_pred_proba_full = evaluate_model(
model_full, X_train_clean, y_train_clean,
X_test_clean, y_test_clean
)
# 6. Feature importance (LightGBM built-in)
importance_df = plot_feature_importance(
model_full, X_train_clean.columns, top_n=30, output_dir=OUTPUT_DIR
)
# 7. Calculate permutation importance
selected_features, perm_importance_df = calculate_permutation_importance(
model_full, X_test_clean, y_test_clean,
X_train_clean.columns, top_n=40, output_dir=OUTPUT_DIR
)
# ========== PHASE 2: Retrain with SELECTED features ==========
print("\n" + "="*60)
print("PHASE 2: RETRAINING WITH TOP 40 FEATURES")
print("="*60)
print(f"Selected features: {len(selected_features)}")
# Filter to selected features
X_train_selected = X_train_clean[selected_features]
X_test_selected = X_test_clean[selected_features]
# 8. Train model with selected features
model_selected, evals_result_selected = train_lightgbm(
X_train_selected, y_train_clean,
X_test_selected, y_test_clean,
LIGHTGBM_PARAMS.copy(),
early_stopping_rounds=EARLY_STOPPING_ROUNDS
)
# 9. Evaluate selected features model
metrics_selected, y_pred_selected, y_pred_proba_selected = evaluate_model(
model_selected, X_train_selected, y_train_clean,
X_test_selected, y_test_clean
)
# 10. Plot training curves for selected model
plot_training_curves(evals_result_selected, output_dir=OUTPUT_DIR)
# 11. Save selected model
model_path = os.path.join(OUTPUT_DIR, 'lightgbm_model_selected_features.json')
model_selected.save_model(model_path, num_iteration=model_selected.best_iteration)
print(f"\nSaved selected features model to {model_path}")
# Save selected features list
selected_features_path = os.path.join(OUTPUT_DIR, 'selected_features.txt')
with open(selected_features_path, 'w') as f:
for feat in selected_features:
f.write(f"{feat}\n")
print(f"Saved selected features list to {selected_features_path}")
# ========== FINAL COMPARISON ==========
print("\n" + "="*60)
print("FINAL RESULTS COMPARISON")
print("="*60)
print("\n📊 MODEL WITH ALL FEATURES (115 features):")
print(f" Train ROC AUC: {metrics_full['train']['roc_auc']:.4f}")
print(f" Test ROC AUC: {metrics_full['test']['roc_auc']:.4f}")
print(f" Test Accuracy: {metrics_full['test']['accuracy']:.4f}")
print(f" Test F1 Score: {metrics_full['test']['f1']:.4f}")
print("\n📊 MODEL WITH SELECTED FEATURES (40 features):")
print(f" Train ROC AUC: {metrics_selected['train']['roc_auc']:.4f}")
print(f" Test ROC AUC: {metrics_selected['test']['roc_auc']:.4f}")
print(f" Test Accuracy: {metrics_selected['test']['accuracy']:.4f}")
print(f" Test F1 Score: {metrics_selected['test']['f1']:.4f}")
# Calculate improvement
roc_improvement = metrics_selected['test']['roc_auc'] - metrics_full['test']['roc_auc']
acc_improvement = metrics_selected['test']['accuracy'] - metrics_full['test']['accuracy']
print(f"\n📈 IMPROVEMENT:")
print(f" ROC AUC: {roc_improvement:+.4f}")
print(f" Accuracy: {acc_improvement:+.4f}")
if roc_improvement > 0:
print("\n✅ Feature selection IMPROVED performance!")
else:
print("\n⚠️ Feature selection did NOT improve performance")
print("\n" + "="*60)
print("TRAINING COMPLETE!")
print("="*60)
print(f"\nFiles saved to: {OUTPUT_DIR}/")
print(" - lightgbm_model.json (full model)")
print(" - lightgbm_model_selected_features.json (selected features model)")
print(" - permutation_importance.csv")
print(" - selected_features.txt")
print("\n🎯 Top 10 Features by Permutation Importance:")
for i, row in perm_importance_df.head(10).iterrows():
print(f" {i+1}. {row['feature']}: {row['importance_mean']:.6f}")
if __name__ == "__main__":
main()