Skip to content

Commit 31e4eeb

Browse files
committed
make the call that algorithm 23 has an error
1 parent 7af2f4c commit 31e4eeb

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

alphafold3_pytorch/alphafold3.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2676,7 +2676,8 @@ def __init__(
26762676
token_transformer_depth = 24,
26772677
token_transformer_heads = 16,
26782678
atom_decoder_depth = 3,
2679-
atom_decoder_heads = 4
2679+
atom_decoder_heads = 4,
2680+
serial = True # believe they have an error on Algorithm 23. lacking a residual - default to serial architecture until further news
26802681
),
26812682
edm_kwargs: dict = dict(
26822683
sigma_min = 0.002,

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.0.36"
3+
version = "0.0.37"
44
description = "Alphafold 3 - Pytorch"
55
authors = [
66
{ name = "Phil Wang", email = "[email protected]" }

0 commit comments

Comments
 (0)