(self, x, pos, cond)
| 548 | self.ff = FeedForwardBlock(d_model, d_ff, cond_features, dropout=dropout) |
| 549 | |
| 550 | def forward(self, x, pos, cond): |
| 551 | x = checkpoint(self.ff, x, cond) |
| 552 | return x |
| 553 | |
| 554 | |
| 555 | class Level(nn.ModuleList): |
nothing calls this directly
no test coverage detected