背景
こちらのnoteを参考にGoogle Colabを作業していくと
from diffusers import StableDiffusionPipeline
# StableDiffusionパイプラインの準備
pipe = StableDiffusionPipeline.from_pretrained("CompVis/stable-diffusion-v1-4", use_auth_token=YOUR_TOKEN)
pipe.to("cuda")
このコードの実行で次のようなエラー
Access to model CompVis/stable-diffusion-v1-4 is restricted and you are not in the authorized list.
Visit https://huggingface.co/CompVis/stable-diffusion-v1-4 to ask for access.
うーんこまった
解決方法
エラー文の通りに
にアクセス
すると
と出てくるので
ライセンスに同意して「Access repository」をクリック。
これで解決!