class Transformer¶
- class deeptime.base.Transformer¶
Base class of all transformers.
Methods
transform
(data, **kwargs)Transforms the input data.
- __call__(*args, **kwargs)¶
Call self as a function.
- abstract transform(data, **kwargs)¶
Transforms the input data.
- Parameters:
data (array_like) – Input data.
- Returns:
transformed – The transformed data
- Return type:
array_like