CADETProcess.transform.NullTransformer

CADETProcess.transform.NullTransformer#

class CADETProcess.transform.NullTransformer(lb_input: float | ndarray = -inf, ub_input: float | ndarray = inf, allow_extended_input: bool | None = False, allow_extended_output: bool | None = False)[source]#

Bases: TransformerBase

A transformer that performs no transformation.

This class simply returns the input values as output without modification.

See also

TransformerBase

The base class for parameter transformation.

property is_linear: bool#

Return True, as this is a linear transformation.

property lb: float | ndarray#

Return the lower bound of the output space (same as input lower bound).

property ub: float | ndarray#

Return the upper bound of the output space (same as input upper bound).