TomatoCocotree
上传
6a62ffb
raw
history blame contribute delete
157 Bytes
from abc import ABC, abstractmethod
from torch.nn import Module
class ModuleFactory(ABC):
@abstractmethod
def create(self) -> Module:
pass