gmarkov-lib 0.1.1

A library that provides Markov chain data structures
Documentation
  • Coverage
  • 85.71%
    6 out of 7 items documented1 out of 6 items with examples
  • Size
  • Source code size: 15.78 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 2.74 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Links
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • pythongirl325

gmarkov-lib

pipeline

This library provides the MarkovChain data structure. The markov chains are fed by many finite sequence of items and outputs a sequence to try and imitate the training data. In my implementation, the input must be an Iterator where item is Eq + Hash + Clone (or its alias ChainItem).

Most commonly this library is used for sequences of chars, but can be used for almost any datatype, like numbers or enums.

For more information see the documentation: https://docs.rs/gmarkov-lib