Skip to content
forked from Mogeng/IOHMM

This is the repository that includes my python implementation of IO-HMM

Notifications You must be signed in to change notification settings

sfwatergit/IO-HMM

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 

Repository files navigation

IO-HMM

This is the repository that includes my python implementation of IO-HMM

My implementation is easy to use. Please see examples and code in the notebook.

Example usage:

SHMM = UnSupervisedIOHMM(num_states=2, max_EM_iter=1000, EM_tol=1e-4)
SHMM.setData([speed])
SHMM.setModels(model_emissions = [LM(), MNLD()], model_transition=MNLP(solver='lbfgs'))
SHMM.setInputs(covariates_initial = [], covariates_transition = [], covariates_emissions = [[],[]])
SHMM.setOutputs([['rt'],['corr']])

About

This is the repository that includes my python implementation of IO-HMM

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 73.5%
  • Jupyter Notebook 26.5%