(self, x)
| 543 | self.random_horizontal_flip = transforms.RandomHorizontalFlip(p=0.5) # A.RandomHorizontalFlip(p=0.5) |
| 544 | |
| 545 | def forward(self, x): |
| 546 | for module in self.children(): |
| 547 | x = module(x) |
| 548 | return x |
| 549 | |
| 550 | |
| 551 | class ISSBA(Base): |
nothing calls this directly
no outgoing calls
no test coverage detected