tabensemb.data.datamodule.DataModule.set_data_processors#
method
- DataModule.set_data_processors(config: List[Tuple[str, Dict]])[source]#
Set a list of data processors containing the name and arguments for each data processor. The processor should be registered in
tabensemb.data.dataprocessor.processor_mapping.- Parameters:
- config
A list of tuples. Each tuple includes the name of the processor and a dict of kwargs for the processor.
Notes
Only one
AbstractScalercan be used, and theAbstractScalermust be the last one.