Skip to content

Commit

Permalink
bug
Browse files Browse the repository at this point in the history
  • Loading branch information
lucidrains committed Aug 3, 2021
1 parent 34ddc06 commit fee0775
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion alphafold2_pytorch/alphafold2.py
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ def forward(self, x, mask = None):
out_gate = self.out_gate(x).sigmoid()

left = left * left_gate
right = right * left_gate
right = right * right_gate

out = einsum(self.mix_einsum_eq, left, right)

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
setup(
name = 'alphafold2-pytorch',
packages = find_packages(),
version = '0.4.21',
version = '0.4.22',
license='MIT',
description = 'AlphaFold2 - Pytorch',
author = 'Phil Wang, Eric Alcaide',
Expand Down

0 comments on commit fee0775

Please sign in to comment.