├── .gitignore ├── LICENSE.md ├── README.md ├── SessionState.py ├── app.py ├── data ├── test_raw.txt └── train_raw.txt └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/Story_Generator/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/Story_Generator/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/Story_Generator/HEAD/README.md -------------------------------------------------------------------------------- /SessionState.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/Story_Generator/HEAD/SessionState.py -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/Story_Generator/HEAD/app.py -------------------------------------------------------------------------------- /data/test_raw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/Story_Generator/HEAD/data/test_raw.txt -------------------------------------------------------------------------------- /data/train_raw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/Story_Generator/HEAD/data/train_raw.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/e-tornike/Story_Generator/HEAD/requirements.txt --------------------------------------------------------------------------------