-
-
Notifications
You must be signed in to change notification settings - Fork 256
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'rust-ml:master' into master
- Loading branch information
Showing
40 changed files
with
425 additions
and
180 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,7 +10,7 @@ jobs: | |
strategy: | ||
matrix: | ||
toolchain: | ||
- 1.65.0 | ||
- 1.67.0 | ||
- stable | ||
|
||
steps: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "linfa" | ||
version = "0.6.1" | ||
version = "0.7.0" | ||
authors = [ | ||
"Luca Palmieri <[email protected]>", | ||
"Lorenz Schmidt <[email protected]>", | ||
|
@@ -9,7 +9,7 @@ authors = [ | |
] | ||
description = "A Machine Learning framework for Rust" | ||
edition = "2018" | ||
license = "MIT/Apache-2.0" | ||
license = "MIT OR Apache-2.0" | ||
|
||
repository = "https://github.com/rust-ml/linfa" | ||
readme = "README.md" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
[package] | ||
name = "linfa-bayes" | ||
version = "0.6.1" | ||
version = "0.7.0" | ||
authors = ["VasanthakumarV <[email protected]>"] | ||
description = "Collection of Naive Bayes Algorithms" | ||
edition = "2018" | ||
license = "MIT/Apache-2.0" | ||
license = "MIT OR Apache-2.0" | ||
repository = "https://github.com/rust-ml/linfa" | ||
readme = "README.md" | ||
keywords = ["factorization", "machine-learning", "linfa", "unsupervised"] | ||
|
@@ -25,8 +25,8 @@ ndarray = { version = "0.15" , features = ["approx"]} | |
ndarray-stats = "0.5" | ||
thiserror = "1.0" | ||
|
||
linfa = { version = "0.6.1", path = "../.." } | ||
linfa = { version = "0.7.0", path = "../.." } | ||
|
||
[dev-dependencies] | ||
approx = "0.4" | ||
linfa-datasets = { version = "0.6.1", path = "../../datasets", features = ["winequality"] } | ||
linfa-datasets = { version = "0.7.0", path = "../../datasets", features = ["winequality"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
[package] | ||
name = "linfa-clustering" | ||
version = "0.6.1" | ||
version = "0.7.0" | ||
edition = "2018" | ||
authors = [ | ||
"Luca Palmieri <[email protected]>", | ||
"xd009642 <[email protected]>", | ||
"Rémi Lafage <[email protected]>" | ||
] | ||
description = "A collection of clustering algorithms" | ||
license = "MIT/Apache-2.0" | ||
license = "MIT OR Apache-2.0" | ||
|
||
repository = "https://github.com/rust-ml/linfa/" | ||
readme = "README.md" | ||
|
@@ -38,18 +38,18 @@ rand_xoshiro = "0.6" | |
space = "0.12" | ||
thiserror = "1.0" | ||
#partitions = "0.2.4" This one will break in a future version of Rust and has no replacement | ||
linfa = { version = "0.6.1", path = "../.." } | ||
linfa-nn = { version = "0.6.1", path = "../linfa-nn" } | ||
linfa = { version = "0.7.0", path = "../.." } | ||
linfa-nn = { version = "0.7.0", path = "../linfa-nn" } | ||
noisy_float = "0.2.0" | ||
|
||
[dev-dependencies] | ||
ndarray-npy = { version = "0.8", default-features = false } | ||
linfa-datasets = { version = "0.6.1", path = "../../datasets", features = ["generate"] } | ||
linfa-datasets = { version = "0.7.0", path = "../../datasets", features = ["generate"] } | ||
criterion = "0.4.0" | ||
serde_json = "1" | ||
approx = "0.4" | ||
lax = "0.15.0" | ||
linfa = { version = "0.6.0", path = "../..", features = ["benchmarks"] } | ||
linfa = { version = "0.7.0", path = "../..", features = ["benchmarks"] } | ||
|
||
[[bench]] | ||
name = "k_means" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
[package] | ||
name = "linfa-elasticnet" | ||
version = "0.6.1" | ||
version = "0.7.0" | ||
authors = [ | ||
"Paul Körbitz / Google <[email protected]>", | ||
"Lorenz Schmidt <[email protected]>" | ||
] | ||
|
||
description = "A Machine Learning framework for Rust" | ||
edition = "2018" | ||
license = "MIT/Apache-2.0" | ||
license = "MIT OR Apache-2.0" | ||
|
||
repository = "https://github.com/rust-ml/linfa" | ||
readme = "README.md" | ||
|
@@ -37,9 +37,9 @@ num-traits = "0.2" | |
approx = "0.4" | ||
thiserror = "1.0" | ||
|
||
linfa = { version = "0.6.1", path = "../.." } | ||
linfa = { version = "0.7.0", path = "../.." } | ||
|
||
[dev-dependencies] | ||
linfa-datasets = { version = "0.6.1", path = "../../datasets", features = ["diabetes", "linnerud"] } | ||
linfa-datasets = { version = "0.7.0", path = "../../datasets", features = ["diabetes", "linnerud"] } | ||
ndarray-rand = "0.14" | ||
rand_xoshiro = "0.6" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,43 @@ | ||
[package] | ||
name = "linfa-ftrl" | ||
version = "0.6.1" | ||
version = "0.7.0" | ||
authors = ["Liudmyla Kyrashchuk <[email protected]>"] | ||
|
||
description = "A Machine Learning framework for Rust" | ||
edition = "2018" | ||
license = "MIT/Apache-2.0" | ||
license = "MIT OR Apache-2.0" | ||
|
||
repository = "https://github.com/rust-ml/linfa" | ||
readme = "README.md" | ||
|
||
keywords = ["machine-learning", "linfa", "ai", "ml", "ftrl"] | ||
categories = ["algorithms", "mathematics", "science"] | ||
|
||
[features] | ||
serde = ["serde_crate", "linfa/serde", "ndarray/serde", "argmin/serde1"] | ||
|
||
[dependencies.serde_crate] | ||
package = "serde" | ||
optional = true | ||
version = "1.0" | ||
features = ["derive"] | ||
|
||
[dependencies] | ||
ndarray = { version = "0.15.4", features = ["serde"]} | ||
ndarray-rand = "0.14.0" | ||
argmin = { version = "0.4.7", features = ["ndarray", "ndarray-rand"]} | ||
argmin = { version = "0.8.1", default-features = false } | ||
argmin-math = { version = "0.3", features = ["ndarray_v0_15-nolinalg"] } | ||
thiserror = "1.0" | ||
rand = "0.8.5" | ||
rand_xoshiro = "0.6.0" | ||
serde = {version = "1.0.137", features = ["derive"]} | ||
|
||
linfa = { version = "0.6.1", path = "../.."} | ||
linfa = { version = "0.7.0", path = "../.."} | ||
|
||
[dev-dependencies] | ||
criterion = "0.4.0" | ||
approx = "0.4" | ||
linfa-datasets = { version = "0.6.1", path = "../../datasets", features = ["winequality"] } | ||
linfa = { version = "0.6.1", path = "../..", features = ["benchmarks"] } | ||
linfa-datasets = { version = "0.7.0", path = "../../datasets", features = ["winequality"] } | ||
linfa = { version = "0.7.0", path = "../..", features = ["benchmarks"] } | ||
|
||
[[bench]] | ||
name = "ftrl" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
[package] | ||
name = "linfa-hierarchical" | ||
version = "0.6.1" | ||
version = "0.7.0" | ||
authors = ["Lorenz Schmidt <[email protected]>"] | ||
edition = "2018" | ||
|
||
description = "Agglomerative Hierarchical clustering" | ||
license = "MIT/Apache-2.0" | ||
license = "MIT OR Apache-2.0" | ||
|
||
repository = "https://github.com/rust-ml/linfa" | ||
readme = "README.md" | ||
|
@@ -16,12 +16,12 @@ categories = ["algorithms", "mathematics", "science"] | |
[dependencies] | ||
ndarray = { version = "0.15" } | ||
kodama = "0.2" | ||
thiserror = "=1.0.25" | ||
thiserror = "1.0.25" | ||
|
||
linfa = { version = "0.6.1", path = "../.." } | ||
linfa-kernel = { version = "0.6.1", path = "../linfa-kernel" } | ||
linfa = { version = "0.7.0", path = "../.." } | ||
linfa-kernel = { version = "0.7.0", path = "../linfa-kernel" } | ||
|
||
[dev-dependencies] | ||
rand = "0.8" | ||
ndarray-rand = "0.14" | ||
linfa-datasets = { version = "0.6.1", path = "../../datasets", features = ["iris"] } | ||
linfa-datasets = { version = "0.7.0", path = "../../datasets", features = ["iris"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
[package] | ||
name = "linfa-ica" | ||
version = "0.6.1" | ||
version = "0.7.0" | ||
authors = ["VasanthakumarV <[email protected]>"] | ||
description = "A collection of Independent Component Analysis (ICA) algorithms" | ||
edition = "2018" | ||
license = "MIT/Apache-2.0" | ||
license = "MIT OR Apache-2.0" | ||
|
||
repository = "https://github.com/rust-ml/linfa" | ||
readme = "README.md" | ||
|
@@ -34,13 +34,13 @@ num-traits = "0.2" | |
rand_xoshiro = "0.6" | ||
thiserror = "1.0" | ||
|
||
linfa = { version = "0.6.1", path = "../.." } | ||
linfa = { version = "0.7.0", path = "../.." } | ||
|
||
[dev-dependencies] | ||
ndarray-npy = { version = "0.8", default-features = false } | ||
paste = "1.0" | ||
criterion = "0.4.0" | ||
linfa = { version = "0.6.0", path = "../..", features = ["benchmarks"] } | ||
linfa = { version = "0.7.0", path = "../..", features = ["benchmarks"] } | ||
|
||
[[bench]] | ||
name = "fast_ica" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
[package] | ||
name = "linfa-kernel" | ||
version = "0.6.1" | ||
version = "0.7.0" | ||
authors = ["Lorenz Schmidt <[email protected]>"] | ||
description = "Kernel methods for non-linear algorithms" | ||
edition = "2018" | ||
license = "MIT/Apache-2.0" | ||
license = "MIT OR Apache-2.0" | ||
|
||
repository = "https://github.com/rust-ml/linfa" | ||
readme = "README.md" | ||
|
@@ -28,5 +28,5 @@ ndarray = "0.15" | |
num-traits = "0.2" | ||
sprs = { version="0.11", default-features = false } | ||
|
||
linfa = { version = "0.6.1", path = "../.." } | ||
linfa-nn = { version = "0.6.1", path = "../linfa-nn" } | ||
linfa = { version = "0.7.0", path = "../.." } | ||
linfa-nn = { version = "0.7.0", path = "../linfa-nn" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
[package] | ||
name = "linfa-linear" | ||
version = "0.6.1" | ||
version = "0.7.0" | ||
authors = [ | ||
"Paul Körbitz / Google <[email protected]>", | ||
"VasanthakumarV <[email protected]>" | ||
] | ||
|
||
description = "A Machine Learning framework for Rust" | ||
edition = "2018" | ||
license = "MIT/Apache-2.0" | ||
license = "MIT OR Apache-2.0" | ||
|
||
repository = "https://github.com/rust-ml/linfa" | ||
readme = "README.md" | ||
|
@@ -32,18 +32,18 @@ ndarray = { version = "0.15", features = ["approx"] } | |
linfa-linalg = { version = "0.1", default-features = false } | ||
ndarray-linalg = { version = "0.15", optional = true } | ||
num-traits = "0.2" | ||
argmin = { version = "0.7", default-features = false } | ||
argmin-math = { version = "0.2", features = ["ndarray_v0_15-nolinalg"] } | ||
argmin = { version = "0.8.1", default-features = false } | ||
argmin-math = { version = "0.3", features = ["ndarray_v0_15-nolinalg"] } | ||
thiserror = "1.0" | ||
|
||
linfa = { version = "0.6.1", path = "../.." } | ||
linfa = { version = "0.7.0", path = "../.." } | ||
|
||
[dev-dependencies] | ||
linfa-datasets = { version = "0.6.1", path = "../../datasets", features = ["diabetes"] } | ||
linfa-datasets = { version = "0.7.0", path = "../../datasets", features = ["diabetes"] } | ||
approx = "0.4" | ||
criterion = "0.4.0" | ||
statrs = "0.16.0" | ||
linfa = { version = "0.6.0", path = "../..", features = ["benchmarks"] } | ||
linfa = { version = "0.7.0", path = "../..", features = ["benchmarks"] } | ||
|
||
[[bench]] | ||
name = "ols_bench" | ||
|
Oops, something went wrong.