Skip to content

Commit

Permalink
metric bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ardagoreci committed Aug 14, 2024
1 parent 72442b3 commit d87a740
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/models/model_wrapper.py
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ def _compute_validation_metrics(
batch_size, n_tokens = batch["residue_index"].shape
metrics = {}

gt_coords = outputs["all_atom_positions"] # (bs, n_atoms, 3) gt_atoms after augmentation
gt_coords = batch["all_atom_positions"] # (bs, n_atoms, 3) gt_atoms after augmentation
pred_coords = outputs["sampled_positions"].squeeze(-3) # remove S dimension (bs, 1, n_atoms, 3)
all_atom_mask = batch["atom_mask"] # (bs, n_atoms)

Expand Down

0 comments on commit d87a740

Please sign in to comment.