We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f9c5992 commit 88a65b6Copy full SHA for 88a65b6
alphafold3_pytorch/alphafold3.py
@@ -2490,9 +2490,11 @@ def preconditioned_network_forward(
2490
2491
padded_sigma = rearrange(sigma, 'b -> b 1 1')
2492
2493
+ maybe_c_noise = self.c_noise if self.karras_formulation else identity
2494
+
2495
net_out = self.net(
2496
self.c_in(padded_sigma) * noised_atom_pos,
- times = self.c_noise(sigma),
2497
+ times = maybe_c_noise(sigma),
2498
**network_condition_kwargs
2499
)
2500
pyproject.toml
@@ -1,6 +1,6 @@
1
[project]
2
name = "alphafold3-pytorch"
3
-version = "0.2.81"
+version = "0.2.82"
4
description = "Alphafold 3 - Pytorch"
5
authors = [
6
{ name = "Phil Wang", email = "[email protected]" }
0 commit comments