project / app.py
aangel's picture
Update app.py
a3c5c4d
raw
history blame
275 Bytes
import streamlit as st
with st.form(key='my_form'):
sLen = st.slider('sepal lenght(cm)', 0.0, 10.0)
sLen = st.slider('sepal width(cm)', 0.0, 10.0)
sLen = st.slider('petal lenght(cm)', 0.0, 10.0)
sLen = st.slider('petal width(cm)', 0.0, 10.0)
st.form_submit_button('Predict')