記事一覧
Google Colabの無料アカウントではStable Diffusion WebUIが使えなくなりました
2023/4/末~Google Colabの無料アカウントではStable Diffusion WebUIが使えなくなってしまいました
(起動しようとすると警告画面が表示される様になりました。無理に使い続けるとColabが使えなくなる可能性があるみたいです)
有料版のGoogle Colab Pro(月額1,179円)やColab Pro+(月額5,767円)では警告画面が出ないらしいので有料版のColab Proを使う方法もありますが、デスクトップPCでビデオカードを持っている場合は「ローカルPCでAI画像の作成をする方法」もあります
実際にモデルを変更してみる
前回の記事(その3)でモデルの設定方法、モデルの変更方法について説明しました
今回は「モデルをWebから直接ダウンロードする方法」を使って実際にいくつかのモデルを試してみたいと思います
尚、「モデルの違い」を明確にする為に、サンプルの呪文はいつものやつを使います
「全く同じ呪文」を使っていて「使用するモデルの違い」によってどれだけ絵柄が変わるか?確認してみてください
テンプレートファイル
Google Colabのノートブックに下記のコードを書き込みます
下記のコードのうち(ダウンロード元)となっている部分を各モデルのURLに書き換えてください
(例)
(ダウンロード元)
↓
https://huggingface.co/ckpt/anything-v4.5-vae-swapped/resolve/main/anything-v4.5-vae-swapped.safetensors
下記に実際の各モデルごとの書き換え後のサンプルと作成された画像例を示します
from google.colab import drive
drive.mount('/content/drive/')
!git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui
%cd /content/stable-diffusion-webui
!wget (ダウンロード元) -O /content/stable-diffusion-webui/models/Stable-diffusion/temp.safetensors
!python launch.py --share --xformers --enable-insecure-extension-access
Anything V4.5
モデル配布サイト
from google.colab import drive
drive.mount('/content/drive/')
!git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui
%cd /content/stable-diffusion-webui
!wget https://huggingface.co/ckpt/anything-v4.5-vae-swapped/resolve/main/anything-v4.5-vae-swapped.safetensors -O /content/stable-diffusion-webui/models/Stable-diffusion/anything-v4.5-vae-swapped.safetensors
!python launch.py --share --xformers --enable-insecure-extension-access
7th_Layer_v3_C
モデル配布サイト
7th_Layer_v3にはA、B、Cの3種類がありますが、今回はCで試してみます
from google.colab import drive
drive.mount('/content/drive/')
!git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui
%cd /content/stable-diffusion-webui
!wget https://huggingface.co/syaimu/7th_Layer/resolve/main/7th_anime_v3/7th_anime_v3_C.safetensors -O /content/stable-diffusion-webui/models/Stable-diffusion/temp.safetensors
!python launch.py --share --xformers --enable-insecure-extension-access
Counterfeit V2.5
モデル配布サイト
from google.colab import drive
drive.mount('/content/drive/')
!git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui
%cd /content/stable-diffusion-webui
!wget https://huggingface.co/gsdf/Counterfeit-V2.5/resolve/main/Counterfeit-V2.5_pruned.safetensors -O /content/stable-diffusion-webui/models/Stable-diffusion/temp.safetensors
!python launch.py --share --xformers --enable-insecure-extension-access
AOAOKO PVC Style Model
モデル配布サイト
https://civitai.com/models/15509/aoaoko-pvc-style-model
Googleドライブにモデルをアップロードして試しました
from google.colab import drive
drive.mount('/content/drive/')
!git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui
%cd /content/stable-diffusion-webui
#Googleドライブにアップロードしてコピーする形式にしました
!cp /content/drive/MyDrive/StableDiffusion/aoaokoPVCStyleModel_pvcAOAOKO.safetensors /content/stable-diffusion-webui/models/Stable-diffusion/
#100枚とかの画像を作成するとエラーで落ちる事があったのですが、
#エラーメッセージに従って
#起動オプションに --no-half-vaeを付けるとエラーで落ちなくなりました
!python launch.py --share --xformers --enable-insecure-extension-access --no-half-vae
dc0420 PVC
モデル配布サイト
from google.colab import drive
drive.mount('/content/drive/')
!git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui
%cd /content/stable-diffusion-webui
!wget https://huggingface.co/dc0420/PVC/resolve/main/PVC-refurbished.safetensors -O /content/stable-diffusion-webui/models/Stable-diffusion/temp.safetensors
!python launch.py --share --xformers --enable-insecure-extension-access
p1atdev pvc V3
モデル配布サイト
https://huggingface.co/p1atdev/pvc-v3
「PVCというモデルが話題になってる」事から「どれが話題になってるPVCなのか?」の確認でこれも試してみたのですが呪文の使い方に調整が必要なのか?「p1atdev pvc V3」では下記の様になってしまいました
from google.colab import drive
drive.mount('/content/drive/')
!git clone https://github.com/AUTOMATIC1111/stable-diffusion-webui
%cd /content/stable-diffusion-webui
!wget https://huggingface.co/p1atdev/pvc-v3/resolve/checkpoints/pvc-v3-fp32.safetensors -O /content/stable-diffusion-webui/models/Stable-diffusion/temp.safetensors
!python launch.py --share --xformers --enable-insecure-extension-access
コメント