spectrochempy.AutoscaleTransformerο
- class AutoscaleTransformer(dim='y')[source]ο
Autoscaling (z-score) transformer.
Learns the mean and standard deviation along a dimension during
fit()and applies \((x - \bar{x}) / s\) duringtransform().- Parameters
dim (
strorint, optional, default:βyβ) β Dimension along which the mean and standard deviation are computed.
Examples
>>> scaler = scp.AutoscaleTransformer(dim="y") >>> scaler.fit(train) >>> test_scaled = scaler.transform(test) >>> train_restored = scaler.inverse_transform(test_scaled)
See also
autoscaleProcedural autoscaling function.
Methods Summary
fit(dataset)Learn parameters from dataset.
fit_transform(dataset)Fit to dataset, then transform it.
get_params([deep])Get the constructor parameters of this transformer.
inverse_transform(dataset)Reverse the learned transformation on dataset.
set_params(**params)Set constructor parameters on this transformer.
transform(dataset)Apply the learned transformation to dataset.
Methods Documentation
- fit(dataset)[source]ο
Learn parameters from dataset.
- Parameters
dataset (
NDDataset) β Training data.- Returns
self β The fitted instance.
- fit_transform(dataset)[source]ο
Fit to dataset, then transform it.
Equivalent to
self.fit(dataset).transform(dataset)but avoids an intermediate copy when possible.
- get_params(deep=True)[source]ο
Get the constructor parameters of this transformer.
- Parameters
deep (
bool, optional, default:True) β Ignored. Present for compatibility with scikit-learn conventions.- Returns
dictβ Mapping of parameter name -> current value.
Examples
>>> scaler = scp.AutoscaleTransformer(dim="y") >>> scaler.get_params() {'dim': 'y'}
- set_params(**params)[source]ο
Set constructor parameters on this transformer.
Returns
selfso that calls can be chained.- Parameters
**params β Parameter names and values to update.
- Returns
self
- Raises
SpectroChemPyError β If a parameter name does not correspond to a constructor argument.
Examples
>>> scaler = scp.AutoscaleTransformer(dim="y") >>> scaler.set_params(dim="x") AutoscaleTransformer(dim='x')
Examples using spectrochempy.AutoscaleTransformer
Preprocessing transformers and scikit-learn compatibility