Stable DiffusionのLoRAを簡単に導入する方法を解説します。
まずはStable Diffusionをインストールします。
!git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui
%cd /content/stable-diffusion-webui
続いて、LoRAをインストールするためのディレクトリを作成し、そこへ移動します。
%mkdir -p /content/stable-diffusion-webui/models/Lora/
%cd /content/stable-diffusion-webui/models/Lora/
あとは、LoRAをインストールします。
!wget https://civitai.com/api/download/models/23083 -O /content/stable-diffusion-webui/models/Lora/mimi_245706.safetensors
Stable Diffusionをインストールしたディレクトリに戻り、ローンチすればOK。
%cd /content/stable-diffusion-webui
!python launch.py --share --xformers --enable-insecure-extension-access
コメント