An accuracy comparison between scikit-learn’s SVM and LightTwinSVM program

Recently, I’ve introduced the LightTwinSVM program on my blog (If you haven’t read it, check out this post.).  It is a fast and simple implementation of TwinSVM classifier. Some people might ask why I should use this program over other popular SVM’s implementation such as LIBSVM and scikit-learn. The short answer is that TwinSVM has better accuracy than that of SVM in most cases.

In order to show the effectiveness of the LightTwinSVM program in terms of accuracy, experiments were conducted on 10 UCI datasets benchmark datasets.

Before presenting the results, parameters selection and evaluation metrics should be explained.

Parameters Selection

The performance of SVM and TwinSVM classifiers is highly dependent on the choice of hyper-parameters. Therefore, grid search is often used to find optimal value hyper-parameters. The penalty parameter \(C\) is selected from the set \(\{2^{i} | i=-8,-7, \dots, 4,5\}\). Also, the RBF kernel was employed as it is often used and yields good generalization. Its parameter \( \gamma \) is chosen from the set \( \{ 2^{i} | i=-10,-9,\dots,1,2 \} \).

Evaluation metrics

Similar to most research papers on classification, K-fold cross-validation is used to evaluate and compare classifiers. K was set to five folds. In this evaluation method, training samples are divided into 5 sets. The classifier is evaluated on 1 set and is trained on the remained sets. This process is repeated five times until the classifier is trained and tested on all the sets. The average accuracy of these runs is reported as the final prediction accuracy. Finally, classification methods are compared with each other based on this prediction accuracy.

Test Environment

Experiments were performed on a system with the following specs:

CPU: AMD Ryzen 7 1800X (Default clock speed) | RAM: 16GB @ 2.4 GHz | OS: Ubuntu 18.04.1 | Python version: 3.6.7

Results

Now, it’s time to present the classification results of the LightTwinSVM program. The table below shows the comparison of LighTwinSVM with scikit-learn’s SVM.

DatasetsLightTwinSVMScikit-learn's SVMDifference in Accuracy
Pima-Indian78.9178.260.65
Australian87.2586.810.44
Haberman76.1276.80-0.68
Cleveland85.1484.820.32
Sonar75.1664.4210.74
Heart-Statlog85.1985.190
Hepatitis85.8183.232.58
WDBC98.2498.070.17
Spectf80.5579.780.81
Titanic82.0481.710.33
Mean83.4481.901.53

As can be seen from the above table, LightTwinSVM outperforms sklearn’s SVM on most datasets. Even though the difference in accuracy between the two classifiers is not very large, for some datasets such as Sonar and Hepatitis, there is a significant difference between the LightTwinSVM and Sklearn’s SVM.

After all, these results indicate that the LightTwinSVM can be used to solve classification tasks that have already been solved by standard SVM.  By using TwinSVM, you may get a better classification accuracy for your problem.

If you are interested in using LightTwinSVM for your task/project, its installation guide and example usage can be found on its GitHub repository.

Let me know your thoughts, problems, or questions by leaving a comment below.

Leave a Reply

Your email address will not be published. Required fields are marked *