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
+1-3Lines changed: 1 addition & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -2671,9 +2671,7 @@ def forward(
2671
2671
2672
2672
noise=torch.randn_like(atom_pos_ground_truth)
2673
2673
2674
-
maybe_c_noise=self.c_noiseifnotself.karras_formulationelseidentity# @wufandi claims the paper has a bug here https://github.com/lucidrains/alphafold3-pytorch/issues/124#issuecomment-2268374756
2675
-
2676
-
noised_atom_pos=atom_pos_ground_truth+padded_sigmas*maybe_c_noise(noise) # alphas are 1. in the paper
2674
+
noised_atom_pos=atom_pos_ground_truth+padded_sigmas*noise# alphas are 1. in the paper
0 commit comments