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

Source Code for Package mvpa.clfs

 1  #emacs: -*- mode: python-mode; py-indent-offset: 4; indent-tabs-mode: nil -*- 
 2  #ex: set 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 Basic: classifier 
19  :group Specific Implementations: knn svm plr ridge smlr 
20  :group Internal Implementations: libsvm 
21  :group Utilities: transerror 
22  """ 
23   
24  __docformat__ = 'restructuredtext' 
25   
26   
27  if __debug__: 
28      from mvpa.base import debug 
29      debug('INIT', 'mvpa.clfs') 
30   
31  if __debug__: 
32      debug('INIT', 'mvpa.clfs end') 
33