fieg/markov

Implementation of MarkovChain algorithm in PHP

1.0 2015-05-14 11:53 UTC

This package is auto-updated.

Last update: 2024-03-29 03:36:32 UTC


README

Implementation of MarkovChain algorithm in PHP.

Build Status

Getting started

use Fieg\Markov\MarkovChain;

$sentences = [
    'my blue car',
    'red and blue flowers',
    'his blue car',
];

$chain = new MarkovChain();

foreach ($sentences as $sentence) {
    $tokens = explode(" ", $sentence);

    $chain->train($tokens);
}

$result = $chain->query("blue");

Which would result in:

array(2) {
  'car' =>
  double(0.66666666666667)
  'flowers' =>
  double(0.33333333333333)
}