Presentation is loading. Please wait.

Presentation is loading. Please wait.

Feature Selection in Nonlinear Kernel Classification Olvi Mangasarian Edward Wild University of Wisconsin Madison.

Similar presentations


Presentation on theme: "Feature Selection in Nonlinear Kernel Classification Olvi Mangasarian Edward Wild University of Wisconsin Madison."— Presentation transcript:

1 Feature Selection in Nonlinear Kernel Classification Olvi Mangasarian Edward Wild University of Wisconsin Madison

2 Problem  Input space feature selection in nonlinear kernel classification  Mixed-integer programming problem  Inherently difficult (NP-hard)  Most research of recent vintage

3 Example +++ + +++ + +++ + +++ + ___ _ ___ _ x1x1 x2x2 However, data is nonlinearly separable using only the feature x 2 Best linear classifier that uses only 1 feature selects the feature x 1 Hence, feature selection in nonlinear classification is important

4 Outline  Start with a standard 1-norm nonlinear support vector machine (SVM)  Add 0-1 diagonal matrix to suppress or keep features  Leads to a nonlinear mixed-integer program  Introduce algorithm to obtain a good local solution to the resulting mixed-integer program  Evaluate algorithm on five public datasets from the UCI repository

5 Notation  Data points represented as rows of an m £ n matrix A  Data labels of +1 or -1 are given as elements of an m £ m diagonal matrix D  XOR Example: 4 points in R 2  Points (0, 1), (1, 0) have label +1  Points (0, 0), (1, 1) have label  1  Kernel K(A, B) : R m £ n £ R n £ k ! R m £ k  For x 2 R n, the commonly used Gaussian kernel with parameter  the i th component of K(x 0, A 0 ) is: K(x 0, A 0 ) i = K(x 0, A 0 i ) = exp(-  ||x  A i || 2 )

6 K(x 0, A 0 )u =  1  Support Vector Machines K(A +, A 0 )u ¸ e  +e K(A , A 0 )u · e   e + _ _ _ _ _ _ _ + + + + + + + + _ _ _ _ _ _ _ _ _ _ _ + + + + + + + + + _ _ _ _ _ K(x 0, A 0 )u =  K(x 0, A 0 )u =  Slack variable y ¸ 0 allows points to be on the wrong side of the bounding surface  x 2 R n  e is a vector of ones  SVM defined by the parameters (u,  ) of the nonlinear surface  A contains all data points {+…+} ½ A + {  …  } ½ A  SVMs Minimize e 0 s (||u|| 1 ) to reduce overfitting Minimize e 0 y (hinge loss or plus function or max{, 0}) to fit data

7 Reduced Feature SVM Starting with Full SVM If E ii is 0 the i th feature is removed  To suppress features, add the number of features present (e 0 Ee) to the objective  As parameter  ¸ 0 is increased, more features will be removed from the classifier All features are present in the kernel matrix K(A, A 0 ) Replace A with AE, where E is a diagonal n £ n matrix with E ii 2 {1, 0}, i = 1, …, n

8 Algorithm  Global solution to nonlinear mixed-integer program cannot be found efficiently  Requires solving 2 n linear programs  For fixed values of the integer diagonal matrix, the problem is reduced to an ordinary SVM linear program  Solution strategy: alternate optimization of continuous and integer variables:  For fixed values of E, solve a linear program for (u, , y, s)  For fixed values of (u, , s), sweep through the components of E and make updates which decrease the objective function

9 Reduced Feature SVM (RFSVM) Algorithm 1)Initialize E randomly  Cardinality of E inversely proportional to  For large  preponderance of 0 elements in E For small  preponderance of 1 elements in E  Let k be the maximum number of sweeps, tol be the stopping tolerance 2)For fixed integer values E, solve the SVM linear program to obtain (u, , y, s). Sweep through E repeatedly as follows: 3)For each component of E replace 1 by 0 and conversely provided the change decreases the overall objective function by more than tol. Go to (4) if no change was made in the last sweep, or k sweeps have been completed 4)Solve the SVM linear program with the new matrix E. If the objective decrease is less than tol, stop, otherwise go to (3)

10 RFSVM Convergence (for tol = 0)  Objective function value converges  Each step decreases the objective  Objective is bounded below by 0  Limit of the objective function value attained at any accumulation point of the sequence of iterates  Accumulation point is a “local minimum solution”  Continuous variables are optimal for the fixed integer variables  Changing any single integer variable will not decrease the objective

11 RFSVM Convergence Objective function value at iteration r. Bounded below and nonincreasing ) convergent Classifier defined by continuous variables is optimal for fixed choice of features, i.e. No single feature, i.e. element of E can be added or dropped to decrease the objective value

12 Numerical Experience  Test on 5 public datasets from the UCI repository  Plot classification accuracy versus number of features used  Compare to linear classifiers which reduce features automatically (BM 1998)  Compare to nonlinear SVM with no feature reduction  To reduce running time, 1/11 of each dataset was used as a tuning set to select and the kernel parameter  Remaining 10/11 used for 10-fold cross validation  Procedure repeated 5 times for each dataset with different random choice of tuning set each time  Similar behavior on all datasets indicates acceptable method variance

13 Ionosphere Dataset 351 Points in R 34  Number of features used Cross-validation accuracy Nonlinear SVM with no feature selection Linear 1-norm SVM Feature-selecting linear SVM (BM, 1998) using concave minimization RFSVM Even for  = 0, some features may be removed when removing them decreases the hinge loss If the appropriate value of  is selected, RFSVM can obtain higher accuracy using fewer features than SVM1 and FSV Note that accuracy decreases slightly until about 10 features remain, and then decreases more sharply as they are removed

14 Running Time on the Ionosphere Dataset  Averages 5.7 sweeps through the integer variables  Averages 3.4 linear programs  75% of the time consumed in objective function evaluations  15% of time consumed in solving linear programs  Complete experiment (1960 runs) took 1 hour  3 GHz Pentium 4  Written in MATLAB  CPLEX 9.0 used to solve the linear programs  Gaussian kernel written in C

15 WPBC (24 mo.) Dataset 155 Points in R 32  Number of features used Cross-validation accuracy

16 BUPA Liver Dataset 345 Points in R 6  Number of features used Cross-validation accuracy

17 Sonar Dataset 208 Points in R 60  Number of features used Cross-validation accuracy

18 Spambase Dataset 4601 Points in R 57  Number of features used Cross-validation accuracy Nearly identical results are obtained for  = 0 and 1

19 Related Work  Approaches that use specialized kernels  Weston, Mukherjee, Chapelle, Pontil, Poggio, and Vapnik, 2000: structural risk minimization  Gold, Holub, and Sollich, 2005: Bayesian interpretation  Zhang, 2006: smoothing spline ANOVA kernels  Margin based approach  Frölich and Zell, 2004: remove features if there is little change to the margin if they are removed  Other approaches which combine feature selection with basis reduction  Bi, Bennett, Embrechts, Breneman, and Song, 2003  Avidan, 2004

20 Conclusion  Implemented new rigorous formulation for feature selection in nonlinear SVM classifiers  Obtained a local solution to the resulting mixed- integer program by alternating between a linear program to compute continuous variables and successive sweeps through the objective function to update the integer variables  Results on 5 publicly available datasets show approach efficiently learns accurate nonlinear classifiers with reduced numbers of features

21 Future Work  Datasets with more features  Reduce the number of objective function evaluations  Limit the number of integer cycles  Other ways to update the integer variables  Application to regression problems  Automatic choice of 

22 Questions  Websites with links to papers and talks:  http://www.cs.wisc.edu/~olvi  http://www.cs.wisc.edu/~wildt


Download ppt "Feature Selection in Nonlinear Kernel Classification Olvi Mangasarian Edward Wild University of Wisconsin Madison."

Similar presentations


Ads by Google