mirror of
https://github.com/lllyasviel/stable-diffusion-webui-forge.git
synced 2026-02-08 17:09:59 +00:00
13 lines
256 B
Python
13 lines
256 B
Python
import torch
|
|
|
|
from diffusers.configuration_utils import ConfigMixin, register_to_config
|
|
from torch import nn
|
|
|
|
|
|
class Dummy(nn.Module, ConfigMixin):
|
|
config_name = 'config.json'
|
|
|
|
@register_to_config
|
|
def __init__(self):
|
|
super().__init__()
|