Guest User

Untitled

a guest
Oct 20th, 2018
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. classifier=SVC()
  2. xtrain=train.iloc[:,1:]
  3. ytrain=train.iloc[:,:1]
  4. ytrain=ytrain.values.ravel()
  5. classifier.fit(xtrain,ytrain)
  6.  
  7. Result=classifier.predict(test)
  8. print(Result)
Add Comment
Please, Sign In to add comment