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

Method __call__

climart/data_transform/normalization.py:118–119  ·  view source on GitHub ↗
(self, data)

Source from the content-addressed store, hash-verified

116 return {'min': self.min, 'max_minus_min': self.max_minus_min}
117
118 def __call__(self, data):
119 return (data - self.min) / self.max_minus_min
120
121
122class LogNormalizer(NormalizationMethod):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected