OB.DAAC Logo
NASA Logo
Ocean Color Science Software

ocssw V2022
IdentityTransformer.py
Go to the documentation of this file.
1 from ._CustomTransformer import _CustomTransformer
2 
3 
5  ''' No transformation '''
6  def _transform(self, X, *args, **kwargs): return X
7  def _inverse_transform(self, X, *args, **kwargs): return X
8