Next Article in Journal
Comparison of the Binding of Reversible Inhibitors to Human Butyrylcholinesterase and Acetylcholinesterase: A Crystallographic, Kinetic and Calorimetric Study
Next Article in Special Issue
An Interface for Biomedical Big Data Processing on the Tianhe-2 Supercomputer
Previous Article in Journal
HPLC-PDA-MS/MS Characterization of Bioactive Secondary Metabolites from Turraea fischeri Bark Extract and Its Antioxidant and Hepatoprotective Activities In Vivo
Previous Article in Special Issue
Deep Convolutional Neural Network-Based Early Automated Detection of Diabetic Retinopathy Using Fundus Image
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Cancer Classification Based on Support Vector Machine Optimized by Particle Swarm Optimization and Artificial Bee Colony

1
School of Medical Information, Wannan Medical College, Wuhu 241002, China
2
School of Mathematics and Computer Science, Anhui Normal University, Wuhu 241002, China
*
Author to whom correspondence should be addressed.
Molecules 2017, 22(12), 2086; https://doi.org/10.3390/molecules22122086
Submission received: 27 October 2017 / Accepted: 23 November 2017 / Published: 29 November 2017

Abstract

:
Intelligent optimization algorithms have advantages in dealing with complex nonlinear problems accompanied by good flexibility and adaptability. In this paper, the FCBF (Fast Correlation-Based Feature selection) method is used to filter irrelevant and redundant features in order to improve the quality of cancer classification. Then, we perform classification based on SVM (Support Vector Machine) optimized by PSO (Particle Swarm Optimization) combined with ABC (Artificial Bee Colony) approaches, which is represented as PA-SVM. The proposed PA-SVM method is applied to nine cancer datasets, including five datasets of outcome prediction and a protein dataset of ovarian cancer. By comparison with other classification methods, the results demonstrate the effectiveness and the robustness of the proposed PA-SVM method in handling various types of data for cancer classification.

Graphical Abstract

1. Introduction

Owing to no obvious early symptoms of cancer, most of patients are diagnosed at an advanced stage [1], which usually results in high costs with a poorer prognosis. In addition to uncontrolled growth, cancer cells invade the surrounding normal tissue and even move through the body’s circulatory system or lymphatic system to other parts of the body [2]. The probability of recurrence or metastasis after surgery is higher than 90% after five years, as cancer treatment is not thorough. To date, the problem of completely clearing the remaining cancer cells is not solved, and the recurrence rate and mortality rate of cancer are still quite high. If we can make full use of available human expression profiles and realize repeatable diagnoses, there is no doubt that it will bring great convenience to cancer patients. The analysis of microarray gene expression data [3] and protein expression data can be used to grasp the information of physiological activities at the molecular level, which is widely used in the field of biomedicine. However, a large number of irrelevant and redundant values exist in expression profiles. Moreover, the high dimensionality and small sample bring great difficulties to the data processing. Thus, researchers have proposed various methods [4,5,6,7,8] to deal with these problems.
Up to now, many machine learning algorithms have been applied to the classification study of bioinformatics, such as random forest [9], k-nearest neighbor, neural network [10], and SVM (Support Vector Machine). Besides these, there are also some ensemble classifiers [11,12,13,14]. Among them, DNA recombination spots were identified by a web server iRSpot-EL based on ensemble learning [13]. A two-layer ensemble classifier named 2L-piRNA makes it possible to efficiently identify piwi-interacting RNAs and their function [14]. In addition, the classifier was operated with the SVM algorithm. Another method based on the SVM model is iEnhancer-2L, which is a two-layer predictor for identifying enhancers and their strength [15]. SVM has distinctive advantages in handling data with high dimensionality and a small sample size. In addition, nonlinear data can be mapped into high dimensional space rely on kernel function, and turned into linear separable problem [16]. The kernel function of RBF (Radial Basis Function) [17] is widely used due to its superiority in parameter and classification performance. Notably, the choice of penalty factor C and kernel parameter σ of SVM affects classification results. Many researchers have used a variety of search methods to find the optimal parameters [18,19,20,21]. At the same time, the parameters of SVM have been optimized by many intelligent algorithms in Reference [21].
Intelligent optimization algorithms are developed by simulating or revealing some natural phenomena, and are widely used in many research fields because of their versatility [22,23,24,25]. The PSO (Particle Swarm Optimization) algorithm has been successfully applied to cancer classification because of its simplicity and generality [26]. However, PSO is easily falls into the local optimal solution. In addition, the ABC (Artificial Bee Colony) algorithm possesses good global convergence and extensive applicability [27]. However, ABC is unsatisfactory at exploitation [28]. The use of a single optimization algorithm presents the shortcomings of low precision and weak generalization ability in solving complex problems. To further explore the application of intelligent optimization in bioinformatics, PSO and ABC are combined in this paper, which means the ability of exploitation and exploration are combined for binary and multiclass cancer classification. In this paper, the FCBF (Fast Correlation-Based Feature selection) method [29] is employed to remove the redundant and irrelevant features, the PSO optimization results are taken as the initial values of ABC, and then the cancer classification model is constructed after the parameters are tuned; this hybrid method is represented as PA-SVM. Nine cancer datasets are utilized for experiments, and then compared with other classification methods: LIBSVM (A Library for Support Vector Machine), GA-SVM (Genetic Algorithm combined with SVM), PSO-SVM (Particle Swarm Optimization combined with SVM), and ABC-SVM (Artificial Bee Colony combined with SVM). The results demonstrate that the proposed PA-SVM method presented in this paper has good robustness and achieves more accurate classification results. This work aims to provide cancer classification results for reference and to make a contribution to the clinical diagnosis and treatment of different types of cancer.

2. Results

2.1. Feature Selection

Within nine cancer datasets, the number of features ranges from 2000 to tens of thousands; the breast cancer dataset being the largest with 24,481 attributes. Since a large number of irrelevant and redundant attributes are involved in these expression data, the cancer classification task is made more complicated. If the complete data is used to perform cancer classification, the accuracy will be not so accurate, and high computational time and cost will be incurred. Therefore, the reliable FCBF method [29] is adopted to select a subset of discriminatory features before classification. By discarding the attributes with little or no effect, FCBF provides good performance with full consideration of feature correlation and redundancy. In this paper, we standardized the data first, and then performed the feature selection by FCBF in Weka. The number of reduced attributes is shown in Table 1.
As shown from this table, the number of attributes subtracted is far less than the original number. Among them, the number of attributes of breast cancer decreased from 24,481 to 92, while the number of attributes of lung cancer decreased from 2880 to 6. Furthermore, the proteomic spectra of ovarian cancer include 30 reduced attributes, while the original number was 15,154. Consequently, the number of original features is reduced by a large amount, and the computational cost is reduced as well.

2.2. Cancer Classification

The classification experiment in this paper was carried out under a Matlab environment. Nine subsets after feature reduction were used as input data of the proposed PA-SVM classifier for classification. In order to verify the effectiveness of the proposed method, we compared it with the LIBSVM method of default parameters in Weka, as well as with GA-SVM, PSO-SVM, and ABC-SVM in Matlab. Among these techniques, SVM used in this experiment is derived from the LIBSVM package developed by Prof. Chih-Jen Lin. GA-SVM used genetic algorithm (GA) to optimize SVM parameters and applied the optimized SVM to classify cancer datasets. GA has the characteristics of parallel computing, which is suitable for large-scale complex problem optimization. PSO-SVM utilized PSO to optimize the parameters of SVM. PSO is easy to implement with few parameters to adjust, while it also has advantages of fast convergence speed and strong versatility. ABC-SVM employed ABC to find the optimal parameters of SVM, which takes full advantage of the good global convergence and flexibility of ABC. Therefore, the PA-SVM algorithm proposed in this paper can combine the exploitation of PSO and the exploration of ABC, and overcome the disadvantages of PSO easily falling into local optimum as well as the weak exploitation of ABC. In addition, due to the small number of selected features, 10-fold cross validation was used. For the purpose of avoiding instable operation results, each experiment was run 10 times, and the optimal classification accuracy was selected for comparison. The final classification results are shown in Table 2.
As seen from Table 2, the accuracy of the last column, which represents the classification result of the proposed PA-SVM method, always obtains the optimal values. Among these cancer datasets, for the five groups of patients with outcome prediction, such as breast cancer and nervSys, the proposed PA-SVM method achieved the same accuracy as ABC-SVM, and both were higher than other methods. As for lung cancer, the best result was obtained by PA-SVM and PSO-SVM. This showed that the PA-SVM approach described in this paper has superior outcome prediction. To elaborate, the leukemia dataset contains three disease types, and all of these methods can achieve 100% classification accuracy. Concerning the protein data of ovarian cancer, the constructed classification model obtained 100% accuracy. This study is significant for women who have a high risk of ovarian cancer due to a family or personal history of cancer. With regard to DLBCL1 and DLBCL2, the proposed PA-SVM achieved the highest performance compared to other classification approaches.
In order to show the effect of various methods intuitively, we converted the data in Table 2 to a line chart. Since the classification accuracy for the prostate, leukemia, and ovarian datasets was 100%, they were not shown in the figure. The details of the remaining six datasets can be seen in Figure 1.
It can be seen that PA-SVM has the optimal accuracy for all cancer datasets studied. Also, in the experiments it can be observed that ABC-SVM and PA-SVM maintain better robustness, while GA-SVM and PSO-SVM easily fall into the local optimal solution. Accordingly, the proposed PA-SVM approach always obtains the best classification performance and has good robustness. This indicates that PA-SVM is able to handle multiple types of data with better performance in cancer prognosis, identification, and classification compared to other methods employed.

3. Discussion

The complexity and variability of cancer greatly increases the difficulty of clinical treatment. In addition, patients still have a large probability of recurrence after treatment, which is still a serious threat to people’s health. Thus, the early diagnosis and prognosis of cancer is of great significance. However, there are many problems during the handling of gene expression data, such as high dimension, small sample size, and large noise. In order to obtain truly valuable genes, a variety of methods are proposed for feature selection and classification prediction.
Intelligent optimization algorithms have advantages of fast convergence, simple operation, adaptability, and robustness, and they are applied in many fields. In this paper, the FCBF method was used to filter the irrelevant and redundant attributes, and the obtained subsets were input into the constructed classification model based on PSO and ABC. In this paper, the optimal solution obtained by PSO is taken as the initialization of the ABC algorithm, and thus the advantages of PSO and ABC were combined to constitute the PA-SVM classifier. It has been observed that the proposed method can always get the best results through the classification of different cancer datasets with a low number of selected genes. In addition, this paper also used ovarian cancer protein expression data for cancer classification because of the importance of protein molecules. The results demonstrated that the proposed PA-SVM method has greater advantages for cancer prognosis, identification, and classification, as well as the handling of multiple types of datasets.
The causes of cancer are full of complexity and variety; therefore, single type of data probably not provides an adequate explanation or makes a perfect prediction. We will thus combine multiple types of data in the future in order to achieve a comprehensive analysis. In addition, the theoretical mechanism of intelligent optimization still lacks a complete mathematical foundation. Further study and in-depth research are needed. At the same time, clinical validation is also necessary in order to make the research more conducive to human life.

4. Materials and Methods

4.1. Cancer Datasets

The datasets used in the experiment were all derived from the Kent Ridge Bio-medical Dataset Repository, mentioned in Reference [30]. These datasets include breast cancer, colon cancer, DLBCL, lung cancer, leukemia, nervSys (central nervous system embryonal tumor), ovarian cancer, and prostate cancer. A detailed description of these datasets is shown in Table 3.
In addition to colon, DLBCL1, leukemia, and ovarian datasets, the remaining datasets concerned the outcome prediction of cancer patients, indicating a predicted relapse or non-relapse. It is worth noting that the ovarian cancer measures protein expression data. The goal of this experiment was to identify proteomic patterns in serum that distinguish ovarian cancer from non-cancer. Among them, the DLBCL dataset included two categories: DLBCL1 and DLBCL2. The first is DLBCL versus Follicular Lymphoma (FL) morphology. The second is the outcome prediction data of 58 cases of DLBCL samples, some of them from cured patients and others from patients with fatal or refractory disease. Besides DLBCL, the colon cancer dataset contained 62 samples collected from colon cancer patients, characterized by a common malignant tumor in the gastrointestinal tract. Also, the leukemia dataset of 72 samples included three categories: ALL, MLL, and AML. They stand for acute lymphoblastic leukemia, mixed lineage leukemia, and acute myeloid leukemia, respectively.

4.2. Particle Swarm Optimization (PSO) Algorithm

The PSO algorithm originated from the study of bird predation behavior, first proposed by Kennedy and Eberhart in 1995. The algorithm is easy to implement and the rules are simple. The position of each particle represents a potential solution, each particle has a fitness value determined by fitness function, and each particle has three characteristics: position, velocity, and fitness value. The flowchart of the PSO algorithm is shown in Figure 2.
Suppose that in the feasible solution D-dimensional space, the population of n particles is X = [X1, X2, …, Xn]. The position and velocity of the i-th particle are Xi = [xi1, xi2, …, xiD] and Vi = [vi1, vi2, …, viD], respectively, where the velocity determines the direction and distance of the particle movement. The particles move in the feasible solution space, and the individual position is updated by tracking the personal best position Pi and the global best position Pg. The personal best position is the best location with best fitness value experienced by the individual: Pi = [pi1, pi2, …, piD]. The global best position is the optimal position with best fitness for all particles in the population: Pg = [pg1, pg2, …, pgD]. The particle updates velocity and position through the global and personal best positions. The formula is represented as:
v i d k + 1 = ω v i d k   +   c 1 r 1 ( p i d k     x i d k )   +   c 2 r 2 ( p g d k     x i d k )     d = 1 ,   2 ,   ,   D
x i d k + 1 = x i d k + v i d k + 1    d = 1 , 2 , , D ; i = 1 ,   2 ,   ,   n
where k is the current iteration number, ω is the inertia weight, c1 and c2 denote the cognitive and the social learning factors, and r1 and r2 are uniformly distributed numbers in the interval (0, 1). In order to avoid a blind search, the position and velocity of each particle has a certain limit interval [Xmin, Xmax] and [Vmin, Vmax].

4.3. Artificial Bee Colony (ABC) Algorithm

Karaboga successfully applied the bee colony algorithm to the extreme value optimization problem in 2005. At the same time, he systematically put forth the ABC algorithm, which simulates bees gathering nectar in nature. In this algorithm, bees are divided into three types: employed bees, onlooker bees, and scout bees, and they find the optimal solution through the collection and sharing of nectar. The procedure of the ABC algorithm is presented in Figure 3.
In the ABC algorithm, the position of each food source represents a feasible solution of the problem to be optimized. The enrichment of each source corresponds to the fitness of each solution. First, feasible solution xi is initialized in the D-dimensional space, and i = 1, 2, …, N, each food source attracts one employed bee, so the position of the source is the position of the employed bee. Onlooker bees determine the location according to the selection probability of the fitness value that employed bees remembered:
P i = f i t i n = 1 N f i t n
where fiti is the fitness of the i-th food source, and Pi is the selection probability. Then, onlooker bees do the neighborhood search according to the formula:
x i k + 1 = x i k + r × ( x i k x j k )
where ij, j = 1, 2,…, N, and x i k is the current food source position, and r is a random number in the range of (–1, 1). Subsequently, the fitness values before and after the search are compared, and the better one is chosen. If the source has not been changed by multiple searches, and the number of times exceeds the limit, the employed bees’ identity will become scout bees, and another solution is generated randomly. The formula for producing a new food source is as follows:
x i = x min + r a n d ( 0 ,   1 ) ( x max x min )
This method not only improves the quality of the solution, but also increases the diversity, which is beneficial to finding the global optimal solution.

4.4. The Proposed PA-SVM Algorithm

Taking into account the large number of irrelevant and redundant values in gene expression data, we utilized the FCBF feature selection method [26] combined with SymmetricalUncertAttributeSetEval attribute evaluator in Weka to select gene subsets, and these subsets were input into the constructed cancer classification model for classification evaluation. The whole process of the experiment is shown in Figure 4.
SVM finds the classification interval of two kinds of samples as large as possible by looking for an optimal classification hyperplane that satisfies the requirements. When dealing with non-linear samples, kernel function is used to map the data into a high-dimensional space, so that the data can be linearly separable. The search for the optimal hyperplane can be converted to the minimization of the following equation by introducing the penalty factor C and slack variable ξ.
f = 1 2 ω 2 + C i = 1 N ξ i s . t . { y i ( ω T ϕ ( x i ) + b ) 1 ξ i ξ i 0
where ω is the hyperplane normal vector, and b is the threshold. The feature map ψ(x) is a kernel function that satisfies the Mercer condition. Since this paper adopts the widely used RBF kernel function, its value is mainly affected by the kernel function parameter σ. It can be seen that the penalty factor C and the kernel function parameter σ have a great influence on the classification performance of SVM.
This article uses the easy-to-use LIBSVM package developed by professor Chih-Jin Lin of Taiwan University, which can solve the complex problem of multi-class pattern recognition. The proposed method PA-SVM employs PSO and ABC to optimize the penalty factor C and parameter σ of RBF kernel function in SVM.
The personal and global best values are determined by making full use of the optimal value in the optimization process and the introduction of mutation, which gives PSO good exploitation abilities. The solutions of parameters bestc and bestg found by PSO are used as the initial values of food sources in the ABC algorithm, thus the uncertainty of random values can be avoided to some extent. Bestc means the best value of parameter C found by PSO, while bestg is the best value of the RBF kernel function parameter. Then, as PA-SVM takes full use of the exploration of scout bees in ABC, it is more conducive to discover the global optimum by overcoming the shortcoming of PSO, which is easily trapped in the local optimal. This method combines the advantages of the PSO and ABC algorithms by striking a balance between exploration and exploitation.
The higher classification accuracy is the main purpose of optimizing SVM, and the fitness function in this paper is directly represented as the value of classification accuracy, which is expressed as follows:
F = V a c c u r a c y
In this study, the dimension parameter D is 2, the population size is set to 30, the number of iterations is 100, the limit is 50, and a 10-fold cross validation method is used to assess the classification accuracy.

Acknowledgments

This article was supported by the National Natural Science Foundation of China (61672386), Humanities and Social Sciences Planning Project of Ministry of Education (16YJAZH071), Anhui Provincial Natural Science Foundation of China (1708085MF142), as the Natural Science Research Key Project of Anhui Colleges (KJ2014A266, KJ2016A275). We sincerely acknowledge the excellent scholars who provided the public resources in this research.

Author Contributions

M.Y. conceived and designed the experiments. L.G. designed and performed the experiments, analyzed the data, and wrote the paper. C.W. assisted in the design and performance of the experimental work. All authors read and approved the final manuscript.

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Clémentduchêne, C.; Carnin, C.; Guillemin, F.; Martinet, Y. How accurate are physicians in the prediction of patient survival in advanced lung cancer. Oncologist 2010, 1, 782–789. [Google Scholar] [CrossRef] [PubMed]
  2. Chambers, A.F.; Groom, A.C.; Macdonald, I.C. Dissemination and growth of cancer cells in metastatic sites. Nat. Rev. Cancer 2002, 2, 563–572. [Google Scholar] [CrossRef] [PubMed]
  3. Nguyen, T.; Khosravi, A.; Creighton, D.; Nahavandi, S. A novel aggregate gene selection method for microarray data classification. Pattern Recogn. Lett. 2015, 60, 16–23. [Google Scholar] [CrossRef]
  4. Dettling, M.; Bühlmann, P. Boosting for tumor classification with gene expression data. Bioinformatics 2003, 19, 1061–1069. [Google Scholar] [CrossRef] [PubMed]
  5. Li, B.; Zheng, C.H.; Huang, D.S.; Zhang, L.; Han, K. Gene expression data classification using locally linear discriminant embedding. Comput. Biol. Med. 2010, 40, 802–810. [Google Scholar] [CrossRef] [PubMed]
  6. Vanitha, C.D.A.; Devaraj, D.; Venkatesulu, M. Gene expression data classification using Support Vector Machine and mutual information-based gene selection. Procedia Comput. Sci. 2015, 47, 13–21. [Google Scholar] [CrossRef]
  7. Kar, S.; Sharma, K.D.; Maitra, M. Gene selection from microarray gene expression data for classification of cancer subgroups employing PSO and adaptive K-nearest neighborhood technique. Expert. Syst. Appl. 2015, 42, 612–627. [Google Scholar] [CrossRef]
  8. Lu, H.; Yang, L.; Yan, K.; Xue, Y.; Gao, Z. A cost-sensitive rotation forest algorithm for gene expression data classification. Neurocomputing 2017, 228, 270–276. [Google Scholar] [CrossRef]
  9. Statnikov, A.; Wang, L.; Aliferis, C.F. A comprehensive comparison of random forests and support vector machines for microarray-based cancer classification. BMC Bioinform. 2008, 9, 319–328. [Google Scholar] [CrossRef] [PubMed]
  10. Faria, A.W.; Da, S.A.; De, S.R.T.; Costa, M.A.; Braqa, A.P. A ranking approach for probe selection and classification of microarray data with artificial neural networks. J. Comput. Biol. 2015, 22, 953–961. [Google Scholar] [CrossRef] [PubMed]
  11. Xu, R.F.; Zhou, J.Y.; Liu, B.; Yao, L.; He, Y.L.; Zou, Q.; Wang, X.L. enDNA-Prot: Identification of DNA-binding proteins by applying ensemble learning. Biomed. Res. Int. 2014, 2014, 1–10. [Google Scholar] [CrossRef] [PubMed]
  12. Lin, C.; Chen, W.Q.; Qiu, C.; Wu, Y.F.; Krishnan, S.; Zou, Q. LibD3C: Ensemble classifiers with a clustering and dynamic selection strategy. Neurocomputing 2014, 123, 424–435. [Google Scholar] [CrossRef]
  13. Liu, B.; Wang, S.Y.; Long, R.; Chou, K.C. iRSpot-EL: Identify recombination spots with an ensemble learning approach. Bioinformatics 2017, 33, 35–41. [Google Scholar] [CrossRef] [PubMed]
  14. Liu, B.; Fan, Y.; Chou, K.C. 2L-piRNA: A two-layer ensemble classifier for identifying piwi-interacting RNAs and their function. Mol. Ther. Nucl. Acids 2017, 7, 267–277. [Google Scholar] [CrossRef] [PubMed]
  15. Liu, B.; Fang, L.Y.; Long, R.; Lan, X.; Chou, K.C. iEnhancer-2L: A two-layer predictor for identifying enhancers and their strength by pseudo k-tuple nucleotide composition. Bioinformatics 2016, 32, 362–369. [Google Scholar] [CrossRef] [PubMed]
  16. Furey, T.S.; Cristianini, N.; Duffy, N.; Bednarski, D.W.; Schummer, M.; Haussler, D. Support vector machine classification and validation of cancer tissue samples using microarray expression data. Bioinformatics 2000, 16, 906–914. [Google Scholar] [CrossRef] [PubMed]
  17. Phienthrakul, T.; Kijsirikul, B. Evolutionary strategies for hyperparameters of support vector machines based on multi-scale radial basis function kernels. Soft. Comput. 2010, 14, 681–699. [Google Scholar] [CrossRef]
  18. Li, X.; Yang, D.; Wu, J. SVM optimization based on BFA and its application in AE rotor crack Fault diagnosis. J. Comput. 2011, 6, 2084–2091. [Google Scholar] [CrossRef]
  19. Guo, H.; Yin, J.; Zhao, J.; Huang, Z.; Pan, Y. Prediction of fatigue life of packaging EMC material based on RBF-SVM. Int. J. Mater. Prod. Technol. 2014, 49, 5–17. [Google Scholar] [CrossRef]
  20. Wang, C. Optimization of SVM method with RBF kernel. Appl. Mech. Mater. 2014, 496–500, 2306–2310. [Google Scholar] [CrossRef]
  21. Liu, C.; Yin, S.Q.; Zhang, M.; Zeng, Y.; Liu, J.Y. An improved grid search algorithm for parameters optimization on SVM. Appl. Mech. Mater. 2014, 644–650, 2216–2219. [Google Scholar] [CrossRef]
  22. Senthilkumaar, J.S.; Selvarani, P.; Arunachalam, R.M. Intelligent optimization and selection of machining parameters in finish turning and facing of Inconel 718. Int. J. Adv. Manuf. Technol. 2012, 58, 885–894. [Google Scholar] [CrossRef]
  23. Colak, M.E.; Varol, A. A novel intelligent optimization algorithm inspired from circular water waves. Elektron. Elektrotech. 2015, 21, 3–6. [Google Scholar] [CrossRef]
  24. Gazzaz, N.M.; Yusoff, M.K.; Ramli, M.F.; Juahir, H.; Aris, A.Z. Artificial neural network modeling of the water quality index using land use areas as predictors. Water Environ. Res. 2015, 87, 99–112. [Google Scholar] [CrossRef] [PubMed]
  25. Chtioui, Y.; Bertrand, D.; Barba, D. Feature selection by a genetic algorithm. Application to seed discrimination by artificial vision. J. Sci. Food Agric. 2015, 76, 77–86. [Google Scholar] [CrossRef]
  26. Zhang, Y.; Wang, S.; Ji, G. A comprehensive survey on particle swarm optimization algorithm and its applications. Math. Probl. Eng. 2015, 2015, 1–3. [Google Scholar] [CrossRef]
  27. Karaboga, D.; Basturk, B. A powerful and efficient algorithm for numerical function optimization: Artificial bee colony (ABC) algorithm. J. Glob. Optim. 2007, 39, 459–471. [Google Scholar] [CrossRef]
  28. Alshamlan, H.M.; Badr, G.H.; Alohali, Y.A. Genetic Bee Colony (GBC) algorithm: A new gene selection method for microarray cancer classification. Comput. Biol. Chem. 2015, 56, 49–60. [Google Scholar] [CrossRef] [PubMed]
  29. Yu, L.; Liu, H. Eficient feature selection via analysis of relevance and redundancy. J. Mach. Learn. Res. 2004, 5, 1205–1224. [Google Scholar] [CrossRef]
  30. Cao, X.H.; Stojkovic, I.; Obradovic, Z. A robust data scaling algorithm to improve classification accuracies in biomedical data. BMC Bioinform. 2016, 17, 359–368. [Google Scholar] [CrossRef] [PubMed]
Sample Availability: Not available.
Figure 1. Cancer classification accuracy (%) of different methods.
Figure 1. Cancer classification accuracy (%) of different methods.
Molecules 22 02086 g001
Figure 2. The flowchart of PSO algorithm.
Figure 2. The flowchart of PSO algorithm.
Molecules 22 02086 g002
Figure 3. The flowchart of the ABC algorithm.
Figure 3. The flowchart of the ABC algorithm.
Molecules 22 02086 g003
Figure 4. The whole frame of the proposed PA-SVM algorithm.
Figure 4. The whole frame of the proposed PA-SVM algorithm.
Molecules 22 02086 g004
Table 1. Reduced attributes by FCBF.
Table 1. Reduced attributes by FCBF.
DatasetsOriginal AttributesReduced Attributes
Breast cancer24,48192
Lung cancer28806
NervSys712928
Prostate cancer12,60027
Colon caner200014
Leukemia12,58297
Ovarian cancer15,15430
DLBCL1 1712973
DLBCL2712927
1 DLBCL represents diffuse large B-cell lymphoma.
Table 2. Classification accuracy of different methods.
Table 2. Classification accuracy of different methods.
DatasetsNo. of AttributesLIBSVM (%)GA-SVM 1 (%)PSO-SVM 2 (%)ABC-SVM 3 (%)PA-SVM 4 (%)
Breastcancer9283.5187.6387.6388.6688.66
Lung cancer664.1066.6779.4974.3679.49
NervSys2888.33909091.6791.67
Prostate cancer2790.48100100100100
Colon caner1485.4890.3290.3293.5593.55
Leukemia97100100100100100
Ovarian cancer30100100100100100
DLBCL17398.7098.7098.7098.70100
DLBCL22781.0382.7684.4882.7686.21
1 GA-SVM method is genetic algorithm combined with SVM; 2 PSO-SVM denotes particle swarm optimization combined with SVM; 3 ABC-SVM means artificial bee colony method is used to optimize SVM; 4 PA-SVM combines particle swarm optimization with artificial bee colony to optimize SVM. The bold in the table represents the optimal value.
Table 3. Details of cancer datasets.
Table 3. Details of cancer datasets.
DatasetsSamplesNo. of AttributesClassesLabels
Breast cancer9724,4812outcome prediction
Lung cancer3928802outcome prediction
NervSys6071292outcome prediction
Prostate cancer2112,6002outcome prediction
Colon caner6220002cancer or not
Leukemia7212,5823multi-category
Ovarian cancer25315,1542protein data
DLBCL17771292two category
DLBCL25871292outcome prediction

Share and Cite

MDPI and ACS Style

Gao, L.; Ye, M.; Wu, C. Cancer Classification Based on Support Vector Machine Optimized by Particle Swarm Optimization and Artificial Bee Colony. Molecules 2017, 22, 2086. https://doi.org/10.3390/molecules22122086

AMA Style

Gao L, Ye M, Wu C. Cancer Classification Based on Support Vector Machine Optimized by Particle Swarm Optimization and Artificial Bee Colony. Molecules. 2017; 22(12):2086. https://doi.org/10.3390/molecules22122086

Chicago/Turabian Style

Gao, Lingyun, Mingquan Ye, and Changrong Wu. 2017. "Cancer Classification Based on Support Vector Machine Optimized by Particle Swarm Optimization and Artificial Bee Colony" Molecules 22, no. 12: 2086. https://doi.org/10.3390/molecules22122086

Article Metrics

Back to TopTop