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

Source Code for Package mvpa.clfs

 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  """Import helper for PyMVPA classifiers 
10   
11  Module Organization 
12  =================== 
13  mvpa.clfs module contains various classifiers 
14   
15  .. packagetree:: 
16     :style: UML 
17   
18  :group Base: base 
19  :group Meta Classifiers: meta 
20  :group Specific Implementations: knn svm _svmbase plr ridge smlr libsmlrc gpr blr 
21  :group External Interfaces: lars libsvmc sg 
22  :group Utilities: transerror model_selector stats kernel distance 
23  :group Warehouse of Classifiers: warehouse 
24  """ 
25   
26  __docformat__ = 'restructuredtext' 
27   
28   
29  if __debug__: 
30      from mvpa.base import debug 
31      debug('INIT', 'mvpa.clfs') 
32   
33  if __debug__: 
34      debug('INIT', 'mvpa.clfs end') 
35