gemseo.mlearning.transformers.dimension_reduction.base_dimension_reduction module#
Dimension reduction as a generic transformer.
The BaseDimensionReduction class implements
the concept of dimension reduction.
See also
- class BaseDimensionReduction(name='', n_components=None, **parameters)[source]#
Bases:
BaseTransformerDimension reduction.
- Parameters:
name (str) --
A name for this transformer.
By default it is set to "".
n_components (int | None) -- The number of components of the latent space. If
None, use the maximum number allowed by the technique, typicallymin(n_samples, n_features).**parameters (bool | float | str | None) -- The parameters of the transformer.