1
2
3
4
5
6
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
40
41
42
43
44
45
46 if __debug__:
47 debug('INIT', 'mvpa.mappers end')
48