You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Does mean the trajectories are simply a series of dimension [n_frames, n_atoms, 3] where the 3 is xyz coordinates for each atom at each time step?
In what format are rotations represented in the data or where are they defined?
If I have two arrays, predicted and ground truth with format xyz_qwxyz and shape [n_pred, 7], would RMSD be a good way to measure the loss between them?
Do you think it is feasible to adapt the code for applying this distance metric on data in xyz_qwxyz format with shape [n_pred, 7]?
def key_matrix(r):
what format is r in key_matrix(r), is it just a vector xyz relative to 0?
I may be misunderstanding how the mathematical abstraction of the molecules works, because I don't typically work with molecular dynamics. In my case, I happen to have a robot with 6 rotating joints, but they basically work like a really, really big molecule so I thought this might be an interesting algorithm to take a look at! :-)
Thanks again
The text was updated successfully, but these errors were encountered:
@mpharrigan, thanks for writing your Tensorflow RMSD article article. This looks very cool & I'm excited to learn about the RMSD distance metric!
Based on my reading I have a couple of questions, because I'm unsure of the data type/ordering you used. Does the following sound correct?
Some baseline info for what I'm familiar with:
wxyz
andxyzw
formatYou describe the trajectories as follows:
r
inkey_matrix(r)
, is it just a vector xyz relative to 0?I may be misunderstanding how the mathematical abstraction of the molecules works, because I don't typically work with molecular dynamics. In my case, I happen to have a robot with 6 rotating joints, but they basically work like a really, really big molecule so I thought this might be an interesting algorithm to take a look at! :-)
Thanks again
The text was updated successfully, but these errors were encountered: