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
{{ message }}
This repository has been archived by the owner on Jan 30, 2023. It is now read-only.
It seems to me that the code is structured in a way that fundamentally assumes that durations are discrete. To change this, one would have to change the way durations work to mirror the way emissions work.
@yanpanlau There's currently no way to supply a scipy distribution directly as input, though I agree there should be one. You can work around this by instantiating the distribution, and getting its PMF directly (this is what the R version of the code does internally):
Thanks for the nice work.
In the R version of HSMM, we can specify the negative binomial distribution something like this:
hsmm(sim$obs, od = "norm", rd = "nbinom")
But according to the API, it seems only support numpy array as input...is there any easy way I can simply import the distribution from scipy.stats?
Thanks
The text was updated successfully, but these errors were encountered: