markoff

Markov Chaining

Usage no npm install needed!

<script type="module">
  import markoff from 'https://cdn.skypack.dev/markoff';
</script>

README

markoff

Markov Chaining

Example

var Markov = require("markoff");
var mark = new Markov();

[
  "the quick brown fox jumps",
  "be quick now",
  "now is the time for all good men"
].forEach(function(sentence) {
  mark.addTokens(sentence.split(/\s+/g));
});

console.log(mark.chain(4).join(' '));
// might print something like "be quick brown fox" or "the quick now is"

Docs

var mark = new Markov(options)

// TODO. State what the module does.

Installation

npm install markoff

Tests

npm test

Contributors

  • Joshua T Corbin

MIT Licenced