File size: 298 Bytes
fa5803b
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
# 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