Giter VIP home page Giter VIP logo

reval_clustering's Issues

Fix problems with running AgglomerativeClustering

Dear all,
I tried to perform AgglomerativeClustering in reval on toy dataset and gaussian blobs, but the clustering algorithm failed to find any cluster. I tried to re-run AgglomerativeClustering starting from the fit method and moving backwards throughout the FindBestClustCV class. Since FindBestClustCV is a child class of RelativeValidation, I focused on the RelativeValidation class and found that the problem was in performing the Kuhn munkres algorithm in the test and rescale_score methods. The Kuhn munkres algorithm method in the utils module requires array-like structures of int32 or int as input variables, whereas the clustering labels I obtained from the train method of the RelativeValidation class were int64. Consequently, I modified line 84 in the relative_validation module (test method) as follows to convert any type of numpy array into a int32 numpy array:

bestperm = kuhn_munkres_algorithm(np.int32(classlab_ts), np.int32(clustlab_ts))

Accordingly, I also adjusted line 130 ( rescale_score_ method) in the same way:

me_ts = zero_one_loss(pred_lab, kuhn_munkres_algorithm(np.int32(pred_lab), np.int32(labts)))

I suggest modifying these code lines to overcome any issues due to the array structure type of clustering and classifier labels.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.