mirror of
https://github.moeyy.xyz/https://github.com/trekhleb/javascript-algorithms.git
synced 2024-12-26 07:01:18 +08:00
Add links for code examples for K-Means clustering
This commit is contained in:
parent
af08253a95
commit
5a41865787
@ -30,6 +30,11 @@ _Image source: [Wikipedia](https://en.wikipedia.org/wiki/K-means_clustering)_
|
|||||||
|
|
||||||
The centroids are moving continuously in order to create better distinction between the different set of data points. As we can see, after a few iterations, the difference in centroids is quite low between iterations. For example between iterations `13` and `14` the difference is quite small because there the optimizer is tuning boundary cases.
|
The centroids are moving continuously in order to create better distinction between the different set of data points. As we can see, after a few iterations, the difference in centroids is quite low between iterations. For example between iterations `13` and `14` the difference is quite small because there the optimizer is tuning boundary cases.
|
||||||
|
|
||||||
|
## Code Examples
|
||||||
|
|
||||||
|
- [kMeans.js](./kMeans.js)
|
||||||
|
- [kMeans.test.js](./__test__/kMeans.test.js) (test cases)
|
||||||
|
|
||||||
## References
|
## References
|
||||||
|
|
||||||
- [k-Means neighbors algorithm on Wikipedia](https://en.wikipedia.org/wiki/K-means_clustering)
|
- [k-Means neighbors algorithm on Wikipedia](https://en.wikipedia.org/wiki/K-means_clustering)
|
||||||
|
Loading…
Reference in New Issue
Block a user