v0.3.0
版本发布时间: 2023-03-24 18:00:28
SYSTRAN/faster-whisper最新发布版本:v1.0.3(2024-07-01 18:05:08)
- Converted models are now available on the Hugging Face Hub and are automatically downloaded when creating a
WhisperModel
instance. The conversion step is no longer required for the original Whisper models.
# Automatically download https://huggingface.co/guillaumekln/faster-whisper-large-v2
model = WhisperModel("large-v2")
- Run the encoder only once for each 30-second window. Before this change the same window could be encoded multiple times, for example in the temperature fallback or when word-level timestamps is enabled.