Home | Trees | Indices | Help |
|
---|
|
Meta mapper that combines several embedded mappers. This mapper can be used the map from several input dataspaces into a common output dataspace. When :meth:`~mvpa.mappers.base.CombinedMapper.forward` is called with a sequence of data, each element in that sequence is passed to the corresponding mapper, which in turned forward-maps the data. The output of all mappers is finally stacked (horizontally or column or feature-wise) into a single large 2D matrix (nsamples x nfeatures). .. note:: This mapper can only embbed mappers that transform data into a 2D (nsamples x nfeatures) representation. For mappers not supporting this transformation, consider wrapping them in a :class:`~mvpa.mappers.base.ChainMapper` with an appropriate post-processing mapper. CombinedMapper fully supports forward and backward mapping, training, runtime selection of a feature subset (in output dataspace) and retrieval of neighborhood information.
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
|
|||
Inherited from Inherited from |
|
|||
|
|||
Inherited from |
|
:Parameters: mappers: list of Mapper instances The order of the mappers in the list is important, as it will define the order in which data snippets have to be passed to :meth:`~mvpa.mappers.base.CombinedMapper.forward`. **kwargs All additional arguments are passed to the base-class constructor.
|
|
|
Trains all embedded mappers. The provided training dataset is splitted appropriately and the corresponding pieces are passed to the :meth:`~mvpa.mappers.base.Mapper.train` method of each embedded mapper. :Parameter: dataset: :class:`~mvpa.datasets.base.Dataset` or subclass A dataset with the number of features matching the `outSize` of the `CombinedMapper`.
|
|
|
Remove some elements and leave only ids in 'out'/feature space. The subset selection is done inplace
|
Get the ids of the neighbors of a single feature in output dataspace. Returns a list of outIds
|
|
Home | Trees | Indices | Help |
|
---|
Generated by Epydoc 3.0.1 on Mon Apr 23 23:09:27 2012 | http://epydoc.sourceforge.net |