(self, x, H, W)
| 143 | m.bias.data.zero_() |
| 144 | |
| 145 | def forward(self, x, H, W): |
| 146 | x = x + self.drop_path(self.attn(self.norm1(x), H, W)) |
| 147 | x = x + self.drop_path(self.mlp(self.norm2(x), H, W)) |
| 148 | |
| 149 | return x |
| 150 | |
| 151 | |
| 152 | class OverlapPatchEmbed(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected