Skip to content

Commit 37e3c17

Browse files
committed
Release 0.3.0
1 parent 6a86a7f commit 37e3c17

File tree

14 files changed

+39
-35
lines changed

14 files changed

+39
-35
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "linfa"
3-
version = "0.2.1"
3+
version = "0.3.0"
44
authors = [
55
"Luca Palmieri <[email protected]>",
66
"Lorenz Schmidt <[email protected]>",

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ Where does `linfa` stand right now? [Are we learning yet?](http://www.arewelearn
3838
| [svm](linfa-svm/) | Support Vector Machines | Tested | Supervised learning | Classification or regression analysis of labeled datasets |
3939
| [hierarchical](linfa-hierarchical/) | Agglomerative hierarchical clustering | Tested | Unsupervised learning | Cluster and build hierarchy of clusters |
4040
| [bayes](linfa-bayes/) | Naive Bayes | Tested | Supervised learning | Contains Gaussian Naive Bayes |
41+
| [ica](linfa-ica/) | Independent component analysis | Tested | Supervised learning | Contains FastICA implementation |
4142

4243
We believe that only a significant community effort can nurture, build, and sustain a machine learning ecosystem in Rust - there is no other way forward.
4344

datasets/Cargo.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
[package]
22
name = "linfa-datasets"
3-
version = "0.2.1"
3+
version = "0.3.0"
44
authors = ["Lorenz Schmidt <[email protected]>"]
5+
description = "Collection of small datasets for Linfa"
56
edition = "2018"
7+
license = "MIT/Apache-2.0"
8+
repository = "https://github.com/rust-ml/linfa"
69

710
[dependencies]
8-
linfa = { version = "0.2.1", path = ".." }
11+
linfa = { version = "0.3.0", path = ".." }
912
ndarray = { version = "0.13", default-features = false }
1013
ndarray-csv = "0.4"
1114
csv = "1.1"

linfa-bayes/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "linfa-bayes"
3-
version = "0.1.0"
3+
version = "0.3.0"
44
authors = ["VasanthakumarV <[email protected]>"]
55
description = "Collection of Naive Bayes Algorithms"
66
edition = "2018"
@@ -13,9 +13,9 @@ categories = ["algorithms", "mathematics", "science"]
1313
[dependencies]
1414
ndarray = { version = "0.13" , features = ["blas", "approx"]}
1515
ndarray-stats = "0.3"
16-
linfa = { version = "0.2.1", path = ".." }
16+
linfa = { version = "0.3.0", path = ".." }
1717

1818
[dev-dependencies]
1919
approx = "0.3"
20-
linfa = { path = ".." }
21-
linfa-datasets = { version = "0.2.0", path = "../datasets", features = ["winequality"] }
20+
linfa = { version = "0.3.0", path = ".." }
21+
linfa-datasets = { version = "0.3.0", path = "../datasets", features = ["winequality"] }

linfa-clustering/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "linfa-clustering"
3-
version = "0.2.1"
3+
version = "0.3.0"
44
edition = "2018"
55
authors = [
66
"Luca Palmieri <[email protected]>",
@@ -36,7 +36,7 @@ sprs = "0.7"
3636
num-traits = "0.1.32"
3737
rand_isaac = "0.2.0"
3838

39-
linfa = { version = "0.2.1", path = ".." }
39+
linfa = { version = "0.3.0", path = ".." }
4040
partitions = "0.2.4"
4141

4242
[dev-dependencies]

linfa-elasticnet/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "linfa-elasticnet"
3-
version = "0.1.0"
3+
version = "0.3.0"
44
authors = [
55
"Paul Körbitz / Google <[email protected]>",
66
"Lorenz Schmidt <[email protected]>"
@@ -34,9 +34,9 @@ ndarray-linalg = "0.12"
3434
num-traits = "0.2"
3535
approx = "0.3.2"
3636

37-
linfa = { version = "0.2.1", path = ".." }
37+
linfa = { version = "0.3.0", path = ".." }
3838

3939
[dev-dependencies]
40-
linfa-datasets = { version = "0.2.1", path = "../datasets", features = ["diabetes"] }
40+
linfa-datasets = { version = "0.3.0", path = "../datasets", features = ["diabetes"] }
4141
ndarray-rand = "0.11"
4242
rand_isaac = "0.2"

linfa-hierarchical/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "linfa-hierarchical"
3-
version = "0.2.1"
3+
version = "0.3.0"
44
authors = ["Lorenz Schmidt <[email protected]>"]
55
edition = "2018"
66

@@ -17,10 +17,10 @@ categories = ["algorithms", "mathematics", "science"]
1717
ndarray = { version = "0.13", default-features = false }
1818
kodama = "0.2"
1919

20-
linfa = { version = "0.2.1", path = ".." }
21-
linfa-kernel = { version = "0.2.1", path = "../linfa-kernel" }
20+
linfa = { version = "0.3.0", path = ".." }
21+
linfa-kernel = { version = "0.3.0", path = "../linfa-kernel" }
2222

2323
[dev-dependencies]
2424
rand = "0.7"
2525
ndarray-rand = "0.11"
26-
linfa-datasets = { version = "0.2.1", path = "../datasets", features = ["iris"] }
26+
linfa-datasets = { version = "0.3.0", path = "../datasets", features = ["iris"] }

linfa-ica/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "linfa-ica"
3-
version = "0.2.1"
3+
version = "0.3.0"
44
authors = ["VasanthakumarV <[email protected]>"]
55
description = "A collection of Independent Component Analysis (ICA) algorithms"
66
edition = "2018"
@@ -31,7 +31,7 @@ ndarray-stats = "0.3"
3131
num-traits = "0.2"
3232
rand_isaac = "0.2.0"
3333

34-
linfa = { version = "0.2.1", path = ".." }
34+
linfa = { version = "0.3.0", path = ".." }
3535

3636
[dev-dependencies]
3737
ndarray-npy = { version = "0.5", default-features = false }

linfa-kernel/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "linfa-kernel"
3-
version = "0.2.1"
3+
version = "0.3.0"
44
authors = ["Lorenz Schmidt <[email protected]>"]
55
description = "Kernel methods for non-linear algorithms"
66
edition = "2018"
@@ -29,4 +29,4 @@ sprs = { version = "0.9", default-features = false }
2929
hnsw = "0.6"
3030
space = "0.10"
3131

32-
linfa = { version = "0.2.1", path = ".." }
32+
linfa = { version = "0.3.0", path = ".." }

linfa-linear/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "linfa-linear"
3-
version = "0.2.1"
3+
version = "0.3.0"
44
authors = [
55
"Paul Körbitz / Google <[email protected]>",
66
"VasanthakumarV <[email protected]>"
@@ -24,8 +24,8 @@ num-traits = "0.2"
2424
argmin = {version="0.3.1", features=["ndarrayl"]}
2525
serde = { version = "1.0", default-features = false, features = ["derive"] }
2626

27-
linfa = { version = "0.2.1", path = ".." }
27+
linfa = { version = "0.3.0", path = ".." }
2828

2929
[dev-dependencies]
30-
linfa-datasets = { version = "0.2.1", path = "../datasets", features = ["diabetes"] }
30+
linfa-datasets = { version = "0.3.0", path = "../datasets", features = ["diabetes"] }
3131
approx = "0.3.2"

0 commit comments

Comments
 (0)