v0.2.4
KoljaB/RealtimeSTTv0.2.4Aug 17, 2024by KoljaB
AI Summary
Introduced a new parameter to allow sharing the main model for both realtime and final transcriptions, offering a trade-off between memory usage and optimization.
Key Highlights
- Introduced use_main_model_for_realtime parameter
- Allows sharing the main model to save memory
- Configurable trade-off between memory usage and real-time optimization
New Features
- use_main_model_for_realtime parameter
Full Release Notes
- new parameter allowing to use the same model for both realtime and final transcriptions: **use_main_model_for_realtime** (bool, default=False) If set to True, the main transcription model will be used for both regular and real-time transcription. If False, a separate model specified by `realtime_model_type` will be used for real-time transcription. Using a single model can save memory and potentially improve performance, but may not be optimized for real-time processing. Using separate models allows for a smaller, faster model for real-time transcription while keeping a more accurate model for final transcription.