API: preprocessing.base
skyulf.preprocessing.base
BaseApplier
Bases: ABC
Source code in skyulf-core\skyulf\preprocessing\base.py
24 25 26 27 28 29 30 31 32 | |
apply(df, params)
abstractmethod
Applies the transformation using fitted parameters.
Source code in skyulf-core\skyulf\preprocessing\base.py
25 26 27 28 29 30 31 32 | |
BaseCalculator
Bases: ABC
Source code in skyulf-core\skyulf\preprocessing\base.py
12 13 14 15 16 17 18 19 20 21 | |
fit(df, config)
abstractmethod
Calculates parameters from the training data. Returns a dictionary of fitted parameters (serializable).
Source code in skyulf-core\skyulf\preprocessing\base.py
13 14 15 16 17 18 19 20 21 | |