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

Method __init__

climart/data_transform/normalization.py:165–167  ·  view source on GitHub ↗
(self, min=None, max_minus_min=None, **kwargs)

Source from the content-addressed store, hash-verified

163
164class MinMax_LogNormalizer(NormalizationMethod):
165 def __init__(self, min=None, max_minus_min=None, **kwargs):
166 super().__init__(**kwargs)
167 self.min_max_normalizer = MinMax_Normalizer(min, max_minus_min)
168
169 def normalize(self, data, *args, **kwargs):
170 normalized_data = self.min_max_normalizer.normalize(data)

Callers

nothing calls this directly

Calls 2

MinMax_NormalizerClass · 0.85
__init__Method · 0.45

Tested by

no test coverage detected