mirror of
https://github.com/SillyTavern/SillyTavern-Extras.git
synced 2026-03-11 22:40:03 +00:00
9 lines
151 B
Python
9 lines
151 B
Python
from torch.nn import Module
|
|
|
|
|
|
class PassThrough(Module):
|
|
def __init__(self):
|
|
super().__init__()
|
|
|
|
def forward(self, x):
|
|
return x |