deephyper.skopt.space.space.Pipeline

deephyper.skopt.space.space.Pipeline#

class deephyper.skopt.space.space.Pipeline(transformers)[source]#

Bases: Transformer

A lightweight pipeline to chain transformers.

Parameters:

transformers (list) – A list of Transformer instances.

Methods

fit

Initialize all transformers with current X.

inverse_transform

Reverse the preprocessing mapping for all elements of X.

transform

Apply the preprocessing mapping for all elements of X.

fit(X)[source]#

Initialize all transformers with current X.

inverse_transform(X)[source]#

Reverse the preprocessing mapping for all elements of X.

transform(X)[source]#

Apply the preprocessing mapping for all elements of X.