* various small changes

* various small changes

* update

* update

* update

* update

* update

* auto save

* change model loc

* updated instructions
This commit is contained in:
Nick Walton
2019-12-05 13:57:11 -07:00
committed by GitHub
parent 9aad02c164
commit f2db343b93
2 changed files with 3 additions and 4 deletions
+1 -1
View File
@@ -1,7 +1,7 @@
MODELS_DIRECTORY=generator/gpt2/models
MODEL_VERSION=model_v5
MODEL_NAME=model-550
DOWNLOAD_URL=https://students.cs.byu.edu/~nickwalt
DOWNLOAD_URL=https://aidungeonmodel.s3-us-west-1.amazonaws.com
if [ -d "${MODELS_DIRECTORY}/${MODEL_VERSION}" ]; then
echo "AIDungeon2 is already installed"
+2 -3
View File
@@ -15,10 +15,9 @@ def select_game():
print_str = str(i) + ") " + setting
if setting == "fantasy":
print_str += " (recommended)"
else:
print_str += " (experimental)"
console_print(print_str)
console_print(str(len(settings)) + ") custom experimental")
console_print(str(len(settings)) + ") custom")
choice = get_num_options(len(settings)+1)
if choice == len(settings):