from sklearn.preprocessing import Standard Scaler # 导入特征缩放器 sc = Standard Scaler() # 特征缩放器 X_train = sc.fit_transform(X_train) # 拟合并应用于训练集