Simplify k-Means clustering algorithm.

This commit is contained in:
Oleksii Trekhleb
2020-12-19 21:13:11 +01:00
parent b7cd425ce9
commit 569fd95bd0
5 changed files with 107 additions and 116 deletions

View File

@@ -147,7 +147,7 @@ a set of rules that precisely define a sequence of operations.
* **Machine Learning**
* `B` [NanoNeuron](https://github.com/trekhleb/nano-neuron) - 7 simple JS functions that illustrate how machines can actually learn (forward/backward propagation)
* `B` [k-NN](src/algorithms/ml/knn) - k-nearest neighbors classification algorithm
* `B` [k-Means](src/algorithms/ml/kmeans) - k-Means clustering algorithm
* `B` [k-Means](src/algorithms/ml/k-means) - k-Means clustering algorithm
* **Uncategorized**
* `B` [Tower of Hanoi](src/algorithms/uncategorized/hanoi-tower)
* `B` [Square Matrix Rotation](src/algorithms/uncategorized/square-matrix-rotation) - in-place algorithm