not-lain's picture
Duplicate from Maikou/Michelangelo
522e1ad verified
raw
history blame contribute delete
No virus
218 Bytes
# -*- coding: utf-8 -*-
import torch
import torch.nn as nn
class BaseDenoiser(nn.Module):
def __init__(self):
super().__init__()
def forward(self, x, t, context):
raise NotImplementedError