Spaces:
Sleeping
Sleeping
File size: 374 Bytes
ffca93a 79e1217 ffca93a 79e1217 ffca93a 79e1217 ffca93a 79e1217 ffca93a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | """
ShortSmith v4 - Models Package
Lightweight models for music highlight extraction:
- Transcriber (Whisper-based audio transcription + chorus detection)
- AudioScorer (Librosa energy scoring)
"""
from models.transcriber import Transcriber
from models.audio_scorer import AudioScorer, ScoredWindow
__all__ = [
"Transcriber",
"AudioScorer",
"ScoredWindow",
]
|