pipeline module¶
A pipeline to chain transformers.
The Pipeline
class chains a sequence of tranformers, and provides global
fit(), transform(), fit_transform() and inverse_transform() methods.
- class gemseo.mlearning.transformers.pipeline.Pipeline(name='', transformers=None)[source]
Bases:
Transformer
Transformer pipeline.
- Parameters:
name (str) –
A name for this pipeline.
By default it is set to “”.
transformers (Sequence[Transformer] | None) – A sequence of transformers to be chained. The transformers are chained in the order of appearance in the list, i.e. the first transformer is applied first. If transformers is an empty list or None, then the pipeline transformer behaves like an identity transformer.
- compute_jacobian(data)[source]
Compute the Jacobian of the
pipeline.transform()
.
- compute_jacobian_inverse(data)[source]
Compute the Jacobian of the
pipeline.inverse_transform()
.
- duplicate()[source]
Duplicate the current object.
- Returns:
A deepcopy of the current instance.
- Return type:
- inverse_transform(data)[source]
Perform an inverse transform on the data.
The data is inverse transformed sequentially, starting with the last transformer in the list.
- transform(data)[source]
Transform the data.
The data is transformed sequentially, where the output of one transformer is the input of the next.
- name: str
The name of the transformer.
- transformers: Sequence[Transformer]
The sequence of transformers.