(self, x)
| 57 | self.layers = nn.Sequential(*layer_list) |
| 58 | |
| 59 | def forward(self, x): |
| 60 | if self.posenc > 0: |
| 61 | x = self.PE(x) |
| 62 | return self.layers(x) |
| 63 | |
| 64 | |
| 65 | class DecoderMLPSkipConcat(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected