Spaces:
Sleeping
Sleeping
Update src/streamlit_app.py
Browse files- src/streamlit_app.py +9 -0
src/streamlit_app.py
CHANGED
|
@@ -155,6 +155,15 @@ st.markdown("""
|
|
| 155 |
</div>
|
| 156 |
""", unsafe_allow_html=True)
|
| 157 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 158 |
query_params = st.query_params
|
| 159 |
page = query_params.get("rateflow")
|
| 160 |
search_query = query_params.get("search")
|
|
|
|
| 155 |
</div>
|
| 156 |
""", unsafe_allow_html=True)
|
| 157 |
|
| 158 |
+
# Modell-Auswahl Dropdown
|
| 159 |
+
model_choice = st.radio(
|
| 160 |
+
"Choose Recommendation Model:",
|
| 161 |
+
options=["Neural Network", "SVD"],
|
| 162 |
+
index=0,
|
| 163 |
+
horizontal=True,
|
| 164 |
+
key="model_selection"
|
| 165 |
+
)
|
| 166 |
+
|
| 167 |
query_params = st.query_params
|
| 168 |
page = query_params.get("rateflow")
|
| 169 |
search_query = query_params.get("search")
|