We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e5a1fdf commit 6690cf3Copy full SHA for 6690cf3
alphafold3_pytorch/alphafold3.py
@@ -580,7 +580,7 @@ def forward(
580
# attention bias preparation with further addition from pairwise repr
581
582
if exists(attn_bias):
583
- attn_bias = rearrange(attn_bias, 'b i j -> b 1 i j')
+ attn_bias = rearrange(attn_bias, 'b ... -> b 1 ...')
584
else:
585
attn_bias = 0.
586
pyproject.toml
@@ -1,6 +1,6 @@
1
[project]
2
name = "alphafold3-pytorch"
3
-version = "0.0.64"
+version = "0.0.65"
4
description = "Alphafold 3 - Pytorch"
5
authors = [
6
{ name = "Phil Wang", email = "[email protected]" }
0 commit comments