`from sklearn.preprocessing import StandardScaler scaler = StandardScaler() scaler.fit(x_train)
x_train = scaler.transform(x_train) x_test = scaler.