GithubHelp home page GithubHelp logo

adanjoga / cvik-toolbox Goto Github PK

View Code? Open in Web Editor NEW
5.0 2.0 2.0 4.98 MB

CVIK is a Toolbox for the automatic determination of the number of clusters on data clustering problems

Home Page: https://adanjoga.github.io/

MATLAB 100.00%
toolbox cluster-validity cvi silhouette cluster-analysis clustering validity-index clustering-evaluation cvik

cvik-toolbox's Introduction

Adan Jose-Garcia / Homepage / Twitter / Linkedin

I am a Research Scientist in Machine Learning and Digital Health at the CRIStAL and INFINITE Labs, University of Lille, France. My research focuses on developing integrative cluster analysis approaches to address healthcare-related data problems and help to understand better disease complications and treatment goals.

Research projects

  • BicViz A tool to visualize biclusters.
  • CVIk Toolbox A toolbox of cluster validity indices for determining the number of clusters on clustering problems. GitHub Repo stars
  • C3-IoC A career guidance system for assessing student skills.
  • EvoClustering A repository of publications, datasets, and source codes for evolutionary clustering algorithms.

Selected publications

cvik-toolbox's People

Contributors

adanjoga avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

cvik-toolbox's Issues

Error with own distance function when calculating Davies Bouldin

I wanted to use my own distance function, as below:

distfun = @(XI,XJ)(1-abs(MyCorr(XI',XJ')));

MyCorr function:
function c = MyCorr(in1,in2)

% Average reference both sets of input maps
nO = size(in1,1);
Centering = eye(nO) - 1/nO;

in1 = Centering * in1;

if nargin < 2
    in2 = in1;
else
    in2 = Centering * in2;
end

% Compute covariance matrix between sets of input maps
covar = in1' * in2;
var1 = diag(in1' * in1);
var2 = diag(in2' * in2);

c = covar./sqrt(var1*var2');

While it works with the silhouette coefficient function, I get following error with Davies Bouldin:

Error using internal.stats.parseArgs
Invalid parameter name: Distance.

Error in clustering.evaluation.DaviesBouldinEvaluation (line 53)
      internal.stats.parseArgs(basePnames, baseDflts, varargin{:});

Error in evalclusters (line 190)
           obj = clustering.evaluation.DaviesBouldinEvaluation(X,YorFun,varargin{:});

Does someone no the whats the issue?
Thanks a lot in advance!

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.