1)from sklearn.preprocessing import MinMaxScaler 2)normaliza…
1)from sklearn.preprocessing import MinMaxScaler 2)normalization = MinMaxScaler() 3)x_scaled = normalization.fit(X_train) 4)x_train_normalized = x_scaled.transform(X_train) 5)x_test_normalized = x_scaled.transform(X_test) 6)y_scaled = normalization.fit(Y_train.reshape(len(Y_train),1)) 7)y_train_normalized = y_scaled.transform(Y_train.reshape(len(Y_train), 1)).flatten() 8)y_test_normalized = y_scaled.transform(Y_test.reshape(len(Y_test), 1)).flatten() Which of the following sentences is incorrect?