Add readme

This commit is contained in:
Florent Guiotte 2017-11-08 08:45:23 +00:00
parent ef25ab39cc
commit 93fe971bff

24
README.md Normal file
View File

@ -0,0 +1,24 @@
Interprot
===
MarKov engine
---
Quick and dirty markov engine, works with pickle files.
### Usage
Create a dictionnary with learning samples in `learning_file.txt`:
```bash
./markov.py --create-dic -f learning_file.txt -o dict.pkl
```
Generate gibbering garbage:
```bash
./markov.py -l dict.pkl
```
Generate flooding gibbering garbage:
```bash
./markov.py -l dict.pkl -n 9001
```