C/C++ Machine Learning Libraries for Clustering [c

2019-03-13 12:53发布

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

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

2条回答
啃猪蹄的小仙女
2楼-- · 2019-03-13 13:30

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.

查看更多
我想做一个坏孩纸
3楼-- · 2019-03-13 13:38

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.

查看更多
登录 后发表回答