MCPcopy Create free account
hub / github.com/MaureenZOU/TSAM / __init__

Method __init__

src/data_loader/transform_flow.py:113–115  ·  view source on GitHub ↗
(self, mean, std)

Source from the content-addressed store, hash-verified

111
112class GroupNormalize(object):
113 def __init__(self, mean, std):
114 self.mean = mean
115 self.std = std
116
117 def __call__(self, tensor):
118 rep_mean = self.mean * (tensor.size()[0] // len(self.mean))

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected