Commit
·
7b78e00
1
Parent(s):
552a48c
updates
Browse files
app.py
CHANGED
@@ -149,10 +149,12 @@ with col1:
|
|
149 |
with scol1:
|
150 |
st.button('Change Image', on_click=button_click)
|
151 |
|
152 |
-
|
153 |
'Model',tuple(pred_dict.keys()))
|
154 |
|
155 |
-
st.
|
|
|
|
|
156 |
|
157 |
with scol2:
|
158 |
st.button('Find similar parts', on_click=find)
|
|
|
149 |
with scol1:
|
150 |
st.button('Change Image', on_click=button_click)
|
151 |
|
152 |
+
model = st.selectbox(
|
153 |
'Model',tuple(pred_dict.keys()))
|
154 |
|
155 |
+
st.session_state["model"]=model
|
156 |
+
|
157 |
+
st.write(model)
|
158 |
|
159 |
with scol2:
|
160 |
st.button('Find similar parts', on_click=find)
|