A sphere with three ocean waves in differing shades of blue. Next to the sphere, there is the bolded text "Ocean Color". Under that, there are two acronyms, separated by a vertical pipe: OB.DAAC (Ocean Biology Distributed Active Archive Center) and OBPG (Ocean Biology Processing Group).
Lorem
ipsum
dolor
sit
amet
Toggle navigation
Ocean Color Science Software
Jump to content
ocssw
V2022
web
ocssw
ocssw_src
src
aquaverse
MDN
transformers
IdentityTransformer.py
Go to the documentation of this file.
1
from
._CustomTransformer
import
_CustomTransformer
2
3
4
class
IdentityTransformer
(
_CustomTransformer
):
5
''' No transformation '''
6
def
_transform(self, X, *args, **kwargs):
return
X
7
def
_inverse_transform(self, X, *args, **kwargs):
return
X
8
MDN.transformers.IdentityTransformer.IdentityTransformer
Definition:
IdentityTransformer.py:4
MDN.transformers._CustomTransformer._CustomTransformer
Definition:
_CustomTransformer.py:4