Files
SillyTavern-extras/talkinghead/tha3/module/module_factory.py
2023-08-11 06:50:59 +09:00

9 lines
157 B
Python

from abc import ABC, abstractmethod
from torch.nn import Module
class ModuleFactory(ABC):
@abstractmethod
def create(self) -> Module:
pass