Guest User

Untitled

a guest
Feb 17th, 2019
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. scaler = MinMaxScaler()
  2. scaler.fit(X)
  3. X = scaler.transform(X)
  4. scaler1 = MinMaxScaler()
  5. scaler1.fit(Y)
  6. Y = scaler1.transform(Y)
  7. X= np.reshape(X, (X.shape[0],1,X.shape[1]))
Add Comment
Please, Sign In to add comment