| """ | |
| Model implementations for ensemble system. | |
| """ | |
| from .emotion import EmotionEnsemble, Emotion2VecModel, SenseVoiceModel, WhisperEmotionModel | |
| # from .events import EventEnsemble | |
| # from .prosody import ProsodyEnsemble | |
| # from .quality import QualityAnalyzer | |
| __all__ = [ | |
| 'EmotionEnsemble', | |
| 'Emotion2VecModel', | |
| 'SenseVoiceModel', | |
| 'WhisperEmotionModel', | |
| # 'EventEnsemble', | |
| # 'ProsodyEnsemble', | |
| # 'QualityAnalyzer' | |
| ] | |