MCPcopy Create free account
hub / github.com/MotrixLab/FineMoGen / __init__

Method __init__

mogen/datasets/pipelines/transforms.py:113–117  ·  view source on GitHub ↗
(self, mean_path, std_path, eps=1e-9, keys=['motion'])

Source from the content-addressed store, hash-verified

111 """
112
113 def __init__(self, mean_path, std_path, eps=1e-9, keys=['motion']):
114 self.mean = np.load(mean_path)
115 self.std = np.load(std_path)
116 self.eps = eps
117 self.keys = keys
118
119 def __call__(self, results):
120 for k in self.keys:

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected