tabensemb.data.dataderiver.UnscaledDataDeriver#
- class tabensemb.data.dataderiver.UnscaledDataDeriver(**kwargs)[source]#
Bases:
AbstractDeriverRecord unscaled data in DataModule.derived_data so that
TorchModelcan access it.Methods
- __init__(**kwargs)#
The base class for all data-derivers, which will derive new features based on the input DataFrame and return the derived values, or load and return multimodal data. It is recommended to learn the derivation on the training set only.
- Parameters:
- kwargs
Arguments required by the deriver. It will be stored as
self.kwargs.
Defaults values for arguments defined in
_cls_required_kwargs()and_required_kwargs()_derive(df, datamodule)The main function for a data-deriver.
Required column names in the tabular dataset by the data-deriver.
kwargs required by the class.