TomatoCocotree
上传
6a62ffb
raw
history blame
151 Bytes
from torch.nn import Module
class PassThrough(Module):
def __init__(self):
super().__init__()
def forward(self, x):
return x