brthor's picture
Publish truncation model llama12m-ce-002 from model.pt (final)
09feb0a verified
Raw
History Blame Contribute Delete
919 Bytes
try:
from .configuration_speech_truncation_detection import SpeechTruncationDetectionConfig
from .modeling_speech_truncation_detection import (
SpeechTruncationDetectionModel,
SpeechTruncationPrediction,
)
from .processing_speech_truncation_detection import SpeechTruncationDetectionProcessor
except ImportError:
# Fallback for direct module loading where package-relative imports are unavailable.
from configuration_speech_truncation_detection import SpeechTruncationDetectionConfig
from modeling_speech_truncation_detection import (
SpeechTruncationDetectionModel,
SpeechTruncationPrediction,
)
from processing_speech_truncation_detection import SpeechTruncationDetectionProcessor
__all__ = [
"SpeechTruncationDetectionConfig",
"SpeechTruncationDetectionModel",
"SpeechTruncationPrediction",
"SpeechTruncationDetectionProcessor",
]