suvradeepp's picture
Publish Tiny Hinglish Turn Detector development preview
35d483e verified
Raw
History Blame Contribute Delete
718 Bytes
"""Turn detection model implementations."""
from .common import TurnDetectionOutput
from .deployment import build_runtime_metadata
from .factory import build_model, load_model_checkpoint
from .features import LogMelConfig, LogMelFrontend
from .pooling import MaskedAttentiveStatisticsPooling
from .tiny_tcn import TinyTCNConfig, TinyTurnDetector
from .whisper_teacher import WhisperTeacherConfig, WhisperTurnTeacher
__all__ = [
"LogMelConfig",
"LogMelFrontend",
"MaskedAttentiveStatisticsPooling",
"TinyTCNConfig",
"TinyTurnDetector",
"TurnDetectionOutput",
"WhisperTeacherConfig",
"WhisperTurnTeacher",
"build_model",
"build_runtime_metadata",
"load_model_checkpoint",
]