stable-diffusion-webui/scripts/pipelines/stable_diffusion/no_check.py
2023-06-23 02:58:24 +00:00

14 lines
380 B
Python

from diffusers import ModelMixin
import torch
class NoCheck(ModelMixin):
"""Can be used in place of safety checker. Use responsibly and at your own risk."""
def __init__(self):
super().__init__()
self.register_parameter(name="asdf", param=torch.nn.Parameter(torch.randn(3)))
def forward(self, images=None, **kwargs):
return images, [False]