Talking_Head_Anime_3 / tha3 /nn /pass_through.py
Harry_FBK
Clone original THA3
60094bd
raw
history blame
151 Bytes
from torch.nn import Module
class PassThrough(Module):
def __init__(self):
super().__init__()
def forward(self, x):
return x