Skip to content

Commit bbe8a84

Browse files
DeepMindcopybara-github
authored andcommitted
Fix: return correct renaming mask.
PiperOrigin-RevId: 558140222 Change-Id: I7fb69e8a7c9ce95a26d0816fb8c1c02cba68f660
1 parent 82ef354 commit bbe8a84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

alphafold/model/folding_multimer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -775,7 +775,7 @@ def compute_atom14_gt(
775775
gt_mask = (1. - use_alt) * gt_mask + use_alt * alt_gt_mask
776776
gt_positions = (1. - use_alt) * gt_positions + use_alt * alt_gt_positions
777777

778-
return gt_positions, alt_gt_mask, alt_naming_is_better
778+
return gt_positions, gt_mask, alt_naming_is_better
779779

780780

781781
def backbone_loss(gt_rigid: geometry.Rigid3Array,

0 commit comments

Comments
 (0)