MCPcopy Create free account
hub / github.com/RolnickLab/climart / normalize

Method normalize

climart/data_transform/normalization.py:123–125  ·  view source on GitHub ↗
(self, data, *args, **kwargs)

Source from the content-addressed store, hash-verified

121
122class LogNormalizer(NormalizationMethod):
123 def normalize(self, data, *args, **kwargs):
124 normalized_data = self(data)
125 return normalized_data
126
127 def inverse_normalize(self, normalized_data):
128 data = np.exp(normalized_data)

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected