Generate a novel using Markov chains
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Blink The Things 6730c37aec Wrap output text 3 years ago
example Wrap output text 3 years ago
.gitignore Initial commit 3 years ago
COPYING Initial commit 3 years ago
README.md Spelling 3 years ago
markov.py Wrap output text 3 years ago
requirements.txt Remove spacy language model from requirements.txt 3 years ago

README.md

NaNoGenMo 2020 - markov.py

Generate a novel using Markov chains

Installation

$ python3 -m venv venv
$ . venv/bin/activate
(venv) $ pip install -r requirements.txt
(venv) $ python -m spacy download en_core_web_sm

Usage

$ . venv/bin/activate
(venv) $ python markov.py -h
usage: markov.py [-h] [-c COUNT] [-s SEED] input [input ...]

Generate a novel using Markov chains.

positional arguments:
  input                 used to construct Markov transition matrix

optional arguments:
  -h, --help            show this help message and exit
  -c COUNT, --count COUNT
                        generate at least COUNT words
  -s SEED, --seed SEED  seed for random number generator