Skip to main content

A simple Markov chain modeller and generator for word and sentence generation.

Project description

Originally a proof of concept, I’ve used this in enough projects that I’ve decided to publish it tomake it easier to import. The name is a play on words similar to Markup/Markdown. Hey, I’m funny sometimes,

Basic Use

Use the included from_sentences() and from_words() if your data already behaves nicely. These methods return a Markov object which is the workhorse of this whole thing. Your input sequences of words or sentences should be delimited by newlines. Use next_word() and next_sentence() to generate your desired forat of output.

Advanced Use

Instantiate with m = markoff.Markov(seeds) where seeds is an iterable of sub-iterables. That could be a list of lists of words or letters if you want to emulate the functionality of from_sentences() and from_words(). Each sub-iterable being a chain in the set of chains you want to model.

You can supply it with just one chain or many.

Then use m.generate(max_length=100) to produce a single chain limited to max_length automatically terminating at known ending state (usually a word ending with punctuation).

Examples

Don’t forget to begin with import pymarkoff ## Generating Sentences ##

Input

m = pymarkoff.from_sentences(
"""The quick brown fox jumped over the lazy dog.
Jack and Jill ran up the hill to fetch a pail of water.
Whenever the black fox jumped the squirrel gazed suspiciously."""
)

print([m.next_sentence() for i in range(10)])

Output

[
    'The quick brown fox jumped over the black fox jumped the lazy dog.',
    'The quick brown fox jumped the squirrel gazed suspiciously.',
    'Whenever the squirrel gazed suspiciously.',
    'Jack and Jill ran up the lazy dog.',
    'Jack and Jill ran up the hill to fetch a pail of water.',
    'Jack and Jill ran up the black fox jumped the hill to fetch a pail of water.',
    'Whenever the lazy dog.',
    'The quick brown fox jumped over the lazy dog.',
    'Jack and Jill ran up the hill to fetch a pail of water.',
    'Jack and Jill ran up the squirrel gazed suspiciously.'
 ]

Generating Words

Input

seeds = """Ana
Bastion
D.Va
Genji
Hanzo
Junkrat
Lúcio
McCree
Mei
Mercy
Pharah
Reaper
Reinhardt
Roadhog
Soldier: 76
Symmetra
Torbjörn
Tracer
Widowmaker
Winston
Zarya
Zenyatta"""

brain = pymarkoff.from_words(mystr)
print([brain.next_word() for i in range(10)])

Output

['Zen', 'D.Vaperein', 'Za', 'To', 'Merya', 'Metrdo', 'So', 'Junjör', 'Ph', 'Mera']

More advanced use

The Markov.feed() method can be used to add more data into the model of a Markov object. This lets you add sentences or words one at a time, if you want.

Notes

This module is still under development and is mostly for me to play around with and learn Markov Chains. Cheers.

Project details


Download files

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

Source Distribution

pymarkoff-0.4.6.tar.gz (6.2 kB view details)

Uploaded Source

File details

Details for the file pymarkoff-0.4.6.tar.gz.

File metadata

  • Download URL: pymarkoff-0.4.6.tar.gz
  • Upload date:
  • Size: 6.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pymarkoff-0.4.6.tar.gz
Algorithm Hash digest
SHA256 c1b7d52ae3fd8670ccfb80310e56f8ae5ed23dd5611384ba81be173f019d06e5
MD5 30778842c8c0978787090cc9e29c2af0
BLAKE2b-256 a1e66742b9427ea0d18d23087af69a8d2ca657b681210ac5dd7d19c856202821

See more details on using hashes here.

Supported by

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