npm.io
2.2.0 • Published 12 years ago

markoff

Licence
Version
2.2.0
Deps
0
Vulns
0
Weekly
0
Stars
3

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