Skip to content

Commit 484bb5d

Browse files
committed
address #39
1 parent 27991de commit 484bb5d

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ A fork with full Lightning + Hydra support is being maintained by <a href="https
2020

2121
- <a href="https://github.com/gitabtion">Heng</a> for pointing out inconsistencies with the paper and pull requesting the solutions
2222

23+
- <a href="https://github.com/luwei0917">Wei Lu</a> for catching a few erroneous hyperparameters
24+
2325
- <a href="https://github.com/amorehead">Alex</a> for the PDB dataset preparation script!
2426

2527
- <a href="https://github.com/patrick-kidger">Patrick</a> for <a href="https://docs.kidger.site/jaxtyping/">jaxtyping</a>, <a href="https://github.com/fferflo">Florian</a> for <a href="https://github.com/fferflo/einx">einx</a>, and of course, <a href="https://github.com/arogozhnikov">Alex</a> for <a href="https://einops.rocks/">einops</a>

alphafold3_pytorch/alphafold3.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1455,6 +1455,7 @@ def __init__(
14551455
attn_window_size = None,
14561456
attn_pair_bias_kwargs: dict = dict(),
14571457
attn_num_memory_kv = False,
1458+
trans_expansion_factor = 2,
14581459
num_register_tokens = 0,
14591460
serial = False,
14601461
use_linear_attn = False,
@@ -1509,7 +1510,8 @@ def __init__(
15091510
)
15101511

15111512
transition = Transition(
1512-
dim = dim
1513+
dim = dim,
1514+
expansion_factor = trans_expansion_factor
15131515
)
15141516

15151517
conditionable_pair_bias = ConditionWrapper(
@@ -1959,7 +1961,7 @@ def __init__(
19591961
sigma_data = 0.5, # standard deviation of data distribution
19601962
rho = 7, # controls the sampling schedule
19611963
P_mean = -1.2, # mean of log-normal distribution from which noise is drawn for training
1962-
P_std = 1.2, # standard deviation of log-normal distribution from which noise is drawn for training
1964+
P_std = 1.5, # standard deviation of log-normal distribution from which noise is drawn for training
19631965
S_churn = 80, # parameters for stochastic sampling - depends on dataset, Table 5 in apper
19641966
S_tmin = 0.05,
19651967
S_tmax = 50,

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

0 commit comments

Comments
 (0)