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

Source Code for Package mvpa.mappers

 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  """PyMVPA mappers. 
10   
11  Module Description 
12  ================== 
13   
14  Various space transformations which are intended to map between two 
15  spaces, most of the time both ways, and optionally requiring training. 
16  Classifiers from the mvpa.clfs module could be considered mappers as 
17  well, but they all are supervised, and only provide ND->1D mapping, 
18  most of the time without reverse transformation. 
19   
20  Module Organization 
21  =================== 
22   
23  The mvpa.mappers module contains the following modules: 
24   
25  .. packagetree:: 
26     :style: UML 
27   
28  :group Base: base mask metric 
29  :group Specialized: wavelet boxcar svd ica pca samplegroup 
30   
31  """ 
32   
33  __docformat__ = 'restructuredtext' 
34   
35  if __debug__: 
36      from mvpa.base import debug 
37      debug('INIT', 'mvpa.mappers') 
38   
39  # do not pull them all -- we have mvpa.suite for that 
40  #from mvpa.mappers.mask import MaskMapper 
41  #from mvpa.mappers.pca import PCAMapper 
42  #from mvpa.mappers.svd import SVDMapper 
43  #from mvpa.mappers.boxcar import BoxcarMapper 
44  #from mvpa.mappers.array import DenseArrayMapper 
45   
46  if __debug__: 
47      debug('INIT', 'mvpa.mappers end') 
48