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
How might one apply the tgEDMD algorithm to datasets with multiple simulations?
More specifically, I have a dataset comprised of S simulations of multi-dimensional time series (each with shape [d,m], if I understand this repository's naming convention correctly); that is, my dataset is of shape (S, d, m). Based on what I've been able to find in this repository, the amuset_hosvd method requires the input data to be of shape (d,m); does this mean I need to either flatten my dataset to wrap the S dimension into one of the others or instead run the amuset_hosvd method once for each simulation?
I am hoping to use the tgEDMD algorithm to simultaneously model the information gleaned across all simulations if at all possible, so any guidance towards that end would be greatly appreciated!
Thank you!
The text was updated successfully, but these errors were encountered:
Just to clarify, I looked at how the ala10 data was being processed, and I noticed that the example script was concatenating about 6 different simulation files together - is it alright if I ask whether those were independent simulations or if they were simply sequential windows of the same simulation recording?
Thanks for your interest in the Scikit-TT toolbox.
You are absolutely correct. If you want to apply tgEDMD to all snapshots at once, you first have to reshape your data tensor. Suppose X is your dataset of shape (S,d,m), where S is the number of simulations, d the dimension of the state space, and m the number of snapshots per simulation, then you can use X.transpose([1, 0, 2]).reshape([d, S*m]) as input for amuset_hosvd.
The dataset for ala10 consists of 6 independent simulations which can be simply concatenated as we do not consider any correlations between different time steps when applying tgEDMD.
I hope I could help you. Let me know, if you have further questions.
Dear Dr. Patrick Gelß,
Thank you for making this repository available!
How might one apply the tgEDMD algorithm to datasets with multiple simulations?
More specifically, I have a dataset comprised of S simulations of multi-dimensional time series (each with shape [d,m], if I understand this repository's naming convention correctly); that is, my dataset is of shape (S, d, m). Based on what I've been able to find in this repository, the amuset_hosvd method requires the input data to be of shape (d,m); does this mean I need to either flatten my dataset to wrap the S dimension into one of the others or instead run the amuset_hosvd method once for each simulation?
I am hoping to use the tgEDMD algorithm to simultaneously model the information gleaned across all simulations if at all possible, so any guidance towards that end would be greatly appreciated!
Thank you!
The text was updated successfully, but these errors were encountered: