markov 1.0.10
A generic markov chain library
To use this package, run the following command in your project's root directory:
Manual usage
Put the following dependency into your project's dependences section:
markov
A simple library that provides templated types for markov chains.
Usage
import std.stdio;
import markov;
void main()
{
// Build states for 1, 2, and 3 leading elements.
auto chain = MarkovChain!string(1, 2, 3);
chain.train("foo", "bar", "foo");
chain.train("bar", "foo", "bar");
chain.seed("foo");
foreach(i; 0 .. 10)
{
// bar foo bar foo bar . . .
writeln(chain.generate);
}
}
Serialization
Simple functions for serializing markov chains into JSON and binary are included.
void main()
{
// . . .
// Serialize the markov chain into JSON.
string json = chain.encodeJSON;
// Serialize the markov chain into a binary format.
ubyte[] binary = chain.encodeBinary;
// Unserialize the JSON-encoded markov chain.
MarkovChain!string decoded1 = json.decodeJSON!string;
// Unserialize the binary-encoded markov chain.
MarkovChain!string decoded2 = binary.decodeBinary!string;
}
In addition, helpers to store encoded data in files are also present.
void main()
{
// . . .
// Write a markov chain to a file.
chain.encodeJSON(File("markov", "w"));
// Read a markov chain from a file.
MarkovChain!string decoded = File("markov", "r").decodeJSON!string;
}
License
MIT
- Registered by Mihail K
- 1.0.10 released 6 years ago
- mintyfresh/markov
- MIT
- Copyright © 2015-2016, Mihail K
- Authors:
- Dependencies:
- none
- Versions:
-
1.0.10 2018-May-02 1.0.9 2016-Apr-10 1.0.8 2016-Mar-25 1.0.7 2016-Feb-07 1.0.6 2016-Feb-07 - Download Stats:
-
-
0 downloads today
-
0 downloads this week
-
0 downloads this month
-
207 downloads total
-
- Score:
- 1.6
- Short URL:
- markov.dub.pm