mirror of
https://github.com/sd-webui/stable-diffusion-webui.git
synced 2024-12-14 14:52:31 +03:00
8b4464a706
Update diffusers_textual_inversion_2.py
12 lines
378 B
Python
12 lines
378 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]
|