Stable Diffusion (Diffusers) / DiffusersでNSFWフィルターの黒画像を無効にする

2023年8月29日

方法

|pipeを設定した後

pipe.safety_checker = lambda images, **kwargs: (images, [False] * len(images))

以前の方法

pipe.safety_checker = lambda images, **kwargs: (images, False)

次のエラーが出ます

do_denormalize = [not has_nsfw for has_nsfw in has_nsfw_concept]

typeerror: 'bool’ object is not iterable

stable-diffusion

Posted by eightban