diff --git a/burn-algorithms/addition-inference/Cargo.toml b/burn-algorithms/addition-inference/Cargo.toml index aca3520..3322410 100644 --- a/burn-algorithms/addition-inference/Cargo.toml +++ b/burn-algorithms/addition-inference/Cargo.toml @@ -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" } diff --git a/burn-algorithms/addition/Cargo.toml b/burn-algorithms/addition/Cargo.toml index 47172f0..e27bc8d 100644 --- a/burn-algorithms/addition/Cargo.toml +++ b/burn-algorithms/addition/Cargo.toml @@ -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" } diff --git a/burn-algorithms/agnews/Cargo.toml b/burn-algorithms/agnews/Cargo.toml index d23d599..8ae1f34 100644 --- a/burn-algorithms/agnews/Cargo.toml +++ b/burn-algorithms/agnews/Cargo.toml @@ -27,7 +27,7 @@ required-features = ["cocos"] [dependencies] -burn = { version = "0.18.0", features = [ +burn = { version = "0.19.0", features = [ "dataset", "fusion", "ndarray", diff --git a/burn-algorithms/cifar10/Cargo.toml b/burn-algorithms/cifar10/Cargo.toml index 012ff31..58fdb4b 100644 --- a/burn-algorithms/cifar10/Cargo.toml +++ b/burn-algorithms/cifar10/Cargo.toml @@ -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" diff --git a/burn-algorithms/imdb/Cargo.toml b/burn-algorithms/imdb/Cargo.toml index 3861a52..a0ee9ab 100644 --- a/burn-algorithms/imdb/Cargo.toml +++ b/burn-algorithms/imdb/Cargo.toml @@ -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", diff --git a/burn-algorithms/iris-inference/Cargo.toml b/burn-algorithms/iris-inference/Cargo.toml index 2033632..02df1c5 100644 --- a/burn-algorithms/iris-inference/Cargo.toml +++ b/burn-algorithms/iris-inference/Cargo.toml @@ -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" diff --git a/burn-algorithms/iris/Cargo.toml b/burn-algorithms/iris/Cargo.toml index 6ff75cd..3f876d0 100644 --- a/burn-algorithms/iris/Cargo.toml +++ b/burn-algorithms/iris/Cargo.toml @@ -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", diff --git a/burn-algorithms/lib/Cargo.toml b/burn-algorithms/lib/Cargo.toml index e937215..c2bf539 100644 --- a/burn-algorithms/lib/Cargo.toml +++ b/burn-algorithms/lib/Cargo.toml @@ -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 } diff --git a/burn-algorithms/mnist-inference/Cargo.toml b/burn-algorithms/mnist-inference/Cargo.toml index b47fd62..5aeae4c 100644 --- a/burn-algorithms/mnist-inference/Cargo.toml +++ b/burn-algorithms/mnist-inference/Cargo.toml @@ -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" } diff --git a/burn-algorithms/mnist/Cargo.toml b/burn-algorithms/mnist/Cargo.toml index 054ba81..f87256a 100644 --- a/burn-algorithms/mnist/Cargo.toml +++ b/burn-algorithms/mnist/Cargo.toml @@ -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" } diff --git a/burn-algorithms/winequality-inference/Cargo.toml b/burn-algorithms/winequality-inference/Cargo.toml index fc8335b..d321367 100644 --- a/burn-algorithms/winequality-inference/Cargo.toml +++ b/burn-algorithms/winequality-inference/Cargo.toml @@ -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" diff --git a/burn-algorithms/winequality/Cargo.toml b/burn-algorithms/winequality/Cargo.toml index 1aea223..6113efa 100644 --- a/burn-algorithms/winequality/Cargo.toml +++ b/burn-algorithms/winequality/Cargo.toml @@ -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",