From c5d2a2e90956be43ab6465d1c0d129f952a3edb8 Mon Sep 17 00:00:00 2001 From: DIANE Abderrahim <abderrahim.diane@cefe.cnrs.fr> Date: Tue, 4 Feb 2025 10:10:54 +0100 Subject: [PATCH] Edit 2-model_creation.py --- 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 f033155..27e74ab 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","TPE-iPLS",],# "LW-PLS", ], + model_type = st.selectbox("Choose a modelling algorithm:", options=["", "PLS","TPE-iPLS","LW-PLS"],# "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","TPE-iPLS",],# "LW-PLS", ], + model_type = st.selectbox("Choose a modelling algorithm:", options=["", "PLS","TPE-iPLS","LW-PLS"],# "LW-PLS", ], key=12, format_func=lambda x: x+'DA' if x else "<Select>", disabled=False) case 'simple': -- GitLab