Spaces:
Runtime error
Runtime error
File size: 151 Bytes
60094bd |
1 2 3 4 5 6 7 8 9 |
from torch.nn import Module
class PassThrough(Module):
def __init__(self):
super().__init__()
def forward(self, x):
return x |