(self, x, emb)
| 165 | self.proj_out = StylizationBlock(latent_dim, time_embed_dim, dropout) |
| 166 | |
| 167 | def forward(self, x, emb): |
| 168 | y = self.linear2(self.dropout(self.activation(self.linear1(x)))) |
| 169 | y = x + self.proj_out(y, emb) |
| 170 | return y |
| 171 | |
| 172 | |
| 173 | class LinearTemporalDiffusionTransformerDecoderLayer(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected