Files
SillyTavern-extras/live2d/tha3/nn/pass_through.py
2023-07-31 08:35:30 +09:00

9 lines
151 B
Python

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