Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -116,13 +116,10 @@ with st.expander("Instructions for Use"):
|
|
| 116 |
st.markdown(
|
| 117 |
"""
|
| 118 |
<p>
|
| 119 |
-
1. Upload or select the input image
|
| 120 |
<br />
|
| 121 |
-
2.
|
| 122 |
-
|
| 123 |
-
3. Press "🐦 Perform Prediction" to Perform Prediction"
|
| 124 |
-
<br />
|
| 125 |
-
4. Enjoy sliding image comparison 🔥
|
| 126 |
</p>
|
| 127 |
""",
|
| 128 |
unsafe_allow_html=True,
|
|
@@ -130,7 +127,7 @@ with st.expander("Instructions for Use"):
|
|
| 130 |
|
| 131 |
st.write("##")
|
| 132 |
|
| 133 |
-
col1, col2, col3 = st.columns([
|
| 134 |
with col1:
|
| 135 |
st.markdown(f"##### Set input image:")
|
| 136 |
|
|
@@ -164,7 +161,7 @@ with col1:
|
|
| 164 |
st.image(image, width=200)
|
| 165 |
|
| 166 |
# submit button
|
| 167 |
-
submit = st.button("
|
| 168 |
|
| 169 |
if submit:
|
| 170 |
# perform prediction
|
|
|
|
| 116 |
st.markdown(
|
| 117 |
"""
|
| 118 |
<p>
|
| 119 |
+
1. Upload or select the input image
|
| 120 |
<br />
|
| 121 |
+
2. Press "Perform Prediction" to start image processing"
|
| 122 |
+
|
|
|
|
|
|
|
|
|
|
| 123 |
</p>
|
| 124 |
""",
|
| 125 |
unsafe_allow_html=True,
|
|
|
|
| 127 |
|
| 128 |
st.write("##")
|
| 129 |
|
| 130 |
+
col1, col2, col3 = st.columns([4, 1, 6])
|
| 131 |
with col1:
|
| 132 |
st.markdown(f"##### Set input image:")
|
| 133 |
|
|
|
|
| 161 |
st.image(image, width=200)
|
| 162 |
|
| 163 |
# submit button
|
| 164 |
+
submit = st.button("Perform Prediction")
|
| 165 |
|
| 166 |
if submit:
|
| 167 |
# perform prediction
|