├── .gitignore ├── LICENSE ├── README.md ├── beam_search.py ├── dataset.py ├── model.py ├── modules.py ├── preprocess_data.py ├── requirements.txt ├── sampling.py ├── train.py ├── trained_model ├── config.json └── latest.statedict.pkl ├── training_functions.py └── words_dataset.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajatvd/WordGenerator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajatvd/WordGenerator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajatvd/WordGenerator/HEAD/README.md -------------------------------------------------------------------------------- /beam_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajatvd/WordGenerator/HEAD/beam_search.py -------------------------------------------------------------------------------- /dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajatvd/WordGenerator/HEAD/dataset.py -------------------------------------------------------------------------------- /model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajatvd/WordGenerator/HEAD/model.py -------------------------------------------------------------------------------- /modules.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajatvd/WordGenerator/HEAD/modules.py -------------------------------------------------------------------------------- /preprocess_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajatvd/WordGenerator/HEAD/preprocess_data.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajatvd/WordGenerator/HEAD/requirements.txt -------------------------------------------------------------------------------- /sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajatvd/WordGenerator/HEAD/sampling.py -------------------------------------------------------------------------------- /train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajatvd/WordGenerator/HEAD/train.py -------------------------------------------------------------------------------- /trained_model/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajatvd/WordGenerator/HEAD/trained_model/config.json -------------------------------------------------------------------------------- /trained_model/latest.statedict.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajatvd/WordGenerator/HEAD/trained_model/latest.statedict.pkl -------------------------------------------------------------------------------- /training_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajatvd/WordGenerator/HEAD/training_functions.py -------------------------------------------------------------------------------- /words_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rajatvd/WordGenerator/HEAD/words_dataset.py --------------------------------------------------------------------------------