Skip to content

Commit 1091c0a

Browse files
committed
changed mind
1 parent a53d0ba commit 1091c0a

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

alphafold3_pytorch/alphafold3.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2671,9 +2671,7 @@ def forward(
26712671

26722672
noise = torch.randn_like(atom_pos_ground_truth)
26732673

2674-
maybe_c_noise = self.c_noise if not self.karras_formulation else identity # @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
26772675

26782676
denoised_atom_pos = self.preconditioned_network_forward(
26792677
noised_atom_pos,

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

0 commit comments

Comments
 (0)