Live2d Init

This commit is contained in:
joe
2023-07-31 08:35:30 +09:00
parent 3975a3a179
commit 3673766580
73 changed files with 8019 additions and 2 deletions

View File

@@ -0,0 +1,9 @@
from typing import Callable, Dict, List
from torch import Tensor
from torch.nn import Module
TensorCachedComputationFunc = Callable[
[Dict[str, Module], List[Tensor], Dict[str, List[Tensor]]], Tensor]
TensorListCachedComputationFunc = Callable[
[Dict[str, Module], List[Tensor], Dict[str, List[Tensor]]], List[Tensor]]