Anomaly / export_model.py
Ujeshhh's picture
Upload 10 files
d16c0f6 verified
raw
history blame contribute delete
267 Bytes
import joblib
# Load model and feature list
model = joblib.load('anomaly_detector_rf_model.pkl')
feature_order = joblib.load('feature_order.pkl')
print("✅ Model and features loaded successfully!")
print("🔹 Feature columns used:")
print(feature_order)