From ce906e4f9a685b93c7603b655e5c0c6a088e05c6 Mon Sep 17 00:00:00 2001 From: Azeem Fidahusein Date: Mon, 11 Aug 2025 16:11:21 +0100 Subject: [PATCH] udpated perplexity factor --- apps/cluster_map/ui_components.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/cluster_map/ui_components.py b/apps/cluster_map/ui_components.py index ec3e77c..acccd2f 100644 --- a/apps/cluster_map/ui_components.py +++ b/apps/cluster_map/ui_components.py @@ -104,7 +104,7 @@ def create_separation_controls(method): if method == "t-SNE": perplexity_factor = st.sidebar.slider( "Perplexity Factor", - 0.5, 2.0, 1.0, 0.1, + 0.1, 2.0, 1.0, 0.1, help="Affects local vs global structure balance. Lower values focus on local details." )