(self, x, emb, **kwargs)
| 23 | self.proj_out = StylizationBlock(latent_dim, time_embed_dim, dropout) |
| 24 | |
| 25 | def forward(self, x, emb, **kwargs): |
| 26 | y = self.linear2(self.dropout(self.activation(self.linear1(x)))) |
| 27 | y = x + self.proj_out(y, emb) |
| 28 | return y |
| 29 | |
| 30 | |
| 31 | class DecoderLayer(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected