-
Notifications
You must be signed in to change notification settings - Fork 590
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
log_probability not implemented for zero_inflated poisson HMM #1069
Comments
Yes, this is an error on my side. I will look into a solution. |
Thanks, I really appreciate it! |
Hi, I met with the similar issue:
My model is:
and the calling line
where obs_final is a np array with shape (1, 1119101, 11). I wondered if I did it correctly? Thanks in advance! Best, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, I am trying to infer and analyze hidden states in neuron spikings with ZIP-HMM uninitialized and fit the model to data.
model = DenseHMM([ZeroInflated(Poisson()), ZeroInflated(Poisson()), ZeroInflated(Poisson())], max_iter=1000, verbose=True)
However, it shows that
I understand that zero_inflated is a wrapper so it shouldn't have any dedicated log_probability function. So, I wish to confirm with you that
ZeroInflated(Poisson())
could be used in hmm this way. If so, I wish you could kindly provide a solution to this. Thanks in advance!The text was updated successfully, but these errors were encountered: