(self, x, sublayer)
| 74 | self.norm = LayerNorm(size) |
| 75 | |
| 76 | def forward(self, x, sublayer): |
| 77 | return x + sublayer(self.norm(x)) |
| 78 | |
| 79 | class EncoderLayer(pl.LightningModule): |
| 80 | def __init__(self, size, self_attn, feed_forward): |
nothing calls this directly
no outgoing calls
no test coverage detected