(self, x)
| 93 | self.encoder = Resnext_torch.resnext101(pretrained=self.pretrained) |
| 94 | |
| 95 | def forward(self, x): |
| 96 | x = self.encoder(x) # 1/32, 1/16, 1/8, 1/4 |
| 97 | return x |
| 98 | |
| 99 | |
| 100 | class FTB(nn.Module): |
nothing calls this directly
no outgoing calls
no test coverage detected