C / C ++ machine learning libraries for clustering

What are some C / C ++ machine learning libraries that support multidimensional data clustering? (e.g. K-Means)

So far i have met

I am tempted to work independently, but I am sure that the pre-existing ones were much better, optimized with great attention to the code.

+8
c ++ c machine-learning cluster-analysis
source share
2 answers

The library of open source clusters from the Human Genome team at the University of Tokyo looks promising. It has K-tools, as well as other flat hierarchical clustering algorithms. Scroll down the page for your library without a GUI. The Wikipedia-Clustering project seems enjoyable and a bit easier. Here's a specialized K-Tools library from the University of Maryland . I suggest you take a look at them based on your data. Preprocessing data to create object vectors can be a daunting task.

+8
source share

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

For example: C4.5 Source can be found on the Quinlan website .

+2
source share

All Articles