weee / app.py
munta's picture
Update app.py
4eb779f
raw
history blame
290 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('Petal width(cm) ', 0.0, 10.0)
st.form_submit_button('Predict')