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
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ rand = { version = "0.8", features = ["small_rng"] }
approx = "0.5"
getrandom = { version = "0.2", optional = true, features = ["js"] }

ndarray = { version = "0.16", features = ["approx"] }
ndarray-linalg = { version = "0.17", optional = true }
sprs = { version = "=0.11.2", default-features = false }
ndarray = { version = "0.17", features = ["approx"] }
ndarray-linalg = { version = "0.18", optional = true }
sprs = { version = "0.11.4", default-features = false }

thiserror = "2.0"

Expand All @@ -58,7 +58,7 @@ default-features = false
features = ["std", "derive"]

[dev-dependencies]
ndarray-rand = "0.15"
ndarray-rand = "0.16"
linfa-datasets = { path = "datasets", features = [
"winequality",
"iris",
Expand Down
4 changes: 2 additions & 2 deletions algorithms/linfa-bayes/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ default-features = false
features = ["std", "derive"]

[dependencies]
ndarray = { version = "0.16", features = ["approx"] }
ndarray-stats = "0.6"
ndarray = { version = "0.17", features = ["approx"] }
ndarray-stats = "0.7"
thiserror = "2.0"

linfa = { version = "0.8.1", path = "../.." }
Expand Down
14 changes: 7 additions & 7 deletions algorithms/linfa-clustering/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,21 +35,21 @@ default-features = false
features = ["std", "derive"]

[dependencies]
ndarray = { version = "0.16", features = ["rayon", "approx"] }
ndarray = { version = "0.17", features = ["rayon", "approx"] }
linfa-linalg = { version = "0.2", default-features = false }
ndarray-linalg = { version = "0.17", optional = true }
ndarray-rand = "0.15"
ndarray-stats = "0.6"
ndarray-linalg = { version = "0.18", optional = true }
ndarray-rand = "0.16"
ndarray-stats = "0.7"
num-traits = "0.2"
rand_xoshiro = "0.6"
rand_xoshiro = "0.8"
space = "0.19"
thiserror = "2.0"
linfa = { version = "0.8.1", path = "../.." }
linfa-nn = { version = "0.8.1", path = "../linfa-nn" }
noisy_float = "0.2.0"
noisy_float = "0.2.1"

[dev-dependencies]
ndarray-npy = { version = "0.9", default-features = false }
ndarray-npy = { version = "0.10", default-features = false }
linfa-datasets = { version = "0.8.1", path = "../../datasets", features = [
"generate",
] }
Expand Down
6 changes: 3 additions & 3 deletions algorithms/linfa-elasticnet/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ default-features = false
features = ["std", "derive"]

[dependencies]
ndarray = { version = "0.16", features = ["approx"] }
ndarray = { version = "0.17", features = ["approx"] }
linfa-linalg = { version = "0.2", default-features = false }
ndarray-linalg = { version = "0.17", optional = true }
ndarray-linalg = { version = "0.18", optional = true }

num-traits = "0.2"
approx = "0.5"
Expand All @@ -44,5 +44,5 @@ linfa-datasets = { version = "0.8.1", path = "../../datasets", features = [
"diabetes",
"linnerud",
] }
ndarray-rand = "0.15"
ndarray-rand = "0.16"
rand_xoshiro = "0.6"
4 changes: 2 additions & 2 deletions algorithms/linfa-ensemble/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ default-features = false
features = ["std", "derive"]

[dependencies]
ndarray = { version = "0.16", features = ["rayon", "approx"] }
ndarray-rand = "0.15"
ndarray = { version = "0.17", features = ["rayon", "approx"] }
ndarray-rand = "0.16"
rand = "0.8.5"

linfa = { version = "0.8.1", path = "../.." }
Expand Down
4 changes: 2 additions & 2 deletions algorithms/linfa-ftrl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ version = "1.0"
features = ["derive"]

[dependencies]
ndarray = { version = "0.16", features = ["serde"] }
ndarray-rand = "0.15.0"
ndarray = { version = "0.17", features = ["serde"] }
ndarray-rand = "0.16.0"
argmin = { version = "0.11.0", default-features = false }
argmin-math = { version = "0.5", features = ["ndarray_v0_16-nolinalg"] }
thiserror = "2.0"
Expand Down
4 changes: 2 additions & 2 deletions algorithms/linfa-hierarchical/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ keywords = [
categories = ["algorithms", "mathematics", "science"]

[dependencies]
ndarray = { version = "0.16" }
ndarray = { version = "0.17" }
kodama = "0.2"
thiserror = "2"

Expand All @@ -29,7 +29,7 @@ linfa-kernel = { version = "0.8.1", path = "../linfa-kernel" }

[dev-dependencies]
rand = "0.8"
ndarray-rand = "0.15"
ndarray-rand = "0.16"
linfa-datasets = { version = "0.8.1", path = "../../datasets", features = [
"iris",
] }
10 changes: 5 additions & 5 deletions algorithms/linfa-ica/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,19 +25,19 @@ default-features = false
features = ["std", "derive"]

[dependencies]
ndarray = { version = "0.16" }
ndarray = { version = "0.17" }
linfa-linalg = { version = "0.2", default-features = false }
ndarray-linalg = { version = "0.17", optional = true }
ndarray-rand = "0.15"
ndarray-stats = "0.6"
ndarray-linalg = { version = "0.18", optional = true }
ndarray-rand = "0.16"
ndarray-stats = "0.7"
num-traits = "0.2"
rand_xoshiro = "0.6"
thiserror = "2.0"

linfa = { version = "0.8.1", path = "../.." }

[dev-dependencies]
ndarray-npy = { version = "0.9", default-features = false }
ndarray-npy = { version = "0.10", default-features = false }
paste = "1.0"
criterion = "0.5"
linfa = { version = "0.8.1", path = "../..", features = ["benchmarks"] }
Expand Down
4 changes: 2 additions & 2 deletions algorithms/linfa-kernel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ default-features = false
features = ["std", "derive"]

[dependencies]
ndarray = "0.16"
ndarray = "0.17"
num-traits = "0.2"
sprs = { version = "=0.11.2", default-features = false }
sprs = { version = "0.11.4", default-features = false }

linfa = { version = "0.8.1", path = "../.." }
linfa-nn = { version = "0.8.1", path = "../linfa-nn" }
8 changes: 4 additions & 4 deletions algorithms/linfa-lars/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,15 +28,15 @@ features = ["std", "derive"]
linfa = { version = "0.8.1", path = "../.." }
linfa-linalg = { version = "0.2", default-features = false }
linfa-preprocessing = { version = "0.8.1", path = "../linfa-preprocessing"}
ndarray = { version = "0.16", features = ["approx"] }
ndarray-linalg = { version = "0.17", optional = true }
ndarray-stats = "0.6"
ndarray = { version = "0.17", features = ["approx"] }
ndarray-linalg = { version = "0.18", optional = true }
ndarray-stats = "0.7"
thiserror = "2.0"

[dev-dependencies]
linfa-datasets = { version = "0.8.1", path = "../../datasets", features = [
"diabetes",
] }
approx = "0.5"
ndarray-rand = "0.15"
ndarray-rand = "0.16"
rand_xoshiro = "0.6"
4 changes: 2 additions & 2 deletions algorithms/linfa-linear/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ default-features = false
features = ["std", "derive"]

[dependencies]
ndarray = { version = "0.16", features = ["approx"] }
ndarray = { version = "0.17", features = ["approx"] }
linfa-linalg = { version = "0.2", default-features = false }
ndarray-linalg = { version = "0.17", optional = true }
ndarray-linalg = { version = "0.18", optional = true }
num-traits = "0.2"
argmin = { version = "0.11.0", default-features = false }
argmin-math = { version = "0.5", features = ["ndarray_v0_16-nolinalg"] }
Expand Down
4 changes: 2 additions & 2 deletions algorithms/linfa-logistic/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ optional = true
version = "1.0"

[dependencies]
ndarray = { version = "0.16", features = ["approx"] }
ndarray-stats = "0.6.0"
ndarray = { version = "0.17", features = ["approx"] }
ndarray-stats = "0.7.0"
num-traits = "0.2"
argmin = { version = "0.11.0", default-features = false }
argmin-math = { version = "0.5", features = ["ndarray_v0_16-nolinalg"] }
Expand Down
8 changes: 4 additions & 4 deletions algorithms/linfa-nn/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ default-features = false
features = ["std", "derive"]

[dependencies]
ndarray = { version = "0.16", features = ["approx"] }
ndarray-stats = "0.6"
num-traits = "0.2.0"
ndarray = { version = "0.17", features = ["approx"] }
ndarray-stats = "0.7"
num-traits = "0.2.19"
noisy_float = "0.2.0"
order-stat = "0.1.3"
thiserror = "2.0"
Expand All @@ -39,7 +39,7 @@ linfa = { version = "0.8.1", path = "../.." }
approx = "0.5"
criterion = "0.5"
rand_xoshiro = "0.6"
ndarray-rand = "0.15"
ndarray-rand = "0.16"
linfa = { version = "0.8.1", path = "../..", features = ["benchmarks"] }

[[bench]]
Expand Down
8 changes: 4 additions & 4 deletions algorithms/linfa-pls/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ default-features = false
features = ["std", "derive"]

[dependencies]
ndarray = { version = "0.16" }
ndarray = { version = "0.17" }
linfa-linalg = { version = "0.2", default-features = false }
ndarray-linalg = { version = "0.17", optional = true }
ndarray-stats = "0.6"
ndarray-rand = "0.15"
ndarray-linalg = { version = "0.18", optional = true }
ndarray-stats = "0.7"
ndarray-rand = "0.16"
num-traits = "0.2"
paste = "1.0"
thiserror = "2.0"
Expand Down
10 changes: 5 additions & 5 deletions algorithms/linfa-preprocessing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,17 +19,17 @@ serde = ["serde_crate", "ndarray/serde", "serde_regex"]

[dependencies]
linfa = { version = "0.8.1", path = "../.." }
ndarray = { version = "0.16", features = ["approx"] }
ndarray-linalg = { version = "0.17", optional = true }
ndarray = { version = "0.17", features = ["approx"] }
ndarray-linalg = { version = "0.18", optional = true }
linfa-linalg = { version = "0.2", default-features = false }
ndarray-stats = "0.6"
ndarray-stats = "0.7"
thiserror = "2.0"
approx = "0.5"
ndarray-rand = "0.15"
ndarray-rand = "0.16"
unicode-normalization = "0.1.8"
regex = "1.4.5"
encoding = "0.2"
sprs = { version = "=0.11.2", default-features = false }
sprs = { version = "0.11.4", default-features = false }

serde_regex = { version = "1.1", optional = true }
itertools = "0.14.0"
Expand Down
10 changes: 5 additions & 5 deletions algorithms/linfa-reduction/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,21 +34,21 @@ default-features = false
features = ["std", "derive"]

[dependencies]
ndarray = { version = "0.16", features = ["approx"] }
ndarray = { version = "0.17", features = ["approx"] }
linfa-linalg = { version = "0.2" }
ndarray-linalg = { version = "0.17", optional = true }
ndarray-rand = "0.15"
ndarray-linalg = { version = "0.18", optional = true }
ndarray-rand = "0.16"
num-traits = "0.2"
thiserror = "2.0"
rand = { version = "0.8", features = ["small_rng"] }

linfa = { version = "0.8.1", path = "../.." }
linfa-kernel = { version = "0.8.1", path = "../linfa-kernel" }
sprs = { version = "=0.11.2" }
sprs = { version = "0.11.4" }
rand_xoshiro = "0.6.0"

[dev-dependencies]
ndarray-npy = { version = "0.9", default-features = false }
ndarray-npy = { version = "0.10", default-features = false }
linfa-datasets = { version = "0.8.1", path = "../../datasets", features = [
"iris",
"generate",
Expand Down
4 changes: 2 additions & 2 deletions algorithms/linfa-svm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ default-features = false
features = ["std", "derive"]

[dependencies]
ndarray = { version = "0.16" }
ndarray-rand = "0.15"
ndarray = { version = "0.17" }
ndarray-rand = "0.16"
num-traits = "0.2"
thiserror = "2.0"

Expand Down
4 changes: 2 additions & 2 deletions algorithms/linfa-trees/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ default-features = false
features = ["std", "derive"]

[dependencies]
ndarray = { version = "0.16", features = ["rayon", "approx"] }
ndarray-rand = "0.15"
ndarray = { version = "0.17", features = ["rayon", "approx"] }
ndarray-rand = "0.16"

linfa = { version = "0.8.1", path = "../.." }

Expand Down
4 changes: 2 additions & 2 deletions algorithms/linfa-tsne/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,15 +15,15 @@ categories = ["algorithms", "mathematics", "science"]

[dependencies]
thiserror = "2.0"
ndarray = { version = "0.16" }
ndarray = { version = "0.17" }
bhtsne = { version = "0.5.4", default-features = false }

linfa = { version = "0.8.1", path = "../.." }
linfa-nn = { version = "0.8.1", path = "../linfa-nn" }

[dev-dependencies]
rand = "0.8"
ndarray-rand = "0.15"
ndarray-rand = "0.16"
approx = "0.5"

linfa-datasets = { version = "0.8.1", path = "../../datasets", features = [
Expand Down
6 changes: 3 additions & 3 deletions datasets/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ repository = "https://github.com/rust-ml/linfa"

[dependencies]
linfa = { version = "0.8.1", path = ".." }
ndarray = { version = "0.16" }
ndarray-csv = "=0.5.3"
ndarray = { version = "0.17" }
ndarray-csv = "0.5.4"
csv = "1.1"
flate2 = "1.0"
ndarray-rand = { version = "0.15", optional = true }
ndarray-rand = { version = "0.16", optional = true }

[dev-dependencies]
approx = "0.5"
Expand Down
Loading
Loading