Skip to main content

A particle swarm based hybrid system for imbalanced medical data sampling

Abstract

Background

Medical and biological data are commonly with small sample size, missing values, and most importantly, imbalanced class distribution. In this study we propose a particle swarm based hybrid system for remedying the class imbalance problem in medical and biological data mining. This hybrid system combines the particle swarm optimization (PSO) algorithm with multiple classifiers and evaluation metrics for evaluation fusion. Samples from the majority class are ranked using multiple objectives according to their merit in compensating the class imbalance, and then combined with the minority class to form a balanced dataset.

Results

One important finding of this study is that different classifiers and metrics often provide different evaluation results. Nevertheless, the proposed hybrid system demonstrates consistent improvements over several alternative methods with three different metrics. The sampling results also demonstrate good generalization on different types of classification algorithms, indicating the advantage of information fusion applied in the hybrid system.

Conclusion

The experimental results demonstrate that unlike many currently available methods which often perform unevenly with different datasets the proposed hybrid system has a better generalization property which alleviates the method-data dependency problem. From the biological perspective, the system provides indication for further investigation of the highly ranked samples, which may result in the discovery of new conditions or disease subtypes.

Background

One of the difficulties in medical and biological data analysis is the highly skewed class distribution of different sample types. This could happen when special cases or "positive" samples are of limited size, while control or "negative" samples are more abundant [1–4]. Sometimes, disease samples are divided into subtypes, with some of which are common while others are very rare. Samples from those rare subtypes are represented as minority classes which also cause the imbalance of the class distribution [5]. Here the challenge is how to precisely and correctly classify the minority samples (rare cases) because they often carry important biological implications but tend to be ignored by the classification model which is overwhelmed by the majority samples. In data mining community this problem is known as imbalanced data classification [6] and recently received an increasing attention for its practical importance.

There are mainly two strategies in dealing with imbalanced data learning: via sampling and via cost-sensitive learning. Although cost-sensitive learning does not modify the data distribution or introduce duplicated samples, it requires the right cost-metric to assign different penalties for misclassification of different sample types. However, the correct cost-metric is often unknown a priori for a given dataset, and an improper cost-metric can significantly degenerate the classification accuracy [7]. Recently, much effort has been made for developing new sampling strategies [8–10].

Data sampling strategies can often be categorized into two groups: oversampling and undersampling. In oversampling, the samples in the minority class are increased to match the samples of the majority class, while in undersampling the samples in the majority class are decreased to match the samples of the minority class. The classical or "naive" method is to randomly select samples from minority class and use the selected samples to increase the size of the minority class for oversampling (random oversampling) or to randomly select samples from majority class and remove them so as to decrease the sample size for undersampling (random undersampling) [11]. More advanced methods attempt to employ certain intelligent strategies such as clustering [10], working on the decision boundary [12] or synthesizing new examples based on the data characteristics [8, 13]. There are also many distance-based methods which try to select the samples with the nearest distance or farthest distance between the majority class and the minority class [14]. However, currently there is no clear way to determine which rule should be followed, and simply applying random sampling often beats those "smart" methods [15]. The unsuccessful experiences imply that those methods are largely data-depended. Therefore, designing more flexible and better generalized algorithms which are self-adaptable to different data patterns in imbalanced data sampling and accurate model construction is clearly a desirable goal. This is particularly true in medical data classification and diagnosis because a false positive prediction will cause unwarranted worries while a false negative prediction will increase the risk of missing medical attention.

In previous work, Zhang and Yang successfully applied a genetic ensemble hybrid system to the feature selection of high-dimensional data [16]. If we convert the question by treating samples as features and re-adopt such kind of feature selection methods to select a subset of samples in majority class for building a balanced classification model, will such formulation lead to a better balanced classification result? This study is set out to investigate this quest. Here we formulate the problem as an optimization process and employ the particle swarm optimization (PSO) algorithm as the sample selection strategy [17, 18]. Multiple classification algorithms with several most indicative metrics for imbalance classification measurement are used as multiple objectives to guide the sample selection process. Although there are continuing debates on which technique is better [19], undersampling is often preferred because no duplicated samples are introduced [20, 21]. Therefore, our study will concentrate on selecting an optimal subset of majority samples and combine them with the minority samples for building a balanced classification model. Nevertheless, the proposed algorithm can be easily applied to oversampling by changing the target as minority samples.

Methods

System overview

The problem of using highly imbalanced dataset for pattern recognition is that the classification model built on the training data tends to be biased on preferring the majority class while ignoring the samples from the minority class. Data sampling method tries to remedy the skewed class distribution by either increasing the sample size of minority class or decreasing the sample size of majority class. However, algorithms that modify the sample distribution with greedy measures can introduce undesired bias. In this study we re-apply the techniques in feature selection to data sampling using a PSO based hybrid system. The schematic flow of sampling and evaluation processes in our hybrid system is illustrated in Figure 1.

Figure 1
figure 1

Schematic flow chart of sampling and evaluation processes. The original imbalanced dataset are split to training and test sets with an external stratified cross validation. The sampling process is then conducted on an internal stratified cross validation for creating a balanced training set. The classification models are built on the balanced training set and the test set from the external cross validation is classified using the obtained classification models.

As can be seen, the work flow can be divided into two steps, namely, sampling and evaluation. For a given dataset, an external 3-fold stratified cross validation is applied to partition the dataset into external training sets (sampling sets) and external test sets (evaluation sets). Then, the external training sets are further partitioned with an internal 3-fold stratified cross validation, which gives the internal training sets and internal test sets. The internal training sets are used for sampling, while the internal test sets are used for guiding the optimization process. The external test sets are reserved for evaluation of the balanced dataset and is excluded from the sampling procedure.

In the sampling procedure, the PSO hybrid system is used to evaluate the merit of each sample from the majority class in compensating the class imbalance. This is accomplished by generating different sample subsets of majority class and combining them with samples from the minority class for classification model construction and then for internal test fold classification. Those subsets that can create more accurate classification models are favored and optimized in each PSO iteration. When the termination criterion is met, selected samples from the last iteration are ranked by their selection frequency. After the sample selection frequency list is obtained, a balanced dataset can be created by combining the highly ranked samples of majority class with samples of minority class. In the evaluation step, different classification models are created using the balanced dataset generated by PSO hybrid system, and the external evaluation dataset is applied to evaluate the classification accuracy with different evaluation metrics. Such a training and evaluation process keeps the evaluation dataset for independent validation, which provides an unbiased evaluation.

Particle swarm based optimization

Particle swarm optimization (PSO) is a new group of population-based algorithms which uses the idea of social communication and historical behaviors to adjust the optimization process [17]. It possesses the advantages such as high-performance and global optimization, which make it very popular in many biological related applications. Specifically, Lee combined PSO with Genetic Algorithm (GA) and Support Vector Machine (SVM) for gene selection of microarray data [22], Xu et al. used PSO to optimize the structure of Recurrent Neural Network (RNN) in gene network modeling [23], while Rasmussen and Krink applied PSO for Hidden Markov Model optimization in multiple sequence alignment [24]. In our system, a binary version of PSO (BPSO) [18, 25] is employed for a new application, in which BPSO is hybridized with multiple classifiers and metrics for data sample selection and ranking.

Figure 2 gives a graphical representation of this particle swarm based hybrid module. In this module, different sample subsets are encoded as particles, and each particle is evaluated by multiple classifiers each with three evaluation metrics. The system seeks for the sample subsets that present good classification accuracy with not only a certain type of classifier but a wide range of them each provides the feedback using several evaluation criteria. The use of this hybrid system is justified with the argument that multiple criteria formulation is preferable than a single classification algorithm or evaluation metric because the results produced in this way will have a better generalization property.

Figure 2
figure 2

Particle swarm based hybrid module for data sampling. Multiple classification algorithms are used to guide the sampling process. Within each classification algorithm, three evaluation metrics are employed to evaluated the goodness of the sample subsets. PSO algorithm is used to optimize the sample subsets according to the evaluation results of each classification component.

Each sample of majority class in the training dataset is assigned an index in the particle space. The locus equals "1" if the sample is selected for building classification model or equals "0" if the sample is excluded from building the classification model. Suppose we have a population of n particles, with i be the index of a particle in the swarm (i = 1, ..., n), j be the index of dimension in the particle (j = 1, ..., m), and t be the counter of iterations. The velocity of the i th particle vi, j(t) and the position of this particle xi, j(t) is updated by BPSO with following equations:

(1)
(2)
(3)

where pbesti, jand gbesti, jare the previous best position and the best position found by informants, respectively. random() is the pseudo-random number generator that creates uniform distribution between [0-1].

Fitness and evaluation metrics

Fitness function is the optimization guide of the BPSO. It governs the update of pbesti, jand gbesti, j. It has been pointed out that in the imbalanced data evaluation a simple classification accuracy is not an indicative measure because the accuracy value is profoundly influenced by the large class [13].

Alternatively, metrics including Area Under the ROC Curve (AUC), F-Measure (FMeasure), and Geometric Mean (GMean) are often chosen as more appropriate measures [10, 12, 26, 27]. Here we combine multiple evaluation metrics in BPSO fitness function, which is defined as follows:

(4)

where L is the number of classifiers integrated in the hybrid system and fitness i (s) is formulated as follows:

(5)

where s is the sample subset to be evaluated. This fitness function is essentially a weighted combination of the above three evaluation metrics, AUC(s) is calculated using Mann Whitney statistic [28], while FMeasure(s) and GMean(s) are calculated as follows:

(6)
(7)

where each component in FMeasure(s) and GMean(s) is further defined as follows:

Precision:

(8)

Sensitivity or Recall:

(9)

Specificity:

(10)

where N TP is the number of true positive, N TN is the number of true negative, N FN is the number of false negative, and N FP is the number of false positive.

Classifiers

One limitation of previous efforts on imbalanced data analysis is that most studies only focused on Decision Tree as evaluation criterion [6]. Instead of choosing certain type of classification algorithm for evaluation, multiple classifiers have been incorporated in our particle swarm based hybrid system. The reason of utilizing multiple classifiers is to balance multiple classification hypotheses so as to reveal true improvement of the sampling dataset.

Specifically, the classification algorithms employed in the hybrid system composition includes Decision Tree (J48), k-Nearest Neighbor (k NN), Naive Bayes (NB), Random Forest (RF) and Logistic Regression (LOG). J48 is a widely used decision tree classifier. It approximates discrete-valued functions and a group of favorite features selected by the algorithm are used as the test points at the tree nodes. Each path of the node is then created for partitioning the value of the feature. k NN classifier calculates the similarity, which is called distance, of a given instance with the others and assign the given instance into the majority class which the k most similar instances belong to. Such similarity can be defined as Euclidean distance, Manhattan distance or Pearson correlation. Naive bayes classifier bases its learning strategy on probability theory. It tries to estimate the distribution of the data and classify a sample by assigning the sample into a class with the highest probability. Random forest, as its name indicates, is a collection of decision trees [29]. Instead of using a single tree to make the classification, Random forest algorithm combines the decisions of several trees each trained on a feature subset of the original dataset. Lastly, the Logistic Regression classifier uses a logistic function to compute the coefficients of input features with respect to the class label. It has been used extensively in modeling binomially distributed data.

Main loop

Putting above components together, the BPSO based hybrid system can be summarized by pseudo-code in Figure 3.

Figure 3
figure 3

The main loop of the BPSO based hybrid algorithm.

Experimental settings

Datasets

Four typical medical datasets are obtained from UCI Machine Learning Repository [30] and a genome wide association study (GWAS) dataset is obtained from the genotyping of Single Nucleotide Polymorphisms (SNPs) of Age-related Macular Degeneration (AMD) [31].

For the medical data, the first dataset named "Blood" was generated by Blood Transfusion Service Center in Taiwan. It has 568 samples denoted as not donating blood and 180 as donating blood in March 2007, and the prevalence of the dataset is 24.1%. The task is to classify these samples based on the information of blood donation frequency, recency etc. The second dataset, "Survival", was generated from the survey conducted on the survival of patients who had undergone surgery for breast cancer. It contains 225 patients who survived 5 years or longer and 81 patients died within 5 year. The prevalence of this dataset is 26.5%. The third dataset with the name of "Diabetes" is obtained from the study of diabetes in Pima Indian population. 500 samples were identified as negative while the other 268 samples were identified as positive, which gives the prevalence of 34.9%. The last dataset called "Breast" was created for breast tumor diagnosis. Within this dataset, 151 are benign samples and 47 are malignant samples, and the prevalence is 23.7%.

The GWAS dataset contains 146 samples with each sample been described by more than 100,000 SNPs. Within the 146 samples 46 are labeled as geographic atrophy either central or non-central to the macula (CGA), 50 are labeled as uniocular choroidal neovascularization (Neov), and the rest 50 are the control samples. Therefore, the task is divided to classify CGA samples from the rest (which gives a prevalence of minority class of 31.5%) and to classify Neov samples from the rest (which gives a prevalence of minority class of 34.2%). In SNPs selection, we applied the selection procedure utilized by Chen et al. [32], and obtained 17 SNPs from two Linkage Disequilibrium (LD) blocks. They are rs2019727, rs10489456, rs3753396, rs380390, rs2284664, and rs1329428 from the first block, and rs4723261, rs764127, rs10486519, rs964707, rs10254116, rs10486521, rs10272438, rs10486523, 10486524, rs10486525, and rs1420150 from the second block. Based on previous investigation of AMD [33–35], we added another six SNPs to avoid analysis bias. They are rs800292, rs1061170, rs1065489, rs1049024, rs2736911, and rs10490924. Moreover, environment factors of Smoking status and Sex are also encoded into each dataset due to their high association to the AMD development. Together, we formed the two subtype datasets with each sample represented as 25 factors.

The summary of each dataset is given in Table 1.

Table 1 Summary of the medical and biological datasets used in the experiments.

Implementation

We compare our particle swarm based sampling strategy with random undersampling, random oversampling, and clustering based sampling. Random undersampling and random oversampling are implemented by decreasing samples of majority class or increasing samples of minority class to match the counterpart with a uniformed possibility, respectively. Clustering based sampling is implemented as the base version of those described in [10], that is, to cluster the data samples with k-mean algorithm and randomly select samples of majority class according to the majority/minority ratio of each cluster and the cluster size. We used the k size of 10 for k-mean clustering and the Euclidean distance for similarity calculation.

As per the particle swarm based hybrid system, we code the particle space as an m dimension space with m equals to the size of the majority samples in the training set. Different parameter settings of the particle swarm component are investigated empirically, and we fix the best combination (as shown in Table 2) for evaluation and comparison. Different classification algorithms are implemented by using APIs of the WEKA machine learning suite [28] through the main code.

Table 2 Parameter settings of the particle swarm based hybrid system.

Results

Tables 3, 4, 5, 6, 7, 8 provide the evaluation details of each sampling method on each dataset, respectively. All results are obtained by averaging three independent trials on each dataset. We named particle swarm based hybrid system as "PSO", random undersampling as "RU", random oversampling as "RO", and clustering based sampling as "Cluster" for convenience. For each sampling method, the evaluation results are presented with respect to 3 evaluation metrics and 10 different classification algorithms including Decision Tree (J48), 3-Nearest Neighbor (3NN), Naive Bayes (NB), Random Forest with 5 trees (RF5), Logistic Regression (LOG), 1-Nearest Neighbor (1NN), 7-Nearest Neighbor (7NN), Sequential Minimal Optimization of Support Vector Machine (SMO), Random Forest with 10 trees (RF10), and Radial Basis Function Network (RBFNet). With a careful observation it is clear that in most cases PSO achieved better classification accuracy using all three evaluation metrics in comparison with the other three sampling methods. This can be further confirmed by averaging across different classification results with respect to each evaluation metric (indicated in column "R. Avg." of Tables 3, 4, 5, 6, 7, 8). Also observed is that the improvement is essentially consistent across 10 different types of classifiers. This can be seen from the row "C. Avg." of Tables 3, 4, 5, 6, 7, 8. It should be noted that only the first five classifiers are used in PSO optimization and data sampling, while the last five classifiers are only used for evaluating the generation property of the hybrid system. Also, the evaluation is done on the independent test set through external cross validation. Therefore, it is safe to draw a conclusion that re-sampling dataset using PSO can lead to a higher data sampling quality and better generalization property. For random undersampling and random oversampling we found that random undersampling is more effective, albeit in a few cases random oversampling appear to be quite competitive. As to clustering based sampling, it performs competitively to random under- and oversampling in "Diabetes", "Breast", "AMD-CGA", and "AMD-Neov" datasets but relatively poor on "Blood" and "Survival" datasets.

Table 3 Evaluation results of Blood dataset using different sampling strategies with three metrics across ten classification algorithms.
Table 4 Evaluation results of Survival dataset using different sampling strategies with three metrics across ten classification algorithms.
Table 5 Evaluation results of Diabetes dataset using different sampling strategies with three metrics across ten classification algorithms.
Table 6 Evaluation results of Breast dataset using different sampling strategies with three metrics across ten classification algorithms.
Table 7 Evaluation results of AMD-CGA dataset using different sampling strategies with three metrics across ten classification algorithms.
Table 8 Evaluation results of AMD-Neov dataset using different sampling strategies with three metrics across ten classification algorithms.

By plotting the evaluation results with respect to different evaluation metrics (shown in Figure 4), we can see that the PSO hybrid achieved the highest accuracy within all six datasets. However, it is also clear that each evaluation metric gives a different evaluation indication. That is, a sampling method "A" performing worse than another method "B" according to certain evaluation metric may be superior to the method "B" using a different evaluation metric. By plotting the evaluation results with respect to different classification algorithms (in Figure 5), it is readily noticed that different classifiers also perform differently among these datasets. But within a given dataset, there seems to have certain data-classifier correlation regardless which type of the sampling method is used. Interestingly, logistic classifier seems to be quite effective, while 1NN appears to be the most unsuccessful one.

Figure 4
figure 4

Comparison of each sampling method with respect to different evaluation metrics.

Figure 5
figure 5

Comparison of each sampling method with respect to different classification algorithms.

With above observation, it is clear that the evaluation of different data sampling strategies is compounded by different classification algorithms and evaluation metrics. Therefore, relying on a sole classifier or evaluation measure for imbalanced data sampling could potentially lead to the loss of generalization property. Caution should be drawn when a claim is made on the basis of a single type of classifier or evaluation metric.

Conclusion

In this work, several popular sampling methods are investigated on imbalanced medical and biological data classification. A particle swarm based hybrid method is proposed to improve the overall classification accuracy. The experimental results on four medical datasets and a GWAS dataset illustrated the effectiveness of the proposed method. This is quantified in our experiments by using three evaluation metrics across 10 different classification algorithms.

The study demonstrates that with a proper modification feature selection algorithms can be tailored for imbalanced data sampling. In addition to being self-adaptable to different datasets, the proposed hybrid system is quite flexible, allowing different classifiers and evaluation components to be easily integrated for any specific problem at hand. The imbalanced data sampling problem is ubiquitous in clinical and medical diagnoses as well as gene function predication and protein classification [36, 37]. The proposed hybrid system can not only recover the power of classifiers on imbalance data classification but also indicate the relative importance of samples from majority class in contrast to samples from minority class. This information could be used for further biological and medical investigations which may result in the discovery of new conditions or disease subtypes. We anticipate that such a hybrid formulation can provide a new means for tackling imbalanced data problems introduced in these applications.

Availability

The PSO sampling system is implemented in Java and is available from: http://www.cs.usyd.edu.au/~yangpy/software/Sampling

Note

Other papers from the meeting have been published as part of BMC Bioinformatics Volume 10 Supplement 15, 2009: Eighth International Conference on Bioinformatics (InCoB2009): Bioinformatics, available online at http://www.biomedcentral.com/1471-2105/10?issue=S15.

References

  1. Velez D, White B, Motsinger A, W B, Ritchie M, Williams S, Moore J: A Balanced Accuracy Function for Epistasis Modeling in Imbalanced Datasets using Multifactor Dimensionality Reduction. Genetic Epidemiology. 2007, 31: 306-315. 10.1002/gepi.20211.

    Article  PubMed  Google Scholar 

  2. Cohen G, Hilario M, Sax H, Hugonnet S, Geissbuhler A: Learning from Imbalanced Data in Surveillance of Nosocomial Infection. Artificial Intelligence in Medicine. 2006, 37: 7-18. 10.1016/j.artmed.2005.03.002.

    Article  PubMed  Google Scholar 

  3. Yang F, Wang H, Mi H, Lin C, Cai W: Using Random Forest for Reliable Classification and Cost-Sensitive Learning for Medical Diagnosis. BMC Bioinformatics. 2009, 10: S22-10.1186/1471-2105-10-S1-S22.

    Article  PubMed Central  PubMed  Google Scholar 

  4. Mazurowski M, Habas P, Zurada J, Lo J, Baker J, Tourassi D: Training Neural Network Classifiers for Medical Decision Making: The Effects of Imbalanced Datasets on Classification Performance. Neural Networks. 2008, 21 (2-3): 427-436. 10.1016/j.neunet.2007.12.031.

    Article  PubMed Central  PubMed  Google Scholar 

  5. Kapp A, Jeffrey S, Langerød A, Børresen-Dale A, Han W, Hoh D, Bukholm I, Nicolau M, Brown P, Tibshirani R: Discovery and validation of breast cancer subtypes. BMC Genomics. 2006, 7: 231-10.1186/1471-2164-8-101.

    Article  PubMed Central  PubMed  Google Scholar 

  6. Chawla N, Japkowicz N, Kotcz A: Editorial: Special Issue on Learning from Imbalanced Data Sets. SIGKDD Explorations. 2004, 6: 1-6. 10.1145/1007730.1007733.

    Article  Google Scholar 

  7. Weiss G: Mining with Rarity: A Unifying Framework. SIGKDD Explorations. 2004, 6: 7-19. 10.1145/1007730.1007734.

    Article  Google Scholar 

  8. Han H, Wang W, Mao B: Borderline-SMOTE: A New Over-sampling Method in Imbalanced Data Sets Learning. Proceedings of Advances in Intelligent Computing. 2005, 878-887. full_text.

    Chapter  Google Scholar 

  9. Khoshgoftaar T, Seiffert C, Van Hulse J: Hybrid Sampling for Imbalanced Data. Proceedings of IRI'08. 2008, 202-207.

    Google Scholar 

  10. Yen S, Lee Y: Cluster-based Under-sampling Approaches for Imbalanced Data Distributions. Expert Systems with Applications. 2009, 36 (3): 5718-5727. 10.1016/j.eswa.2008.06.108.

    Article  Google Scholar 

  11. Japkowicz N, Stephen S: The Class Imbalance Problem: A Systematic Study. Intelligent Data Analysis. 2002, 6 (5): 429-449.

    Google Scholar 

  12. Barandela R, Sanchez J, Garcia V, Rangel E: Strategies for Learning in Class Imbalance Problems. Pattern Recognition. 2003, 36: 849-851. 10.1016/S0031-3203(02)00257-1.

    Article  Google Scholar 

  13. Chawla N, Bowyer K, Hall L, Kegelmeyer W: SMOTE: Synthetic Minority Over-sampling Technique. Journal of Artificial Intelligence Research. 2002, 16: 321-357.

    Google Scholar 

  14. Zhang J, Mani I: kNN Approach to Unbalanced Data Distributions: A Case Study Involving Informaiton Extraction. Proceedings of the ICML'03 Workshop on Learning from Imbalanced Datasets. 2003

    Google Scholar 

  15. Van Hulse J, Khoshgoftaar T, Hapolitano A: Experimental Perspectives on Learning from Imbalanced Data. Proceedings of the 24th ICML. 2007, 935-942.

    Google Scholar 

  16. Zhang Z, Yang P: An ensemble of classifiers with genetic algorithm based feature selection. IEEE Intelligent Informatics Bulletin. 2008, 9: 18-24.

    Google Scholar 

  17. Kennedy J, Eberhart R: Particle swarm optimization. Proceedings of IEEE International Conference on Neural Networks. 1995, 1942-1948. full_text.

    Chapter  Google Scholar 

  18. Kennedy J, Eberhart R: A Discrete Binary Version of the Particle Swarm Algorithm. Proceedings of IEEE International Conference on Systems Man and Cybernetics. 1997, 4104-4108.

    Google Scholar 

  19. Batista G, Prati R, Monard M: A Study of the Behavior of Several Methods for Balancing machine Learning Training Data. SIGKDD Explorations. 2004, 6: 20-24. 10.1145/1007730.1007735.

    Article  Google Scholar 

  20. Drummond C, Holte R: C4.5, class imbalance, and cost sensitiveity: Why under-sampling beats over-sampling. Proceedings of the ICML'03 Workshop on Learning from Imbalanced Datasets. 2003

    Google Scholar 

  21. Barandela R, Valdovinos R: The Imbalanced Training Sample Problem: Under or over Sampling?. Proceedings of SSPR&SPR 2004, LNCS 3138. 2004, 806-814.

    Google Scholar 

  22. Lee Z: An Integrated Algorithm for Gene Selection and Classification Applied to Microarray Data of Ovarian Cancer. Artificial Intelligence in Medicine. 2008, 42: 81-93. 10.1016/j.artmed.2007.09.004.

    Article  PubMed  Google Scholar 

  23. Xu R, Wunsch D, Frank R: Inference of Genetic Regulatory Networks with Recurrent Neural Network Models Using Particle Swarm Optimiztion. IEEE/ACM Transactions on Computational Biology and Bioinformatics. 2007, 4 (4): 681-692. 10.1109/TCBB.2007.1057.

    Article  CAS  PubMed  Google Scholar 

  24. Rasmussen T, Krink T: Improved Hidden Markov Model Training for Multiple Sequence Alignment by a Particle Swarm Optimization-Evolutionary Algorithm Hybrid. Biosystems. 2003, 72 (1-2): 5-17. 10.1016/S0303-2647(03)00131-X.

    Article  CAS  PubMed  Google Scholar 

  25. Lee S, Soak S, Oh S, Pedrycz W, Jeon M: Modified Binary Particle Swarm Optimization. Progress in Natural Science. 2008, 18: 1161-1166. 10.1016/j.pnsc.2008.03.018.

    Article  Google Scholar 

  26. Cantor S, Kattan M: Determining the Area Under the ROC Curve for a Binary Diagnostic Test. Medical Decision Making. 2000, 20: 468-470. 10.1177/0272989X0002000410.

    Article  CAS  PubMed  Google Scholar 

  27. Bradley A: The use of the Area Under the ROC Curve in the Evaluation of Machine Learning Algorithms. Pattern Recognition. 1997, 30: 1145-1159. 10.1016/S0031-3203(96)00142-2.

    Article  Google Scholar 

  28. Witten IH, Frank MD: Data Mining: Practical Machine Learning Tools and Techniques (Second Edition). 2005, Elsevier

    Google Scholar 

  29. Breiman L: Random Forests. Machine Learning. 2001, 45: 5-32. 10.1023/A:1010933404324.

    Article  Google Scholar 

  30. UCI Repository of machine learning databases. [http://archive.ics.uci.edu/ml/]

  31. Klein RJ, Zeiss C, Chew EY, Tsai JY, Sackler HCRS, Henning AK, SanGiovanni JP, Mane SM, Mayne ST, Bracken MB, Ferris FL, Ott J, Barnstable C, Hoh J: Complement factor H polymorphism in age-related macular degeneration. Science. 2005, 308: 385-389. 10.1126/science.1109557.

    Article  PubMed Central  CAS  PubMed  Google Scholar 

  32. Cheng X, Zhang M, Zhang H: A forest-based approach to identifying gene and gene-gene interactions. Proc Natl Acad Sci U S A. 2007, 104 (49): 19199-19203. 10.1073/pnas.0709868104.

    Article  Google Scholar 

  33. Haines JL, Hauser MA, Schmidt S, Scott WK, Olson LM: Complement factor H variant increases the risk of age-related macular degeneration. Science. 2005, 308: 419-421. 10.1126/science.1110359.

    Article  CAS  PubMed  Google Scholar 

  34. Schmidt S, Hauser MA, Scott WK, Postel EA, Agarwal A: Cigarette smoking strongly modifies the association of LOC387715 and age-related macular degeneration. Am J Hum Genet. 2006, 78: 852-864. 10.1086/503822.

    Article  PubMed Central  CAS  PubMed  Google Scholar 

  35. Fisher S, Rivera A, Fritsche L, Babadjanova G, Petrov S, Weber B: Assessment of the contribution of CFH and chromosome 10q26 AMD susceptibility loci in a Russian population isolate. British Journal of Ophthalmology. 2007, 91: 576-578. 10.1136/bjo.2006.105577.

    Article  PubMed Central  PubMed  Google Scholar 

  36. Zhao X, Li X, Chen L, Aihara K: Protein Classification with Imbalanced Data. Proteins. 2008, 70 (4): 1125-1132. 10.1002/prot.21870.

    Article  CAS  PubMed  Google Scholar 

  37. Zhao X, Wang Y, Chen L, Aihara K: Gene Function Prediction Using Labeled and Unlabeled Data. BMC Bioinformatics. 2008, 9: 57-10.1186/1471-2105-9-57.

    Article  PubMed Central  PubMed  Google Scholar 

Download references

Acknowledgements

The authors would like to thank Joshua WK Ho from NICTA and SIT, The University of Sydney for inspiring discussions and valuable suggestions. PY is supported by a NICTA International Postgraduate Award (NIPA) and a NICTA Research Project Award (NRPA).

This article has been published as part of BMC Genomics Volume 10 Supplement 3, 2009: Eighth International Conference on Bioinformatics (InCoB2009): Computational Biology. The full contents of the supplement are available online at http://www.biomedcentral.com/1471-2164/10?issue=S3.

Author information

Authors and Affiliations

Authors

Corresponding authors

Correspondence to Pengyi Yang or Bing B Zhou.

Additional information

Competing interests

The authors declare that they have no competing interests.

Authors' contributions

PY conceived the study and drafted the manuscript. PY and LX designed and implemented the algorithms, performed the experiments. BBZ, ZZ, and AYZ revised the manuscript critically and introduced the problem initially.

Rights and permissions

This article is published under license to BioMed Central Ltd. This is an open access article distributed under the terms of the Creative Commons Attribution License (http://creativecommons.org/licenses/by/2.0), which permits unrestricted use, distribution, and reproduction in any medium, provided the original work is properly cited.

Reprints and permissions

About this article

Cite this article

Yang, P., Xu, L., Zhou, B.B. et al. A particle swarm based hybrid system for imbalanced medical data sampling. BMC Genomics 10 (Suppl 3), S34 (2009). https://doi.org/10.1186/1471-2164-10-S3-S34

Download citation

  • Published:

  • DOI: https://doi.org/10.1186/1471-2164-10-S3-S34

Keywords