Properties

class pydtmc.HiddenMarkovModel[source]
e: ndarray

A property representing the emission matrix of the hidden Markov model.

is_ergodic: bool[source]

A property indicating whether the hidden Markov model is ergodic.

is_regular: bool[source]

A property indicating whether the hidden Markov model is regular.

k: int

A property representing the size of the hidden Markov model symbol space.

n: int

A property representing the size of the hidden Markov model state space.

p: ndarray

A property representing the transition matrix of the hidden Markov model.

size: Tuple[int, int]
A property representing the size of the hidden Markov model.
The first value represents the number of states, the second value represents the number of symbols.
states: List[str]

A property representing the states of the hidden Markov model.

symbols: List[str]

A property representing the symbols of the hidden Markov model.