(self, input)
| 179 | nn.Linear(channels[-2], channels[-1])) |
| 180 | |
| 181 | def forward(self, input): |
| 182 | for layer in self.mlp: |
| 183 | input = layer(input) |
| 184 | return input |
| 185 | |
| 186 | @MODELS.register_module() |
| 187 | class _P3FormerHead(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected