Constructs a transformer from an arbitrary callable.
A FunctionTransformer forwards its X (and optionally y) arguments to a user-defined function or function object and returns the result of this function. This is useful for stateless transformations such as taking the log of frequencies, doing custom scaling, etc.
Note: If a lambda is used as the function, then the resulting transformer will not be pickleable.
Added in version 0.17.
Read more in the User Guide.
The callable to use for the transformation. This will be passed the same arguments as transform, with args and kwargs forwarded. If func is None, then func will be the identity function.
The callable to use for the inverse transformation. This will be passed the same arguments as inverse transform, with args and kwargs forwarded. If inverse_func is None, then inverse_func will be the identity function.
Indicate that the input X array should be checked before calling func. The possibilities are:
Changed in version 0.22: The default of validate changed from True to False.
Indicate that func accepts a sparse matrix as input. If validate is False, this has no effect. Otherwise, if accept_sparse is false, sparse matrix inputs will cause an exception to be raised.
Whether to check that or func followed by inverse_func leads to the original inputs. It can be used for a sanity check, raising a warning when the condition is not fulfilled.
Added in version 0.20.
Determines the list of feature names that will be returned by the get_feature_names_out method. If it is ‘one-to-one’, then the output feature names will be equal to the input feature names. If it is a callable, then it must take two positional arguments: this FunctionTransformer (self) and an array-like of input feature names (input_features). It must return an array-like of output feature names. The get_feature_names_out method is only defined if feature_names_out is not None.
See get_feature_names_out for more details.
Added in version 1.1.
Dictionary of additional keyword arguments to pass to func.
Added in version 0.18.
Dictionary of additional keyword arguments to pass to inverse_func.
Added in version 0.18.
See also
MaxAbsScalerScale each feature by its maximum absolute value.
StandardScalerStandardize features by removing the mean and scaling to unit variance.
LabelBinarizerBinarize labels in a one-vs-all fashion.
MultiLabelBinarizerTransform between iterable of iterables and a multilabel format.
If func returns an output with a columns attribute, then the columns is enforced to be consistent with the output of get_feature_names_out.
>>> import numpy as np
>>> from sklearn.preprocessing import FunctionTransformer
>>> transformer = FunctionTransformer(np.log1p)
>>> X = np.array([[0, 1], [2, 3]])
>>> transformer.transform(X)
array([[0. , 0.6931...],
[1.0986..., 1.3862...]])
Fit transformer by checking X.
If validate is True, X will be checked.
validate=True else any object that func can handle
Input array.
Not used, present here for API consistency by convention.
FunctionTransformer class instance.
Fit to data, then transform it.
Fits transformer to X and y with optional parameters fit_params and returns a transformed version of X.
Input samples.
Target values (None for unsupervised transformations).
Additional fit parameters.
Transformed array.
Get output feature names for transformation.
This method is only defined if feature_names_out is not None.
Input feature names.
input_features is None, then feature_names_in_ is used as the input feature names. If feature_names_in_ is not defined, then names are generated: [x0, x1, ..., x(n_features_in_ - 1)].input_features is array-like, then input_features must match feature_names_in_ if feature_names_in_ is defined.Transformed feature names.
feature_names_out is ‘one-to-one’, the input feature names are returned (see input_features above). This requires feature_names_in_ and/or n_features_in_ to be defined, which is done automatically if validate=True. Alternatively, you can set them in func.feature_names_out is a callable, then it is called with two arguments, self and input_features, and its return value is returned by this method.Get metadata routing of this object.
Please check User Guide on how the routing mechanism works.
A MetadataRequest encapsulating routing information.
Get parameters for this estimator.
If True, will return the parameters for this estimator and contained subobjects that are estimators.
Parameter names mapped to their values.
Transform X using the inverse function.
validate=True else any object that inverse_func can handle
Input array.
Transformed input.
Set output container.
See Introducing the set_output API for an example on how to use the API.
Configure output of transform and fit_transform.
"default": Default output format of a transformer"pandas": DataFrame output"polars": Polars outputNone: Transform configuration is unchangedAdded in version 1.4: "polars" option was added.
Estimator instance.
Set the parameters of this estimator.
The method works on simple estimators as well as on nested objects (such as Pipeline). The latter have parameters of the form <component>__<parameter> so that it’s possible to update each component of a nested object.
Estimator parameters.
Estimator instance.
Transform X using the forward function.
validate=True else any object that func can handle
Input array.
Transformed input.
© 2007–2025 The scikit-learn developers
Licensed under the 3-clause BSD License.
https://scikit-learn.org/1.6/modules/generated/sklearn.preprocessing.FunctionTransformer.html