Skip to main content

Simple Markov and HMM

Project description

Simple, lightweight and easy to read implementation of Markov chains and HMMs.

This is a toy project, don’t expect any exciting speeds or robustness.

Happy hacking!

Installing

pip3 install git+git://github.com/greenify/smarkov.git

Hacking

git clone https://github.com/greenify/smarkov
cd smarkov
python3 setup.py develop

Train with a corpus

from smarkov import Markov
chain = Markov(["AGACAGACGAC"])

Attributes

corpus: given corpus (a corpus_entry needs to be a tuple or array)
order: maximal order to look back for a given state (default 1) tokenize: function how to split an element of the corpus (e.g sentences into words)

Generate text from a chain

print("".join(chain.generate_text()))

Generate_text() generates exactly one element from the Markov chain. In other words: It goes in the Markov chain the universal start state to universal end state.

More Examples

See examples

Coming

Documentation how to use it with HMM.

License

MIT

Project details


Release history Release notifications | RSS feed

This version

1.0

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

smarkov-1.0.tar.gz (4.8 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page