-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
138 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,6 @@ | |
set PYTHON= | ||
set GIT= | ||
set VENV_DIR= | ||
set UVICORN_ARGS=--port 8000 | ||
set COMMANDLINE_ARGS= | ||
|
||
call launch.bat |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#!/bin/bash | ||
#################################################################### | ||
# macOS defaults # | ||
# Please modify webui-user.sh to change these instead of this file # | ||
#################################################################### | ||
|
||
if [[ -x "$(command -v python3.10)" ]] | ||
then | ||
python_cmd="python3.10" | ||
fi | ||
|
||
export COMMANDLINE_ARGS="--skip-torch-cuda-test" | ||
export TORCH_COMMAND="pip install torch torchvision torchaudio" | ||
export PYTORCH_ENABLE_MPS_FALLBACK=1 | ||
|
||
#################################################################### |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
@echo off | ||
|
||
if exist ".git" ( | ||
git fetch --prune | ||
git reset --hard origin/main | ||
) else ( | ||
git init | ||
git remote add origin https://github.com/ddPn08/Radiata.git | ||
git fetch --prune | ||
git reset --hard origin/main | ||
) | ||
|
||
pause |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
#!/bin/bash | ||
######################################################### | ||
# Uncomment and change the variables below to your need:# | ||
######################################################### | ||
|
||
# Commandline arguments for webui.py, for example: export COMMANDLINE_ARGS="--medvram --opt-split-attention" | ||
#export COMMANDLINE_ARGS="" | ||
|
||
# python3 executable | ||
#python_cmd="python3" | ||
|
||
# git executable | ||
#export GIT="git" | ||
|
||
# python3 venv without trailing slash (defaults to ${install_dir}/${clone_dir}/venv) | ||
#venv_dir="venv" | ||
|
||
# script to launch to start the app | ||
#export LAUNCH_SCRIPT="launch.py" | ||
|
||
# install command for torch | ||
#export TORCH_COMMAND="pip install torch --extra-index-url https://download.pytorch.org/whl/cu118" | ||
|
||
# Requirements file to use for stable-diffusion-webui | ||
#export REQS_FILE="requirements_versions.txt" | ||
|
||
########################################### |