(self, x)
| 22 | self.drop = nn.Dropout(drop) |
| 23 | |
| 24 | def forward(self, x): |
| 25 | x = self.fc1(x) |
| 26 | x = self.act(x) |
| 27 | x = self.drop(x) |
| 28 | x = self.fc2(x) |
| 29 | x = self.drop(x) |
| 30 | return x |
| 31 | |
| 32 | |
| 33 | def window_partition(x, window_size): |
nothing calls this directly
no outgoing calls
no test coverage detected