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
Hi! I just noticed that the SLDS class doesn't seem to support hierarchical parameters anymore. Is this on purpose?
If yes, I think __init__ taking the arguments hierarchical_transition_tags, hierarchical_dynamics_tags, hierarchical_emission_tags is a bit misleading and could be removed. I thought I was fitting a hierarchical model by specifying them but then saw that they're not actually used.
If not, could this functionality be restored by borrowing code from HMM.__init__ or would it be much more complex than that?
The text was updated successfully, but these errors were encountered:
Hi @bagibence, thanks for pointing this out. We're not really supporting hierarchical LDS and SLDS at the moment, and should strip out those arguments. I think implementing them in a way that is reasonably well-performing (in terms of speed) would be fairly involved, since it would likely require writing custom M-steps. For now, I'm going to take out those arguments so things aren't so confusing!
Is it possible to apply the same structure to implement a hierarchical version for Bernoulli emissions? Or does this require additional custom code for eg the M-steps?
Hi! I just noticed that the
SLDS
class doesn't seem to support hierarchical parameters anymore. Is this on purpose?If yes, I think
__init__
taking the argumentshierarchical_transition_tags
,hierarchical_dynamics_tags
,hierarchical_emission_tags
is a bit misleading and could be removed. I thought I was fitting a hierarchical model by specifying them but then saw that they're not actually used.If not, could this functionality be restored by borrowing code from
HMM.__init__
or would it be much more complex than that?The text was updated successfully, but these errors were encountered: