Experiments into markov chains, n-grams, and text generation.
Go to file
Starbeamrainbowlabs 0aab41f1b7
Refactor CLI to make it much nicer, and add some features. Also, bugfix the weighted markov chain
2018-09-02 21:52:22 +01:00
MarkovGrams Refactor CLI to make it much nicer, and add some features. Also, bugfix the weighted markov chain 2018-09-02 21:52:22 +01:00
wordlists Add wordlists in folder 2017-05-18 12:58:20 +01:00
.gitignore Initial commit. I think this si worth keeping in it's entirety! 2017-04-26 21:35:00 +01:00
LICENSE Initial commit 2017-04-26 22:36:18 +02:00
MarkovGrams.sln Initial commit. I think this si worth keeping in it's entirety! 2017-04-26 21:35:00 +01:00
README.md Update 'README.md' 2017-05-19 13:20:08 +02:00

README.md

MarkovGrams

Experiments into markov chains, n-grams, and text generation. This repository is the result of the markov chain blog post mini-series on my blog.

Building

Building this project should be easy - I can provide prebuilt binaries upon request though if asked (see my website for contact information).

Windows

Open the solution in Visual Studio / MonoDevelop and hit build.

Linux and everyone else

As above with MonoDevelop, or simply use the command xbuild whilst inside the root of the repository.

Using

Detailed usage help can be seen by simply running the tool without any arguments:

./MarkovGrams.exe

Linux users might need to explicitly run it with mono:

mono ./MarkovGrams.exe

Credits