MCPcopy Create free account
hub / github.com/deepbrainai-research/float / __init__

Method __init__

models/float/styledecoder.py:64–65  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

62
63class MotionPixelNorm(nn.Module):
64 def __init__(self):
65 super().__init__()
66
67 def forward(self, input):
68 return input * torch.rsqrt(torch.mean(input ** 2, dim=2, keepdim=True) + 1e-8)

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected