GTX16xxユーザー向け

Last-modified: 2022-10-26 (水) 05:06:23

導入後画像が真っ黒になってしまう場合(おそらくGTX16XXシリーズを利用している人限定)
webui-user.batをメモ帳などで開く

@echo off

set PYTHON=
set GIT=
set VENV_DIR=
set COMMANDLINE_ARGS=

call webui.bat

@echo off

set PYTHON=
set GIT=
set VENV_DIR=
set COMMANDLINE_ARGS=--precision full --no-half

call webui.bat

こうすると解決するかもしれない

また、公式情報によると

@echo off

set PYTHON=
set GIT=
set VENV_DIR=
set COMMANDLINE_ARGS=--precision full --no-half --medvram

call webui.bat

が必要になることがあると記載あり。
(https://github.com/AUTOMATIC1111/stable-diffusion-webui/wiki/Troubleshooting#green-or-black-screen)

Green or Black screen
Video cards When running on video cards which don't support half precision floating point numbers (a known issue with 16xx cards), a green or black screen may appear instead of the generated pictures. This may be fixed by using the command line arguments --precision full --no-half at a significant increase in VRAM usage, which may require --medvram.

緑色または黒色の画面
ビデオカード 半精度浮動小数点数をサポートしないビデオカード(16xxカードでの既知の問題)で実行すると、生成された画像の代わりに緑または黒の画面が表示されることがあります。これは、コマンドライン引数 --precision full --no-half を使用することで修正できるかもしれませんが、VRAM使用量が大幅に増加するため、-medvram が必要になる場合があります。