https://github.com/garrrikkotua/text_generator
Simple text generator with bigrams
https://github.com/garrrikkotua/text_generator
bigrams python text-generation
Last synced: 2 months ago
JSON representation
Simple text generator with bigrams
- Host: GitHub
- URL: https://github.com/garrrikkotua/text_generator
- Owner: garrrikkotua
- Created: 2018-03-20T21:18:49.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-06-05T09:14:05.000Z (almost 6 years ago)
- Last Synced: 2025-01-28T11:23:33.804Z (4 months ago)
- Topics: bigrams, python, text-generation
- Language: Python
- Homepage:
- Size: 14.6 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# text_generator
1. This is simple python text generator module.2. Train.py module is used for creating model based on input text.
3. Model is generated using bigrams and cumilative distribution.
4. Model is saved into a file using python pickle module.
5. Generate.py generates text of given length using model from train.py
6. Both scripts have command-line interface.
7. All information about usage is provided by --help in the command-line.