From 50b57c72800e2229228445bf14ec39ad5dce2d39 Mon Sep 17 00:00:00 2001 From: Nicolas Barthes <nicolas.barthes@cnrs.fr> Date: Thu, 30 Jan 2025 12:15:28 +0100 Subject: [PATCH] remove LWPLSR before including its python native version --- src/pages/2-model_creation.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pages/2-model_creation.py b/src/pages/2-model_creation.py index 3ab2543..1b84e33 100644 --- a/src/pages/2-model_creation.py +++ b/src/pages/2-model_creation.py @@ -296,10 +296,10 @@ if not x_block.empty and not y.empty: case 'advanced': with c5: if mode == "Continuous": - model_type = st.selectbox("Choose a modelling algorithm:", options=["", "PLS", "LW-PLS", "TPE-iPLS"], + model_type = st.selectbox("Choose a modelling algorithm:", options=["", "PLS","TPE-iPLS",],# "LW-PLS", ], key=12, format_func=lambda x: x+'R' if x else "<Select>", disabled=False) elif mode == 'Categorical': - model_type = st.selectbox("Choose a modelling algorithm:", options=["", "PLS", "LW-PLS", "TPE-iPLS"], + model_type = st.selectbox("Choose a modelling algorithm:", options=["", "PLS","TPE-iPLS",],# "LW-PLS", ], key=12, format_func=lambda x: x+'DA' if x else "<Select>", disabled=False) case 'simple': -- GitLab