base_transform
BaseTransform
Base class for transform.
Source code in lightning_boost/modules/preprocessing/base_transform.py
__call__(inputs, targets)
Performs transform.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
inputs |
Dict[str, Any]
|
Inputs. |
required |
targets |
Dict[str, Any]
|
Targets. |
required |
Returns:
| Type | Description |
|---|---|
Tuple[Dict[str, Any], Dict[str, Any]]
|
Tuple[Dict[str, Any], Dict[str, Any]]: Inputs, targets (transformed). |