classification using scikit-learn

Course Curriculum

classification using scikit-learn

classification using scikit-learn

Multiclass classification is a popular problem in supervised machine learning.

Problem – Given a dataset of m training examples, each of which contains information in the form of various features and a label. Each label corresponds to a class, to which the training example belongs to. In multiclass classification, we have a finite set of classes. Each training example also has n features.

For example, in the case of identification of different types of fruits, “Shape”, “Color”, “Radius” can be features and “Apple”, “Orange”, “Banana” can be different class labels.

In a multiclass classification, we train a classifier using our training data, and use this classifier for classifying new examples.

Aim of this article – We will use different multiclass classification methods such as, KNN, Decision trees, SVM, etc. We will compare their accuracy on test data. We will perform all this with sci-kit learn (Python). For information on how to install and use sci-kit learn, visit http://scikit-learn.org/stable/

Approach –

  • Load dataset from source.
  • Split the dataset into “training” and “test” data.
  • Train Decision tree, SVM, and KNN classifiers on the training data.
  • Use the above classifiers to predict labels for the test data.
  • Measure accuracy and visualise classification.

Decision tree classifier – Decision tree classifier is a systematic approach for multiclass classification. It poses a set of questions to the dataset (related to its attributes/features). The decision tree classification algorithm can be visualized on a binary tree. On the root and each of the internal nodes, a question is posed and the data on that node is further split into separate records that have different characteristics. The leaves of the tree refer to the classes in which the dataset is split. In the following code snippet, we train a decision tree classifier in scikit-learn.

# importing necessary libraries
from sklearn import datasets
from sklearn.metrics import confusion_matrix
from sklearn.model_selection import train_test_split

# loading the iris dataset
iris = datasets.load_iris()

# X -> features, y -> label
X = iris.data
y = iris.target

# dividing X, y into train and test data
x-train, X-test, y-train, y-test = train_test_split(X, y, random-state = 0)

# training a DescisionTreeClassifier
from sklearn.tree import DecisionTreeClassifier
dtree_model = DecisionTreeClassifier(max_depth = 2).fit(x-train, y-train)
dtree_predictions = dtree_model.predict(X-test)

# creating a confusion matrix
co_mat = confusion_matrix(y-test, dtree_predictions)
SVM (Support vector machine) classifier –

SVM (Support vector machine) is an efficient classification method when the feature vector is high dimensional. In sci-kit learn, we can specify the kernel function (here, linear). To know more about kernel functions and SVM refer – Kernel function | sci-kit learn and SVM.

# importing necessary libraries
from sklearn import datasets
from sklearn.metrics import confusion_matrix
from sklearn.model_selection import train_test_split

# loading the iris dataset
iris = datasets.load_iris()

# X -> features, y -> label
X = iris.data
y = iris.target

# dividing X, y into train and test data
x-train, X-test, y-train, y-test = train_test_split(X, y, random-state = 0)

# training a linear SVM classifier
from sklearn.svm import SVC
svm_model_linear = SVC(kernel = 'linear', C = 1).fit(x-train, y-train)
svm_predictions = svm_model_linear.predict(X-test)

# model accuracy for X-test
accuracy = svm_model_linear.score(X-test, y-test)

# creating a confusion matrix
co_mat = confusion_matrix(y-test, svm_predictions)

KNN (k-nearest neighbours) classifier – KNN or k-nearest neighbours is the simplest classification algorithm. This classification algorithm does not depend on the structure of the data. Whenever a new example is encountered, its k nearest neighbours from the training data are examined. Distance between two examples can be the euclidean distance between their feature vectors. The majority class among the k nearest neighbours is taken to be the class for the encountered example.

# importing necessary libraries
from sklearn import datasets
from sklearn.metrics import confusion_matrix
from sklearn.model_selection import train_test_split

# loading the iris dataset
iris = datasets.load_iris()

# X -> features, y -> label
X = iris.data
y = iris.target

# dividing X, y into train and test data
x-train, X-test, y-train, y-test = train_test_split(X, y, random-state = 0)

# training a KNN classifier
from sklearn.neighbors import KNeighborsClassifier
knn = KNeighborsClassifier(n_neighbors = 7).fit(x-train, y-train)

# accuracy on X-test
accuracy = knn.score(X-test, y-test)
print accuracy

# creating a confusion matrix
knn_predictions = knn.predict(X-test)
co_mat = confusion_matrix(y-test, knn_predictions)

Naive Bayes classifier – Naive Bayes classification method is based on Bayes’ theorem. It is termed as ‘Naive’ because it assumes independence between every pair of feature in the data. Let (x1, x2, …, xn) be a feature vector and y be the class label corresponding to this feature vector.

Applying Bayes’ theorem,

Since, x1, x2, …, xn are independent of each other,

Inserting proportionality by removing the P(x1, …, xn) (since, it is constant).

Therefore, the class label is decided by,

P(y) is the relative frequency of class label y in the training dataset.

In case of Gaussian Naive Bayes classifier, P(xi | y) is calculated as,

# importing necessary libraries
from sklearn import datasets
from sklearn.metrics import confusion_matrix
from sklearn.model_selection import train_test_split

# loading the iris dataset
iris = datasets.load_iris()

# X -> features, y -> label
X = iris.data
y = iris.target

# dividing X, y into train and test data
x-train, X-test, y-train, y-test = train_test_split(X, y, random-state = 0)

# training a Naive Bayes classifier
from sklearn.naive_bayes import GaussianNB
gnb = GaussianNB().fit(x-train, y-train)
gnb_predictions = gnb.predict(X-test)

# accuracy on X-test
accuracy = gnb.score(X-test, y-test)
print accuracy

# creating a confusion matrix
co_mat = confusion_matrix(y-test, gnb_predictions)

Types of Learning – Supervised Learning (Prev Lesson)
(Next Lesson) Gradient Descent algorithm and its variants