Guest User

Untitled

a guest
Jul 15th, 2018
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. X_train[:, 4]
  2. y_train[:, 4:5]
  3.  
  4. from sklearn.svm import SVR
  5. model=SVR()
  6.  
  7. model.fit(X_train, y_train)
  8.  
  9. y_test=model.predict(X_test)
Add Comment
Please, Sign In to add comment