(self, x)
| 54 | self.encoder.append(nn.Conv2d(mask_out_chans, embed_dim, kernel_size=1)) |
| 55 | |
| 56 | def forward(self, x): |
| 57 | return self.encoder(x) |
| 58 | |
| 59 | |
| 60 | # Lightly adapted from ConvNext (https://github.com/facebookresearch/ConvNeXt) |
nothing calls this directly
no outgoing calls
no test coverage detected