From f4652dd94322fd74f4b5bbc1b7e0c5d72f453491 Mon Sep 17 00:00:00 2001 From: Ishii Norimi <47292902+ishii-norimi@users.noreply.github.com> Date: Sat, 20 Jul 2024 13:53:05 +0900 Subject: [PATCH] Grouping subspace clustering methods (#887) --- js/model_selector.js | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/js/model_selector.js b/js/model_selector.js index eaf8c015..9028c13f 100644 --- a/js/model_selector.js +++ b/js/model_selector.js @@ -135,6 +135,14 @@ const AIMethods = [ { value: 'dbclasd', title: 'DBCLASD' }, { value: 'bridge', title: 'BRIDGE' }, ], + Subspace: [ + { value: 'clique', title: 'CLIQUE' }, + { value: 'proclus', title: 'PROCLUS' }, + { value: 'orclus', title: 'ORCLUS' }, + { value: 'findit', title: 'FINDIT' }, + { value: 'doc', title: 'DOC / FastDOC' }, + { value: 'dish', title: 'DiSH' }, + ], '': [ { value: 'mutual_knn', title: 'Mutual kNN' }, { value: 'art', title: 'Adaptive resonance theory' }, @@ -145,12 +153,6 @@ const AIMethods = [ { value: 'clues', title: 'CLUES' }, { value: 'chameleon', title: 'CHAMELEON' }, { value: 'coll', title: 'COLL' }, - { value: 'clique', title: 'CLIQUE' }, - { value: 'proclus', title: 'PROCLUS' }, - { value: 'orclus', title: 'ORCLUS' }, - { value: 'findit', title: 'FINDIT' }, - { value: 'doc', title: 'DOC / FastDOC' }, - { value: 'dish', title: 'DiSH' }, { value: 'plsa', title: 'PLSA' }, { value: 'latent_dirichlet_allocation', title: 'Latent Dirichlet Allocation' }, { value: 'nmf', title: 'NMF' },