huonw / cogset

Generic implementations of clustering algorithms.
http://huonw.github.io/cogset/cogset
Apache License 2.0
20 stars 5 forks source link

Hierarchical bottom-up clustering with complete linkage #1

Open aomader opened 9 years ago

aomader commented 9 years ago

I use a custom implementation of hierarchical bottom-up clustering with complete linkage in a private project and I would like to move it to a public external crate for obvious reasons, i.e., help others, get help, thin my code base and focus on my main idea.

Well, I found your crate and I was wondering if it is the right place. It should be fairly simple to incorporate even more hierarchical linkage criterias.

cc @huonw (added by @huonw to give me an email about this issue)

huonw commented 9 years ago

I think cogset is a reasonable place to put more clusterings, including this one.

aomader commented 9 years ago

I just opened a PR (#2) to exchange possible ideas how to model the problem best.