MCPcopy Create free account
hub / github.com/SLDGroup/EMCAD / __init__

Method __init__

utils/transforms.py:17–19  ·  view source on GitHub ↗
(self, mean, std)

Source from the content-addressed store, hash-verified

15
16class DeNormalize(object):
17 def __init__(self, mean, std):
18 self.mean = mean
19 self.std = std
20
21 def __call__(self, tensor):
22 for t, m, s in zip(tensor, self.mean, self.std):

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected