Spaces:
Runtime error
Runtime error
ttcielott
commited on
Commit
·
73f58d6
1
Parent(s):
f059d8a
fix if clause
Browse files
app.py
CHANGED
@@ -30,9 +30,12 @@ with col2:
|
|
30 |
st.subheader(result)
|
31 |
st.subheader('Pair your outfit with these colors.')
|
32 |
st.image(sugg, width = 400)
|
|
|
|
|
33 |
if uploaded_file:
|
34 |
st.image(uploaded_file, width = 400)
|
35 |
result, sugg = predict(uploaded_file)
|
36 |
st.subheader(result)
|
37 |
st.subheader('Pair your outfit with these colors.')
|
38 |
st.image(sugg, width = 400)
|
|
|
|
30 |
st.subheader(result)
|
31 |
st.subheader('Pair your outfit with these colors.')
|
32 |
st.image(sugg, width = 400)
|
33 |
+
break
|
34 |
+
|
35 |
if uploaded_file:
|
36 |
st.image(uploaded_file, width = 400)
|
37 |
result, sugg = predict(uploaded_file)
|
38 |
st.subheader(result)
|
39 |
st.subheader('Pair your outfit with these colors.')
|
40 |
st.image(sugg, width = 400)
|
41 |
+
break
|