Apply the module to `x` given `emb` timestep embeddings.
(self, x, emb)
| 68 | |
| 69 | @abstractmethod |
| 70 | def forward(self, x, emb): |
| 71 | """ |
| 72 | Apply the module to `x` given `emb` timestep embeddings. |
| 73 | """ |
| 74 | |
| 75 | |
| 76 | class TimestepEmbedSequential(nn.Sequential, TimestepBlock): |
nothing calls this directly
no outgoing calls
no test coverage detected