MCPcopy Create free account
hub / github.com/MeiGen-AI/MultiTalk / __init__

Method __init__

kokoro/modules.py:73–77  ·  view source on GitHub ↗
(self, style_dim, channels, eps=1e-5)

Source from the content-addressed store, hash-verified

71
72class AdaLayerNorm(nn.Module):
73 def __init__(self, style_dim, channels, eps=1e-5):
74 super().__init__()
75 self.channels = channels
76 self.eps = eps
77 self.fc = nn.Linear(style_dim, channels*2)
78
79 def forward(self, x, s):
80 x = x.transpose(-1, -2)

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected