-
-
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.
* remove features for testing * fill up some missing information in Cargo.toml * make ready to publish to crates.io
- Loading branch information
Showing
11 changed files
with
106 additions
and
44 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.0" | ||
version = "0.2.1" | ||
authors = [ | ||
"Luca Palmieri <[email protected]>", | ||
"Lorenz Schmidt <[email protected]>", | ||
|
@@ -10,19 +10,21 @@ description = "A Machine Learning framework for Rust" | |
edition = "2018" | ||
license = "MIT/Apache-2.0" | ||
|
||
repository = "https://github.com/LukeMathWalker/linfa" | ||
repository = "https://github.com/rust-ml/linfa" | ||
readme = "README.md" | ||
|
||
keywords = ["machine-learning", "linfa", "ai", "ml"] | ||
categories = ["algorithms", "mathematics", "science"] | ||
|
||
exclude = [".github/"] | ||
|
||
[dependencies] | ||
num-traits = "0.1.32" | ||
num-traits = "0.2" | ||
ndarray = { version = "0.13", default-features = false } | ||
|
||
[dev-dependencies] | ||
rand = "0.7" | ||
ndarray-rand = "0.11" | ||
ndarray-rand = "0.12" | ||
approx = "0.3" | ||
|
||
[workspace] | ||
|
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,8 +1,12 @@ | ||
[package] | ||
name = "linfa-clustering" | ||
version = "0.2.0" | ||
version = "0.2.1" | ||
edition = "2018" | ||
authors = ["Luca Palmieri <[email protected]>"] | ||
authors = [ | ||
"Luca Palmieri <[email protected]>", | ||
"xd009642 <[email protected]>", | ||
"Rémi Lafage <[email protected]>" | ||
] | ||
description = "A collection of clustering algorithms" | ||
license = "MIT/Apache-2.0" | ||
|
||
|
@@ -28,7 +32,7 @@ sprs = "0.7" | |
num-traits = "0.1.32" | ||
rand_isaac = "0.2.0" | ||
|
||
linfa = { path = ".." } | ||
linfa = { version = "0.2.1", path = ".." } | ||
|
||
[dev-dependencies] | ||
openblas-src = { version = "0.9", default-features = false, features = ["system"] } | ||
|
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,26 +1,27 @@ | ||
[package] | ||
name = "linfa-hierarchical" | ||
version = "0.2.0" | ||
version = "0.2.1" | ||
authors = ["Lorenz Schmidt <[email protected]>"] | ||
edition = "2018" | ||
|
||
description = "Support Vector Machines" | ||
description = "Agglomerative Hierarchical clustering" | ||
license = "MIT/Apache-2.0" | ||
|
||
repository = "https://github.com/rust-ml/linfa" | ||
readme = "README.md" | ||
|
||
keywords = ["hierachical", "agglomerative", "clustering", "cluster", "machine-learning", "linfa", "unsupervised"] | ||
keywords = ["hierachical", "agglomerative", "clustering", "machine-learning", "linfa"] | ||
categories = ["algorithms", "mathematics", "science"] | ||
|
||
[dependencies] | ||
ndarray = { version = "0.13", default-features = false } | ||
kodama = "0.2" | ||
|
||
linfa = { path = ".." } | ||
linfa-kernel = { path = "../linfa-kernel" } | ||
linfa = { version = "0.2.1", path = ".." } | ||
linfa-kernel = { version = "0.2.1", path = "../linfa-kernel" } | ||
|
||
[dev-dependencies] | ||
rand = "0.7" | ||
ndarray-rand = "0.11" | ||
csv = "1.1" | ||
ndarray-csv = "0.4" | ||
|
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.0" | ||
version = "0.2.1" | ||
authors = ["VasanthakumarV <[email protected]>"] | ||
description = "A collection of Independent Component Analysis (ICA) algorithms" | ||
edition = "2018" | ||
|
@@ -17,10 +17,10 @@ ndarray = { version = "0.13", default-features = false } | |
ndarray-rand = "0.11" | ||
ndarray-stats = "0.3" | ||
ndarray-linalg = "0.12" | ||
num-traits = "0.1.32" | ||
num-traits = "0.2" | ||
rand_isaac = "0.2.0" | ||
|
||
linfa = { path = ".." } | ||
linfa = { version = "0.2.1", path = ".." } | ||
|
||
[dev-dependencies] | ||
openblas-src = { version = "0.9", default-features = false, features = ["system"] } | ||
|
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,12 +1,12 @@ | ||
[package] | ||
name = "linfa-kernel" | ||
version = "0.2.0" | ||
version = "0.2.1" | ||
authors = ["Lorenz Schmidt <[email protected]>"] | ||
description = "Kernel methods for non-linear algorithms" | ||
edition = "2018" | ||
license = "MIT/Apache-2.0" | ||
|
||
repository = "https://github.com/rust-ml/linfa/" | ||
repository = "https://github.com/rust-ml/linfa" | ||
readme = "README.md" | ||
|
||
keywords = ["kernel", "machine-learning", "linfa"] | ||
|
@@ -18,4 +18,4 @@ sprs = { version = "0.9", default-features = false } | |
hnsw = "0.6" | ||
space = "0.10" | ||
|
||
linfa = { path = ".." } | ||
linfa = { version = "0.2.1", 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,9 +1,20 @@ | ||
[package] | ||
name = "linfa-linear" | ||
version = "0.2.0" | ||
authors = ["Paul Körbitz / Google <[email protected]>"] | ||
version = "0.2.1" | ||
authors = [ | ||
"Paul Körbitz / Google <[email protected]>", | ||
"VasanthakumarV <[email protected]>" | ||
] | ||
|
||
description = "A Machine Learning framework for Rust" | ||
edition = "2018" | ||
workspace = ".." | ||
license = "MIT/Apache-2.0" | ||
|
||
repository = "https://github.com/rust-ml/linfa" | ||
readme = "README.md" | ||
|
||
keywords = ["machine-learning", "linfa", "ai", "ml", "linear"] | ||
categories = ["algorithms", "mathematics", "science"] | ||
|
||
[dependencies] | ||
ndarray = {version = "0.13", features = ["blas", "approx"]} | ||
|
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,9 +1,17 @@ | ||
[package] | ||
name = "linfa-logistic" | ||
version = "0.2.0" | ||
version = "0.2.1" | ||
authors = ["Paul Körbitz / Google <[email protected]>"] | ||
|
||
description = "A Machine Learning framework for Rust" | ||
edition = "2018" | ||
workspace = ".." | ||
license = "MIT/Apache-2.0" | ||
|
||
repository = "https://github.com/rust-ml/linfa" | ||
readme = "README.md" | ||
|
||
keywords = ["machine-learning", "linfa", "ai", "ml", "linear"] | ||
categories = ["algorithms", "mathematics", "science"] | ||
|
||
[dependencies] | ||
ndarray = {version = "0.13", features = ["blas", "approx"]} | ||
|
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.0" | ||
version = "0.2.1" | ||
authors = ["Lorenz Schmidt <[email protected]>"] | ||
description = "A collection of dimensionality reduction techniques" | ||
edition = "2018" | ||
|
@@ -9,27 +9,20 @@ license = "MIT/Apache-2.0" | |
repository = "https://github.com/rust-ml/linfa" | ||
readme = "README.md" | ||
|
||
keywords = ["dimensionality reduction", "machine-learning", "linfa", "spectral", "unsupervised"] | ||
keywords = ["reduction", "machine-learning", "linfa", "spectral", "unsupervised"] | ||
categories = ["algorithms", "mathematics", "science"] | ||
|
||
[features] | ||
default = [] | ||
tests-openblas-system = ["openblas-src/system"] | ||
tests-openblas-build = ["openblas-src/cblas", "openblas-src/lapacke"] | ||
|
||
[dependencies] | ||
ndarray = "0.13" | ||
ndarray-rand = "0.11" | ||
ndarray-stats = "0.3" | ||
ndarray-linalg = "0.12" | ||
num-traits = "0.1.32" | ||
num-traits = "0.2" | ||
|
||
linfa = { path = ".." } | ||
linfa-kernel = { path = "../linfa-kernel" } | ||
linfa = { version = "0.2.1", path = ".." } | ||
linfa-kernel = { version = "0.2.1", path = "../linfa-kernel" } | ||
|
||
[dev-dependencies] | ||
openblas-src = { version = "0.9", default-features=false } | ||
openblas-src = { version = "0.9", default-features=false, features = ["system"] } | ||
rand_isaac = "0.2.0" | ||
ndarray-npy = { version = "0.5", default-features = false } | ||
criterion = "0.3" | ||
approx = "0.3" |
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.0" | ||
version = "0.2.1" | ||
edition = "2018" | ||
authors = ["Lorenz Schmidt <[email protected]>"] | ||
description = "Support Vector Machines" | ||
|
@@ -9,16 +9,16 @@ license = "MIT/Apache-2.0" | |
repository = "https://github.com/rust-ml/linfa" | ||
readme = "README.md" | ||
|
||
keywords = ["svm", "support vector machine", "machine-learning", "linfa", "supervised"] | ||
keywords = ["svm", "machine-learning", "linfa", "supervised"] | ||
categories = ["algorithms", "mathematics", "science"] | ||
|
||
[dependencies] | ||
ndarray = { version = "0.13", default-features=false, features=["blas"] } | ||
ndarray-rand = "0.11" | ||
num-traits = "0.1.32" | ||
|
||
linfa = { path = ".." } | ||
linfa-kernel = { path = "../linfa-kernel" } | ||
linfa = { version = "0.2.1", path = ".." } | ||
linfa-kernel = { version = "0.2.1", path = "../linfa-kernel" } | ||
|
||
[dev-dependencies] | ||
openblas-src = { version = "0.9", default-features = false, features = ["system"] } | ||
|
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.0" | ||
version = "0.2.1" | ||
edition = "2018" | ||
authors = ["Moss Ebeling <[email protected]>"] | ||
description = "A collection of tree-based algorithms" | ||
|
@@ -22,7 +22,7 @@ ndarray-npy = { version = "0.5", default-features = false } | |
criterion = "0.3" | ||
serde_json = "1" | ||
approx = "0.3" | ||
linfa-clustering = { path = "../linfa-clustering" } | ||
#linfa-clustering = { version = "0.2.1", path = "../linfa-clustering" } | ||
|
||
[[bench]] | ||
name = "decision_tree" | ||
|
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