Spaces:
Sleeping
Sleeping
File size: 385 Bytes
bbddfb0 753553a c6494da bbddfb0 c6494da |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
import torch.nn as nn
import torch.nn.functional as F
import torch
from huggingface_hub import PyTorchModelHubMixin
class Generator(nn.Module, PyTorchModelHubMixin):
def __init__(self):
super(Generator, self).__init__()
def block(in_feat, out_feat, norm=False):
pass
self.model = nn.Sequential()
def forward(self, x, y):
pass
|