What is the “seed” in Weka's SimpleKMeans clusterer?

断了今生、忘了曾经 提交于 2019-12-05 03:13:52

问题


I'm using Weka's SimpleKMeans clusterer on a set of data.

But I'm unsure what the seed value is, what it does or how it affects the data.

i.e. How does a higher or lower seed value affect the result as oppose to the default value of 10?


回答1:


Seed is just a random numbers seed. Once seed is fixed, even a randomized algorithm behaves deterministically. KMeans is not deterministic, so if you want repeatable results - you fix a seed. However there is completely no relation between exact value of the seed and the results of KMeans clustering.



来源:https://stackoverflow.com/questions/33973817/what-is-the-seed-in-wekas-simplekmeans-clusterer

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!