Skip to content

Commit

Permalink
Update evaulation.py
Browse files Browse the repository at this point in the history
  • Loading branch information
cwognum authored Jan 24, 2025
1 parent 178505b commit 1952430
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions evaulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,8 @@ def eval_poses(preds: list[Chem.Mol], refs: list[Chem.Mol], cutoff=2.0) -> Tuple
prob = (correct / rmsds.shape[0]) * 100

collect = {}
collect["rmsd_mean"] = np.mean(rmsds, 0.75)
collect["rmsd_min"] = np.min(rmsds, 0.75)
collect["rmsd_mean"] = np.mean(rmsds)
collect["rmsd_min"] = np.min(rmsds)
collect["rmsd_q1"] = np.quantile(rmsds, 0.25)
collect["rmsd_median"] = np.quantile(rmsds, 0.5)
collect["rmsd_q3"] = np.quantile(rmsds, 0.75)
Expand Down

0 comments on commit 1952430

Please sign in to comment.