Skip to content

Commit

Permalink
Fix wrong projection output
Browse files Browse the repository at this point in the history
  • Loading branch information
jungwon-choi committed May 1, 2024
1 parent 68e6447 commit ea38b95
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vision_mamba/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def forward(self, x: torch.Tensor):

# Split x into x1 and x2 with linears
z1 = self.proj(x)
x1 = self.proj(x)
x = self.proj(x)

# forward con1d
x1 = self.process_direction(
Expand Down

0 comments on commit ea38b95

Please sign in to comment.