├── .gitignore ├── LICENSE ├── README.md ├── freq.py ├── gen.py ├── requirements.txt ├── rnd.py └── train.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfilej/nlg-with-hmmlearn/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfilej/nlg-with-hmmlearn/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfilej/nlg-with-hmmlearn/HEAD/README.md -------------------------------------------------------------------------------- /freq.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfilej/nlg-with-hmmlearn/HEAD/freq.py -------------------------------------------------------------------------------- /gen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfilej/nlg-with-hmmlearn/HEAD/gen.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfilej/nlg-with-hmmlearn/HEAD/requirements.txt -------------------------------------------------------------------------------- /rnd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfilej/nlg-with-hmmlearn/HEAD/rnd.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mfilej/nlg-with-hmmlearn/HEAD/train.py --------------------------------------------------------------------------------