Next Article in Journal / Special Issue
Robust Hybrid Beamforming Scheme for Millimeter-Wave Massive-MIMO 5G Wireless Networks
Previous Article in Journal
Makeup Interpolation Based on Color and Shape Parametrization
Previous Article in Special Issue
Reversible Steganographic Scheme for AMBTC-Compressed Image Based on (7,4) Hamming Code
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

Feature Selection Based on Swallow Swarm Optimization for Fuzzy Classification

Department of Security, Tomsk State University of Control Systems and Radioelectronics, 40 Lenina Prospect, 634050 Tomsk, Russia
*
Author to whom correspondence should be addressed.
Symmetry 2019, 11(11), 1423; https://doi.org/10.3390/sym11111423
Submission received: 14 October 2019 / Revised: 11 November 2019 / Accepted: 15 November 2019 / Published: 18 November 2019
(This article belongs to the Special Issue Information Technologies and Electronics)

Abstract

:
This paper concerns several important topics of the Symmetry journal, namely, pattern recognition, computer-aided design, diversity and similarity. We also take advantage of the symmetric structure of a membership function. Searching for the (sub) optimal subset of features is an NP-hard problem. In this paper, a binary swallow swarm optimization (BSSO) algorithm for feature selection is proposed. To solve the classification problem, we use a fuzzy rule-based classifier. To evaluate the feature selection performance of our method, BSSO is compared to induction without feature selection and some similar algorithms on well-known benchmark datasets. Experimental results show the promising behavior of the proposed method in the optimal selection of features.

1. Introduction and Literature Review

Feature selection implies extracting a subset of features from an initial set, with these features being fully relevant to a problem at hand or the training problem. Feature selection makes it possible to (1) avoid overfitting, (2) reduce the amount of data to be analyzed, (3) improve the accuracy of classification, (4) eliminate irrelevant and "noisy" features, (5) improve the interpretability of results, and (6) visualize data [1,2].
An increase in the number of features causes a decrease in the performance of training algorithms, which contradicts the intuitive notion that a larger number of features provides more information and improves the accuracy of classification. The reason is that, with increasing number of features, it is also necessary to increase the amount of training data, which are required to generate classification rules. These rules determine the relationship between features and class labels. In addition, features that do not contain information about class labels can reduce classification accuracy and slow down the training process [3]
Feature selection methods are divided into three groups: filters, wrappers, and embedded methods [4,5,6]. Filters are based on the generalized properties of training data and do not use any classifier construction algorithm in the process of feature selection. The advantages of this approach are relatively low computational complexity, sufficient generalization capability, and independence from the classifier. Its main disadvantage is that features are often selected independently [6]. Wrappers include the classifier construction procedure in the feature selection process and use the prognostic accuracy of the classifier to estimate the selected subset of features. The interaction with the classifier generally yields better results as compared to filters; however, it increases the computational complexity of the method and there is a risk of overfitting [6]. Embedded methods select features in the process of training and integrate the feature selection procedure into the classifier construction algorithm. In [7], a hybrid method that combines filters, wrappers, and feature weighting was proposed.
In [6], it was noted that there is no best method for feature selection, and the researcher should focus on finding a good method for each particular problem.
The feature selection problem can be modeled as a binary optimization problem [8], which is an NP-hard one [4]. Its optimal solution is guaranteed only by exhaustive search. Metaheuristic methods allow one to find sub-optimal solutions of this problem without exploring the entire solution space. However, most metaheuristics were designed for a continuous search space. A binary search space poses the problem of discontinuity and non-differentiability, which makes it difficult to use classical deterministic optimization methods [9]. In binary problems, it is required to reduce the number of possible states to binary solutions. There are many binarization methods; below, we discuss the main ones.
In this paper, we present a novel method for feature selection based on binary swallow swarm optimization (BSSO). The binarization of the continuous swallow swarm metaheuristics is carried out using a special function.
The main contribution of this paper is as follows.
  • The original swallow swarm algorithm is designed for continuous optimization; for the first time we offer a new binary version of swallow swarm optimization for solving binary optimization problems.
  • A novel feature selection method based on binary swallow swarm optimization is proposed. This is the first work applying the binary swallow swarm optimization to feature selection.
  • As an example of building fuzzy rule-based classifiers, the proposed method is compared with wrapper feature selections based on other metaheuristics, feature selection algorithm based on mutual information, and algorithm without feature selection.
  • The Wilcoxon signed-rank test is used to evaluate the proposed method.
  • A multiple regression equation is found that reflects the relationship between the BSSO runtime and the number of features, the number of instances, and the number of classes.
The paper is organized as follows. Section 1 overviews some related works. In Section 2, a fuzzy rule-based classifier is presented. Section 3 describes an algorithm for generating the fuzzy rule base. Feature selection based on the proposed method is discussed in Section 4. In Section 5, the experimental setups and results are presented. Finally, Section 6 provides the conclusions.

1.1. Literature Review

In this section, we discuss some works related to our research, which address the binarization of the metaheuristics designed for continuous optimization.
The genetic algorithm (GA) is one of the well-known tools for binary optimization and feature selection. GA solutions are represented as a set of binary vectors over which selection, crossover, and mutation are performed [10,11,12,13].
Harmonic search uses a special type of memory that stores harmonic solutions. A harmonic is a vector of binary values. In [14], we investigated two methods for forming a new harmonic: By inverting the current bit and by replacing the current bit with the bit of the best harmonic available in the harmonic memory. Both the methods were used in the fuzzy classifier for feature selection. In [15], harmonic search was employed to select features from multidimensional unbalanced datasets.
The ant colony optimization algorithm [16] was proposed for solving combinatorial optimization problems. This algorithm is also employed for feature selection: In [17], for a Takagi-Sugeno fuzzy classifier; in [18], for a classifier based on a back propagation neural network; in [19], for C4.5, naive Bayes, and k-nearest neighbor classifiers; and in [20], for support vector machine, linear discriminant analysis, random forest, k-nearest neighbors, and decision tree classifiers.
However, most metaheuristics were designed for searching in a continuous space; hence, to solve binary optimization problems, they need to be modified. Below, we describe the most popular methods used to binarize continuous metaheuristics without affecting the principles of the search process.

1.1.1. Quantum Methods

In [21], the problems of feature selection and parameter optimization for neural networks were solved using a quantum particle swarm optimization (PSO) method, with features being represented as quantum bits (Q-bits). The principles of quantum superposition and quantum probability were employed to speed up the search for the optimal set of features.
Researchers in [22] proposed a hybrid swarm intelligence algorithm based on quantum computations and a combination of the firefly algorithm and PSO for feature selection. Quantum computations provided a good tradeoff between the intensification and diversification of search, while the combination of the firefly algorithm and PSO made it possible to efficiently investigate the generated subsets of features. To evaluate the relevance of these subsets, rough set theory was employed.
Han and Kim in [23] described a quantum evolutionary algorithm based on the concept and principles of quantum computing. The algorithm represents a solution as a Q-bit chromosome and uses a quantum operator to update it (this operator is a modified version of the logical rotation operator).
In [24], to solve binary optimization problems, a quantum gravitational search algorithm was designed by supplementing the basic structure of the gravitational search procedure with the following elements of quantum computing: quantum bit, quantum measurements, superposition, and modified quantum rotation operators.

1.1.2. Modified Algebraic Operations

Yuan et al. in [25] described the binary PSO algorithm; it has all basic characteristics of the classical PSO with the only difference being a zero inertia coefficient. To evaluate the velocity of particles, subtraction was replaced by the XOR operator, arithmetic multiplication was replaced by conjunction (AND), and addition was replaced by disjunction (OR). To compute a new position of the particle, addition was replaced by the XOR operator. The same logical operators were employed in [26] to discretize the swallow swarm optimization algorithm when solving the traveling salesman problem.
In [27], four logical operators—OR, AND, XOR and NOT—were analyzed as applied to the binarization of the artificial bee colony algorithm and only two of them (XOR and NOT) were found useful.
Korkmaz and Kiran [28] modified the artificial algae algorithm to solve the binary optimization problem. The modification involved the introduction of the XOR operator and the stigmergic update rule. Stigmergic behavior was implemented using two new counters affected by the results of the XOR operator and artificial agents in the algorithm.
In [29], binarization of the continuous spider monkey algorithm was performed using the logical operators AND, OR, and XOR. The proposed algorithm is designed for thinning of concentric circular antenna arrays. In [30], the binary spider monkey algorithm is used to feature selection for a fuzzy classifier.
In the binary artificial bee colony algorithm called DisABC [31], the arithmetic difference operator in the continuous algorithm was replaced by the measure of difference between binary vectors, expressed in terms of Jaccard’s coefficient. A specific property of this measure is that, even in a continuous space, its result can be used to generate a new binary solution vector. To improve the efficiency of DisABC, it was supplemented with a local search procedure. This procedure changes the value of the zero bit in the binary vector to 1 while simultaneously setting the bit with the value 1 to 0. The procedure does not change the number of 1-valued bits in the vector [31].

1.1.3. Transfer Functions

In binary metaheuristics, transfer functions are responsible for transforming the continuous search space into the discrete one. In 1997, Kennedy and Eberhart were the first to apply a sigmoid transfer function in the binary version of PSO [32]. In [33], six transfer functions divided into two families—S-shaped and V-shaped—were used for the binarization of PSO. The comparative analysis showed that the family of V-shaped transfer functions significantly improves the performance of the binary PSO.
The widespread use of transfer functions is hindered by the lack of a methodology for selecting these functions as a good alternative to simple trial and error. This selection can be dynamic, taking into account past search experience [34]. In [35], to achieve a tradeoff between the diversification and intensification of PSO, time-varying transfer functions were proposed.
In the binary version of gravitational search [36], some basic concepts associated with updating the positions of particles were modified. The current value of bits was changed with the probability computed based on the velocity of a particle, i.e., the binary gravitational search algorithm updated the velocity and formed a new position of the particle as 1 or 0 with the given probability. In [34], it was suggested that, for slow velocities, the probability of change in the position of a particle should be close to zero, while for fast velocities, this probability should be high. As a probability function, the hyperbolic tangent was employed. In [37], binary gravitational search with S-shaped and V-shaped functions was used to select features for a fuzzy classifier; in [38], for a classifier based on k-nearest neighbors.
S-shaped and V-shaped transfer functions were successfully applied to binarize the butterfly optimization algorithm [39], the grasshopper optimization algorithm [40], dragonfly algorithm [41], the gray wolf algorithm [42], the salp swarm algorithm [43], and the brainstorm algorithm [44]; they were also used to construct hybrid binary algorithms [45].
In [46], an algorithm based on k-means clustering was proposed for the binarization of continuous swarm intelligence metaheuristics. The authors also presented a methodology for setting binarization parameters, which allows one to control the binarization process.

2. Fuzzy Rule-Based Classifier

Fuzzy classifiers, which belong to rule-based methods, have significant advantages in terms of their functionality, as well as their design and subsequent analysis. A unique advantage of fuzzy classifiers is the interpretability of classification rules [47,48].
Suppose that x = (x1, x2, …, xD)∈RD is a D-dimensional feature space and C = {c1, c2, …, cm} is a set of class labels. Then, the classification problem can be reduced to defining, on the set of class labels, a label that corresponds to the feature vector of an object to be classified.
A fuzzy classifier is given by a base of production rules of the following form [37]:
Ri: IF s1x1 = A1i AND s2x2 = A2i AND … AND sDxD = ADi THEN class = ci, i = 1, …, R,
where Aki is the fuzzy term that characterizes the k-th feature in the i-th fuzzy rule (k = 1,…, D), R is the number of fuzzy rules, and S = (s1, s2, …, sD) is the binary feature vector, where skxk indicates the presence (sk = 1) or absence (sk = 0) of a feature in the classifier.
On a given dataset {(xp; cp), p = 1, 2, …, Z} the class label is defined as follows:
c l a s s   =   c t , t = arg max j = 1 , 2 , , m β j , β j ( x p ) = R i c l a s s i = c j k = 1 D μ A k i ( x p k ) ,
μ A k i ( x p k ) is the symmetric membership function for the fuzzy term Aki at the point xpk.
The measure of classification rate is defined as a ratio between the number of correctly assigned class labels and the total number of objects to be classified:
E ( θ , S ) = p = 1 Z { 1 ,   i f   c p = arg max j = 1 , 2 , , m f j ( x p ; θ , S ) 0 ,   o t h e r w i s e Z ,
where f(xp; θ, S) is the output of the fuzzy classifier with the parameters θ and features S at the point xp.
To construct the fuzzy classifier, two problems—fuzzy rule base generation and feature selection—need to be solved. The first problem is solved by generating a fuzzy rule base based on the extreme values in each class, while the second problem is solved by the BSSO algorithm.

3. Fuzzy Rule Base Generation

The algorithm generates the initial rule base for the fuzzy classifier that contains one rule of each class [49]. The rules are formed based on the extreme values in the training sample Tr = {(xp; cp), p = 1, 2,…, Z}. Let us introduce the following designations: m is the number of classes; D is the number of features. A pseudo code of the Fuzzy rule base generation algorithm is shown in Algorithm 1.
Algorithm 1 Fuzzy rule base generation algorithm.
1: Input: m, Tr.
2: Output: fuzzy rule base Ri (where i = 1, 2…, m).
3: begin
4: for i←1 to m do
5:  for k←1 to D do
6:     Search   a   left   border   of   membership   function   μ A k i ( x k ) :
   
7:                      a min ( p = 1 , 2 , , Z ) ( c p = i ) x p k ;
8:  Search   a   right   border   of   membership   function   μ A k i ( x k ) :
9:                      c max ( p = 1 , 2 , , Z ) ( c p = i ) x p k ;
10: Calculate a center of membership   function μ A k i ( x k ) :
11:                     ba + (ca)/2;
12: Create a symmetric triangular membership function with borders a and c, and center b for fuzzy term Aki;
13: end
14:  Create   rule   R i   with   μ A k i ( x k ) membership functions (where k = 1, 2, …, D) and output ckk;
15: end
16: end

4. Wrapper-Based Feature Selection Algorithm

4.1. Swallow Swarm Optimization

Swallow swarm optimization is a population-based metaheuristic based on the algorithm proposed in 2013 by Neshat et al. for a continuous case [50].
At the beginning of each iteration, the population is sorted based on the value of the objective function. Then, the following roles are assigned:
  • Head leader is a particle with the best value of the objective function;
  • Local leaders are l particles that follow the head leader in accordance with the value of the objective function;
  • Aimless particles are k particles with the worst value of the objective function;
  • Explorers are all other particles.
On the current iteration, head leaders do not move, acting as beacons for explorer particles, which, in turn, explore the search space between the nearest local leader and the head leader. Explorer particles change their positions by the following formulas:
θ e ( t + 1 ) = θ e ( t ) + V ( t + 1 ) , V ( t + 1 ) = V H L ( t + 1 ) + V L L ( t + 1 ) , V H L ( t + 1 ) = V H L ( t ) + r a n d ( 0 , 1 ) ( θ e b e s t ( t ) θ e ( t ) ) + r a n d ( 0 , 1 ) ( θ H L ( t ) θ e ( t ) ) , V L L ( t + 1 ) = V L L ( t ) + r a n d ( 0 , 1 ) ( θ e b e s t ( t ) θ e ( t ) ) + r a n d ( 0 , 1 ) ( θ L L ( t ) θ e ( t ) ) ,
where θe is the position of the explorer, θHL is the position of the head leader, θLL is the position of the local leader nearest to the explorer, θebest is the best position, V is the velocity vector of the particle, V H L is the velocity vector of the particle moving to the head leader, and V L L is the velocity vector of the particle moving to the nearest local leader.
In contrast to [50] we decide not to select the parameters αHL, βHL,
αLL and βLL which are used to compute the velocity vectors with respect to the head and local leaders. Our experiments showed that the corresponding procedure increases the runtime of the algorithm without any significant improvement of the result. In this work, all these parameters are set to 1.
The formula for changing the positions of aimless particles is also modified because the original formula can cause particles to gather at the boundaries of the search space or even go beyond it. Our formula reduces the probability of this behavior and also allows explorer particles to slightly affect the behavior of aimless particles. To change the position of aimless particles, the following formulas are used:
θ O ( t + 1 ) = r a n d ( 0.5 , 2 ) V S S , V S S = j = 1 N k θ e j ( t ) N k ,
where θO is the position of aimless particle, θj is the position of the j-th particle, N is the total number of particles in the population, and k is the number of aimless particles.
Once the termination condition is met, the algorithm returns the position of the head leader as a new solution.

4.2. Binary Swallow Swarm Optimization Algorithm

This section describes the proposed feature selection method based on the binary swallow swarm optimization (BSSO) algorithm. BSSO adapts the original algorithm to solve feature selection problems.
In [26], the authors provide discrete swallow swarm optimization to solve the well-known traveling salesman problem. This algorithm uses operators that can only be used to solve this particular problem. Here, the position is a Hamiltonian cycle, and the velocity is defined as a set of permutation between two cities. In contrast to [26] in this work, we use a special function merge to update the position of particles. As its input, this function receives two vectors X and Y, as well as the number p, which determines the influence of X on Y, ranging from 0 to 1. The function merge yields the vector Z each element of which is found as follows: if the values Xi and Yi coincide, then has the same value; otherwise, Zi takes the value Xi with the probability p or takes the value Yi with the probability (1–p).
m e r g e ( X , Y , p ) i = { X i , i f r a n d ( 0 , 1 ) < p Y i , o t h e r w i s e , i = 1 , 2 , , D .
This is due to the fact that all solutions have different classification accuracies. If a feature is included in a solution that has higher classification accuracy, then this feature is more likely to be relevant. Conversely, if a feature is not included in a solution with higher classification accuracy, then this feature is more likely to be noise. Thus, this approach allows a new solution to include more features that are potentially relevant and to exclude more features that are potentially noise. On the other hand, by varying p, it is possible to control the effect of randomness when computing a new solution, so that the algorithm does not converge too quickly and is not stuck at local optima.
This algorithm represents solutions as vectors S that encode features. At the first step of the algorithm, a population (set) of vectors S is generated (randomly or in some other way). The number of vectors in the population is a preset integer, which is also referred to as the population size. For each vector, a measure of classification accuracy E is computed (Equation (1)). On each iteration, all vectors are sorted in descending order of E. The first element becomes the head leader. The next l solutions are local leaders, n worst vectors are aimless particles, and all other vectors are explorer particles. The integer variables l and n are also specified beforehand. Explorer particles change their positions based on the positions of the leaders, while aimless particles do so randomly.
Below are the corresponding formulas for explorers:
S e ( t + 1 ) = m e r g e ( V ( t + 1 ) , S e ( t ) , p v e ) , V ( t + 1 ) = m e r g e ( V H L ( t + 1 ) ,   V L L ( t + 1 ) , p v h l ) , V H L ( t + 1 ) = m e r g e ( m e r g e ( S H L ( t ) , S e ( t ) , p h e ) , r a n d { 0 , 1 } D ,   p h e r ) , V L L ( t + 1 ) = m e r g e ( m e r g e ( S L L ( t ) , S e ( t ) , p l e ) , r a n d { 0 , 1 } D , p l e r ) ,
where SHL is the position of the head leader, SLL is the position of the local leader, Se is the position of the explorer, VHL is the velocity vector with respect to the head leader, VLL is the velocity vector with respect to the nearest local leader, V is the common velocity vector, pve is the effect of the velocity vector on the position of the explorer, pvhl is the effect of the velocity vector with respect to the head leader on the velocity vector with respect to the local leader, phe is the effect of the head leader’s position on the position of the explorer, pher is the combined effect of the head leader and explorer on a random vector, ple is the effect of the local leader’s position on the position of the explorer, and pler is the combined effect of the local leader and explorer on a random vector. A pseudo code of the BSSO is shown in Algorithm 2.
Algorithm 2 Binary Swallow Swarm Optimization.
1: Input: train data.
2: Output: SHL – position of the head leader.
3: Parameters: iterations – maximum number of cycles, N – population size, D – dimension, pvs, pvhl, phe, pher, ple, pler, l – local leaders, k – aimless particles.
4: begin
5: for ito N do
6:   Initialize each solution Si in the population: Sirand{0,1}D;
7:    Select j-th (j = 1,2,…,D) feature for subset Sub where Sij = 1;
8:   Build reduced dataset (subtra) based on Sub;
9:   Evaluate fitness value (fitnessi) of Sub: fitnessierrorrate;
    Evaluate fitness value (fitnessi) of Sub: fitnessierrorrate;
10: end
11:  SHLSk, where k = min i = 1 , 2 , .. , N ( f i t n e s s i ) ;
12: for iter←1 to iterations do
13:    for ito N do
14:       Find nearest local leader SLL among population {S1, S2, …, SN};
15:       Evolve a new solution Se={f1, f2, …, fD} using Equation (2);
16:       Select j-th feature (j = 1,2,…,D) for subset Sub, where Sej = 1;
17:       Build reduced dataset (subtra) based on Sub;
18:        Evaluate fitness value (fitnessi) of Sub: fitnessierrorrate;
19:       if fitnessSe< fitnessi then
20:          SiSe;
21:          fitnessifitnessSe;
22:       end
23:    end
24:      SHL     S k ,   where   k = min i = 1 , 2 , .. , N ( f i t n e s s i ) ;
25: end
26: end

5. Experiment

5.1. Datasets and Parameter Setting

To validate our method, we used 30 real datasets from the knowledge extraction based on evolutionary learning (KEEL) repository [51]. The experiment was carried out as follows: first, a fuzzy classifier was constructed on all features from the source dataset. Then, using the feature selection algorithm, some of the features were removed, and the classification accuracy on the remaining features was estimated. Parameter optimization was not carried out. The experiments were conducted based on the tenfold cross-validation scheme, whereby the optimal subset of features was determined on each of ten subsamples. The fuzzy classifier was constructed on the subset found, and its average classification accuracy was determined on the training and test datasets. At the end of the experiment, the average number of selected features and the average accuracy of classification based only on these features were determined. Table 1 describes 30 datasets used in the experiments.
The parameter settings for the BSSO algorithm are shown in Table 2.

5.2. Comparison with the Other Approaches

BSSO was compared with two other representative methods, wrapper feature selection based on a random search algorithm (RS), feature selection algorithm based on mutual information (IG), and algorithm without feature selection (All features) on 30 benchmark datasets.
BSSO was compared with other representative methods, wrapper feature selections based on the binary spider monkey algorithm (BSMA) [30], the binary gravitational search algorithm (BSGA) [37], the binary brain storm optimization algorithm (BBSO) [52], the random search algorithm (RS), as well as a feature selection algorithm based on mutual information (IG) [53], and a algorithm without feature selection (All features) on well-known benchmark datasets.
Then, the averaged error rates were used as fitness values of the corresponding feature subsets. Equation (1) evaluates the best feature subset by using the fuzzy classifier without optimizing the classifier’s parameters to obtain the classification error rate.
For each dataset, experiments to examine the feature selection performance of each algorithm were conducted for 30 independent runs Table 3 shows the experimental results of four different feature selection methods. For each method, the table presents the average classification accuracy on the training set (Learn), the average classification accuracy on the test sample (Test), and the average number of the selected features (F‘).
Table 4 shows the average of accuracy and number of features for wrapper methods, here the symbol S means the use of the S-shaped transfer function, and the symbol V means the use of the V-shaped function.
A statistical significance test (related-samples Wilcoxon signed-rank test) was carried out to assess the classification performance of the methods. The test is considered “safer” because it does not imply normal distribution, and outliers have less effect on the result [12]. The purpose of the Wilcoxon test is to determine whether the results yielded by two methods are independent (i.e., reject the null hypothesis). The null hypothesis was that different feature selection methods generate similar results or the median of differences between different feature selection methods equals zero. The null hypothesis is rejected (the p-value is less than or equal to the significance level) if the differences between the methods are significant. The significance level in the Wilcoxon test is selected as 0.05. Table 4 shows the results of the Wilcoxon test for the pairwise comparison of BSSO and different feature selection methods and algorithm without feature selection. The BCCO algorithm showed better accuracy and fewer features compared to the RS algorithm. These differences are statistically significant. The BCCO algorithm showed better accuracy and fewer features compared to the IG algorithm. Differences in accuracy are statistically significant. Differences in the number of characters are not statistically significant. The BCCO algorithm showed better accuracy and fewer features (with the exception of two cases) compared to other metaheuristics, although these differences are not statistically significant.
The feature selection is a binary optimization problem, and the No Free Lunch theorem assumes that no concrete algorithm gives the best results for all optimization problems [54], so new optimization algorithms are being developed. It was noted in [6] that there is no single best method for feature selection, and the researcher should focus on finding a good method for each specific problem.
The time taken to execute the proposed BSSO is given in Table 5 in comparison with the time required for execution of IG and RS. All these methods were executed on the same machine with configurations: Intel Core i5-3570, with 3.40 GHz and a RAM of 8 GB. #C has been used as the programming language.
As can be seen from Table 6, IG achieved the best execution time, mainly due to its structure, in which the classifier is missing. The binary SSO produced comparable results with RS. However, BSSO’s good accuracy on finding optimal solutions more than RS and IG compensates its computational inefficiency.
Based on the results of the experiment, the authors developed a relationship between execution time and number of attributes, number of instances, and number of classes using multiple linear regression. Regression finds the target function fitting the input data with minimum error. The regression equation is as follows:
tBSSO = -285.890 + 60.487∙NoCl +7.682∙NoFe + 0.022∙NoEx,
where tBSSO is the execution time of BSSO, NoCl is the number of classes, NoFe is the number of features, NoEx is the number of examples.
In our example, the fitted model has a coefficient of determination of R2 = 0.782, which indicates that the model describes the data well. The Table 7 shows a list of the estimated coefficients of the multiple linear regression model with the significance level, t-statistics and confidence intervals.
For three data sets, Optdigits, Spambase, Coil2000, three algorithms for selecting features were running, IG, RS, BSSO, and the number of selected functions for each algorithm was recorded. Then a fuzzy classifier was applied without optimizing the parameters for each newly acquired data set containing only the selected functions. Figure 1, Figure 2 and Figure 3 shows the average classification rates of the methods in the testing partitions versus the number of selected features.
Figure 1, Figure 2 and Figure 3 shows that the suggested method exhibits the best performance. Based on the foregoing, we can draw the following conclusions.
  • The proposed method of feature selection on some data sets allows to obtain a classification rate exceeding 90%, which indicates that the feature selection method is effective by reducing the amount of data processing.
  • The classification rate of the increases with an increase in the number of features selected. When the number of selected features reaches a certain value, the classification rate decreases.
  • The proposed method allows selecting the optimal features.

6. Conclusions

In this paper, we have addressed the problem of wrapper-based feature selection. We have applied binary swallow swarm optimization to the problem of feature selection for fuzzy classification. It is important to note that the parameters of the fuzzy classifier have not been optimized, and the number of fuzzy rules has been minimal (it corresponded to the number of classes in the dataset).
The proposed feature selection method is based on a special function that compares two binary vectors to form a new one, taking into account the effect of the first vector on the second one. This approach allows a new solution to include more features that are potentially relevant and to exclude more features that are potentially noise.
To demonstrate that the performance of BSSO is statistically significant in comparison to the other feature selection methods, the non-parametric Wilcoxon signed-ranks test with the significant level of 0.05 has been carried out. Based on the results of the investigation, it can be concluded that BSSO is competitive with the other methods.
BSSO has one disadvantage that we will address in our future work. This disadvantage is a large number of tunable parameters that need to be selected empirically. Transfer learning can be a solution to this problem. We also intend to investigate the effectiveness of the proposed method in constructing classifiers of other types.
Two disadvantages can be attributed to the BSSO. The first one is a large number of tunable parameters that need to be selected empirically. Transfer learning can be a solution to this problem. The second drawback of BSSO, which all wrappers have, is heavy computational burden. This disadvantage comes from the nature of this approach.
In the future, we also intend to investigate the effectiveness of BSSO in constructing classifiers of other types.

Author Contributions

Conceptualization, A.S.; data curation, A.S. (Artem Slezkin) and K.S.; funding acquisition, A.S. (Alexander Shelupanov); investigation, A.S. (Artem Slezkin) and I.H.; methodology, I.H. and A.S. (Alexander Shelupanov); project administration, K.S.; software, A.S. (Artem Slezkin); supervision, A.S. (Alexander Shelupanov), validation, I.H.; writing—original draft preparation, A.S. (Artem Slezkin) and I.H., writing—review and editing, K.S., I.H. and A.S. (Alexander Shelupanov).

Funding

This research was supported by the Ministry of Education and Science of the Russian Federation for 2017–2019, project no. 2.3583.2017/4.6.

Conflicts of Interest

The authors declare no conflict of interest. The sponsors had no role in the design, execution, interpretation, or writing of the study.

References

  1. Garcia, S.; Luengo, J.; Herrera, F. Data Preprocessing in Data Mining; Intelligent Systems Reference Library; Springer International Publishing: Cham, Switzerland; New York, NJ, USA; Berlin, Germany, 2015; Volume 72, pp. 59–139. ISBN 978-3-319-10246-7. [Google Scholar]
  2. Alkuhlani, A.; Nassef, M.; Farag, I. Multistage Feature Selection Approach for High-Dimensional Cancer Data. Soft Comput. 2017, 21, 6895–6906. [Google Scholar] [CrossRef]
  3. Jalalirad, A.; Tjalkens, T. Using Feature-Based Models with Complexity Penalization for Selecting Features. J. Signal Process. Syst. 2018, 90, 201–210. [Google Scholar] [CrossRef]
  4. Kohavi, R.; John, G.H. Wrappers for Feature Subset Selection. Artif. Intell. 1997, 97, 273–324. [Google Scholar] [CrossRef]
  5. Ramirez-Gallego, S.; Mourino-Talin, H.; Martinez-Rego, D.; Bolon-Canedo, V.; Benitez, J.M.; Alonso-Betanzos, A.; Herrera, F. An Information Theory-Based Feature Selection Framework for Big Data Under Apache Spark. IEEE Trans. Syst. Man Cybern. Syst. 2018, 48, 1441–1453. [Google Scholar] [CrossRef]
  6. Bolon-Canedo, V.; Sanchez-Marono, N.; Alonso-Betanzos, A. Feature Selection for High-Dimensional Data; Springer: Heidelberg, Germany, 2015; ISBN 978-3-319-21857-1. [Google Scholar]
  7. Singh, D.; Singh, B. Hybridization of Feature Selection and Feature Weighting for High Dimensional Data. Appl. Intell. 2019, 49, 1580–1596. [Google Scholar] [CrossRef]
  8. Hamedmoghadam, H.; Jalili, M.; Yu, X. An Opinion Formation Based Binary Optimization Approach for Feature Selection. Phys. A Stat. Mech. Its Appl. 2018, 491, 142–152. [Google Scholar] [CrossRef]
  9. Banitalebi, A.; Aziz, M.I.A.; Aziz, Z.A. A Self-Adaptive Binary Differential Evolution Algorithm for Large Scale Binary Optimization Problems. Inf. Sci. 2016, 367, 487–511. [Google Scholar] [CrossRef]
  10. Yang, J.; Honavar, V. Feature Subset Selection Using a Genetic Algorithm. IEEE Intell. Syst. 1998, 13, 44–49. [Google Scholar] [CrossRef]
  11. Raymer, M.L.; Punch, W.F.; Goodman, E.D.; Kuhn, L.A.; Jain, A.K. Dimensionality Reduction Using Genetic Algorithms. IEEE Trans. Evol. Comput. 2000, 4, 164–171. [Google Scholar] [CrossRef]
  12. Wu, K.; Yap, K. Feature Extraction; Guyon, I., Nikravesh, M., Gunn, S., Zadeh, L.A., Eds.; Studies in Fuzziness and Soft Computing; Springer: Berlin/Heidelberg, Germany, 2006; Volume 207, ISBN 978-3-540-35488-8. [Google Scholar]
  13. Kabir, M.M.; Shahjahan, M.; Murase, K. A New Local Search Based Hybrid Genetic Algorithm for Feature Selection. Neurocomputing 2011, 74, 2914–2928. [Google Scholar] [CrossRef]
  14. Hodashinsky, I.A.; Mekh, M.A. Fuzzy Classifier Design Using Harmonic Search Methods. Program. Comput. Softw. 2017, 43, 37–46. [Google Scholar] [CrossRef]
  15. Moayedikia, A.; Ong, K.L.; Boo, Y.L.; Yeoh, W.G.; Jensen, R. Feature Selection for High Dimensional Imbalanced Class Data Using Harmony Search. Eng. Appl. Artif. Intell. 2017, 57, 38–49. [Google Scholar] [CrossRef]
  16. Dorigo, M.; Maniezzo, V.; Colorni, A. The Ant System: Optimization by a Colony of Cooperating Agents. IEEE Trans. Syst. Man Cybern. Part B 1996, 26, 29–41. [Google Scholar] [CrossRef] [PubMed]
  17. Vieira, S.M.; Sousa, J.M.C.; Runkler, T.A. Ant Colony Optimization Applied to Feature Selection in Fuzzy Classifiers. Lect. Notes Comput. Sci. 2007, 4529, 778–788. [Google Scholar]
  18. Erguzel, T.T.; Ozekes, S.; Gultekin, S.; Tarhan, N. Ant Colony Optimization Based Feature Selection Method for QEEG Data Classification. Psychiatry Investig. 2014, 11, 243. [Google Scholar] [CrossRef] [PubMed]
  19. Saraç, E.; Ozel, S.A. An Ant Colony Optimization Based Feature Selection for Web Page Classification. Sci. World J. 2014, 16, 649260. [Google Scholar] [CrossRef]
  20. Ghimatgar, H.; Kazemi, K.; Helfroush, M.S.; Aarabi, A. An Improved Feature Selection Algorithm Based on Graph Clustering and Ant Colony Optimization. Knowl. Based Syst. 2018, 159, 270–285. [Google Scholar] [CrossRef]
  21. Abdull Hamed, H.N.; Kasabov, N.K.; Shamsuddin, S.M. Quantum-Inspired Particle Swarm Optimization for Feature Selection and Parameter Optimization in Evolving Spiking Neural Networks for Classification Tasks. In Evolutionary Algorithms; InTech: Rijeka, Croatia, 2011; pp. 133–148. [Google Scholar]
  22. Zouache, D.; Ben Abdelaziz, F. A Cooperative Swarm Intelligence Algorithm Based on Quantum-Inspired and Rough Sets for Feature Selection. Comput. Ind. Eng. 2018, 115, 26–36. [Google Scholar] [CrossRef]
  23. Han, K.H.; Kim, J.H. Quantum-Inspired Evolutionary Algorithms with a New Termination Criterion, He Gate, and Two-Phase Scheme. IEEE Trans. Evol. Comput. 2004, 8, 164–171. [Google Scholar] [CrossRef]
  24. Nezamabadi-Pour, H. A Quantum-Inspired Gravitational Search Algorithm for Binary Encoded Optimization Problems. Eng. Appl. Artif. Intell. 2015, 40, 62–75. [Google Scholar] [CrossRef]
  25. Yuan, X.; Nie, H.; Su, A.; Wang, L.; Yuan, Y. An Improved Binary Particle Swarm Optimization for Unit Commitment Problem. Expert Syst. Appl. 2009, 36, 8049–8055. [Google Scholar] [CrossRef]
  26. Bouzidi, S.; Riffi, M.E. Discrete Swallow Swarm Optimization Algorithm for Travelling Salesman Problem. In Proceedings of the ACM International Conference Proceeding Series, Rabat, Morocco, 21–23 July 2017; ACM Press: New York, NY, USA, 2017; Volume F1305, pp. 80–84. [Google Scholar]
  27. Kiran, M.S.; Gunduz, M. XOR-Based Artificial Bee Colony Algorithm for Binary Optimization. Turk. J. Electr. Eng. Comput. Sci. 2013, 21, 2307–2328. [Google Scholar] [CrossRef]
  28. Korkmaz, S.; Kiran, M.S. An Artificial Algae Algorithm with Stigmergic Behavior for Binary Optimization. Appl. Soft Comput. J. 2018, 64, 627–640. [Google Scholar] [CrossRef]
  29. Singh, U.; Salgotra, R.; Rattan, M. A Novel Binary Spider Monkey Optimization Algorithm for Thinning of Concentric Circular Antenna Arrays. IETE J. Res. 2016, 62, 736–744. [Google Scholar] [CrossRef]
  30. Hodashinsky, I.A.; Nemirovich-Danchenko, M.M.; Samsonov, S.S. Feature Selection for Fuzzy Classifier Using the Spider Monkey Algorithm. Bus. Inform. 2019, 13, 29–42. [Google Scholar] [CrossRef]
  31. Kashan, M.H.; Nahavandi, N.; Kashan, A.H. DisABC: A new artificial bee colony algorithm for binary optimization. Appl. Soft Comput. J. 2012, 12, 342–352. [Google Scholar] [CrossRef]
  32. Kennedy, J.; Eberhart, R.C. A Discrete Binary Version of the Particle Swarm Algorithm. In Proceedings of the 1997 IEEE International Conference on Systems, Man, and Cybernetics. Computational Cybernetics and Simulation, Orlando, FL, USA, 12–15 October 1997; IEEE: Piscataway, NJ, USA, 1997; Volume 5, pp. 4104–4108. [Google Scholar]
  33. Mirjalili, S.; Lewis, A. S-Shaped Versus V-Shaped Transfer Functions for Binary Particle Swarm Optimization. Swarm Evol. Comput. 2013, 9, 1–14. [Google Scholar] [CrossRef]
  34. Crawford, B.; Soto, R.; Astorga, G.; Garcia, J.; Castro, C.; Paredes, F. Putting Continuous Metaheuristics to Work in Binary Search Spaces. Complexity 2017, 2017, 8404231. [Google Scholar] [CrossRef]
  35. Islam, M.J.; Li, X.; Mei, Y. A Time-Varying Transfer Function for Balancing the Exploration and Exploitation Ability of a Binary PSO. Appl. Soft Comput. J. 2017, 59, 182–196. [Google Scholar] [CrossRef]
  36. Rashedi, E.; Nezamabadi-Pour, H.; Saryazdi, S. BGSA: Binary Gravitational Search Algorithm. Nat. Comput. 2010, 9, 727–745. [Google Scholar] [CrossRef]
  37. Bardamova, M.; Konev, A.; Hodashinsky, I.; Shelupanov, A. A Fuzzy Classifier with Feature Selection Based on the Gravitational Search Algorithm. Symmetry 2018, 10, 609. [Google Scholar] [CrossRef]
  38. Xiang, J.; Han, X.; Duan, F.; Qiang, Y.; Xiong, X.; Lan, Y.; Chai, H. A Novel Hybrid System for Feature Selection Based on an Improved Gravitational Search Algorithm and k-NN Method. Appl. Soft Comput. J. 2015, 31, 293–307. [Google Scholar] [CrossRef]
  39. Arora, S.; Anand, P. Binary Butterfly Optimization Approaches for Feature Selection. Expert Syst. Appl. 2019, 116, 147–160. [Google Scholar] [CrossRef]
  40. Mafarja, M.; Aljarah, I.; Faris, H.; Hammouri, A.I.; Al-Zoubi, A.M.; Mirjalili, S. Binary Grasshopper Optimisation Algorithm Approaches for Feature Selection Problems. Expert Syst. Appl. 2019, 117, 267–286. [Google Scholar] [CrossRef]
  41. Mafarja, M.; Aljarah, I.; Heidari, A.A.; Faris, H.; Fournier-Viger, P.; Li, X.; Mirjalili, S. Binary Dragonfly Optimization for Feature Selection Using Time-Varying Transfer Functions. Knowl. Based Syst. 2018, 161, 185–204. [Google Scholar] [CrossRef]
  42. Panwar, L.K.; Reddy, K.; Verma, A.; Panigrahi, B.K.; Kumar, R. Binary Grey Wolf Optimizer for Large Scale Unit Commitment Problem. Swarm Evol. Comput. 2018, 38, 251–266. [Google Scholar] [CrossRef]
  43. Faris, H.; Mafarja, M.M.; Heidari, A.A.; Aljarah, I.; Al-Zoubi, A.M.; Mirjalili, S.; Fujita, H. An Efficient Binary Salp Swarm Algorithm with Crossover Scheme for Feature Selection Problems. Knowl. Based Syst. 2018, 154, 43–67. [Google Scholar] [CrossRef]
  44. Papa, J.P.; Rosa, G.H.; De Souza, A.N.; Afonso, L.C.S. Feature Selection Through Binary Brain Storm Optimization. Comput. Electr. Eng. 2018, 72, 468–481. [Google Scholar] [CrossRef]
  45. Mirjalili, S.; Wang, G.G.; Coelho, L.; Dos, S. Binary Optimization Using Hybrid Particle Swarm Optimization and Gravitational Search Algorithm. Neural Comput. Appl. 2014, 25, 1423–1435. [Google Scholar] [CrossRef]
  46. Garcia, J.; Crawford, B.; Soto, R.; Astorga, G. A Clustering Algorithm Applied to the Binarization of Swarm Intelligence Continuous Metaheuristics. Swarm Evol. Comput. 2019, 44, 646–664. [Google Scholar] [CrossRef]
  47. Hu, X.; Pedrycz, W.; Wang, X. Fuzzy Classifiers with Information Granules in Feature Space and Logic-Based Computing. Pattern Recognit. 2018, 80, 156–167. [Google Scholar] [CrossRef]
  48. Ganesh Kumar, P.; Devaraj, D. Fuzzy Classifier Design Using Modified Genetic Algorithm. Int. J. Comput. Intell. Syst. 2010, 3, 334–342. [Google Scholar] [CrossRef]
  49. Mekh, M.A.; Hodashinsky, I.A. Comparative Analysis of Differential Evolution Methods to Optimize Parameters of Fuzzy Classifiers. J. Comput. Syst. Sci. Int. 2017, 56, 616–626. [Google Scholar] [CrossRef]
  50. Neshat, M.; Sepidnam, G.; Sargolzaei, M. Swallow Swarm Optimization Algorithm: A New Method to Optimization. Neural Comput. Appl. 2013, 23, 429–454. [Google Scholar] [CrossRef]
  51. Alcala-Fdez, J.; Fernandez, A.; Luengo, J.; Derrac, J.; Garcia, S.; Sanchez, L.; Herrera, F. KEEL Data-Mining Software Tool: Data Set Repository, Integration of Algorithms and Experimental Analysis Framework. J. Mult. Log. Soft Comput. 2011, 17, 255–287. [Google Scholar]
  52. Cheng, S. Brain Storm Optimization Algorithm, Concepts, Principles and Applications; Cheng, S., Shi, Y., Eds.; Springer: Cham, Switzerland, 2019; ISBN 978-3-030-15070-9. [Google Scholar]
  53. Cai, J.; Luo, J.; Wang, S.; Yang, S. Feature Selection in Machine Learning: A New Perspective. Neurocomputing 2018, 300, 70–79. [Google Scholar] [CrossRef]
  54. Wolpert, D.H. The Existence of a Priori Distinctions Between Learning Algorithms. Neural Comput. 1996, 8, 1341–1420. [Google Scholar] [CrossRef]
Figure 1. Dataset Optdigits. Average classification rates of the competing methods versus number of selected features.
Figure 1. Dataset Optdigits. Average classification rates of the competing methods versus number of selected features.
Symmetry 11 01423 g001
Figure 2. Dataset Spambase. Average classification rates of the competing methods versus number of selected features.
Figure 2. Dataset Spambase. Average classification rates of the competing methods versus number of selected features.
Symmetry 11 01423 g002
Figure 3. Dataset Coil2000. Average classification rates of the competing methods versus number of selected features.
Figure 3. Dataset Coil2000. Average classification rates of the competing methods versus number of selected features.
Symmetry 11 01423 g003
Table 1. Distributions of datasets.
Table 1. Distributions of datasets.
DatasetNumber of ClassesNumber of FeaturesNumber of Examples
apendicitis27106
balance34625
banana225300
bupa26345
cleveland513297
coil20002859822
contraceptive391473
dermatology634358
ecoli87336
glass79214
haberman23306
heart213270
hepatitis21980
ionosphere233351
iris34150
magic21019020
newthyroid35215
optdigits10645620
ring2207400
segment7192310
spambase2574597
tae35151
texture11405500
thyroid3217200
titanic232201
twonorm2207400
vehicle418846
wdbc230569
wine313178
wisconsin29683
Table 2. Parameter settings for BSSO.
Table 2. Parameter settings for BSSO.
ParameterSetting
N—Population of particles40
l—local leaders3
k—aimless particles6
Iterations300
pve0.7
pvhl0.7
phe0.9
pher0.9
ple0.8
pler0.8
Table 3. Accuracy comparison of the feature selection methods.
Table 3. Accuracy comparison of the feature selection methods.
DatasetAll featuresIGBSSO RS
LearnTestF‘LearnTestF‘LearnTestF‘LearnTest
apendicitis72.1566.774.9079.0578.403.3083.0379.323.4083.0380.23
balance46.2446.252.0038.8838.903.6046.2645.933.5046.2645.77
banana44.4544.411.0059.4259.401.0059.4259.401.0059.4259.40
bupa49.4746.921.7046.6046.892.9060.4861.152.9060.4859.98
cleveland54.0754.045.0053.5853.057.7057.0251.637.2056.9551.28
coil20009.759.6733.7037.9137.9937.6093.8493.7539.6092.8792.74
contraceptive42.6342.715.4042.3342.302.2044.6544.542.3044.6544.47
dermatology93.9589.6813.0041.1438.0920.8097.7392.4619.2097.3092.46
ecoli32.7932.893.5050.4951.403.9053.5753.323.9053.5753.32
glass55.8152.653.3025.3121.626.0061.0054.026.3063.5452.71
haberman45.4345.472.0044.7344.831.1070.1570.611.1070.1570.61
heart56.8755.935.1058.2655.923.6070.4164.073.5070.0464.07
hepatitis64.3660.089.2051.1441.658.1094.3185.168.1093.2084.98
ionosphere87.9487.459.4067.1467.007.0085.4181.288.9078.9274.36
iris93.8594.002.0096.7496.672.1096.8994.672.0096.8994.67
magic56.7056.756.0060.1560.163.9071.3971.443.9071.3971.44
newthyroid96.5495.393.0094.8994.393.4097.8895.843.5097.8895.37
optdigits23.4123.1222.3024.4624.1037.8047.3246.0035.6042.9341.72
ring49.5149.5210.2049.1749.191.0058.5058.444.6054.5253.20
segment72.2071.486.0020.3120.098.3088.2686.028.8087.7885.46
spambase56.8156.7327.9063.8464.2922.6073.5773.4525.1070.9370.74
tae35.1736.413.5034.6634.412.8041.8041.073.0041.8040.40
texture64.4868.5519.1027.8827.8413.0068.4968.3116.0066.8566.09
thyroid22.5022.5017.3092.3192.361.5093.3393.241.8088.3889.14
titanic68.5366.521.0077.6177.871.5077.6177.871.5077.6177.87
twonorm96.8796.9110.1088.3288.2019.7096.8996.9119.9096.6795.68
vehicle25.4024.838.0021.9321.758.1049.2443.747.7047.4745.88
wdbc90.4390.1718.5093.4092.9710.9097.3496.1211.7096.0995.78
wine89.8287.576.1050.0145.366.5096.5794.417.0095.8694.31
wisconsin92.8192.256.3075.6874.985.6094.4293.857.1094.6392.75
Average59.7058.928.8855.5854.748.5874.2372.279.0073.2771.23
Table 4. Results of using wrapper feature selection methods.
Table 4. Results of using wrapper feature selection methods.
DatasetBMABGA(S)BGA(V)BBA(S)BBA(V)
TestF‘TestF‘TestF‘TestF‘TestF‘
apendicitis76.362.90Nr 1nrnrnr78.763.1077.113.40
balance46.244.00nrnrnrnr46.083.0446.083.04
banana59.361.00nrnrnrnrnrnrnrnr
bupa58.172.7059.802.8060.002.7057.302.7456.562.66
cleveland54.158.2052.507.3054.402.8053.306.4052.008.36
coil200074.9631.390.6038.594.001.00nrnrnrnr
contraceptive44.062.80nrnrnrnrnrnrnrnr
dermatology90.9921.6nrnrnrnrnrnrnrnr
ecoli51.223.90nrnrnrnr50.303.3450.903.48
glass56.126.2056.005.1053.205.9057.605.3055.405.73
haberman67.961.10nrnrnrnr57.501.9057.601.90
heart74.215.4067.002.8067.703.0066.603.3666.704.20
hepatitis85.518.1087.207.9082.505.3084.529.4081.229.17
ionosphere91.5816.8nrnrnrnr89.2916.489.8118.2
iris94.671.80nrnrnrnr95.071.9294.801.90
magicnrnr70.704.1070.704.1071.413.9070.414.32
newthyroid96.773.5096.503.7096.503.3093.674.1594.024.20
optdigitsnrnrnrnrnrnrnrnrnrnr
ring58.391.0058.601.0057.901.00nrnrnrnr
segment81.909.0085.709.1084.108.80nrnrnrnr
spambase74.2723.765.4027.070.002.70nrnrnrnr
taenrnrnrnrnrnrnrnrnrnr
texture73.6912.1nrnrnrnrnrnrnrnr
thyroid90.931.8099.3020.099.3016.9nrnrnrnr
titanic77.601.40nrnrnrnrnrnrnrnr
twonorm96.7419.796.8019.996.1017.8nrnrnrnr
vehicle47.875.9045.607.8040.004.8043.056.1640.556.56
wdbc95.1810.4nrnrnrnrnrnrnrnr
wine96.086.2094.805.8092.206.8092.396.2893.566.74
wisconsin93.595.3094.005.7093.603.50nrnrnrnr
1 nr—no report.
Table 5. Paired two-tailed Wilcoxon test between BSSO and the other methods with significance level 0.05.
Table 5. Paired two-tailed Wilcoxon test between BSSO and the other methods with significance level 0.05.
Median of DifferencesStandardized Test Statistic p-ValueNull Hypothesis
BSSO_Learn—All_Learn4.659<0.001Reject
BSSO_Learn—IG_Learn4.623<0.001Reject
BSSO_Learn—RS_Learn3.0700.002Reject
BSSO_Test—All_Test4.206<0.000Reject
BSSO_Test—IG_Test4.418<0.000Reject
BSSO_Test—RS_Test3.2630.001Reject
BSSO_Test—BSMA_Test0.1270.899Retain
BSSO_Test—BGSA(S)_Test−0.3790.879Retain
BSSO_Test—BGSA(V)_Test1.0600.299Retain
BSSO_Test—BBSO(S)_Test0.6820.496Retain
BSSO_Test—BBSO(V)_Test1.3630.173Retain
BSSO_F‘—IG_F‘−0.3890.697Retain
BSSO_F‘—RS_F‘−2.0270.043Reject
BSSO_F‘—BSMA_F‘−0.5220.602Retain
BSSO_F‘—BGSA(S)_F‘−0.4550.649Retain
BSSO_F‘—BGSA(V)_F‘1.8470.065Retain
BSSO_F‘—BBSO(S) _F−0.5020.615Retain
BSSO_F‘—BBSO(V) _F−1.1930.233Retain
Table 6. Execution time (seconds).
Table 6. Execution time (seconds).
DatasetBSSORSIG
apendicitis2.49691.75090.0690
balance8.68257.25450.0909
banana28.865326.79550.1769
bupa4.38534.03950.0807
cleveland13.782310.59050.1189
coil2000649.0763502.0300115.3146
contraceptive25.614323.56330.2409
dermatology34.585830.07750.2775
ecoli12.491312.16310.1179
glass7.79287.57880.1019
haberman2.70732.33860.0730
heart5.39573.72750.0929
hepatitis2.56542.16530.0760
ionosphere11.684611.00120.1689
iris2.23962.03280.0700
magic210.2207186.05336.4670
newthyroid3.95933.82870.0780
optdigits1355.80791300.918826.0010
ring135.998475.09702.5237
segment134.1489124.12071.0419
spambase213.8056145.827411.2431
tae2.42752.40250.0710
texture980.7259679.412012.0827
thyroid200.5548113.61524.5406
titanic10.33879.71300.1179
twonorm200.8571141.28374.1145
vehicle29.283026.92240.2696
wdbc16.390914.06340.2389
wine4.90804.85600.0879
wisconsin8.69978.28460.1189
Table 7. Coefficients and their estimates.
Table 7. Coefficients and their estimates.
ModelUnstandardized CoefficientstSig. Level95.0% Confidence Interval for B
BStd. ErrorLower BoundUpper Bound
(Constant)−285.89054.884−5.2090.000−398.707−173.074
NoCl60.48711.7645.1420.00036.30684.667
NoFe7.6821.6074.7800.0004.37810.985
NoEx0.0220.0072.9750.0060.0070.037

Share and Cite

MDPI and ACS Style

Hodashinsky, I.; Sarin, K.; Shelupanov, A.; Slezkin, A. Feature Selection Based on Swallow Swarm Optimization for Fuzzy Classification. Symmetry 2019, 11, 1423. https://doi.org/10.3390/sym11111423

AMA Style

Hodashinsky I, Sarin K, Shelupanov A, Slezkin A. Feature Selection Based on Swallow Swarm Optimization for Fuzzy Classification. Symmetry. 2019; 11(11):1423. https://doi.org/10.3390/sym11111423

Chicago/Turabian Style

Hodashinsky, Ilya, Konstantin Sarin, Alexander Shelupanov, and Artem Slezkin. 2019. "Feature Selection Based on Swallow Swarm Optimization for Fuzzy Classification" Symmetry 11, no. 11: 1423. https://doi.org/10.3390/sym11111423

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop