myproject / app.py
c1ndy23's picture
Update app.py
c9c9606
raw
history blame
293 Bytes
import streamlit as st
with st.form(key='my_form'):
sLen = st.slider('Sepal lenght (cm.)', 0.0, 10.0)
sWid = st.slider('Sepal width (cm.)', 0.0, 10.0)
pLen = st.slider('Petal lenght (cm.)', 0.0, 10.0)
pWid = st.slider('Pepal width (cm.)', 0.0, 10.0)
st.form_submit_button('Predict')