Spaces:
Sleeping
Sleeping
File size: 293 Bytes
5f801da 1a97ec0 ccabb33 |
1 2 3 4 5 6 7 8 |
import streamlit as st
with st.form(key='my_form'):
sLen = st.slider('sepal length (cm) ', 0.0, 10.0)
sWid = st.slider('sepal width (cm) ', 0.0, 10.0)
pLen = st.slider('petal length (cm) ', 0.0, 10.0)
pWid = st.slider('petal width (cm) ', 0.0, 10.0)
st.form_submit_button('Predict') |