From a05d597bec453415b2f2da77a1b072e5f4550819 Mon Sep 17 00:00:00 2001 From: Nicolas Barthes <nicolas.barthes@cnrs.fr> Date: Mon, 14 Oct 2024 16:48:08 +0200 Subject: [PATCH] 1-samples_selection.py switch to random selction method using Simple interface (l.42) : selec_strategy = ['random'] --- src/pages/1-samples_selection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pages/1-samples_selection.py b/src/pages/1-samples_selection.py index 483f159..0a44ebe 100644 --- a/src/pages/1-samples_selection.py +++ b/src/pages/1-samples_selection.py @@ -39,7 +39,7 @@ match st.session_state["interface"]: case 'simple': dim_red_methods = ['PCA'] cluster_methods = ['KS'] # List of clustering algos - selec_strategy = ['center'] + selec_strategy = ['random'] case 'advanced': dim_red_methods=['PCA','UMAP', 'NMF'] # List of dimensionality reduction algos -- GitLab