C/C++ Machine Learning Libraries for Clustering [closed]

旧巷老猫 提交于 2019-12-31 17:40:42

问题


What are some C/c++ Machine learning libraries that supports clustering of multi dimensional data? (for example K-Means)

So far I have come across

  • SGI MLC++ http://www.sgi.com/tech/mlc/
  • OpenCV MLL

I am tempted to roll-my-own, but I am sure pre-existing ones are far better performance optimized with more eyes on code.


回答1:


The Open Source C Clustering Library from the Human Genome team at the University of Tokyo looks promising. It has K-means as well as other flat hierarchical clustering algorithms. Scroll down in their page for the bare library without the GUI. The Wikipedia-Clustering project seems nice and a bit lighter. Here's a specialized K-means library from The University of Mariland. I suggest you look at these considering your type of data. Preprocessing data to create feature vectors may be challenging.




回答2:


I am not sure if you are looking for algorithms like C4.5, ID3 etc or not. If you do, you can download the individual sources from university websites where they are actively researched.

E.g: C4.5 Source can be found at Quinlan's website.



来源:https://stackoverflow.com/questions/815423/c-c-machine-learning-libraries-for-clustering

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