This commit is contained in:
henryruhs
2025-03-16 08:41:31 +01:00
parent 94571c5676
commit eefc69a820
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -5,7 +5,7 @@ from torch import Tensor, nn
from ..networks.aad import AAD
from ..networks.unet import UNet
from ..types import Feature, Embedding
from ..types import Embedding, Feature
class Generator(nn.Module):
+1 -1
View File
@@ -7,7 +7,7 @@ from torch import Tensor, nn
from torchvision import transforms
from ..helper import calc_embedding
from ..types import Feature, EmbedderModule, FaceParserModule, GazerModule, Loss, Mask, MotionExtractorModule
from ..types import EmbedderModule, FaceParserModule, Feature, GazerModule, Loss, Mask, MotionExtractorModule
class DiscriminatorLoss(nn.Module):
+1 -1
View File
@@ -4,7 +4,7 @@ from typing import Tuple
import torch
from torch import Tensor, nn
from ..types import Feature, Embedding
from ..types import Embedding, Feature
class AAD(nn.Module):