Skip to content

Commit

Permalink
Replace 2 transpose() with 1 permute in TransformerBlock()` (ultr…
Browse files Browse the repository at this point in the history
  • Loading branch information
dingyiwei committed Nov 15, 2021
1 parent 4b3ec0a commit ccd63e9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions models/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ def forward(self, x):
if self.conv is not None:
x = self.conv(x)
b, _, w, h = x.shape
p = x.flatten(2).unsqueeze(0).transpose(0, 3).squeeze(3)
return self.tr(p + self.linear(p)).unsqueeze(3).transpose(0, 3).reshape(b, self.c2, w, h)
p = x.flatten(2).permute(2, 0, 1)
return self.tr(p + self.linear(p)).permute(1, 2, 0).reshape(b, self.c2, w, h)


class Bottleneck(nn.Module):
Expand Down

0 comments on commit ccd63e9

Please sign in to comment.