Skip to content

Commit

Permalink
Update spanet.py
Browse files Browse the repository at this point in the history
  • Loading branch information
DoranLyong authored May 28, 2024
1 parent 71c5f86 commit 4975998
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion image_classification/spanet.py
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ def forward(self, x):
self.ctx = self.pws[0](feat_bank[0]) + self.pws[1](feat_bank[1]) + self.pws[2](feat_bank[2]) # context aggregation
x = x * self.ctx # modulation

# == Aggregation == #
# == Update == #
x = self.proj_out(x)
return x

Expand Down

0 comments on commit 4975998

Please sign in to comment.