Skip to content

Instantly share code, notes, and snippets.

@MariaLavrovskaya
Created October 28, 2019 15:17
Show Gist options
  • Save MariaLavrovskaya/5307ba2c383fbcd583d7e06128df9330 to your computer and use it in GitHub Desktop.
Save MariaLavrovskaya/5307ba2c383fbcd583d7e06128df9330 to your computer and use it in GitHub Desktop.
svm_2
from sklearn.model_selection import train_test_split
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.2, random_state=1)
#Linear
from sklearn.svm import SVC
from sklearn import metrics
svc=SVC() #Default hyperparameters
svc.fit(X_train,y_train)
y_pred=svc.predict(X_test)
print('Accuracy Score:')
print(metrics.accuracy_score(y_test,y_pred))
#RBF
svc=SVC(kernel='rbf')
svc.fit(X_train,y_train)
y_pred=svc.predict(X_test)
print('Accuracy Score:')
print(metrics.accuracy_score(y_test,y_pred))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment