DeepActionPotential's picture
πŸš€ Initial upload of my app
fa5803b verified
raw
history blame contribute delete
298 Bytes
# ui.py
import streamlit as st
def render_ui():
st.title("πŸ—‘οΈ Garbage Classifier")
st.subheader("Upload an image to classify it into one of 10 garbage types.")
uploaded_file = st.file_uploader("Choose an image...", type=["jpg", "jpeg", "png"])
return uploaded_file