diff options
author | AUTOMATIC1111 <16777216c@gmail.com> | 2022-09-08 09:27:45 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-08 09:27:45 +0000 |
commit | 3eea3c4dab96e75afcafbd37c3da5a31cac0f9cb (patch) | |
tree | 6d70f32b06631a936f931cffdcbcf6f877f6adc7 | |
parent | 3a4c6d9ef587354210155ba81e8de7d2ffc3f768 (diff) | |
parent | e817a28b8efbd89b09284b7c76d1defc028df02f (diff) | |
download | stable-diffusion-webui-gfx803-3eea3c4dab96e75afcafbd37c3da5a31cac0f9cb.tar.gz stable-diffusion-webui-gfx803-3eea3c4dab96e75afcafbd37c3da5a31cac0f9cb.tar.bz2 stable-diffusion-webui-gfx803-3eea3c4dab96e75afcafbd37c3da5a31cac0f9cb.zip |
Merge pull request #148 from dgrenner/add-settings-file
Add settings file
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | README.md | 4 | ||||
-rw-r--r-- | webui.bat | 4 |
3 files changed, 8 insertions, 3 deletions
@@ -8,4 +8,5 @@ __pycache__ /ui-config.json /outputs /config.json -/log
\ No newline at end of file +/log +webui.settings.bat
\ No newline at end of file @@ -63,7 +63,7 @@ as model if it has .pth extension. Grab models from the [Model Database](https:/ #### Troublehooting:
-- if your version of Python is not in PATH (or if another version is), edit `webui.bat`, change the line `set PYTHON=python` to say the full path to your python executable: `set PYTHON=B:\soft\Python310\python.exe`. You can do this for python, but not for git.
+- if your version of Python is not in PATH (or if another version is), create or modify `webui.settings.bat` in the root folder (same place as webui.bat), add the line `set PYTHON=python` to say the full path to your python executable: `set PYTHON=B:\soft\Python310\python.exe`. You can do this for python, but not for git.
- if you get out of memory errors and your videocard has low amount of VRAM (4GB), edit `webui.bat`, change line 5 to from `set COMMANDLINE_ARGS=` to `set COMMANDLINE_ARGS=--medvram` (see below for other possible options)
- installer creates python virtual environment, so none of installed modules will affect your system installation of python if you had one prior to installing this.
- to prevent the creation of virtual environment and use your system python, edit `webui.bat` replacing `set VENV_DIR=venv` with `set VENV_DIR=`.
@@ -77,7 +77,7 @@ If you don't want or can't run locally, here is google collab that allows you to https://colab.research.google.com/drive/1Iy-xW9t1-OQWhb0hNxueGij8phCyluOh
### What options to use for low VRAM videocards?
-Use command line options by editing `webui.bat`, adding them to the end of the `set COMMANDLINE_ARGS=` line.
+Use command line options by creating or modifying `webui.settings.bat` in the root folder (same place as webui.bat), adding a line with `set COMMANDLINE_ARGS=`, and adding the settings at the end of that line.
For example, `set COMMANDLINE_ARGS=--medvram --opt-split-attention`.
- If you have 4GB VRAM and want to make 512x512 (or maybe up to 640x640) images, use `--medvram`.
@@ -5,6 +5,10 @@ set GIT=git set COMMANDLINE_ARGS=
set VENV_DIR=venv
+if exist webui.settings.bat (
+ call webui.settings.bat
+)
+
mkdir tmp 2>NUL
set TORCH_COMMAND=pip install torch==1.12.1+cu113 --extra-index-url https://download.pytorch.org/whl/cu113
|