Spaces:
Build error
Build error
File size: 193 Bytes
681ca4d | 1 2 3 4 5 6 7 8 | from sklearn.preprocessing import StandardScaler
def preprocess_features(features):
scaler = StandardScaler()
scaled_features = scaler.transform(features)
return scaled_features |