-
-
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.
* Update CHANGELOG * (cargo-release) version 0.7.0 * (cargo-release) version 0.7.0 * (cargo-release) version 0.7.0 * (cargo-release) version 0.7.0 * (cargo-release) version 0.7.0 * (cargo-release) version 0.7.0 * (cargo-release) version 0.7.0 * (cargo-release) version 0.7.0 * (cargo-release) version 0.7.0 * (cargo-release) version 0.7.0 * (cargo-release) version 0.7.0 * (cargo-release) version 0.7.0 * (cargo-release) version 0.7.0 * (cargo-release) version 0.7.0 * (cargo-release) version 0.7.0 * (cargo-release) version 0.7.0 * (cargo-release) version 0.7.0 * (cargo-release) version 0.7.0 * Add news entry * Fix docs * Add date to changelog
- Loading branch information
Showing
24 changed files
with
106 additions
and
73 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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "linfa" | ||
version = "0.6.1" | ||
version = "0.7.0" | ||
authors = [ | ||
"Luca Palmieri <[email protected]>", | ||
"Lorenz Schmidt <[email protected]>", | ||
|
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-bayes" | ||
version = "0.6.1" | ||
version = "0.7.0" | ||
authors = ["VasanthakumarV <[email protected]>"] | ||
description = "Collection of Naive Bayes Algorithms" | ||
edition = "2018" | ||
|
@@ -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,6 +1,6 @@ | ||
[package] | ||
name = "linfa-clustering" | ||
version = "0.6.1" | ||
version = "0.7.0" | ||
edition = "2018" | ||
authors = [ | ||
"Luca Palmieri <[email protected]>", | ||
|
@@ -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,6 +1,6 @@ | ||
[package] | ||
name = "linfa-elasticnet" | ||
version = "0.6.1" | ||
version = "0.7.0" | ||
authors = [ | ||
"Paul Körbitz / Google <[email protected]>", | ||
"Lorenz Schmidt <[email protected]>" | ||
|
@@ -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,6 +1,6 @@ | ||
[package] | ||
name = "linfa-ftrl" | ||
version = "0.6.1" | ||
version = "0.7.0" | ||
authors = ["Liudmyla Kyrashchuk <[email protected]>"] | ||
|
||
description = "A Machine Learning framework for Rust" | ||
|
@@ -31,13 +31,13 @@ thiserror = "1.0" | |
rand = "0.8.5" | ||
rand_xoshiro = "0.6.0" | ||
|
||
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "linfa-hierarchical" | ||
version = "0.6.1" | ||
version = "0.7.0" | ||
authors = ["Lorenz Schmidt <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
@@ -18,10 +18,10 @@ ndarray = { version = "0.15" } | |
kodama = "0.2" | ||
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,6 +1,6 @@ | ||
[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" | ||
|
@@ -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,6 +1,6 @@ | ||
[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" | ||
|
@@ -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,6 +1,6 @@ | ||
[package] | ||
name = "linfa-linear" | ||
version = "0.6.1" | ||
version = "0.7.0" | ||
authors = [ | ||
"Paul Körbitz / Google <[email protected]>", | ||
"VasanthakumarV <[email protected]>" | ||
|
@@ -36,14 +36,14 @@ 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" | ||
|
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-logistic" | ||
version = "0.6.1" | ||
version = "0.7.0" | ||
authors = ["Paul Körbitz / Google <[email protected]>"] | ||
|
||
description = "A Machine Learning framework for Rust" | ||
|
@@ -30,9 +30,9 @@ 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] | ||
approx = "0.4" | ||
linfa-datasets = { version = "0.6.1", path = "../../datasets", features = ["winequality"] } | ||
linfa-datasets = { version = "0.7.0", path = "../../datasets", features = ["winequality"] } | ||
rmp-serde = "1" |
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-nn" | ||
version = "0.6.1" | ||
version = "0.7.0" | ||
authors = ["YuhanLiin <[email protected]>"] | ||
edition = "2018" | ||
description = "A collection of nearest neighbour algorithms" | ||
|
@@ -33,14 +33,14 @@ thiserror = "1.0" | |
|
||
kdtree = "0.6.0" | ||
|
||
linfa = { version = "0.6.1", path = "../.." } | ||
linfa = { version = "0.7.0", path = "../.." } | ||
|
||
[dev-dependencies] | ||
approx = "0.4" | ||
criterion = "0.4.0" | ||
rand_xoshiro = "0.6" | ||
ndarray-rand = "0.14" | ||
linfa = { version = "0.6.0", path = "../..", features = ["benchmarks"] } | ||
linfa = { version = "0.7.0", path = "../..", features = ["benchmarks"] } | ||
|
||
[[bench]] | ||
name = "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,6 +1,6 @@ | ||
[package] | ||
name = "linfa-pls" | ||
version = "0.6.1" | ||
version = "0.7.0" | ||
edition = "2018" | ||
authors = ["relf <[email protected]>"] | ||
description = "Partial Least Squares family methods" | ||
|
@@ -33,11 +33,11 @@ ndarray-rand = "0.14" | |
num-traits = "0.2" | ||
paste = "1.0" | ||
thiserror = "1.0" | ||
linfa = { version = "0.6.1", path = "../.." } | ||
linfa = { version = "0.7.0", path = "../.." } | ||
|
||
[dev-dependencies] | ||
linfa = { version = "0.6.1", path = "../..", features = ["benchmarks"] } | ||
linfa-datasets = { version = "0.6.1", path = "../../datasets", features = ["linnerud"] } | ||
linfa = { version = "0.7.0", path = "../..", features = ["benchmarks"] } | ||
linfa-datasets = { version = "0.7.0", path = "../../datasets", features = ["linnerud"] } | ||
approx = "0.4" | ||
rand_xoshiro = "0.6" | ||
criterion = "0.4.0" | ||
|
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-preprocessing" | ||
version = "0.6.1" | ||
version = "0.7.0" | ||
authors = ["Sauro98 <[email protected]>"] | ||
|
||
description = "A Machine Learning framework for Rust" | ||
|
@@ -18,7 +18,7 @@ blas = ["ndarray-linalg", "linfa/ndarray-linalg"] | |
serde = ["serde_crate", "ndarray/serde", "serde_regex"] | ||
|
||
[dependencies] | ||
linfa = { version = "0.6.1", path = "../.." } | ||
linfa = { version = "0.7.0", path = "../.." } | ||
ndarray = { version = "0.15", features = ["approx"] } | ||
ndarray-linalg = { version = "0.15", optional = true } | ||
linfa-linalg = { version = "0.1", default-features = false } | ||
|
@@ -41,8 +41,8 @@ default-features = false | |
features = ["std", "derive"] | ||
|
||
[dev-dependencies] | ||
linfa-datasets = { version = "0.6.1", path = "../../datasets", features = ["diabetes", "winequality"] } | ||
linfa-bayes = { version = "0.6.1", path = "../linfa-bayes" } | ||
linfa-datasets = { version = "0.7.0", path = "../../datasets", features = ["diabetes", "winequality"] } | ||
linfa-bayes = { version = "0.7.0", path = "../linfa-bayes" } | ||
iai = "0.1" | ||
curl = "0.4.35" | ||
flate2 = "1.0.20" | ||
|
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
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-reduction" | ||
version = "0.6.1" | ||
version = "0.7.0" | ||
authors = ["Lorenz Schmidt <[email protected]>"] | ||
description = "A collection of dimensionality reduction techniques" | ||
edition = "2018" | ||
|
@@ -33,10 +33,10 @@ num-traits = "0.2" | |
thiserror = "1.0" | ||
rand = { version = "0.8", features = ["small_rng"] } | ||
|
||
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] | ||
ndarray-npy = { version = "0.8", default-features = false } | ||
linfa-datasets = { version = "0.6.1", path = "../../datasets", features = ["iris", "generate"] } | ||
linfa-datasets = { version = "0.7.0", path = "../../datasets", features = ["iris", "generate"] } | ||
approx = { version = "0.4" } |
Oops, something went wrong.