Skip to content

Commit 7430d64

Browse files
Release v0.4.0 (#246)
1 parent 2a61cfc commit 7430d64

File tree

3 files changed

+18
-3
lines changed

3 files changed

+18
-3
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,21 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [v0.4.0](https://github.com/elixir-nx/bumblebee/tree/v0.4.0) (2023-09-14)
9+
10+
### Added
11+
12+
* Chunking options to speech-to-text to support long audio transcription ([#236](https://github.com/elixir-nx/bumblebee/pull/236))
13+
* Support for Whisper timestamps and task/language configuration ([#238](https://github.com/elixir-nx/bumblebee/pull/238))
14+
* Support for streaming speech-to-text results ([#242](https://github.com/elixir-nx/bumblebee/pull/242))
15+
* Introduced featurizer batch phase that is compiled as part of the serving computation ([#243](https://github.com/elixir-nx/bumblebee/pull/243))
16+
* Removed possibly contentious Nx calls from serving postprocessing ([#244](https://github.com/elixir-nx/bumblebee/pull/244), [#245](https://github.com/elixir-nx/bumblebee/pull/245))
17+
18+
### Changed
19+
20+
* Deprecated `Bumblebee.Audio.speech_to_text/5` in favour of the more specific `Bumblebee.Audio.speech_to_text_whisper/5`
21+
* Changed the tensors returned from embedding servings to use `Nx.BinaryBackend`
22+
823
## [v0.3.1](https://github.com/elixir-nx/bumblebee/tree/v0.3.1) (2023-08-17)
924

1025
### Added

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ First add Bumblebee and EXLA as dependencies in your `mix.exs`. EXLA is an optio
1616
```elixir
1717
def deps do
1818
[
19-
{:bumblebee, "~> 0.3.1"},
19+
{:bumblebee, "~> 0.4.0"},
2020
{:exla, ">= 0.0.0"}
2121
]
2222
end
@@ -37,7 +37,7 @@ In notebooks and scripts, use the following `Mix.install/2` call to both install
3737
```elixir
3838
Mix.install(
3939
[
40-
{:bumblebee, "~> 0.3.1"},
40+
{:bumblebee, "~> 0.4.0"},
4141
{:exla, ">= 0.0.0"}
4242
],
4343
config: [nx: [default_backend: EXLA.Backend]]

mix.exs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
defmodule Bumblebee.MixProject do
22
use Mix.Project
33

4-
@version "0.3.1"
4+
@version "0.4.0"
55
@description "Pre-trained and transformer Neural Network models in Axon"
66

77
def project do

0 commit comments

Comments
 (0)