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 34dfeb9 commit 2ef724bCopy full SHA for 2ef724b
utils/rmsd.py
@@ -43,7 +43,6 @@ def kabsch_align(P, Q):
43
44
45
@jax.jit
46
-@jax.vmap
47
def kabsch_rmsd(P, Q):
48
P_aligned, Q_aligned = kabsch_align(P, Q)
49
return jnp.sqrt(jnp.sum(jnp.square(P_aligned - Q_aligned)) / P.shape[0])
0 commit comments