We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Cargo.toml
1 parent 2355eef commit 2e2fb65Copy full SHA for 2e2fb65
k_means/Cargo.toml
@@ -6,7 +6,7 @@ edition = "2018"
6
workspace = ".."
7
8
[dependencies]
9
-ndarray = {version = "0.12"}
10
-ndarray-stats = {git = "https://github.com/LukeMathWalker/ndarray-stats", branch = "master"}
11
-ndarray-rand = "0.10"
+ndarray = {version = "0.13"}
+ndarray-stats = "0.3"
+ndarray-rand = "0.11"
12
rand = "0.7"
k_means/README.md
@@ -0,0 +1,9 @@
1
+K-Means
2
+=======
3
+
4
+An implementation of K-Means clustering using the [standard algorithm](https://en.wikipedia.org/wiki/K-means_clustering).
5
+You can run the example using
+```sh
+cargo run
+```
0 commit comments