File size: 286 Bytes
86abcea 9717151 09e17e2 |
1 2 3 4 5 6 7 8 9 |
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)
p= st.slider('Petal width(cm) ', 0.0, 10.0)
st.form_submit_button('Predict')
|