File size: 253 Bytes
91394e0
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
from .base import AbstractSVSModel
from .registry import SVS_MODEL_REGISTRY, get_svs_model, register_svs_model
from .espnet import ESPNetSVS

__all__ = [
    "AbstractSVSModel",
    "get_svs_model",
    "register_svs_model",
    "SVS_MODEL_REGISTRY",
]