Image_Classifier_with_CNN / src /streamlit_app.py
iBrokeTheCode's picture
chore: Initial commit
4af5fb3
raw
history blame
135 Bytes
import streamlit as st
st.title("Hello")
name = st.text_input("Enter your name")
if st.button("Submit"):
st.text(f"Hello {name}")