MCPcopy Create free account
hub / github.com/NVIDIA/semantic-segmentation / __init__

Method __init__

transforms/transforms.py:60–62  ·  view source on GitHub ↗
(self, mean, std)

Source from the content-addressed store, hash-verified

58
59class DeNormalize(object):
60 def __init__(self, mean, std):
61 self.mean = mean
62 self.std = std
63
64 def __call__(self, tensor):
65 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