Apply the module to `x` given `emb` timestep embeddings.
(self, x, emb)
| 129 | |
| 130 | @abstractmethod |
| 131 | def forward(self, x, emb): |
| 132 | """ |
| 133 | Apply the module to `x` given `emb` timestep embeddings. |
| 134 | """ |
| 135 | |
| 136 | |
| 137 | class TimestepEmbedSequential(nn.Sequential, TimestepBlock): |
nothing calls this directly
no outgoing calls
no test coverage detected