Skip to content

Commit 9c55e14

Browse files
committed
Update dependencies in notebooks
1 parent 7b0d06c commit 9c55e14

File tree

5 files changed

+19
-25
lines changed

5 files changed

+19
-25
lines changed

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.4.2"},
29+
{:bumblebee, "~> 0.5.0"},
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.4.2"},
50+
{:bumblebee, "~> 0.5.0"},
5151
{:exla, ">= 0.0.0"}
5252
],
5353
config: [nx: [default_backend: EXLA.Backend]]

notebooks/examples.livemd

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
```elixir
44
Mix.install([
5-
{:bumblebee, "~> 0.4.2"},
6-
{:nx, "~> 0.6.1"},
7-
{:exla, "~> 0.6.1"},
8-
{:axon, "~> 0.6.0"},
9-
{:kino, "~> 0.10.0"}
5+
{:bumblebee, "~> 0.5.0"},
6+
{:nx, "~> 0.7.0"},
7+
{:exla, "~> 0.7.0"},
8+
{:axon, "~> 0.6.1"},
9+
{:kino, "~> 0.12.0"}
1010
])
1111

1212
Nx.global_default_backend(EXLA.Backend)

notebooks/fine_tuning.livemd

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44

55
```elixir
66
Mix.install([
7-
{:bumblebee, "~> 0.4.2"},
8-
{:axon, "~> 0.6.0"},
9-
{:nx, "~> 0.6.1"},
10-
{:exla, "~> 0.6.1"},
7+
{:bumblebee, "~> 0.5.0"},
8+
{:nx, "~> 0.7.0"},
9+
{:exla, "~> 0.7.0"},
10+
{:axon, "~> 0.6.1"},
1111
{:explorer, "~> 0.7.0"}
1212
])
1313

notebooks/llama.livemd

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,10 @@
22

33
```elixir
44
Mix.install([
5-
# {:bumblebee, "~> 0.4.2"},
6-
# {:nx, "~> 0.6.1"},
7-
# {:exla, "~> 0.6.1"},
8-
{:bumblebee, github: "elixir-nx/bumblebee"},
9-
{:nx, github: "elixir-nx/nx", sparse: "nx", override: true},
10-
{:exla, github: "elixir-nx/nx", sparse: "exla", override: true},
11-
{:kino, "~> 0.11.0"}
5+
{:bumblebee, "~> 0.5.0"},
6+
{:nx, "~> 0.7.0"},
7+
{:exla, "~> 0.7.0"},
8+
{:kino, "~> 0.12.0"}
129
])
1310

1411
Nx.global_default_backend({EXLA.Backend, client: :host})

notebooks/stable_diffusion.livemd

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,10 @@
22

33
```elixir
44
Mix.install([
5-
# {:bumblebee, "~> 0.4.2"},
6-
# {:nx, "~> 0.6.1"},
7-
# {:exla, "~> 0.6.1"},
8-
{:bumblebee, github: "elixir-nx/bumblebee"},
9-
{:nx, github: "elixir-nx/nx", sparse: "nx", override: true},
10-
{:exla, github: "elixir-nx/nx", sparse: "exla", override: true},
11-
{:kino, "~> 0.11.0"}
5+
{:bumblebee, "~> 0.5.0"},
6+
{:nx, "~> 0.7.0"},
7+
{:exla, "~> 0.7.0"},
8+
{:kino, "~> 0.12.0"}
129
])
1310

1411
Nx.global_default_backend({EXLA.Backend, client: :host})

0 commit comments

Comments
 (0)