-
-
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
11 changed files
with
41 additions
and
13 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,7 +1,11 @@ | ||
[package] | ||
name = "linfa" | ||
version = "0.1.1" | ||
authors = ["Luca Palmieri <[email protected]>"] | ||
version = "0.2.0" | ||
authors = [ | ||
"Luca Palmieri <[email protected]>", | ||
"Lorenz Schmidt <[email protected]>", | ||
"Paul Körbitz <[email protected]>" | ||
] | ||
description = "A Machine Learning framework for Rust" | ||
edition = "2018" | ||
license = "MIT/Apache-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-clustering" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
edition = "2018" | ||
authors = ["Luca Palmieri <[email protected]>"] | ||
description = "A collection of clustering algorithms" | ||
|
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.1.0" | ||
version = "0.2.0" | ||
authors = ["Lorenz Schmidt <[email protected]>"] | ||
edition = "2018" | ||
|
||
|
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.1.0" | ||
version = "0.2.0" | ||
authors = ["VasanthakumarV <[email protected]>"] | ||
description = "A collection of Independent Component Analysis (ICA) algorithms" | ||
edition = "2018" | ||
|
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.1.0" | ||
version = "0.2.0" | ||
authors = ["Lorenz Schmidt <[email protected]>"] | ||
description = "Kernel methods for non-linear algorithms" | ||
edition = "2018" | ||
|
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.1.0" | ||
version = "0.2.0" | ||
authors = ["Paul Körbitz / Google <[email protected]>"] | ||
edition = "2018" | ||
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,6 +1,6 @@ | ||
[package] | ||
name = "linfa-logistic" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
authors = ["Paul Körbitz / Google <[email protected]>"] | ||
edition = "2018" | ||
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,6 +1,6 @@ | ||
[package] | ||
name = "linfa-reduction" | ||
version = "0.1.0" | ||
version = "0.2.0" | ||
authors = ["Lorenz Schmidt <[email protected]>"] | ||
description = "A collection of dimensionality reduction techniques" | ||
edition = "2018" | ||
|
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.1.0" | ||
version = "0.2.0" | ||
edition = "2018" | ||
authors = ["Lorenz Schmidt <[email protected]>"] | ||
description = "Support Vector Machines" | ||
|
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.1.0" | ||
version = "0.2.0" | ||
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", version = "0.1" } | ||
linfa-clustering = { path = "../linfa-clustering" } | ||
|
||
[[bench]] | ||
name = "decision_tree" | ||
|