(self, block_size)
| 6 | |
| 7 | class DropBlock(nn.Module): |
| 8 | def __init__(self, block_size): |
| 9 | super(DropBlock, self).__init__() |
| 10 | |
| 11 | self.block_size = block_size |
| 12 | |
| 13 | def forward(self, x, gamma): |
| 14 | # shape: (bsize, channels, height, width) |
nothing calls this directly
no outgoing calls
no test coverage detected