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
fails because of a dimension mismatch when trying to initialize the ARHMM using KMeans. In the case of an LDS (as opposed toS LDS) the number of clusters passed to Kmeans is just 1, so it's pretty much a no-op anyway.
It's line 111 (observations.py) that fails, because the dimension of data is wrong -- it's T x T x D instead of T x D.
• Generally, there is an issue here trying to call _invert in cases where it doesn't make sense. We should only try to call _invert if the emissions model has a single subspace and is not the NeuralNetwork emissions type.
fails because of a dimension mismatch when trying to initialize the ARHMM using KMeans. In the case of an LDS (as opposed toS LDS) the number of clusters passed to Kmeans is just 1, so it's pretty much a no-op anyway.
It's line 111 (observations.py) that fails, because the dimension of
data
is wrong -- it's T x T x D instead of T x D.Seems like the cause might be here:
This outputs a list where each entry is T x T x D.
The text was updated successfully, but these errors were encountered: