Browse Source

Add README.md

master
Blink The Things 3 years ago
parent
commit
bb41219c80
1 changed files with 30 additions and 0 deletions
  1. +30
    -0
      README.md

+ 30
- 0
README.md View File

@ -0,0 +1,30 @@
# NaNoGenMo 2020
## Install
````
$ python3 -m venv venv
$ . venv/bin/activate
(venv) $ pip install -r requirements.txt
(venv) $ python -m spacy download en_core_web_sm
````
## markov.py
Generate a novel using Markov chains.
### Usage
````
(venv) $ python markov.py -h
usage: markov.py [-h] [-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
-s SEED, --seed SEED seed for random number generator
````

Loading…
Cancel
Save