KaburaJ commited on
Commit
1516bfe
1 Parent(s): 899beb9

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -1
app.py CHANGED
@@ -41,7 +41,8 @@ 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")
44
- st.write("This app allows you to upload an image and have it classified by a trained machine learning model.")
 
45
 
46
  uploaded_file = st.file_uploader("Upload an image", type=["jpg", "png", "jpeg"])
47
  if uploaded_file is not None:
 
41
  st.set_page_config(page_title="Image Classification App", page_icon=":camera:", layout="wide")
42
 
43
  st.write("# KSL Image Classification App")
44
+ st.write("This app allows you to upload a KSL image and have it classified by a pre-trained machine learning model.")
45
+
46
 
47
  uploaded_file = st.file_uploader("Upload an image", type=["jpg", "png", "jpeg"])
48
  if uploaded_file is not None: