Guest User

Untitled

a guest
Jun 18th, 2018
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. x=dataset_csv[:int(round(cols*0.9)),0:3]
  2. y=dataset_csv[:int(round(cols*0.9)),3]
  3.  
  4. clf = svm.SVC(C=1.0, cache_size=10000, class_weight=None, coef0=0.0,
  5. decision_function_shape='ovo', degree=3, gamma='auto', kernel='poly',
  6. max_iter=-1, probability=False, random_state=None, shrinking=True,
  7. tol=0.001, verbose=False)
  8.  
  9. clf.fit(x, y)
Add Comment
Please, Sign In to add comment