Drop paths (Stochastic Depth) per sample (when applied in main path of residual blocks).
| 24 | |
| 25 | |
| 26 | class DropPath(nn.Module): |
| 27 | """Drop paths (Stochastic Depth) per sample (when applied in main path of residual blocks).""" |
| 28 | |
| 29 | def __init__(self, drop_prob=None): |
| 30 | super(DropPath, self).__init__() |
| 31 | self.drop_prob = drop_prob |
| 32 | |
| 33 | def forward(self, x): |
| 34 | return drop_path(x, self.drop_prob, self.training) |