Package mvpa :: Package featsel
[hide private]
[frames] | no frames]

Source Code for Package mvpa.featsel

 1  # emacs: -*- mode: python; py-indent-offset: 4; indent-tabs-mode: nil -*- 
 2  # vi: set ft=python sts=4 ts=4 sw=4 et: 
 3  ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ## 
 4  # 
 5  #   See COPYING file distributed along with the PyMVPA package for the 
 6  #   copyright and license terms. 
 7  # 
 8  ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ### ## 
 9  """Feature selection methods. 
10   
11  Brief Description of Available Methods 
12  ====================================== 
13   
14  * `SensitivityBasedFeatureSelection` - generic class to provide feature 
15    selection given some sensitivity measure 
16  * `RFE` - recursive feature elimination (RFE) 
17  * `IFS` - incremental feature selection 
18   
19  """ 
20   
21  __docformat__ = 'restructuredtext' 
22   
23  if __debug__: 
24      from mvpa.base import debug 
25      debug('INIT', 'mvpa.featsel') 
26   
27  if __debug__: 
28      debug('INIT', 'mvpa.featsel end') 
29