Skip to content

Commit 88a65b6

Browse files
committed
another discrepancy with original EDM
1 parent f9c5992 commit 88a65b6

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

alphafold3_pytorch/alphafold3.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2490,9 +2490,11 @@ def preconditioned_network_forward(
24902490

24912491
padded_sigma = rearrange(sigma, 'b -> b 1 1')
24922492

2493+
maybe_c_noise = self.c_noise if self.karras_formulation else identity
2494+
24932495
net_out = self.net(
24942496
self.c_in(padded_sigma) * noised_atom_pos,
2495-
times = self.c_noise(sigma),
2497+
times = maybe_c_noise(sigma),
24962498
**network_condition_kwargs
24972499
)
24982500

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

0 commit comments

Comments
 (0)