live2d -> talkinghead name change

This commit is contained in:
joe
2023-08-11 06:50:59 +09:00
parent 6af5593204
commit 7ad0bb5598
130 changed files with 67 additions and 67 deletions

View File

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