Warning: Declaration of action_plugin_tablewidth::register(&$controller) should be compatible with DokuWiki_Action_Plugin::register(Doku_Event_Handler $controller) in /s/bach/b/class/cs545/public_html/fall15/lib/plugins/tablewidth/action.php on line 93

Warning: Declaration of syntax_plugin_mathjax_protecttex::render($mode, &$renderer, $data) should be compatible with DokuWiki_Syntax_Plugin::render($format, Doku_Renderer $renderer, $data) in /s/bach/b/class/cs545/public_html/fall15/lib/plugins/mathjax/syntax/protecttex.php on line 15
assignments:assignment5 [CS545 fall 2015]

User Tools

Site Tools


assignments:assignment5

Assignment 5: Feature selection

Due: November 15th at 11pm

Data

In this assignment you will compare several feature selection methods on several datasets. The first dataset is the Arcene dataset which was used in the 2003 NIPS feature selection competition. The dataset is produced by mass spectrometry of biological samples that comes from different types of cancer.

The second dataset describes the expression of human genes in two types of leukemia The original publication that describes the data:

T. R. Golub, D. K. Slonim, P. Tamayo, C. Huard, M. Gaasenbeek, J. P. Mesirov, H. Coller, M. L. Loh, J. R. Downing, M. A. Caligiuri, C. D. Bloomfield, and E. S. Lander. Molecular classification of cancer: class discovery and class prediction by gene expression monitoring. Science, 286(5439):531, 1999.

Download a processed version of the dataset in libsvm format from the libsvm data repository. Look for the dataset named “leukemia”. There are two files, one a training set and another which contains a test set. Merge the two files into a single file for your experiments.

Part 1: Filter methods

Implement a Python function that returns an array with the Golub score of a labeled dataset. Recall that the Golub score for feature $i$ is defined as:

$$ \frac{|\mu_i^{(+)} - \mu_i^{(-)}|}{\sigma_i^{(+)} + \sigma_i^{(-)}} $$ where $\mu_i^{(+)}$ is the average of feature $i$ in the positive examples, where $\sigma_i^{(+)}$ is the standard deviation of feature $i$ in the positive examples, and $\mu_i^{(-)}, \sigma_i^{(-)}$ are defined analogously for the negative examples. In order for your function to work with the scikit-learn filter framework it needs to have two parameters: golub(X, y), where X is the feature matrix, and y is a vector of labels. All scikit-learn filter methods return two values - a vector of scores, and a vector of p-values. For our purposes, we won't use p-values associated with the Golub scores, so just return the computed vector of scores twice (return scores,scores if your vector of scores is stored in an array called scores)

Part 2: Embedded methods: L1 SVM

The L1-SVM is an SVM that uses the L1 norm as the regularization term by replacing $w^Tw$ with $\sum_{i=1}^d |w_i|$. As discussed in class, the L1 SVM leads to very sparse solutions, and can therefore be used to perform feature selection.

Run the L1-SVM on the datasets mentioned above. In scikit-learn use LinearSVC(penalty='l1', dual=False) to create one. How many features have non-zero weight vector coefficients? (Note that you can obtain the weight vector of a trained SVM by looking at its coef0_ attribute.

Compare the accuracy of the following approaches using cross-validation on the two datasets:

  • L1 SVM
  • L2 SVM trained on the features selected by the L1 SVM
  • L2 SVM trained on all the features
  • L2 SVM that uses RFE (with an L2-SVM) to select relevant features; use the class RFECV which automatically selects the number of features.

It has been argued in the literature that L1-SVMs often leads to solutions that are too sparse. As a workaround, implement the following strategy:

  • Create $k$ sub-samples of the training data. For each sub-sample randomly choose a subset consisting of 80% of the training examples.
  • For each sub-sample train an L1-SVM.
  • For each feature compute a score that is the number of sub-samples for which that feature yielded a non-zero weight vector coefficient.

In the next part of the assignment you will compare this approach to RFE and the Golub filter method that you implemented in part 1.

Part 3: Method comparison

Compute the accuracy of a Linear L2 SVM as a function of the number of selected features on the leukemia and Arcene datasets for the following feature selection methods:

  • The Golub score
  • L1-SVM feature selection using subsamples
  • RFE-SVM

Make sure that your evaluation provides an un-biased estimate of classifier performance. Comment on the results.

For the above experiment you do not need to select the optimal value for the SVM soft-margin constant. Compare these results to results obtained using internal cross-validation for selecting the soft margin constant $C$ over a grid of values.

In writing your code, use scikit-learn's ability to combine analysis steps using the Pipeline class. This will be particularly useful for performing model selection.

Submission

Submit the pdf of your report and python code via Canvas. Python code can be displayed in your report if it is succinct (not more than a page or two at the most) or submitted separately. The latex sample document shows how to display Python code in a latex document. Code needs to be there so we can make sure that you implemented the algorithms and data analysis methodology correctly. Canvas allows you to submit multiple files for an assignment, so DO NOT submit an archive file (tar, zip, etc). Canvas will only allow you to submit pdfs (.pdf extension) or python code (.py extension). For this assignment there is a strict 8 page limit (not including references and code that is provided as an appendix). We will take off points for reports that go over the page limit. In addition to the code snippets that you include in your report, make sure you provide complete code from which we can see exactly how your results were generated.

Grading

A few general guidelines for this and future assignments in the course:

  • Always provide a description of the method you used to produce a given result in sufficient detail such that the reader can reproduce your results on the basis of the description (UNLESS the method has been provided in class or is there in the book). Your code needs to be provided in sufficient detail so we can make sure that your implementation is correct. The saying that “the devil is in the details” holds true for machine learning, and is sometimes the makes the difference between correct and incorrect results. If your code is more than a few lines, you can include it as an appendix to your report, or submit it as a separate file. Make sure your code is readable!
  • You can provide results in the form of tables, figures or text - whatever form is most appropriate for a given problem.
  • In any machine learning paper there is a discussion of the results. There is a similar expectation from your assignments that you reason about your results. For example, for the learning curve problem, what can you say on the basis of the observed learning curve?
  • Write succinct answers. We will take off points for rambling answers that are not to the point, and and similarly, if we have to wade through a lot of data/results that are not to the point.
Grading sheet for assignment 3

Part 1:  15 points.
(15 points):  Correct implementation of the Golub score

Part 2:  35 points.
(15 points):  Comparison of L1 chosen features with use of all features.
(20 points):  Correct implementation of L1-SVM feature selection using sub-samples.

Part 3:  40 points.
(25 points):  Accuracy as a function of number of features and discussion of the results
(15 points):  Same, with model selection

Report structure, grammar and spelling:  10 points
(10 points):  Heading and subheading structure easy to follow and clearly divides report into logical sections.  
              Code, math, figure captions, and all other aspects of the report are well-written and formatted.
              Grammar, spelling, and punctuation.  Answers are clear and to the point.
assignments/assignment5.txt · Last modified: 2015/11/16 16:27 by asa