Guest User

Untitled

a guest
Dec 13th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. accuracy=[]
  2. for i in np.range(8):
  3. clf=svm.SVC(random_state=42).fit(X_train,y_train)
  4. clf_score=clf.Score(X_test,y_test)
  5. accuracy.append(clf_score)
  6.  
  7. accuracy= [0.98 , 0.995, 0.91, 0.98, 0.93, 0.95, 0.98, 0.96]
Add Comment
Please, Sign In to add comment