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

Method __init__

climart/data_transform/normalization.py:74–77  ·  view source on GitHub ↗
(self, mean, std, **kwargs)

Source from the content-addressed store, hash-verified

72
73class Z_Normalizer(NormalizationMethod):
74 def __init__(self, mean, std, **kwargs):
75 super().__init__(**kwargs)
76 self.mean = mean
77 self.std = std
78
79 def normalize(self, data, axis=None, *args, **kwargs):
80 return self(data)

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected