| # latentsync/models/__init__.py | |
| from .attention import * | |
| from .resnet import * | |
| #from .syncnet import * | |
| from .syncnet_wav2lip import * | |
| from .unet import * | |
| from .unet_blocks import * | |
| from .utils import * | |
| __all__ = [ | |
| "Attention", | |
| "ResNet", | |
| "SyncNet", | |
| "SyncNetWav2Lip", | |
| "UNet", | |
| "UNetBlocks", | |
| "utils" | |
| ] | |