v0.2.1
KoljaB/RealtimeSTTv0.2.1Jul 19, 2024by KoljaB
AI Summary
Fixed CUDA initialization errors on Linux by consolidating thread creation methods and updated dependencies.
Key Highlights
- Fixed CUDA initialization errors on Linux
- Upgraded faster_whisper to version 1.0.3
- Removed 'match' keyword for broader Python compatibility
New Features
- Thread creation fix
- faster_whisper upgrade
- match keyword removal
Full Release Notes
- implements #85 (Currently on linux there is a CUDA initialization error caused by a multiple model loadings that the pytorch Multiprocessing library. Standard thread.Thread() works fine. This commit consolidates how threads are created to use one way or the other and defaults to thread.Thread() for Linux., shoutout to [Daniel Williams](https://github.com/danielwoz) providing this patch) - upgrades to faster_whisper==1.0.3 - removed "match" keyword because it is only available from Python 3.10