(self, x, mask)
| 85 | self.size = size |
| 86 | |
| 87 | def forward(self, x, mask): |
| 88 | x = self.sublayer[0](x, lambda x: self.self_attn(x, x, x, mask)) |
| 89 | return self.sublayer[1](x, self.feed_forward) |
| 90 | |
| 91 | class DecoderLayer(pl.LightningModule): |
| 92 |
nothing calls this directly
no outgoing calls
no test coverage detected