diff --git a/src/pages/2-model_creation.py b/src/pages/2-model_creation.py
index f033155b947d0a1f4792ccb8acc4bb9e8b0858d4..27e74ab4b3178c91786849ac2cd569b9422f4a6b 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':