Skip to content

Commit

Permalink
fix post coarse transformer gateloop layername
Browse files Browse the repository at this point in the history
  • Loading branch information
lucidrains committed Jun 20, 2024
1 parent 9db2e34 commit 36d8dba
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion meshgpt_pytorch/meshgpt_pytorch.py
Original file line number Diff line number Diff line change
Expand Up @@ -1603,7 +1603,7 @@ def forward_on_codes(
)

if exists(self.coarse_post_gateloop_block):
face_codes, coarse_post_gateloop_cache = self.coarse_gateloop_block(face_codes, cache = coarse_post_gateloop_cache)
face_codes, coarse_post_gateloop_cache = self.coarse_post_gateloop_block(face_codes, cache = coarse_post_gateloop_cache)

else:
attended_face_codes = None
Expand Down
2 changes: 1 addition & 1 deletion meshgpt_pytorch/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.5.0'
__version__ = '1.5.1'

0 comments on commit 36d8dba

Please sign in to comment.