Created
June 27, 2017 19:45
-
-
Save FranciscusRenatus/7f2bbe164d361e54e4976f5af5f91918 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Fitting SVM to the Training set | |
from sklearn.svm import SVC | |
classifier = SVC(kernel = 'linear', random_state = 0) | |
classifier.fit(X_train, y_train) | |
# Predicting the Test set results | |
y_pred = classifier.predict(X_test) | |
# Making the Confusion Matrix | |
from sklearn.metrics import confusion_matrix | |
cm = confusion_matrix(y_test, y_pred) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment