mirror of
https://github.com/AUTOMATIC1111/stable-diffusion-webui.git
synced 2024-06-07 21:20:49 +00:00
remove check for model in bat entirely #240
This commit is contained in:
parent
c7e0e28ccd
commit
c2a1b37382
14
webui.bat
14
webui.bat
@ -126,25 +126,13 @@ if %ERRORLEVEL% == 0 goto :clone_blip
|
|||||||
goto :show_stdout_stderr
|
goto :show_stdout_stderr
|
||||||
|
|
||||||
:clone_blip
|
:clone_blip
|
||||||
if exist repositories\BLIP goto :check_model
|
if exist repositories\BLIP goto :launch
|
||||||
echo Cloning BLIP repository...
|
echo Cloning BLIP repository...
|
||||||
%GIT% clone https://github.com/salesforce/BLIP.git repositories\BLIP >tmp/stdout.txt 2>tmp/stderr.txt
|
%GIT% clone https://github.com/salesforce/BLIP.git repositories\BLIP >tmp/stdout.txt 2>tmp/stderr.txt
|
||||||
if %ERRORLEVEL% NEQ 0 goto :show_stdout_stderr
|
if %ERRORLEVEL% NEQ 0 goto :show_stdout_stderr
|
||||||
%GIT% -C repositories/BLIP checkout 48211a1594f1321b00f14c9f7a5b4813144b2fb9 >tmp/stdout.txt 2>tmp/stderr.txt
|
%GIT% -C repositories/BLIP checkout 48211a1594f1321b00f14c9f7a5b4813144b2fb9 >tmp/stdout.txt 2>tmp/stderr.txt
|
||||||
if %ERRORLEVEL% NEQ 0 goto :show_stdout_stderr
|
if %ERRORLEVEL% NEQ 0 goto :show_stdout_stderr
|
||||||
|
|
||||||
:check_model
|
|
||||||
dir model.ckpt >tmp/stdout.txt 2>tmp/stderr.txt
|
|
||||||
if %ERRORLEVEL% == 0 goto :check_gfpgan
|
|
||||||
echo Stable Diffusion model not found: you need to place model.ckpt file into same directory as this file.
|
|
||||||
goto :show_stdout_stderr
|
|
||||||
|
|
||||||
:check_gfpgan
|
|
||||||
dir GFPGANv1.3.pth >tmp/stdout.txt 2>tmp/stderr.txt
|
|
||||||
if %ERRORLEVEL% == 0 goto :launch
|
|
||||||
echo GFPGAN not found: you need to place GFPGANv1.3.pth file into same directory as this file.
|
|
||||||
echo Face fixing feature will not work.
|
|
||||||
|
|
||||||
:launch
|
:launch
|
||||||
echo Launching webui.py...
|
echo Launching webui.py...
|
||||||
%PYTHON% webui.py %COMMANDLINE_ARGS%
|
%PYTHON% webui.py %COMMANDLINE_ARGS%
|
||||||
|
Loading…
Reference in New Issue
Block a user