Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
|
@@ -38,6 +38,12 @@ def show_likelihood(pred_label):
|
|
| 38 |
st.pyplot(fig)
|
| 39 |
|
| 40 |
def main():
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 41 |
st.set_page_config(page_title="Image Classification App", page_icon=":camera:", layout="wide")
|
| 42 |
|
| 43 |
st.write("# KSL Image Classification App")
|
|
|
|
| 38 |
st.pyplot(fig)
|
| 39 |
|
| 40 |
def main():
|
| 41 |
+
|
| 42 |
+
|
| 43 |
+
# Add an image to your app
|
| 44 |
+
image = "ksl1.jpg"
|
| 45 |
+
st.image(image, caption='My Image', use_column_width=True)
|
| 46 |
+
|
| 47 |
st.set_page_config(page_title="Image Classification App", page_icon=":camera:", layout="wide")
|
| 48 |
|
| 49 |
st.write("# KSL Image Classification App")
|