-
-
Notifications
You must be signed in to change notification settings - Fork 254
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
39 additions
and
35 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "linfa" | ||
version = "0.2.1" | ||
version = "0.3.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
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,14 @@ | ||
[package] | ||
name = "linfa-datasets" | ||
version = "0.2.1" | ||
version = "0.3.0" | ||
authors = ["Lorenz Schmidt <[email protected]>"] | ||
description = "Collection of small datasets for Linfa" | ||
edition = "2018" | ||
license = "MIT/Apache-2.0" | ||
repository = "https://github.com/rust-ml/linfa" | ||
|
||
[dependencies] | ||
linfa = { version = "0.2.1", path = ".." } | ||
linfa = { version = "0.3.0", path = ".." } | ||
ndarray = { version = "0.13", default-features = false } | ||
ndarray-csv = "0.4" | ||
csv = "1.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-bayes" | ||
version = "0.1.0" | ||
version = "0.3.0" | ||
authors = ["VasanthakumarV <[email protected]>"] | ||
description = "Collection of Naive Bayes Algorithms" | ||
edition = "2018" | ||
|
@@ -13,9 +13,9 @@ categories = ["algorithms", "mathematics", "science"] | |
[dependencies] | ||
ndarray = { version = "0.13" , features = ["blas", "approx"]} | ||
ndarray-stats = "0.3" | ||
linfa = { version = "0.2.1", path = ".." } | ||
linfa = { version = "0.3.0", path = ".." } | ||
|
||
[dev-dependencies] | ||
approx = "0.3" | ||
linfa = { path = ".." } | ||
linfa-datasets = { version = "0.2.0", path = "../datasets", features = ["winequality"] } | ||
linfa = { version = "0.3.0", path = ".." } | ||
linfa-datasets = { version = "0.3.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.2.1" | ||
version = "0.3.0" | ||
edition = "2018" | ||
authors = [ | ||
"Luca Palmieri <[email protected]>", | ||
|
@@ -36,7 +36,7 @@ sprs = "0.7" | |
num-traits = "0.1.32" | ||
rand_isaac = "0.2.0" | ||
|
||
linfa = { version = "0.2.1", path = ".." } | ||
linfa = { version = "0.3.0", path = ".." } | ||
partitions = "0.2.4" | ||
|
||
[dev-dependencies] | ||
|
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.1.0" | ||
version = "0.3.0" | ||
authors = [ | ||
"Paul Körbitz / Google <[email protected]>", | ||
"Lorenz Schmidt <[email protected]>" | ||
|
@@ -34,9 +34,9 @@ ndarray-linalg = "0.12" | |
num-traits = "0.2" | ||
approx = "0.3.2" | ||
|
||
linfa = { version = "0.2.1", path = ".." } | ||
linfa = { version = "0.3.0", path = ".." } | ||
|
||
[dev-dependencies] | ||
linfa-datasets = { version = "0.2.1", path = "../datasets", features = ["diabetes"] } | ||
linfa-datasets = { version = "0.3.0", path = "../datasets", features = ["diabetes"] } | ||
ndarray-rand = "0.11" | ||
rand_isaac = "0.2" |
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.2.1" | ||
version = "0.3.0" | ||
authors = ["Lorenz Schmidt <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
@@ -17,10 +17,10 @@ categories = ["algorithms", "mathematics", "science"] | |
ndarray = { version = "0.13", default-features = false } | ||
kodama = "0.2" | ||
|
||
linfa = { version = "0.2.1", path = ".." } | ||
linfa-kernel = { version = "0.2.1", path = "../linfa-kernel" } | ||
linfa = { version = "0.3.0", path = ".." } | ||
linfa-kernel = { version = "0.3.0", path = "../linfa-kernel" } | ||
|
||
[dev-dependencies] | ||
rand = "0.7" | ||
ndarray-rand = "0.11" | ||
linfa-datasets = { version = "0.2.1", path = "../datasets", features = ["iris"] } | ||
linfa-datasets = { version = "0.3.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.2.1" | ||
version = "0.3.0" | ||
authors = ["VasanthakumarV <[email protected]>"] | ||
description = "A collection of Independent Component Analysis (ICA) algorithms" | ||
edition = "2018" | ||
|
@@ -31,7 +31,7 @@ ndarray-stats = "0.3" | |
num-traits = "0.2" | ||
rand_isaac = "0.2.0" | ||
|
||
linfa = { version = "0.2.1", path = ".." } | ||
linfa = { version = "0.3.0", path = ".." } | ||
|
||
[dev-dependencies] | ||
ndarray-npy = { version = "0.5", default-features = false } | ||
|
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.2.1" | ||
version = "0.3.0" | ||
authors = ["Lorenz Schmidt <[email protected]>"] | ||
description = "Kernel methods for non-linear algorithms" | ||
edition = "2018" | ||
|
@@ -29,4 +29,4 @@ sprs = { version = "0.9", default-features = false } | |
hnsw = "0.6" | ||
space = "0.10" | ||
|
||
linfa = { version = "0.2.1", path = ".." } | ||
linfa = { version = "0.3.0", path = ".." } |
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.2.1" | ||
version = "0.3.0" | ||
authors = [ | ||
"Paul Körbitz / Google <[email protected]>", | ||
"VasanthakumarV <[email protected]>" | ||
|
@@ -24,8 +24,8 @@ num-traits = "0.2" | |
argmin = {version="0.3.1", features=["ndarrayl"]} | ||
serde = { version = "1.0", default-features = false, features = ["derive"] } | ||
|
||
linfa = { version = "0.2.1", path = ".." } | ||
linfa = { version = "0.3.0", path = ".." } | ||
|
||
[dev-dependencies] | ||
linfa-datasets = { version = "0.2.1", path = "../datasets", features = ["diabetes"] } | ||
linfa-datasets = { version = "0.3.0", path = "../datasets", features = ["diabetes"] } | ||
approx = "0.3.2" |
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.2.1" | ||
version = "0.3.0" | ||
authors = ["Paul Körbitz / Google <[email protected]>"] | ||
|
||
description = "A Machine Learning framework for Rust" | ||
|
@@ -20,7 +20,7 @@ num-traits = "0.2" | |
argmin = {version="0.3.1", features=["ndarrayl"]} | ||
serde = "1.0" | ||
|
||
linfa = { version = "0.2.1", path = ".." } | ||
linfa = { version = "0.3.0", path = ".." } | ||
|
||
[dev-dependencies] | ||
approx = "0.3.2" |
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.2.1" | ||
version = "0.3.0" | ||
authors = ["Lorenz Schmidt <[email protected]>"] | ||
description = "A collection of dimensionality reduction techniques" | ||
edition = "2018" | ||
|
@@ -31,8 +31,8 @@ ndarray-rand = "0.11" | |
ndarray-stats = "0.3" | ||
num-traits = "0.2" | ||
|
||
linfa = { version = "0.2.1", path = ".." } | ||
linfa-kernel = { version = "0.2.1", path = "../linfa-kernel" } | ||
linfa = { version = "0.3.0", path = ".." } | ||
linfa-kernel = { version = "0.3.0", path = "../linfa-kernel" } | ||
|
||
[dev-dependencies] | ||
rand_isaac = "0.2.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-svm" | ||
version = "0.2.1" | ||
version = "0.3.0" | ||
edition = "2018" | ||
authors = ["Lorenz Schmidt <[email protected]>"] | ||
description = "Support Vector Machines" | ||
|
@@ -28,9 +28,9 @@ ndarray = { version = "0.13", default-features=false } | |
ndarray-rand = "0.11" | ||
num-traits = "0.1.32" | ||
|
||
linfa = { version = "0.2.1", path = ".." } | ||
linfa-kernel = { version = "0.2.1", path = "../linfa-kernel" } | ||
linfa = { version = "0.3.0", path = ".." } | ||
linfa-kernel = { version = "0.3.0", path = "../linfa-kernel" } | ||
|
||
[dev-dependencies] | ||
linfa-datasets = { version = "0.2.1", path = "../datasets", features = ["winequality"] } | ||
linfa-datasets = { version = "0.3.0", path = "../datasets", features = ["winequality"] } | ||
rand_isaac = "0.2" |
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-trees" | ||
version = "0.2.1" | ||
version = "0.3.0" | ||
edition = "2018" | ||
authors = ["Moss Ebeling <[email protected]>"] | ||
description = "A collection of tree-based algorithms" | ||
|
@@ -27,14 +27,14 @@ features = ["std", "derive"] | |
ndarray = { version = "0.13" , features = ["rayon", "approx"]} | ||
ndarray-rand = "0.11" | ||
|
||
linfa = { version = "0.2.1", path = ".." } | ||
linfa = { version = "0.3.0", path = ".." } | ||
|
||
[dev-dependencies] | ||
rand_isaac = "0.2.0" | ||
criterion = "0.3" | ||
approx = "0.3" | ||
|
||
linfa-datasets = { version = "0.2.1", path = "../datasets/", features = ["iris"] } | ||
linfa-datasets = { version = "0.3.0", path = "../datasets/", features = ["iris"] } | ||
|
||
[[bench]] | ||
name = "decision_tree" | ||
|