poypoyan / edhsmm

An(other) implementation of Explicit Duration Hidden Semi-Markov Models in Python 3
MIT License
8 stars 3 forks source link

Implement check() function in HSMM class #1

Closed poypoyan closed 4 years ago

poypoyan commented 4 years ago

The function check() in HSMM class checks model parameters for errors before performing the main algorithms.

For the HSMM (base) class, here are some of the properties to be checked:

For Gaussian sub-class, here are the properties:

Just comment if some properties are not listed here.

poypoyan commented 4 years ago

Update (12-Jul-2020): Implemented for both HSMM (base class) and GaussianHSMM.