| ''' |
| Add `extra_repr` into DropPath implemented by timm |
| for displaying more info. |
| ''' |
|
|
|
|
| import torch |
| import torch.nn as nn |
| from e3nn import o3 |
| import torch.nn.functional as F |
|
|
|
|
| def drop_path(x, drop_prob: float = 0., training: bool = False): |
| """Drop paths (Stochastic Depth) per sample (when applied in main path of residual blocks). |
| This is the same as the DropConnect impl I created for EfficientNet, etc networks, however, |
| the original name is misleading as 'Drop Connect' is a different form of dropout in a separate paper... |
| See discussion: https://github.com/tensorflow/tpu/issues/494#issuecomment-532968956 ... I've opted for |
| changing the layer and argument names to 'drop path' rather than mix DropConnect as a layer name and use |
| 'survival rate' as the argument. |
| """ |
| if drop_prob == 0. or not training: |
| return x |
| keep_prob = 1 - drop_prob |
| shape = (x.shape[0],) + (1,) * (x.ndim - 1) |
| random_tensor = keep_prob + torch.rand(shape, dtype=x.dtype, device=x.device) |
| random_tensor.floor_() |
| output = x.div(keep_prob) * random_tensor |
| return output |
|
|
|
|
| class DropPath(nn.Module): |
| """Drop paths (Stochastic Depth) per sample (when applied in main path of residual blocks). |
| """ |
| def __init__(self, drop_prob=None): |
| super(DropPath, self).__init__() |
| self.drop_prob = drop_prob |
|
|
| def forward(self, x): |
| return drop_path(x, self.drop_prob, self.training) |
| |
| def extra_repr(self): |
| return 'drop_prob={}'.format(self.drop_prob) |
| |
| |
| class GraphDropPath(nn.Module): |
| ''' |
| Consider batch for graph data when dropping paths. |
| ''' |
| def __init__(self, drop_prob=None): |
| super(GraphDropPath, self).__init__() |
| self.drop_prob = drop_prob |
| |
|
|
| def forward(self, x, batch): |
| batch_size = batch.max() + 1 |
| shape = (batch_size,) + (1,) * (x.ndim - 1) |
| ones = torch.ones(shape, dtype=x.dtype, device=x.device) |
| drop = drop_path(ones, self.drop_prob, self.training) |
| out = x * drop[batch] |
| return out |
| |
| |
| def extra_repr(self): |
| return 'drop_prob={}'.format(self.drop_prob) |
| |
| |
|
|
| class EquivariantDropout(nn.Module): |
| def __init__(self, irreps, drop_prob): |
| super(EquivariantDropout, self).__init__() |
| self.irreps = irreps |
| self.num_irreps = irreps.num_irreps |
| self.drop_prob = drop_prob |
| self.drop = torch.nn.Dropout(drop_prob, True) |
| self.mul = o3.ElementwiseTensorProduct(irreps, |
| o3.Irreps('{}x0e'.format(self.num_irreps))) |
| |
| |
| def forward(self, x): |
| if not self.training or self.drop_prob == 0.0: |
| return x |
| shape = (x.shape[0], self.num_irreps) |
| mask = torch.ones(shape, dtype=x.dtype, device=x.device) |
| mask = self.drop(mask) |
| out = self.mul(x, mask) |
| return out |
| |
|
|
| class EquivariantScalarsDropout(nn.Module): |
| def __init__(self, irreps, drop_prob): |
| super(EquivariantScalarsDropout, self).__init__() |
| self.irreps = irreps |
| self.drop_prob = drop_prob |
| |
| |
| def forward(self, x): |
| if not self.training or self.drop_prob == 0.0: |
| return x |
| out = [] |
| start_idx = 0 |
| for mul, ir in self.irreps: |
| temp = x.narrow(-1, start_idx, mul * ir.dim) |
| start_idx += mul * ir.dim |
| if ir.is_scalar(): |
| temp = F.dropout(temp, p=self.drop_prob, training=self.training) |
| out.append(temp) |
| out = torch.cat(out, dim=-1) |
| return out |
| |
| |
| def extra_repr(self): |
| return 'irreps={}, drop_prob={}'.format(self.irreps, self.drop_prob) |
| |
|
|
| class EquivariantDropoutArraySphericalHarmonics(nn.Module): |
| def __init__(self, drop_prob, drop_graph=False): |
| super(EquivariantDropoutArraySphericalHarmonics, self).__init__() |
| self.drop_prob = drop_prob |
| self.drop = torch.nn.Dropout(drop_prob, True) |
| self.drop_graph = drop_graph |
| |
| |
| def forward(self, x, batch=None): |
| if not self.training or self.drop_prob == 0.0: |
| return x |
| assert len(x.shape) == 3 |
|
|
| if self.drop_graph: |
| assert batch is not None |
| batch_size = batch.max() + 1 |
| shape = (batch_size, 1, x.shape[2]) |
| mask = torch.ones(shape, dtype=x.dtype, device=x.device) |
| mask = self.drop(mask) |
| out = x * mask[batch] |
| else: |
| shape = (x.shape[0], 1, x.shape[2]) |
| mask = torch.ones(shape, dtype=x.dtype, device=x.device) |
| mask = self.drop(mask) |
| out = x * mask |
|
|
| return out |
| |
| |
| def extra_repr(self): |
| return 'drop_prob={}, drop_graph={}'.format(self.drop_prob, self.drop_graph) |
| |