Skip to content

Commit a424bc4

Browse files
committed
oops
1 parent cffd6a0 commit a424bc4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

alphafold3_pytorch/alphafold3.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3908,7 +3908,7 @@ def forward(
39083908

39093909
# cross entropy losses
39103910

3911-
assert all([t.shape[-1] for t in compact(pde_labels, plddt_labels, resolved_labels)])
3911+
assert len(set([t.shape[-1] for t in compact(pde_labels, plddt_labels, resolved_labels)])) == 1
39123912
assert pde_labels.shape[-1] == ch_logits.pde.shape[-1]
39133913

39143914
if exists(pae_labels):

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

0 commit comments

Comments
 (0)