(self, drop_prob=None)
| 36 | """Drop paths (Stochastic Depth) per sample (when applied in main path of residual blocks). |
| 37 | """ |
| 38 | def __init__(self, drop_prob=None): |
| 39 | super(DropPath, self).__init__() |
| 40 | self.drop_prob = drop_prob |
| 41 | |
| 42 | def forward(self, x): |
| 43 | return drop_path(x, self.drop_prob, self.training) |
nothing calls this directly
no outgoing calls
no test coverage detected