You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: alphafold3_pytorch/alphafold3.py
+5-3Lines changed: 5 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -2406,6 +2406,7 @@ def __init__(
2406
2406
S_tmin=0.05,
2407
2407
S_tmax=50,
2408
2408
S_noise=1.003,
2409
+
step_scale=1.5,
2409
2410
smooth_lddt_loss_kwargs: dict=dict(),
2410
2411
weighted_rigid_align_kwargs: dict=dict(),
2411
2412
karras_formulation=False# use the original EDM formulation from Karras et al. Table 1 in https://arxiv.org/abs/2206.00364 - differences are that the noise and sampling schedules are scaled by sigma data, as well as loss weight adds the sigma data instead of multiply in denominator
@@ -2425,6 +2426,7 @@ def __init__(
2425
2426
self.P_std=P_std
2426
2427
2427
2428
self.num_sample_steps=num_sample_steps# otherwise known as N in the paper
0 commit comments