Quantile scaler
continuiti.transforms.quantile_scaler
Quantile Scaler class.
QuantileScaler(src, n_quantile_intervals=1000, target_mean=0.0, target_std=1.0, eps=0.001)
¶
Bases: Transform
Quantile Scaler Class.
A transform for scaling input data to a specified target distribution using quantiles. This is particularly useful for normalizing data in a way that is more robust to outliers than standard z-score normalization.
The transformation maps the quantiles of the input data to the quantiles of the target distribution, effectively performing a non-linear scaling that preserves the relative distribution of the data.
PARAMETER | DESCRIPTION |
---|---|
src |
tensor from which the source distribution is drawn.
TYPE:
|
n_quantile_intervals |
Number of individual bins into which the data is categorized.
TYPE:
|
target_mean |
Mean of the target Gaussian distribution. Can be float (all dimensions use the same mean), or tensor (allows for different means along different dimensions). |
target_std |
Std of the target Gaussian distribution. Can be float (all dimensions use the same std), or tensor (allows for different stds along different dimensions). |
eps |
Small value to bound the target distribution to a finite interval.
TYPE:
|
Source code in src/continuiti/transforms/quantile_scaler.py
forward(tensor)
¶
Transforms the input tensor to match the target distribution using quantile scaling.
PARAMETER | DESCRIPTION |
---|---|
tensor |
The input tensor to transform.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Tensor
|
The transformed tensor, scaled to the target distribution. |
Source code in src/continuiti/transforms/quantile_scaler.py
undo(tensor)
¶
Reverses the transformation applied by the forward method, mapping the tensor back to its original distribution.
PARAMETER | DESCRIPTION |
---|---|
tensor |
The tensor to reverse the transformation on.
TYPE:
|
RETURNS | DESCRIPTION |
---|---|
Tensor
|
The tensor with the quantile scaling transformation reversed according to the src distribution. |
Source code in src/continuiti/transforms/quantile_scaler.py
Created: 2024-08-22