-
Notifications
You must be signed in to change notification settings - Fork 109
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
54b0824
commit ebddf2f
Showing
3 changed files
with
48 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
from mlp_mixer_pytorch.mlp_mixer_pytorch import MLPMixer | ||
from mlp_mixer_pytorch.mlp_mixer_3d_pytorch import MLPMixer3D | ||
from mlp_mixer_pytorch.permutator import Permutator |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
from torch import nn | ||
from functools import partial | ||
from einops.layers.torch import Rearrange, Reduce | ||
|
||
pair = lambda x: x if isinstance(x, tuple) else (x, x) | ||
|
||
class PreNormResidual(nn.Module): | ||
def __init__(self, dim, fn): | ||
super().__init__() | ||
self.fn = fn | ||
self.norm = nn.LayerNorm(dim) | ||
|
||
def forward(self, x): | ||
return self.fn(self.norm(x)) + x | ||
|
||
def FeedForward(dim, expansion_factor = 4, dropout = 0., dense = nn.Linear): | ||
inner_dim = int(dim * expansion_factor) | ||
return nn.Sequential( | ||
dense(dim, inner_dim), | ||
nn.GELU(), | ||
nn.Dropout(dropout), | ||
dense(inner_dim, dim), | ||
nn.Dropout(dropout) | ||
) | ||
|
||
def MLPMixer3D(*, image_size, time_size, channels, patch_size, time_patch_size, dim, depth, num_classes, expansion_factor = 4, expansion_factor_token = 0.5, dropout = 0.): | ||
image_h, image_w = pair(image_size) | ||
assert (image_h % patch_size) == 0 and (image_w % patch_size) == 0, 'image must be divisible by patch size' | ||
assert (time_size % time_patch_size) == 0, 'time dimension must be divisible by time patch size' | ||
|
||
num_patches = (image_h // patch_size) * (image_w // patch_size) * (time_size // time_patch_size) | ||
chan_first, chan_last = partial(nn.Conv1d, kernel_size = 1), nn.Linear | ||
|
||
return nn.Sequential( | ||
Rearrange('b c (t pt) (h p1) (w p2) -> b (h w t) (p1 p2 pt c)', p1 = patch_size, p2 = patch_size, pt = time_patch_size), | ||
nn.Linear((time_patch_size * patch_size ** 2) * channels, dim), | ||
*[nn.Sequential( | ||
PreNormResidual(dim, FeedForward(num_patches, expansion_factor, dropout, chan_first)), | ||
PreNormResidual(dim, FeedForward(dim, expansion_factor_token, dropout, chan_last)) | ||
) for _ in range(depth)], | ||
nn.LayerNorm(dim), | ||
Reduce('b n c -> b c', 'mean'), | ||
nn.Linear(dim, num_classes) | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters