Skip to content

Commit 22f24e1

Browse files
committed
address #113
1 parent d5616fa commit 22f24e1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

alphafold3_pytorch/alphafold3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1677,7 +1677,7 @@ def forward(
16771677
residual = noised_repr if self.add_residual else 0.
16781678

16791679
if not serial:
1680-
ff_out = ff_out + attn_out + residual
1680+
noised_repr = ff_out + attn_out + residual
16811681

16821682
# splice out registers
16831683

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "alphafold3-pytorch"
3-
version = "0.2.59"
3+
version = "0.2.61"
44
description = "Alphafold 3 - Pytorch"
55
authors = [
66
{ name = "Phil Wang", email = "[email protected]" }

0 commit comments

Comments
 (0)