diff --git a/StableDiffusionUI_Voldemort_paperspace.ipynb b/StableDiffusionUI_Voldemort_paperspace.ipynb index 2e458c6..136bfaf 100644 --- a/StableDiffusionUI_Voldemort_paperspace.ipynb +++ b/StableDiffusionUI_Voldemort_paperspace.ipynb @@ -89,6 +89,10 @@ "\n", "activate_deepdanbooru = False # Enable and install DeepDanbooru -> https://github.com/KichangKim/DeepDanbooru\n", "\n", + "activate_medvram = True # Enable medvram option.\n", + " # Set to False if VRAM capacity is available.\n", + "\n", + "\n", "# Don't put a trailing slash on directory paths.\n", "# If you change any settings here, rerun this cell.\n", "\n", @@ -817,9 +821,9 @@ "# Enable optional args automatically\n", "x_arg = '--xformers' if activate_xformers else ''\n", "dd_arg = '--deepdanbooru' if activate_deepdanbooru else ''\n", - "\n", + "mvram_arg = '--medvram' if activate_medvram else ''\n", "# Launch args go below:\n", - "!python webui.py {x_arg} {dd_arg} --gradio-debug --share --medvram # --gradio-auth me:password1234" + "!python webui.py {x_arg} {dd_arg} {mvram_arg} --gradio-debug --share # --gradio-auth me:password1234" ] }, {