inverse_transform()#
- TransformerPipeline.inverse_transform(states_transformed, inplace=False, locs=None)[source]#
Apply the inverse of the learned transformation.
- Parameters:
- states_transformed(n, …) or (p, …) ndarray
Matrix of n-dimensional transformed snapshots, or a single transformed snapshot.
- inplacebool
If
True, overwritestates_transformedduring the inverse transformation. IfFalse, create a copy of the data to untransform.- locsslice or (p,) ndarray of integers or None
If given, assume
states_transformedcontains the transformed snapshots at only the p indices described bylocs.
- Returns:
- states_untransformed: (n, …) or (p, …) ndarray
Matrix of n-dimensional untransformed snapshots, or the p entries of such at the indices specified by
locs.