Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -23,8 +23,8 @@ def main():
|
|
23 |
st.markdown(hide_streamlit_style, unsafe_allow_html=True)
|
24 |
|
25 |
with st.sidebar:
|
26 |
-
image = Image.open('itaca_logo.png')
|
27 |
-
st.image(image, width=150) #,use_column_width=True)
|
28 |
page = option_menu(menu_title='Menu',
|
29 |
menu_icon="robot",
|
30 |
options=["Clustering Analysis",
|
@@ -41,7 +41,7 @@ def main():
|
|
41 |
graph_select = st.checkbox("Show Graphics", value= True)
|
42 |
feat_imp_select = st.checkbox("Feature Importance", value= False)
|
43 |
|
44 |
-
|
45 |
numclusters = [2, 3, 4, 5, 6]
|
46 |
selected_clusters = st.slider("Choose a number of clusters", min_value=2, max_value=10, value=4)
|
47 |
|
|
|
23 |
st.markdown(hide_streamlit_style, unsafe_allow_html=True)
|
24 |
|
25 |
with st.sidebar:
|
26 |
+
#image = Image.open('itaca_logo.png')
|
27 |
+
#st.image(image, width=150) #,use_column_width=True)
|
28 |
page = option_menu(menu_title='Menu',
|
29 |
menu_icon="robot",
|
30 |
options=["Clustering Analysis",
|
|
|
41 |
graph_select = st.checkbox("Show Graphics", value= True)
|
42 |
feat_imp_select = st.checkbox("Feature Importance", value= False)
|
43 |
|
44 |
+
# Define the options for the dropdown list
|
45 |
numclusters = [2, 3, 4, 5, 6]
|
46 |
selected_clusters = st.slider("Choose a number of clusters", min_value=2, max_value=10, value=4)
|
47 |
|