Engine Predictive Maintenance Model
Best model: GradientBoosting
F1 (test): 0.7657
Usage
import pickle, pandas as pd
with open('best_model.pkl', 'rb') as f:
model = pickle.load(f)
Notes
- Tuned via GridSearchCV (scoring=F1), metrics logged with MLflow.