change md
This commit is contained in:
@ -49,5 +49,5 @@ X_train, X_test, Y_train, Y_test = train_test_split( X , Y , test_size = 0.2, ra
|
||||
from sklearn.preprocessing import StandardScaler
|
||||
sc_X = StandardScaler()
|
||||
X_train = sc_X.fit_transform(X_train)
|
||||
X_test = sc_X.fit_transform(X_test)
|
||||
X_test = sc_X.transform(X_test)
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user