-
-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release/1.5.0 #132
Merged
Merged
Release/1.5.0 #132
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Blocked by: ggerganov/whisper.cpp#1519 |
Concerningly, no mention of #128 |
sandrohanea
force-pushed
the
release/1.5.0
branch
from
November 21, 2023 18:37
b56fe56
to
493d7b1
Compare
Will be addressed in this release as well (at least for Whisper.net.Runtime.Cublas) |
- Improved cancellation using CancellationToken provided => it's using the onabort handler in native library to cancel the processing faster => addressing concerns from #23 - Logging improvements: not logging to stderr by default anymore, but events can be registered (see [LogProvider](https://github.com/sandrohanea/whisper.net/tree/main/Whisper.net/Logger/LogProvider)) => Added optional logging in simple samples + CoreML sample => Logging is now suppressed by default: #129 - Added `useGpu` on WhisperFactory creation so that GPU usage can be disabled on specific runtimes (e.g. Cublas, CoreML, etc) - Upgraded dotnet targets to dotnet 8 - Added support for whisper large v3 (including downloader + coreml model) => Old model Large in downloader should be renamed to LargeV2 see [GgmlType](https://github.com/sandrohanea/whisper.net/blob/main/Whisper.net/Ggml/GgmlType.cs) - Added linux-x64 support for Whisper.net.Runtime.Cublas - Added support for distil-whisper #126 => No downloader added, you'll need to load the model yourself => How to build the model: https://github.com/ggerganov/whisper.cpp/tree/master/models#distilled-models - **Added automated builds for all runtimes using Github Actions** - Unified runtime builds with make for linux, macos, ios, tvos, wasm and powershell scripts for windows - Added Blazor with InteractivityAuto, InteractivityServer and InteractivityWebAssemly sample with Blazor updated in dotnet 8. - Unified Whisper.net.Runtime.Wasm with Whisper.net.Runtime => If previously you were using Whisper.net.Runtime.Wasm, just replace it with Whisper.net.Runtime - Added metal support for arm-based apple platforms (both Whisper.net.Runtime + Whisper.net.Runtime.CoreML)
sandrohanea
force-pushed
the
release/1.5.0
branch
from
November 25, 2023 14:34
00c3f4c
to
b4f16d3
Compare
… well, not only branches
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Upgraded to Whisper.cpp 1.5.1
Improved cancellation using CancellationToken provided => it's using the onabort handler in native library to cancel the processing faster
=> addressing concerns from AccessViolation when try to cancel ProcessAsync() #23
Logging improvements: not logging to stderr by default anymore, but events can be registered (see LogProvider)
=> Added optional logging in simple samples + CoreML sample
=> Logging is now suppressed by default: Is there a way to suppress Console logging? #129
Added
useGpu
on WhisperFactory creation so that GPU usage can be disabled on specific runtimes (e.g. Cublas, CoreML, etc)Upgraded dotnet targets to dotnet 8
Added support for whisper large v3 (including downloader + coreml model)
=> Old model Large in downloader should be renamed to LargeV2 see GgmlType
Added linux-x64 support for Whisper.net.Runtime.Cublas
Added support for distil-whisper Adding Distil-Whisper - distilled version of Whisper that is 6 times faster, 49% smaller #126
=> No downloader added, you'll need to load the model yourself
=> How to build the model: https://github.com/ggerganov/whisper.cpp/tree/master/models#distilled-models
Added automated builds for all runtimes using Github Actions
Unified runtime builds with make for linux, macos, ios, tvos, wasm and powershell scripts for windows
Added Blazor with InteractivityAuto, InteractivityServer and InteractivityWebAssemly support
=> sample with new dotnet 8 Blazor template added.
Unified Whisper.net.Runtime.Wasm with Whisper.net.Runtime
=> If previously you were using Whisper.net.Runtime.Wasm, just replace it with Whisper.net.Runtime
Added metal support for arm-based apple platforms (both Whisper.net.Runtime + Whisper.net.Runtime.CoreML)