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

Method __init__

models/transformer/wan/modules/tm2m_model.py:498–511  ·  view source on GitHub ↗
(self, dim, out_dim, patch_size, eps=1e-6)

Source from the content-addressed store, hash-verified

496class Head(nn.Module):
497
498 def __init__(self, dim, out_dim, patch_size, eps=1e-6):
499 super().__init__()
500 self.dim = dim
501 self.out_dim = out_dim
502 self.patch_size = patch_size
503 self.eps = eps
504
505 # layers
506 out_dim = math.prod(patch_size) * out_dim
507 self.norm = WanLayerNorm(dim, eps)
508 self.head = nn.Linear(dim, out_dim)
509
510 # modulation
511 self.modulation = nn.Parameter(torch.randn(1, 2, dim) / dim**0.5)
512
513 def forward(self, x, e):
514 assert e.dtype == torch.float32

Callers 8

__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45
__init__Method · 0.45

Calls 1

WanLayerNormClass · 0.70

Tested by

no test coverage detected