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

Method __init__

diffplanner/datasets/pipelines/transforms.py:109–112  ·  view source on GitHub ↗
(self, mean_path, std_path, eps=1e-9)

Source from the content-addressed store, hash-verified

107 """
108
109 def __init__(self, mean_path, std_path, eps=1e-9):
110 self.mean = np.load(mean_path)
111 self.std = np.load(std_path)
112 self.eps = eps
113
114 def __call__(self, results):
115 motion = results['motion']

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected