inference.py with your input features.1import joblib
2import numpy as np
3
4# Load model and scaler
5model = joblib.load("classification_model.joblib")
6scaler = joblib.load("scaler.pkl")
7
8# Make a prediction
9input_features = [0.5, 1.2, -0.3, 2.0]
10scaled_features = scaler.transform(np.array(input_features).reshape(1, -1))
11prediction = model.predict(scaled_features)
12print(prediction)