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

Method __call__

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

Source from the content-addressed store, hash-verified

87 return {'mean': self.mean, 'std': self.std}
88
89 def __call__(self, data):
90 return (data - self.mean) / self.std
91
92
93class MinMax_Normalizer(NormalizationMethod):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected