Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion burn-algorithms/addition-inference/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,6 @@ cocos = []
read = []

[dependencies]
burn = { version = "0.18.0", default-features = false, features = ["ndarray"] }
burn = { version = "0.19.0", default-features = false, features = ["ndarray"] }
futures = "0.3.30"
lib = { path = "../lib" }
2 changes: 1 addition & 1 deletion burn-algorithms/addition/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@ path = "src/main.rs"
required-features = ["read"]

[dependencies]
burn = { version = "0.18.0", features = ["ndarray", "wgpu"] }
burn = { version = "0.19.0", features = ["ndarray", "wgpu"] }
lib = { path = "../lib" }
2 changes: 1 addition & 1 deletion burn-algorithms/agnews/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ required-features = ["cocos"]


[dependencies]
burn = { version = "0.18.0", features = [
burn = { version = "0.19.0", features = [
"dataset",
"fusion",
"ndarray",
Expand Down
4 changes: 2 additions & 2 deletions burn-algorithms/cifar10/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ path = "src/main.rs"
required-features = ["cocos"]

[dependencies]
burn = { version = "0.18.0", features = [
burn = { version = "0.19.0", features = [
"dataset",
"ndarray",
"train",
"vision",
"wgpu",
] }
burn-common = "0.18.0"
burn-common = "0.19.0"
serde = { version = "1.0.203", features = ["derive", "std"] }
lib = { path = "../lib" }
flate2 = "1.0.31"
Expand Down
2 changes: 1 addition & 1 deletion burn-algorithms/imdb/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ path = "src/main.rs"
required-features = ["cocos"]

[dependencies]
burn = { version = "0.18.0", features = [
burn = { version = "0.19.0", features = [
"dataset",
"ndarray",
"train",
Expand Down
2 changes: 1 addition & 1 deletion burn-algorithms/iris-inference/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ description.workspace = true
cocos = []

[dependencies]
burn = { version = "0.18.0", default-features = false, features = ["ndarray"] }
burn = { version = "0.19.0", default-features = false, features = ["ndarray"] }
futures = "0.3.30"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.120"
Expand Down
2 changes: 1 addition & 1 deletion burn-algorithms/iris/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ path = "src/main.rs"
required-features = ["cocos"]

[dependencies]
burn = { version = "0.18.0", features = [
burn = { version = "0.19.0", features = [
"dataset",
"ndarray",
"train",
Expand Down
2 changes: 1 addition & 1 deletion burn-algorithms/lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ description.workspace = true
publish = false

[dependencies]
burn = { version = "0.18.0", default-features = false }
burn = { version = "0.19.0", default-features = false }
2 changes: 1 addition & 1 deletion burn-algorithms/mnist-inference/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ description.workspace = true
cocos = []

[dependencies]
burn = { version = "0.18.0", default-features = false, features = ["ndarray"] }
burn = { version = "0.19.0", default-features = false, features = ["ndarray"] }
futures = "0.3.30"
serde_json = "1.0.120"
lib = { path = "../lib" }
4 changes: 2 additions & 2 deletions burn-algorithms/mnist/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ path = "src/main.rs"
required-features = ["cocos"]

[dependencies]
burn = { version = "0.18.0", features = [
burn = { version = "0.19.0", features = [
"dataset",
"ndarray",
"train",
"vision",
"wgpu",
] }
burn-common = "0.18.0"
burn-common = "0.19.0"
serde = { version = "1.0.203", features = ["derive", "std"] }
lib = { path = "../lib" }
2 changes: 1 addition & 1 deletion burn-algorithms/winequality-inference/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ description.workspace = true
cocos = []

[dependencies]
burn = { version = "0.18.0", default-features = false, features = ["ndarray"] }
burn = { version = "0.19.0", default-features = false, features = ["ndarray"] }
futures = "0.3.30"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.120"
Expand Down
2 changes: 1 addition & 1 deletion burn-algorithms/winequality/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ path = "src/main.rs"
required-features = ["cocos"]

[dependencies]
burn = { version = "0.18.0", features = [
burn = { version = "0.19.0", features = [
"dataset",
"ndarray",
"train",
Expand Down
Loading