├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug.md │ ├── devop.md │ ├── document.md │ ├── feature.md │ └── question.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── AIDungeon_2.ipynb ├── CHANGELOG.md ├── LICENSE ├── README.md ├── data ├── .gitignore ├── build_training_data.py ├── make_reddit_data.py ├── mechturk.py ├── scraper.py ├── sheet_to_story.py └── upwork.csv ├── download_model.sh ├── generator ├── __init__.py ├── ctrl │ └── training_utils │ │ └── action_results.tfrecords ├── gpt2 │ ├── .gitignore │ ├── LICENSE │ ├── __init__.py │ ├── download_model.py │ ├── gpt2_generator.py │ ├── requirements.txt │ └── src │ │ ├── __init__.py │ │ ├── encoder.py │ │ ├── model.py │ │ └── sample.py ├── human_dm.py └── simple │ ├── .gitignore │ ├── __init__.py │ └── finetune.py ├── install.sh ├── opening.txt ├── other └── __init__.py ├── play.py ├── play_dm.py ├── requirements.txt └── story ├── __init__.py ├── censored_words.txt ├── grammars ├── __init__.py ├── apocalyptic_rules.json └── fantasy_rules.json ├── story_data.yaml ├── story_manager.py └── utils.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latitudegames/AIDungeon/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latitudegames/AIDungeon/HEAD/.github/ISSUE_TEMPLATE/bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/devop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latitudegames/AIDungeon/HEAD/.github/ISSUE_TEMPLATE/devop.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/document.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latitudegames/AIDungeon/HEAD/.github/ISSUE_TEMPLATE/document.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latitudegames/AIDungeon/HEAD/.github/ISSUE_TEMPLATE/feature.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latitudegames/AIDungeon/HEAD/.github/ISSUE_TEMPLATE/question.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latitudegames/AIDungeon/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latitudegames/AIDungeon/HEAD/.gitignore -------------------------------------------------------------------------------- /AIDungeon_2.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latitudegames/AIDungeon/HEAD/AIDungeon_2.ipynb -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latitudegames/AIDungeon/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latitudegames/AIDungeon/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latitudegames/AIDungeon/HEAD/README.md -------------------------------------------------------------------------------- /data/.gitignore: -------------------------------------------------------------------------------- 1 | writingprompts 2 | -------------------------------------------------------------------------------- /data/build_training_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latitudegames/AIDungeon/HEAD/data/build_training_data.py -------------------------------------------------------------------------------- /data/make_reddit_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latitudegames/AIDungeon/HEAD/data/make_reddit_data.py -------------------------------------------------------------------------------- /data/mechturk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latitudegames/AIDungeon/HEAD/data/mechturk.py -------------------------------------------------------------------------------- /data/scraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latitudegames/AIDungeon/HEAD/data/scraper.py -------------------------------------------------------------------------------- /data/sheet_to_story.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latitudegames/AIDungeon/HEAD/data/sheet_to_story.py -------------------------------------------------------------------------------- /data/upwork.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latitudegames/AIDungeon/HEAD/data/upwork.csv -------------------------------------------------------------------------------- /download_model.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latitudegames/AIDungeon/HEAD/download_model.sh -------------------------------------------------------------------------------- /generator/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generator/ctrl/training_utils/action_results.tfrecords: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generator/gpt2/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | __pycache__ -------------------------------------------------------------------------------- /generator/gpt2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latitudegames/AIDungeon/HEAD/generator/gpt2/LICENSE -------------------------------------------------------------------------------- /generator/gpt2/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generator/gpt2/download_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latitudegames/AIDungeon/HEAD/generator/gpt2/download_model.py -------------------------------------------------------------------------------- /generator/gpt2/gpt2_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latitudegames/AIDungeon/HEAD/generator/gpt2/gpt2_generator.py -------------------------------------------------------------------------------- /generator/gpt2/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latitudegames/AIDungeon/HEAD/generator/gpt2/requirements.txt -------------------------------------------------------------------------------- /generator/gpt2/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generator/gpt2/src/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latitudegames/AIDungeon/HEAD/generator/gpt2/src/encoder.py -------------------------------------------------------------------------------- /generator/gpt2/src/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latitudegames/AIDungeon/HEAD/generator/gpt2/src/model.py -------------------------------------------------------------------------------- /generator/gpt2/src/sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latitudegames/AIDungeon/HEAD/generator/gpt2/src/sample.py -------------------------------------------------------------------------------- /generator/human_dm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latitudegames/AIDungeon/HEAD/generator/human_dm.py -------------------------------------------------------------------------------- /generator/simple/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latitudegames/AIDungeon/HEAD/generator/simple/.gitignore -------------------------------------------------------------------------------- /generator/simple/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /generator/simple/finetune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latitudegames/AIDungeon/HEAD/generator/simple/finetune.py -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latitudegames/AIDungeon/HEAD/install.sh -------------------------------------------------------------------------------- /opening.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latitudegames/AIDungeon/HEAD/opening.txt -------------------------------------------------------------------------------- /other/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /play.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latitudegames/AIDungeon/HEAD/play.py -------------------------------------------------------------------------------- /play_dm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latitudegames/AIDungeon/HEAD/play_dm.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latitudegames/AIDungeon/HEAD/requirements.txt -------------------------------------------------------------------------------- /story/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /story/censored_words.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latitudegames/AIDungeon/HEAD/story/censored_words.txt -------------------------------------------------------------------------------- /story/grammars/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latitudegames/AIDungeon/HEAD/story/grammars/__init__.py -------------------------------------------------------------------------------- /story/grammars/apocalyptic_rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latitudegames/AIDungeon/HEAD/story/grammars/apocalyptic_rules.json -------------------------------------------------------------------------------- /story/grammars/fantasy_rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latitudegames/AIDungeon/HEAD/story/grammars/fantasy_rules.json -------------------------------------------------------------------------------- /story/story_data.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latitudegames/AIDungeon/HEAD/story/story_data.yaml -------------------------------------------------------------------------------- /story/story_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latitudegames/AIDungeon/HEAD/story/story_manager.py -------------------------------------------------------------------------------- /story/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/latitudegames/AIDungeon/HEAD/story/utils.py --------------------------------------------------------------------------------