Releases: argmaxinc/WhisperKit
Releases · argmaxinc/WhisperKit
v0.2.1
What's Changed
- Added implementation for SuppressBlankFilter by @jkrukowski in #18
- Also includes a performance improvement for the common LogitFilter operation for filling in
-infinity
probability.
- Also includes a performance improvement for the common LogitFilter operation for filling in
- Fixed issue with swift package dependencies that point to commit hashes #21 reported by @sleeper
Full Changelog: v0.2.0...v0.2.1
v0.2.0
What's Changed
- watchOS example & downloading improvements #20
You can now try out our watchOS example on any Series 9 or Ultra 2 apple watch. In order to build to it, just change the target in the WhisperAX example app:
Supported models are:
- base
- base.en
- tiny
- tiny.en
In addition to the WatchOS example app, this version includes a fix for downloading models when there is a partial download already in the filesystem. This includes the following changes:
- New init parameter
download
to allow/disallow downloading ifmodelFolder
is nil (default true)- This is particularly useful if you want to initialize a "empty" whisperkit object
modelFolder
is now an optional- Breaking change:
load
has been renamed todownload
for clarity, we will keep such changes rare moving forward
Full Changelog: v0.1.2...v0.2.0
v0.1.2
What's Changed
- Added implementation for SuppressTokensFilter by @jkrukowski in #14
- You can now use the
SuppressTokensFilter
protocol via the decoding options:
let options = DecodingOptions( supressTokens: [220, 50257] // array of tokens you want to supress ) let transcribeResult = try await whisperKit.transcribe(audioPath: path, decodeOptions: options)
- You can now use the
- Fixes and cleanup from early feedback by @ZachNagengast in #15
- New Makefile command:
make download-model MODEL=tiny
to download only the specified model instead of the entire model repo - This release also includes the new macOS 14 github runner for CI.
- New Makefile command:
New Contributors
- @jkrukowski made their first contribution in #14
Full Changelog: v0.1.1...v0.1.2
v0.1.1
What's Changed
- Fix broken Hugging Face link by @thenameless7741 in #1
- Fix memory leak by @finnvoor in #8
- Updated to semantic versioning for dependency
swift-transformers
New Contributors
- @thenameless7741 made their first contribution in #1
- @finnvoor made their first contribution in #8
Full Changelog: v0.1.0...v0.1.1
v0.1.0
Initial release 🎉