Skip to content
Snippets Groups Projects
Commit 594bdad0 authored by Blaß, Michael's avatar Blaß, Michael :speech_balloon:
Browse files

Add README.md

parent 40fdabb3
No related branches found
No related tags found
No related merge requests found
# ChainsAddiction
ChainsAddiction is a tool for simple training discrete-time Hidden Markov
Models. It is written in `C` and features a `numpy`-based Python extension
module.
## Installation
Clone this repository, change to its root directory and issue
pip install .
## Working with the C API
## Working with the Python interpreter
Calling Chains_addiction from `Python` is simple as pie. You just need to import
it:
import chains_addiction as ca
ca.hmm_poisson_fit_em(x, m, init_means, init_tpm, int_sd, max_iter=1000, tol=1e-5)
## Notes
- Currently only Poisson-distributed HMM are implemented.
- ChainsAddiction does not support Python 2. Specifically, it requires `Python >= 3.5` and `numpy >= 1.16`.
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment