File size: 267 Bytes
d16c0f6
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
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)