(self, x, mask)
| 41 | self.norm = LayerNorm(layer.size) |
| 42 | |
| 43 | def forward(self, x, mask): |
| 44 | for layer in self.layers: |
| 45 | x = layer(x, mask) |
| 46 | return self.norm(x) |
| 47 | |
| 48 | class Decoder(pl.LightningModule): |
| 49 | def __init__(self, layer, N): |
nothing calls this directly
no outgoing calls
no test coverage detected