(self, x, emb, **kwargs)
| 69 | self.proj_out = StylizationBlock(latent_dim, time_embed_dim, dropout) |
| 70 | |
| 71 | def forward(self, x, emb, **kwargs): |
| 72 | y = self.linear2(self.dropout(self.activation(self.linear1(x)))) |
| 73 | y = x + self.proj_out(y, emb) |
| 74 | return y |
| 75 | |
| 76 | |
| 77 | class DecoderLayer(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected