Skip to content

Commit 7aa62b4

Browse files
committed
Release v0.5.1
1 parent 715ad2f commit 7aa62b4

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ 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.5.1](https://github.com/elixir-nx/bumblebee/tree/v0.5.1) (2024-02-23)
9+
10+
### Fixed
11+
12+
* Fixed loading Mistral configuration with attention window disabled
13+
814
## [v0.5.0](https://github.com/elixir-nx/bumblebee/tree/v0.5.0) (2024-02-23)
915

1016
This release changes the directory structure of the models cache, such that cached files from the same HuggingFace Hub repository are grouped in a separate subdirectory. This change is meant to simplify the process of manually removing specific models from the cache to free up space. As a result, the cache contents from prior versions are invalidated, so you most likely want to remove the current cache contents. To find the cache location run `elixir -e 'Mix.install([{:bumblebee, "0.4.2"}]); IO.puts(Bumblebee.cache_dir())'` (defaults to the standard cache location for the given operating system).

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ First add Bumblebee and EXLA as dependencies in your `mix.exs`. EXLA is an optio
2626
```elixir
2727
def deps do
2828
[
29-
{:bumblebee, "~> 0.5.0"},
29+
{:bumblebee, "~> 0.5.1"},
3030
{:exla, ">= 0.0.0"}
3131
]
3232
end
@@ -47,7 +47,7 @@ In notebooks and scripts, use the following `Mix.install/2` call to both install
4747
```elixir
4848
Mix.install(
4949
[
50-
{:bumblebee, "~> 0.5.0"},
50+
{:bumblebee, "~> 0.5.1"},
5151
{:exla, ">= 0.0.0"}
5252
],
5353
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.5.0"
4+
@version "0.5.1"
55
@description "Pre-trained and transformer Neural Network models in Axon"
66

77
def project do

0 commit comments

Comments
 (0)