Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork26k
New spectral clustering algorithm#31648
-
Hey everyone, As part of a paper in Machine Learning Research Journal, our research team is trying to submit a new clustering algorithm to scikit learn. It is a "generalization" of Spectral Clustering to directed graphs. Spectral clustering is already present in sklearn, along with two variations. The research is still ongoing, especially the task of finding optimal base parameters, but the results are promising. They are at least as good as classical spectral clustering (being a subcase) and often outperform it. We are unsure on how to submit this. Based on the other spectral algorithms implemented, we think the best would be building a new estimator (probably called DiSpectral for directed spectral clustering). We are thus looking for help on the development of this new method, whether it be sklearn contribution rules help or help for performance optimization. Thanks in advance ! |
BetaWas this translation helpful?Give feedback.
All reactions
Replies: 1 comment
-
Hi, I'm working on something similar. I'm developing an algorithm for anomaly detection. I can't tell you exactly how to submit your algorithm to scikit-learn (I think your paper probably needs to be published first), but I can tell you that if you plan to work on the algorithm, you need to follow this guide to make it compatible with the scikit-learn environment. There are a number of conventions and validations you need to follow. |
BetaWas this translation helpful?Give feedback.