C/C++ Machine Learning Libraries for Clustering

19,904

Solution 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.

Solution 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.

Share:
19,904
The Unknown
Author by

The Unknown

Updated on July 20, 2022

Comments

  • The Unknown
    The Unknown almost 2 years

    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.