From f2db343b937e4247a2a03cff8497dd99a892413c Mon Sep 17 00:00:00 2001 From: Nick Walton Date: Thu, 5 Dec 2019 13:57:11 -0700 Subject: [PATCH] Develop (#15) * various small changes * various small changes * update * update * update * update * update * auto save * change model loc * updated instructions --- install.sh | 2 +- play.py | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/install.sh b/install.sh index a3514ce..9fff4a3 100755 --- a/install.sh +++ b/install.sh @@ -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" diff --git a/play.py b/play.py index b654de3..dfef418 100644 --- a/play.py +++ b/play.py @@ -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):