Tips/GenerativeAI/Stable Diffusion WebUI のバックアップ(No.6)
- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- 現在との差分 - Visual を表示
- ソース を表示
- Tips/GenerativeAI/Stable Diffusion WebUI へ行く。
- 1 (2023-06-13 (火) 15:39:08)
- 2 (2023-06-14 (水) 10:10:59)
- 3 (2023-06-19 (月) 09:37:37)
- 4 (2023-06-19 (月) 10:46:06)
- 5 (2023-06-20 (火) 10:39:32)
- 6 (2023-06-23 (金) 13:25:29)
- 7 (2023-06-23 (金) 15:49:28)
- 8 (2023-07-27 (木) 16:22:43)
- 9 (2023-08-04 (金) 12:53:43)
- 10 (2023-12-13 (水) 10:16:58)
- 11 (2024-01-02 (火) 14:10:41)
- 12 (2024-01-03 (水) 01:41:33)
- 13 (2024-01-03 (水) 04:23:55)
- 14 (2024-01-03 (水) 11:11:20)
- 15 (2024-01-11 (木) 18:27:05)
- 16 (2024-01-24 (水) 11:40:51)
- 17 (2024-01-24 (水) 16:21:09)
- 18 (2024-03-07 (木) 23:57:19)
概要
- StableDiffusionをローカル実行できる
- 最新の拡張なども積極的に取り込まれている
導入
- dockerリポジトリのclone
git clone https://github.com/AbdBarho/stable-diffusion-webui-docker.git
- 起動オプションの変更
- docker-compose.yml
auto: &automatic <<: *base_service profiles: ["auto"] build: ./services/AUTOMATIC1111 image: sd-auto:51 environment: - CLI_ARGS=--allow-code --medvram --xformers --enable-insecure-extension-access --api <追加起動オプション> <追加オプション>
- 追加起動オプション
オプション 概要 --xformers xformersを使用することで高速化&メモリ消費を低減 --xformers-flash-attention promptの選別を行い、低重要度なものを除外し高速化&メモリ消費を低減 --medvram 遅くなるがVRAM使用率を下げる --lowvram 遅くなるが更にVRAM使用率を下げる --theme dark UIテーマをダークテーマにする
- 追加オプション
オプション 概要 - TZ=Asia/Tokyo ログやファイル名のタイムゾーンを日本時刻にする
- dockerイメージのビルド
docker compose --profile download up --build
- dockerイメージの起動
docker compose --profile auto up --build
- アクセス
http://localhost:7860 にアクセスする