extrasneo / talkinghead /tha3 /nn /pass_through.py
Reiner4's picture
Upload 539 files
65fe463
raw
history blame contribute delete
151 Bytes
from torch.nn import Module
class PassThrough(Module):
def __init__(self):
super().__init__()
def forward(self, x):
return x