Skip to content

Commit 6d9f47e

Browse files
author
Tassilo Wald
committed
Remove typo
1 parent a2520df commit 6d9f47e

File tree

1 file changed

+1
-1
lines changed
  • dynamic_network_architectures/architectures

1 file changed

+1
-1
lines changed

dynamic_network_architectures/architectures/primus.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -180,7 +180,7 @@ def forward(self, x, ret_mask=False):
180180
mask = rearrange(restoration_mask, "b (w h d) -> b w h d", h=H, w=W, d=D)
181181
full_mask = (
182182
mask.repeat_interleave(FW // W, dim=1)
183-
.repeat_interleave(FH // H, dim=2) sc
183+
.repeat_interleave(FH // H, dim=2)
184184
.repeat_interleave(FD // D, dim=3)
185185
)
186186
full_mask = full_mask[:, None, ...] # Add channel dimension # [B, 1, W, H, D]

0 commit comments

Comments
 (0)