Spaces:
Sleeping
Sleeping
from torch.nn import Module | |
class PassThrough(Module): | |
def __init__(self): | |
super().__init__() | |
def forward(self, x): | |
return x |
from torch.nn import Module | |
class PassThrough(Module): | |
def __init__(self): | |
super().__init__() | |
def forward(self, x): | |
return x |